Skip to content

Latest commit

 

History

History
100 lines (71 loc) · 4.14 KB

File metadata and controls

100 lines (71 loc) · 4.14 KB

Binance Python Connectors

Build Status Open Issues Code Style: Black Known Vulnerabilities License: MIT

Collection of auto-generated Python SDK for Binance APIs.

Prerequisites

Before using the SDK, ensure you have:

  • Python (version 3.9 or later)
  • pip (Python package manager)
  • poetry (Python package manager)

Available SDK

Documentation

For detailed information, refer to the Binance API Documentation.

Installation

Each connector is published as a separate Python package. You can install them via pip or poetry. For example:

pip install binance-sdk-spot
poetry add binance-sdk-spot

Or to install multiple connectors:

pip install binance-sdk-spot binance-sdk-margin-trading binance-sdk-staking
poetry add binance-sdk-spot binance-sdk-margin-trading binance-sdk-staking

Contributing

Since this repository contains auto-generated code using OpenAPI Generator, we encourage you to:

  1. Open a GitHub issue to discuss your ideas or report bugs
  2. Allow maintainers to implement necessary changes through the code generation process

Code Style

This repository follows PEP 8 standards and enforces Black for formatting. Before submitting a pull request, format your code:

black .

Run type checks:

mypy .

Migration Guide

If you're upgrading from the previous unified connector, refer to our Migration Guide for detailed steps on transitioning to the new modular structure.

License

This project is licensed under the MIT License - see the LICENSE file for details.