Skip to main content

Binance Python Derivatives Trading (Portfolio Margin) SDK

Build Status Open Issues Code Style: Black PyPI version PyPI Downloads Python version Known Vulnerabilities License: MIT

This is a client library for the Binance Derivatives Trading Portfolio Margin SDK API, enabling developers to interact programmatically with Binance's API to suit their derivative trading needs, through three distinct endpoints:

Table of Contents

Supported Features

  • REST API Endpoints:
    • /papi/*
  • Inclusion of test cases and examples for quick onboarding.

Installation

To use this library, ensure your environment is running Python version 3.10 or later.

pip install binance-sdk-derivatives-trading-portfolio-margin

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 DERIVATIVES_TRADING_PORTFOLIO_MARGIN_REST_API_PROD_URL
from binance_sdk_derivatives_trading_portfolio_margin.derivatives_trading_portfolio_margin import DerivativesTradingPortfolioMargin
from binance_sdk_derivatives_trading_portfolio_margin.rest_api.models import AccountInformationResponse

logging.basicConfig(level=logging.INFO)
configuration = ConfigurationRestAPI(api_key="your-api-key", api_secret="your-api-secret", base_path=DERIVATIVES_TRADING_PORTFOLIO_MARGIN_REST_API_PROD_URL)

client = DerivativesTradingPortfolioMargin(config_rest_api=configuration)

try:
    response = client.rest_api.account_information()

    data: AccountInformationResponse = response.data()
    logging.info(f"account_information() response: {data}")
except Exception as e:
    logging.error(f"account_information() 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.

Websocket Streams

WebSocket Streams in derivatives-trading-portfolio-margin is used for subscribing to user data streams. Use the websocket-streams module to interact with it.

Configuration Options

The WebSocket Streams API supports the following advanced configuration options:

  • reconnect_delay: Delay (ms) between reconnections.
  • compression: Enable response compression.
  • mode: Choose between single and pool connection modes.
    • single: A single WebSocket connection.
    • pool: A pool of WebSocket connections.
  • pool_size: Define the number of WebSocket connections in pool mode.
  • https_agent: Custom HTTPS agent for advanced TLS configuration.
  • user_agent: Custom user agent string for WebSocket Streams.

Subscribe to User Data Streams

You can consume the user data stream, which sends account-level events such as account and order updates. First create a listen-key via REST API; then:

import asyncio
import logging

from binance_common.configuration import ConfigurationWebSocketStreams
from binance_common.constants import DERIVATIVES_TRADING_PORTFOLIO_MARGIN_WS_STREAMS_PROD_URL
from binance_sdk_derivatives_trading_portfolio_margin.derivatives_trading_portfolio_margin import DerivativesTradingPortfolioMargin

logging.basicConfig(level=logging.INFO)

configuration_ws_streams = ConfigurationWebSocketStreams(
    stream_url=os.getenv("STREAM_URL", DERIVATIVES_TRADING_PORTFOLIO_MARGIN_WS_STREAMS_PROD_URL)
)
client = DerivativesTradingPortfolioMargin(config_ws_streams=configuration_ws_streams)

try:
    connection = await client.websocket_streams.create_connection()
    stream = connection.user_data(listenKey="listen-key")
    stream.on("message", lambda data: {
        match data["e"]:
            case "riskLevelChange":
                print(f"Risk level change stream: {data}")
            case _:
                print(f"Unknown stream: {data}")
    })
except Exception as e:
    logging.error(f"Error in user data stream: {e}")

Unsubscribing from Streams

You can unsubscribe from specific WebSocket streams using the unsubscribe method. This is useful for managing active subscriptions without closing the connection.

import asyncio
import logging

from binance_common.configuration import ConfigurationWebSocketStreams
from binance_sdk_derivatives_trading_portfolio_margin.derivatives_trading_portfolio_margin import DerivativesTradingPortfolioMargin

logging.basicConfig(level=logging.INFO)

client = DerivativesTradingPortfolioMargin(config_ws_streams=ConfigurationWebSocketStreams())


try:
    connection = await client.websocket_streams.create_connection()
    stream = connection.user_data(listenKey="listen-key")
    stream.on("message", lambda data: {
        match data["e"]:
            case "riskLevelChange":
                print(f"Risk level change stream: {data}")
            case _:
                print(f"Unknown stream: {data}")
    })
    await asyncio.sleep(5)
    await stream.unsubscribe()
except Exception as e:
    logging.error(f"Error in user data stream: {e}")
finally:
    if connection:
        await connection.close_connection(close_session=True)

Automatic Connection Renewal

The WebSocket connection is automatically renewed for both WebSocket API and WebSocket Streams connections, before the 24 hours expiration of the API key. This ensures continuous connectivity.

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
  • WebSocket Streams endpoints
  • Error handling
  • Edge cases

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:

  1. Open a GitHub issue describing your suggestion or the bug you've identified.
  2. 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!

Disclaimer

This SDK is provided by Binance on an "as is" and "as available" basis for use at your own risk. Binance makes no representations or warranties of any kind, whether express or implied, as to the operation of the SDK, its accuracy, reliability, completeness, or fitness for any particular purpose.

To the fullest extent permitted by law, Binance shall not be liable for any losses, damages, or expenses of any kind arising from or in connection with your use of, or inability to use, this SDK, including but not limited to any financial losses resulting from errors, bugs, interruptions, or inaccuracies in the SDK.

Your use of this SDK to access the Binance Platform is subject to the Binance API Key Terms and the Binance Terms of Use, which shall prevail in the event of any conflict with this disclaimer. You are solely responsible for any orders or transactions executed through the Binance Platform using this SDK.

This SDK is not intended to constitute investment advice or a recommendation to buy, sell, or hold any digital asset. You should independently evaluate and verify all information before acting.

Licence

This project is licensed under the MIT License. See the LICENCE file for details.

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

If you're not sure about the file name format, learn more about wheel file names.

File details

Details for the file binance_sdk_derivatives_trading_portfolio_margin-10.0.0.tar.gz.

File metadata

File hashes

Hashes for binance_sdk_derivatives_trading_portfolio_margin-10.0.0.tar.gz
Algorithm Hash digest
SHA256 1b5ef3bae8a81d8686945838bf5c067969a577eb2e643297233d8ddea5b2550d
MD5 23dbe96834481828128a2680ab7bc83f
BLAKE2b-256 0aa3411fb8f05cd94d796c2d84d580c018c2feb73b751063dc0edd62f0f9ad68

See more details on using hashes here.

File details

Details for the file binance_sdk_derivatives_trading_portfolio_margin-10.0.0-py3-none-any.whl.

File metadata

File hashes

Hashes for binance_sdk_derivatives_trading_portfolio_margin-10.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 557c998879d480251a98c5f66cf02d3933a6c8c11e39a45321d1f83087aa1352
MD5 7c05c70d4c6dac875a27c213c93e7cd0
BLAKE2b-256 f6a9f438b3d663ebafcdf32de829426e05b39495519ac3fa73a7d70b5c144f7f

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page