Official Binance C2C SDK - A lightweight library that provides a convenient interface to Binance's C2C REST API
Project description
Binance Python C2C SDK
This is a client library for the Binance C2C SDK API, enabling developers to interact programmatically with Binance's C2C trading platform. The library provides tools to query Fiat transaction history through the REST API:
Table of Contents
- Supported Features
- Installation
- Documentation
- REST APIs
- Testing
- Migration Guide
- Contributing
- Licence
Supported Features
- REST API Endpoints:
/sapi/v1/c2c/*
- Inclusion of test cases and examples for quick onboarding.
Installation
To use this library, ensure your environment is running Python version 3.9 or later.
pip install binance-sdk-c2c
Documentation
For detailed information, refer to the Binance API Documentation.
REST APIs
All REST API endpoints are available through the rest_api module. The REST API enables you to fetch market data, manage trades, and access account information. Note that some endpoints require authentication using your Binance API credentials.
from binance_common.configuration import ConfigurationRestAPI
from binance_common.constants import C2C_REST_API_PROD_URL
from binance_sdk_c2c.c2c import C2C
from binance_sdk_c2c.rest_api.models import GetC2CTradeHistoryResponse
logging.basicConfig(level=logging.INFO)
configuration = ConfigurationRestAPI(api_key="your-api-key", api_secret="your-api-secret", base_path=C2C_REST_API_PROD_URL)
client = C2C(config_rest_api=configuration)
try:
response = client.rest_api.get_c2_c_trade_history()
data: GetC2CTradeHistoryResponse = response.data()
logging.info(f"get_c2_c_trade_history() response: {data}")
except Exception as e:
logging.error(f"get_c2_c_trade_history() error: {e}")
More examples can be found in the examples/rest_api folder.
Configuration Options
The REST API supports the following advanced configuration options:
timeout: Timeout for requests in milliseconds (default: 1000 ms).proxy: Proxy configuration:host: Proxy server hostname.port: Proxy server port.protocol: Proxy protocol (http or https).auth: Proxy authentication credentials:username: Proxy username.password: Proxy password.
keep_alive: Enable HTTP keep-alive (default: true).compression: Enable response compression (default: true).retries: Number of retry attempts for failed requests (default: 3).backoff: Delay in milliseconds between retries (default: 1000 ms).https_agent: Custom HTTPS agent for advanced TLS configuration.private_key: RSA or ED25519 private key for authentication.private_key_passphrase: Passphrase for the private key, if encrypted.
Timeout
You can configure a timeout for requests in milliseconds. If the request exceeds the specified timeout, it will be aborted. See the Timeout example for detailed usage.
Proxy
The REST API supports HTTP/HTTPS proxy configurations. See the Proxy example for detailed usage.
Keep-Alive
Enable HTTP keep-alive for persistent connections. See the Keep-Alive example for detailed usage.
Compression
Enable or disable response compression. See the Compression example for detailed usage.
Retries
Configure the number of retry attempts and delay in milliseconds between retries for failed requests. See the Retries example for detailed usage.
HTTPS Agent
Customize the HTTPS agent for advanced TLS configurations. See the HTTPS Agent example for detailed usage.
Key Pair Based Authentication
The REST API supports key pair-based authentication for secure communication. You can use RSA or ED25519 keys for signing requests. See the Key Pair Based Authentication example for detailed usage.
Certificate Pinning
To enhance security, you can use certificate pinning with the https_agent option in the configuration. This ensures the client only communicates with servers using specific certificates. See the Certificate Pinning example for detailed usage.
Error Handling
The REST API provides detailed error types to help you handle issues effectively:
ClientError: Represents an error that occurred in the SDK client.RequiredError: Thrown when a required parameter is missing or undefined.UnauthorizedError: Indicates missing or invalid authentication credentials.ForbiddenError: Access to the requested resource is forbidden.TooManyRequestsError: Rate limit exceeded.RateLimitBanError: IP address banned for exceeding rate limits.ServerError: Internal server error, optionally includes a status code.NetworkError: Issues with network connectivity.NotFoundError: Resource not found.BadRequestError: Invalid request or one that cannot be served.
See the Error Handling example for detailed usage.
If base_path is not provided, it defaults to https://api.binance.com.
Testing
To run the tests, ensure you have Poetry installed, then execute the following commands:
poetry install
poetry run pytest ./tests
The tests cover:
- REST API endpoints
- Error handling
- Edge cases
Migration Guide
If you are upgrading to the new modularized structure, refer to the Migration Guide for detailed steps.
Contributing
Contributions are welcome!
Since this repository contains auto-generated code, we encourage you to start by opening a GitHub issue to discuss your ideas or suggest improvements. This helps ensure that changes align with the project's goals and auto-generation processes.
To contribute:
- Open a GitHub issue describing your suggestion or the bug you've identified.
- If it's determined that changes are necessary, the maintainers will merge the changes into the main branch.
Please ensure that all tests pass if you're making a direct contribution. Submit a pull request only after discussing and confirming the change.
Thank you for your contributions!
Licence
This project is licensed under the MIT License. See the LICENCE file for details.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file binance_sdk_c2c-1.5.0.tar.gz.
File metadata
- Download URL: binance_sdk_c2c-1.5.0.tar.gz
- Upload date:
- Size: 11.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.1.4 CPython/3.12.3 Linux/6.11.0-1018-azure
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a3d020ffa444098aad0d954a23d7981ccfb4b6244bd0dcffab249c5d4fbd78ae
|
|
| MD5 |
e80f9a827baa555331b27a7d7a0ed318
|
|
| BLAKE2b-256 |
03777e5676358db673ac5456c8a62eb479ac3c7114058f79aeea2128c9e15564
|
File details
Details for the file binance_sdk_c2c-1.5.0-py3-none-any.whl.
File metadata
- Download URL: binance_sdk_c2c-1.5.0-py3-none-any.whl
- Upload date:
- Size: 13.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.1.4 CPython/3.12.3 Linux/6.11.0-1018-azure
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
90937eefd057a4b4c3dece3b0cfbff4d963c594ab86dc822b199244a9fde7ce7
|
|
| MD5 |
ab6fe0bea612d11e89963236139c81ae
|
|
| BLAKE2b-256 |
ba1e43aac32b29cd10d028e10816c27b50d913fed6d1bbabaaf286ba868bc3f6
|