├── .github ├── ISSUE_TEMPLATE.md └── workflows │ ├── ci.yaml │ └── release.yaml ├── .gitignore ├── LICENSE.md ├── MIGRATION.md ├── README.md ├── clients ├── algo │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENCE │ ├── README.md │ ├── docs │ │ └── rest_api │ │ │ ├── certificate-pinning.md │ │ │ ├── compression.md │ │ │ ├── error-handling.md │ │ │ ├── httpsAgent.md │ │ │ ├── keepAlive.md │ │ │ ├── key-pair-authentication.md │ │ │ ├── proxy.md │ │ │ ├── retries.md │ │ │ └── timeout.md │ ├── examples │ │ └── rest_api │ │ │ ├── FutureAlgo │ │ │ ├── cancel_algo_order_future_algo.py │ │ │ ├── query_current_algo_open_orders_future_algo.py │ │ │ ├── query_historical_algo_orders_future_algo.py │ │ │ ├── query_sub_orders_future_algo.py │ │ │ ├── time_weighted_average_price_future_algo.py │ │ │ └── volume_participation_future_algo.py │ │ │ └── SpotAlgo │ │ │ ├── cancel_algo_order_spot_algo.py │ │ │ ├── query_current_algo_open_orders_spot_algo.py │ │ │ ├── query_historical_algo_orders_spot_algo.py │ │ │ ├── query_sub_orders_spot_algo.py │ │ │ └── time_weighted_average_price_spot_algo.py │ ├── pyproject.toml │ ├── src │ │ └── binance_sdk_algo │ │ │ ├── __init__.py │ │ │ ├── algo.py │ │ │ ├── metadata.py │ │ │ └── rest_api │ │ │ ├── __init__.py │ │ │ ├── api │ │ │ ├── __init__.py │ │ │ ├── future_algo_api.py │ │ │ └── spot_algo_api.py │ │ │ ├── models │ │ │ ├── __init__.py │ │ │ ├── cancel_algo_order_future_algo_response.py │ │ │ ├── cancel_algo_order_spot_algo_response.py │ │ │ ├── enums.py │ │ │ ├── query_current_algo_open_orders_future_algo_response.py │ │ │ ├── query_current_algo_open_orders_future_algo_response_orders_inner.py │ │ │ ├── query_current_algo_open_orders_spot_algo_response.py │ │ │ ├── query_current_algo_open_orders_spot_algo_response_orders_inner.py │ │ │ ├── query_historical_algo_orders_future_algo_response.py │ │ │ ├── query_historical_algo_orders_future_algo_response_orders_inner.py │ │ │ ├── query_historical_algo_orders_spot_algo_response.py │ │ │ ├── query_historical_algo_orders_spot_algo_response_orders_inner.py │ │ │ ├── query_sub_orders_future_algo_response.py │ │ │ ├── query_sub_orders_future_algo_response_sub_orders_inner.py │ │ │ ├── query_sub_orders_spot_algo_response.py │ │ │ ├── time_weighted_average_price_future_algo_response.py │ │ │ ├── time_weighted_average_price_spot_algo_response.py │ │ │ └── volume_participation_future_algo_response.py │ │ │ └── rest_api.py │ ├── tests │ │ └── unit │ │ │ └── rest_api │ │ │ ├── test_future_algo_api.py │ │ │ └── test_spot_algo_api.py │ └── tox.ini ├── c2c │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENCE │ ├── README.md │ ├── docs │ │ ├── migration_guide_c2c_sdk.md │ │ └── rest_api │ │ │ ├── certificate-pinning.md │ │ │ ├── compression.md │ │ │ ├── error-handling.md │ │ │ ├── httpsAgent.md │ │ │ ├── keepAlive.md │ │ │ ├── key-pair-authentication.md │ │ │ ├── proxy.md │ │ │ ├── retries.md │ │ │ └── timeout.md │ ├── examples │ │ └── rest_api │ │ │ └── C2C │ │ │ └── get_c2_c_trade_history.py │ ├── pyproject.toml │ ├── src │ │ └── binance_sdk_c2c │ │ │ ├── __init__.py │ │ │ ├── c2c.py │ │ │ ├── metadata.py │ │ │ └── rest_api │ │ │ ├── __init__.py │ │ │ ├── api │ │ │ ├── __init__.py │ │ │ └── c2_c_api.py │ │ │ ├── models │ │ │ ├── __init__.py │ │ │ ├── enums.py │ │ │ ├── get_c2_c_trade_history_response.py │ │ │ └── get_c2_c_trade_history_response_data_inner.py │ │ │ └── rest_api.py │ ├── tests │ │ └── unit │ │ │ └── rest_api │ │ │ └── test_c2_c_api.py │ └── tox.ini ├── convert │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENCE │ ├── README.md │ ├── docs │ │ ├── migration_guide_convert_sdk.md │ │ └── rest_api │ │ │ ├── certificate-pinning.md │ │ │ ├── compression.md │ │ │ ├── error-handling.md │ │ │ ├── httpsAgent.md │ │ │ ├── keepAlive.md │ │ │ ├── key-pair-authentication.md │ │ │ ├── proxy.md │ │ │ ├── retries.md │ │ │ └── timeout.md │ ├── examples │ │ └── rest_api │ │ │ ├── MarketData │ │ │ ├── list_all_convert_pairs.py │ │ │ └── query_order_quantity_precision_per_asset.py │ │ │ └── Trade │ │ │ ├── accept_quote.py │ │ │ ├── cancel_limit_order.py │ │ │ ├── get_convert_trade_history.py │ │ │ ├── order_status.py │ │ │ ├── place_limit_order.py │ │ │ ├── query_limit_open_orders.py │ │ │ └── send_quote_request.py │ ├── pyproject.toml │ ├── src │ │ └── binance_sdk_convert │ │ │ ├── __init__.py │ │ │ ├── convert.py │ │ │ ├── metadata.py │ │ │ └── rest_api │ │ │ ├── __init__.py │ │ │ ├── api │ │ │ ├── __init__.py │ │ │ ├── market_data_api.py │ │ │ └── trade_api.py │ │ │ ├── models │ │ │ ├── __init__.py │ │ │ ├── accept_quote_response.py │ │ │ ├── cancel_limit_order_response.py │ │ │ ├── enums.py │ │ │ ├── get_convert_trade_history_response.py │ │ │ ├── get_convert_trade_history_response_list_inner.py │ │ │ ├── list_all_convert_pairs_response.py │ │ │ ├── list_all_convert_pairs_response_inner.py │ │ │ ├── order_status_response.py │ │ │ ├── place_limit_order_response.py │ │ │ ├── query_limit_open_orders_response.py │ │ │ ├── query_limit_open_orders_response_list_inner.py │ │ │ ├── query_order_quantity_precision_per_asset_response.py │ │ │ ├── query_order_quantity_precision_per_asset_response_inner.py │ │ │ └── send_quote_request_response.py │ │ │ └── rest_api.py │ ├── tests │ │ └── unit │ │ │ └── rest_api │ │ │ ├── test_market_data_api.py │ │ │ └── test_trade_api.py │ └── tox.ini ├── copy_trading │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENCE │ ├── README.md │ ├── docs │ │ └── rest_api │ │ │ ├── certificate-pinning.md │ │ │ ├── compression.md │ │ │ ├── error-handling.md │ │ │ ├── httpsAgent.md │ │ │ ├── keepAlive.md │ │ │ ├── key-pair-authentication.md │ │ │ ├── proxy.md │ │ │ ├── retries.md │ │ │ └── timeout.md │ ├── examples │ │ └── rest_api │ │ │ └── FutureCopyTrading │ │ │ ├── get_futures_lead_trader_status.py │ │ │ └── get_futures_lead_trading_symbol_whitelist.py │ ├── pyproject.toml │ ├── src │ │ └── binance_sdk_copy_trading │ │ │ ├── __init__.py │ │ │ ├── copy_trading.py │ │ │ ├── metadata.py │ │ │ └── rest_api │ │ │ ├── __init__.py │ │ │ ├── api │ │ │ ├── __init__.py │ │ │ └── future_copy_trading_api.py │ │ │ ├── models │ │ │ ├── __init__.py │ │ │ ├── enums.py │ │ │ ├── get_futures_lead_trader_status_response.py │ │ │ ├── get_futures_lead_trader_status_response_data.py │ │ │ ├── get_futures_lead_trading_symbol_whitelist_response.py │ │ │ └── get_futures_lead_trading_symbol_whitelist_response_data_inner.py │ │ │ └── rest_api.py │ ├── tests │ │ └── unit │ │ │ └── rest_api │ │ │ └── test_future_copy_trading_api.py │ └── tox.ini ├── crypto_loan │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENCE │ ├── README.md │ ├── docs │ │ ├── migration_guide_crypto_loan_sdk.md │ │ └── rest_api │ │ │ ├── certificate-pinning.md │ │ │ ├── compression.md │ │ │ ├── error-handling.md │ │ │ ├── httpsAgent.md │ │ │ ├── keepAlive.md │ │ │ ├── key-pair-authentication.md │ │ │ ├── proxy.md │ │ │ ├── retries.md │ │ │ └── timeout.md │ ├── examples │ │ └── rest_api │ │ │ ├── FlexibleRate │ │ │ ├── check_collateral_repay_rate.py │ │ │ ├── flexible_loan_adjust_ltv.py │ │ │ ├── flexible_loan_borrow.py │ │ │ ├── flexible_loan_repay.py │ │ │ ├── get_flexible_loan_assets_data.py │ │ │ ├── get_flexible_loan_borrow_history.py │ │ │ ├── get_flexible_loan_collateral_assets_data.py │ │ │ ├── get_flexible_loan_liquidation_history.py │ │ │ ├── get_flexible_loan_ltv_adjustment_history.py │ │ │ ├── get_flexible_loan_ongoing_orders.py │ │ │ └── get_flexible_loan_repayment_history.py │ │ │ └── StableRate │ │ │ ├── check_collateral_repay_rate_stable_rate.py │ │ │ ├── get_crypto_loans_income_history.py │ │ │ ├── get_loan_borrow_history.py │ │ │ ├── get_loan_ltv_adjustment_history.py │ │ │ └── get_loan_repayment_history.py │ ├── pyproject.toml │ ├── src │ │ └── binance_sdk_crypto_loan │ │ │ ├── __init__.py │ │ │ ├── crypto_loan.py │ │ │ ├── metadata.py │ │ │ └── rest_api │ │ │ ├── __init__.py │ │ │ ├── api │ │ │ ├── __init__.py │ │ │ ├── flexible_rate_api.py │ │ │ └── stable_rate_api.py │ │ │ ├── models │ │ │ ├── __init__.py │ │ │ ├── check_collateral_repay_rate_response.py │ │ │ ├── check_collateral_repay_rate_stable_rate_response.py │ │ │ ├── enums.py │ │ │ ├── flexible_loan_adjust_ltv_response.py │ │ │ ├── flexible_loan_borrow_response.py │ │ │ ├── flexible_loan_repay_response.py │ │ │ ├── get_crypto_loans_income_history_response.py │ │ │ ├── get_crypto_loans_income_history_response_inner.py │ │ │ ├── get_flexible_loan_assets_data_response.py │ │ │ ├── get_flexible_loan_assets_data_response_rows_inner.py │ │ │ ├── get_flexible_loan_borrow_history_response.py │ │ │ ├── get_flexible_loan_borrow_history_response_rows_inner.py │ │ │ ├── get_flexible_loan_collateral_assets_data_response.py │ │ │ ├── get_flexible_loan_collateral_assets_data_response_rows_inner.py │ │ │ ├── get_flexible_loan_liquidation_history_response.py │ │ │ ├── get_flexible_loan_liquidation_history_response_rows_inner.py │ │ │ ├── get_flexible_loan_ltv_adjustment_history_response.py │ │ │ ├── get_flexible_loan_ltv_adjustment_history_response_rows_inner.py │ │ │ ├── get_flexible_loan_ongoing_orders_response.py │ │ │ ├── get_flexible_loan_ongoing_orders_response_rows_inner.py │ │ │ ├── get_flexible_loan_repayment_history_response.py │ │ │ ├── get_flexible_loan_repayment_history_response_rows_inner.py │ │ │ ├── get_loan_borrow_history_response.py │ │ │ ├── get_loan_borrow_history_response_rows_inner.py │ │ │ ├── get_loan_ltv_adjustment_history_response.py │ │ │ ├── get_loan_ltv_adjustment_history_response_rows_inner.py │ │ │ ├── get_loan_repayment_history_response.py │ │ │ └── get_loan_repayment_history_response_rows_inner.py │ │ │ └── rest_api.py │ ├── tests │ │ └── unit │ │ │ └── rest_api │ │ │ ├── test_flexible_rate_api.py │ │ │ └── test_stable_rate_api.py │ └── tox.ini ├── derivatives_trading_coin_futures │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENCE │ ├── README.md │ ├── docs │ │ ├── migration_guide_derivatives_trading_coin_futures_sdk.md │ │ ├── rest_api │ │ │ ├── certificate-pinning.md │ │ │ ├── compression.md │ │ │ ├── error-handling.md │ │ │ ├── httpsAgent.md │ │ │ ├── keepAlive.md │ │ │ ├── key-pair-authentication.md │ │ │ ├── proxy.md │ │ │ ├── retries.md │ │ │ └── timeout.md │ │ ├── websocket_api │ │ │ ├── agent.md │ │ │ ├── compression.md │ │ │ ├── connection-mode.md │ │ │ ├── key-pair-authentication.md │ │ │ ├── proxy.md │ │ │ ├── reconnect-delay.md │ │ │ └── timeout.md │ │ └── websocket_streams │ │ │ ├── agent.md │ │ │ ├── compression.md │ │ │ ├── connection-mode.md │ │ │ ├── proxy.md │ │ │ └── reconnect-delay.md │ ├── examples │ │ ├── rest_api │ │ │ ├── Account │ │ │ │ ├── account_information.py │ │ │ │ ├── futures_account_balance.py │ │ │ │ ├── get_current_position_mode.py │ │ │ │ ├── get_download_id_for_futures_order_history.py │ │ │ │ ├── get_download_id_for_futures_trade_history.py │ │ │ │ ├── get_download_id_for_futures_transaction_history.py │ │ │ │ ├── get_futures_order_history_download_link_by_id.py │ │ │ │ ├── get_futures_trade_download_link_by_id.py │ │ │ │ ├── get_futures_transaction_history_download_link_by_id.py │ │ │ │ ├── get_income_history.py │ │ │ │ ├── notional_bracket_for_pair.py │ │ │ │ ├── notional_bracket_for_symbol.py │ │ │ │ └── user_commission_rate.py │ │ │ ├── MarketData │ │ │ │ ├── basis.py │ │ │ │ ├── check_server_time.py │ │ │ │ ├── compressed_aggregate_trades_list.py │ │ │ │ ├── continuous_contract_kline_candlestick_data.py │ │ │ │ ├── exchange_information.py │ │ │ │ ├── get_funding_rate_history_of_perpetual_futures.py │ │ │ │ ├── get_funding_rate_info.py │ │ │ │ ├── index_price_and_mark_price.py │ │ │ │ ├── index_price_kline_candlestick_data.py │ │ │ │ ├── kline_candlestick_data.py │ │ │ │ ├── long_short_ratio.py │ │ │ │ ├── mark_price_kline_candlestick_data.py │ │ │ │ ├── old_trades_lookup.py │ │ │ │ ├── open_interest.py │ │ │ │ ├── open_interest_statistics.py │ │ │ │ ├── order_book.py │ │ │ │ ├── premium_index_kline_data.py │ │ │ │ ├── query_index_price_constituents.py │ │ │ │ ├── recent_trades_list.py │ │ │ │ ├── symbol_order_book_ticker.py │ │ │ │ ├── symbol_price_ticker.py │ │ │ │ ├── taker_buy_sell_volume.py │ │ │ │ ├── test_connectivity.py │ │ │ │ ├── ticker24hr_price_change_statistics.py │ │ │ │ ├── top_trader_long_short_ratio_accounts.py │ │ │ │ └── top_trader_long_short_ratio_positions.py │ │ │ ├── PortfolioMarginEndpoints │ │ │ │ └── classic_portfolio_margin_account_information.py │ │ │ ├── Trade │ │ │ │ ├── account_trade_list.py │ │ │ │ ├── all_orders.py │ │ │ │ ├── auto_cancel_all_open_orders.py │ │ │ │ ├── cancel_all_open_orders.py │ │ │ │ ├── cancel_multiple_orders.py │ │ │ │ ├── cancel_order.py │ │ │ │ ├── change_initial_leverage.py │ │ │ │ ├── change_margin_type.py │ │ │ │ ├── change_position_mode.py │ │ │ │ ├── current_all_open_orders.py │ │ │ │ ├── get_order_modify_history.py │ │ │ │ ├── get_position_margin_change_history.py │ │ │ │ ├── modify_isolated_position_margin.py │ │ │ │ ├── modify_multiple_orders.py │ │ │ │ ├── modify_order.py │ │ │ │ ├── new_order.py │ │ │ │ ├── position_adl_quantile_estimation.py │ │ │ │ ├── position_information.py │ │ │ │ ├── query_current_open_order.py │ │ │ │ ├── query_order.py │ │ │ │ └── users_force_orders.py │ │ │ └── UserDataStreams │ │ │ │ ├── close_user_data_stream.py │ │ │ │ ├── keepalive_user_data_stream.py │ │ │ │ └── start_user_data_stream.py │ │ ├── websocket_api │ │ │ ├── Account │ │ │ │ ├── account_information.py │ │ │ │ └── futures_account_balance.py │ │ │ ├── Trade │ │ │ │ ├── cancel_order.py │ │ │ │ ├── modify_order.py │ │ │ │ ├── new_order.py │ │ │ │ ├── position_information.py │ │ │ │ └── query_order.py │ │ │ └── UserDataStreams │ │ │ │ ├── close_user_data_stream.py │ │ │ │ ├── keepalive_user_data_stream.py │ │ │ │ └── start_user_data_stream.py │ │ └── websocket_streams │ │ │ ├── aggregate_trade_streams.py │ │ │ ├── all_book_tickers_stream.py │ │ │ ├── all_market_liquidation_order_streams.py │ │ │ ├── all_market_mini_tickers_stream.py │ │ │ ├── all_market_tickers_streams.py │ │ │ ├── continuous_contract_kline_candlestick_streams.py │ │ │ ├── contract_info_stream.py │ │ │ ├── diff_book_depth_streams.py │ │ │ ├── index_kline_candlestick_streams.py │ │ │ ├── index_price_stream.py │ │ │ ├── individual_symbol_book_ticker_streams.py │ │ │ ├── individual_symbol_mini_ticker_stream.py │ │ │ ├── individual_symbol_ticker_streams.py │ │ │ ├── kline_candlestick_streams.py │ │ │ ├── liquidation_order_streams.py │ │ │ ├── mark_price_kline_candlestick_streams.py │ │ │ ├── mark_price_of_all_symbols_of_a_pair.py │ │ │ ├── mark_price_stream.py │ │ │ └── partial_book_depth_streams.py │ ├── pyproject.toml │ ├── src │ │ └── binance_sdk_derivatives_trading_coin_futures │ │ │ ├── __init__.py │ │ │ ├── derivatives_trading_coin_futures.py │ │ │ ├── metadata.py │ │ │ ├── rest_api │ │ │ ├── __init__.py │ │ │ ├── api │ │ │ │ ├── __init__.py │ │ │ │ ├── account_api.py │ │ │ │ ├── market_data_api.py │ │ │ │ ├── portfolio_margin_endpoints_api.py │ │ │ │ ├── trade_api.py │ │ │ │ └── user_data_streams_api.py │ │ │ ├── models │ │ │ │ ├── __init__.py │ │ │ │ ├── account_information_response.py │ │ │ │ ├── account_information_response_assets_inner.py │ │ │ │ ├── account_information_response_positions_inner.py │ │ │ │ ├── account_trade_list_response.py │ │ │ │ ├── account_trade_list_response_inner.py │ │ │ │ ├── all_orders_response.py │ │ │ │ ├── all_orders_response_inner.py │ │ │ │ ├── basis_response.py │ │ │ │ ├── basis_response_inner.py │ │ │ │ ├── cancel_all_open_orders_response.py │ │ │ │ ├── cancel_multiple_orders_response.py │ │ │ │ ├── cancel_multiple_orders_response_inner.py │ │ │ │ ├── cancel_order_response.py │ │ │ │ ├── change_initial_leverage_response.py │ │ │ │ ├── change_margin_type_response.py │ │ │ │ ├── change_position_mode_response.py │ │ │ │ ├── check_server_time_response.py │ │ │ │ ├── classic_portfolio_margin_account_information_response.py │ │ │ │ ├── compressed_aggregate_trades_list_response.py │ │ │ │ ├── compressed_aggregate_trades_list_response_inner.py │ │ │ │ ├── continuous_contract_kline_candlestick_data_response.py │ │ │ │ ├── continuous_contract_kline_candlestick_data_response_item.py │ │ │ │ ├── continuous_contract_kline_candlestick_data_response_item_inner.py │ │ │ │ ├── current_all_open_orders_response.py │ │ │ │ ├── current_all_open_orders_response_inner.py │ │ │ │ ├── enums.py │ │ │ │ ├── exchange_information_response.py │ │ │ │ ├── exchange_information_response_rate_limits_inner.py │ │ │ │ ├── exchange_information_response_symbols_inner.py │ │ │ │ ├── exchange_information_response_symbols_inner_filters_inner.py │ │ │ │ ├── futures_account_balance_response.py │ │ │ │ ├── futures_account_balance_response_inner.py │ │ │ │ ├── get_current_position_mode_response.py │ │ │ │ ├── get_download_id_for_futures_order_history_response.py │ │ │ │ ├── get_download_id_for_futures_trade_history_response.py │ │ │ │ ├── get_download_id_for_futures_transaction_history_response.py │ │ │ │ ├── get_funding_rate_history_of_perpetual_futures_response.py │ │ │ │ ├── get_funding_rate_history_of_perpetual_futures_response_inner.py │ │ │ │ ├── get_funding_rate_info_response.py │ │ │ │ ├── get_funding_rate_info_response_inner.py │ │ │ │ ├── get_futures_order_history_download_link_by_id_response.py │ │ │ │ ├── get_futures_trade_download_link_by_id_response.py │ │ │ │ ├── get_futures_transaction_history_download_link_by_id_response.py │ │ │ │ ├── get_income_history_response.py │ │ │ │ ├── get_income_history_response_inner.py │ │ │ │ ├── get_order_modify_history_response.py │ │ │ │ ├── get_order_modify_history_response_inner.py │ │ │ │ ├── get_order_modify_history_response_inner_amendment.py │ │ │ │ ├── get_order_modify_history_response_inner_amendment_orig_qty.py │ │ │ │ ├── get_order_modify_history_response_inner_amendment_price.py │ │ │ │ ├── get_position_margin_change_history_response.py │ │ │ │ ├── get_position_margin_change_history_response_inner.py │ │ │ │ ├── index_price_and_mark_price_response.py │ │ │ │ ├── index_price_and_mark_price_response_inner.py │ │ │ │ ├── index_price_kline_candlestick_data_response.py │ │ │ │ ├── index_price_kline_candlestick_data_response_item.py │ │ │ │ ├── index_price_kline_candlestick_data_response_item_inner.py │ │ │ │ ├── kline_candlestick_data_response.py │ │ │ │ ├── kline_candlestick_data_response_item.py │ │ │ │ ├── long_short_ratio_response.py │ │ │ │ ├── long_short_ratio_response_inner.py │ │ │ │ ├── mark_price_kline_candlestick_data_response.py │ │ │ │ ├── mark_price_kline_candlestick_data_response_item.py │ │ │ │ ├── mark_price_kline_candlestick_data_response_item_inner.py │ │ │ │ ├── modify_isolated_position_margin_response.py │ │ │ │ ├── modify_multiple_orders_batch_orders_parameter_inner.py │ │ │ │ ├── modify_multiple_orders_response.py │ │ │ │ ├── modify_multiple_orders_response_inner.py │ │ │ │ ├── modify_order_response.py │ │ │ │ ├── new_order_response.py │ │ │ │ ├── notional_bracket_for_pair_response.py │ │ │ │ ├── notional_bracket_for_pair_response_inner.py │ │ │ │ ├── notional_bracket_for_pair_response_inner_brackets_inner.py │ │ │ │ ├── notional_bracket_for_symbol_response.py │ │ │ │ ├── notional_bracket_for_symbol_response_inner.py │ │ │ │ ├── old_trades_lookup_response.py │ │ │ │ ├── old_trades_lookup_response_inner.py │ │ │ │ ├── open_interest_response.py │ │ │ │ ├── open_interest_statistics_response.py │ │ │ │ ├── open_interest_statistics_response_inner.py │ │ │ │ ├── order_book_response.py │ │ │ │ ├── order_book_response_asks_item.py │ │ │ │ ├── order_book_response_bids_item.py │ │ │ │ ├── position_adl_quantile_estimation_response.py │ │ │ │ ├── position_adl_quantile_estimation_response_inner.py │ │ │ │ ├── position_adl_quantile_estimation_response_inner_adl_quantile.py │ │ │ │ ├── position_information_response.py │ │ │ │ ├── position_information_response_inner.py │ │ │ │ ├── premium_index_kline_data_response.py │ │ │ │ ├── premium_index_kline_data_response_item.py │ │ │ │ ├── premium_index_kline_data_response_item_inner.py │ │ │ │ ├── query_current_open_order_response.py │ │ │ │ ├── query_index_price_constituents_response.py │ │ │ │ ├── query_index_price_constituents_response_constituents_inner.py │ │ │ │ ├── query_order_response.py │ │ │ │ ├── recent_trades_list_response.py │ │ │ │ ├── recent_trades_list_response_inner.py │ │ │ │ ├── start_user_data_stream_response.py │ │ │ │ ├── symbol_order_book_ticker_response.py │ │ │ │ ├── symbol_order_book_ticker_response_inner.py │ │ │ │ ├── symbol_price_ticker_response.py │ │ │ │ ├── symbol_price_ticker_response_inner.py │ │ │ │ ├── taker_buy_sell_volume_response.py │ │ │ │ ├── taker_buy_sell_volume_response_inner.py │ │ │ │ ├── ticker24hr_price_change_statistics_response.py │ │ │ │ ├── ticker24hr_price_change_statistics_response_inner.py │ │ │ │ ├── top_trader_long_short_ratio_accounts_response.py │ │ │ │ ├── top_trader_long_short_ratio_accounts_response_inner.py │ │ │ │ ├── top_trader_long_short_ratio_positions_response.py │ │ │ │ ├── top_trader_long_short_ratio_positions_response_inner.py │ │ │ │ ├── user_commission_rate_response.py │ │ │ │ ├── users_force_orders_response.py │ │ │ │ └── users_force_orders_response_inner.py │ │ │ └── rest_api.py │ │ │ ├── websocket_api │ │ │ ├── __init__.py │ │ │ ├── api │ │ │ │ ├── __init__.py │ │ │ │ ├── account_api.py │ │ │ │ ├── trade_api.py │ │ │ │ └── user_data_streams_api.py │ │ │ ├── models │ │ │ │ ├── __init__.py │ │ │ │ ├── account_information_response.py │ │ │ │ ├── account_information_response_rate_limits_inner.py │ │ │ │ ├── account_information_response_result.py │ │ │ │ ├── account_information_response_result_assets_inner.py │ │ │ │ ├── account_information_response_result_positions_inner.py │ │ │ │ ├── cancel_order_response.py │ │ │ │ ├── cancel_order_response_rate_limits_inner.py │ │ │ │ ├── cancel_order_response_result.py │ │ │ │ ├── close_user_data_stream_response.py │ │ │ │ ├── close_user_data_stream_response_rate_limits_inner.py │ │ │ │ ├── enums.py │ │ │ │ ├── futures_account_balance_response.py │ │ │ │ ├── futures_account_balance_response_result_inner.py │ │ │ │ ├── keepalive_user_data_stream_response.py │ │ │ │ ├── keepalive_user_data_stream_response_result.py │ │ │ │ ├── modify_order_response.py │ │ │ │ ├── modify_order_response_result.py │ │ │ │ ├── new_order_response.py │ │ │ │ ├── new_order_response_result.py │ │ │ │ ├── position_information_response.py │ │ │ │ ├── position_information_response_result_inner.py │ │ │ │ ├── query_order_response.py │ │ │ │ ├── query_order_response_result.py │ │ │ │ ├── start_user_data_stream_response.py │ │ │ │ ├── start_user_data_stream_response_rate_limits_inner.py │ │ │ │ └── start_user_data_stream_response_result.py │ │ │ └── websocket_api.py │ │ │ └── websocket_streams │ │ │ ├── __init__.py │ │ │ ├── models │ │ │ ├── __init__.py │ │ │ ├── account_config_update.py │ │ │ ├── account_config_update_ac.py │ │ │ ├── account_update.py │ │ │ ├── account_update_a.py │ │ │ ├── account_update_ab_inner.py │ │ │ ├── account_update_ap_inner.py │ │ │ ├── aggregate_trade_streams_response.py │ │ │ ├── all_book_tickers_stream_response.py │ │ │ ├── all_market_liquidation_order_streams_response.py │ │ │ ├── all_market_liquidation_order_streams_response_o.py │ │ │ ├── all_market_mini_tickers_stream_response.py │ │ │ ├── all_market_mini_tickers_stream_response_inner.py │ │ │ ├── all_market_tickers_streams_response.py │ │ │ ├── all_market_tickers_streams_response_inner.py │ │ │ ├── continuous_contract_kline_candlestick_streams_response.py │ │ │ ├── continuous_contract_kline_candlestick_streams_response_k.py │ │ │ ├── contract_info_stream_response.py │ │ │ ├── contract_info_stream_response_bks_inner.py │ │ │ ├── diff_book_depth_streams_response.py │ │ │ ├── diff_book_depth_streams_response_a_item.py │ │ │ ├── diff_book_depth_streams_response_b_item.py │ │ │ ├── enums.py │ │ │ ├── grid_update.py │ │ │ ├── grid_update_gu.py │ │ │ ├── index_kline_candlestick_streams_response.py │ │ │ ├── index_kline_candlestick_streams_response_k.py │ │ │ ├── index_price_stream_response.py │ │ │ ├── individual_symbol_book_ticker_streams_response.py │ │ │ ├── individual_symbol_mini_ticker_stream_response.py │ │ │ ├── individual_symbol_ticker_streams_response.py │ │ │ ├── kline_candlestick_streams_response.py │ │ │ ├── kline_candlestick_streams_response_k.py │ │ │ ├── liquidation_order_streams_response.py │ │ │ ├── listenkeyexpired.py │ │ │ ├── margin_call.py │ │ │ ├── margin_call_p_inner.py │ │ │ ├── mark_price_kline_candlestick_streams_response.py │ │ │ ├── mark_price_kline_candlestick_streams_response_k.py │ │ │ ├── mark_price_of_all_symbols_of_a_pair_response.py │ │ │ ├── mark_price_of_all_symbols_of_a_pair_response_inner.py │ │ │ ├── mark_price_stream_response.py │ │ │ ├── order_trade_update.py │ │ │ ├── order_trade_update_o.py │ │ │ ├── partial_book_depth_streams_response.py │ │ │ ├── partial_book_depth_streams_response_a_item.py │ │ │ ├── partial_book_depth_streams_response_b_item.py │ │ │ ├── strategy_update.py │ │ │ ├── strategy_update_su.py │ │ │ └── user_data_stream_events_response.py │ │ │ ├── streams │ │ │ ├── __init__.py │ │ │ └── websocket_market_streams_api.py │ │ │ └── websocket_streams.py │ ├── tests │ │ └── unit │ │ │ ├── rest_api │ │ │ ├── test_account_api.py │ │ │ ├── test_market_data_api.py │ │ │ ├── test_portfolio_margin_endpoints_api.py │ │ │ ├── test_trade_api.py │ │ │ └── test_user_data_streams_api.py │ │ │ ├── websocket_api │ │ │ ├── test_account_api_ws_api.py │ │ │ ├── test_trade_api_ws_api.py │ │ │ └── test_user_data_streams_api_ws_api.py │ │ │ └── websocket_streams │ │ │ └── test_websocket_market_streams_api_ws_streams.py │ └── tox.ini ├── derivatives_trading_options │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENCE │ ├── README.md │ ├── docs │ │ ├── rest_api │ │ │ ├── certificate-pinning.md │ │ │ ├── compression.md │ │ │ ├── error-handling.md │ │ │ ├── httpsAgent.md │ │ │ ├── keepAlive.md │ │ │ ├── key-pair-authentication.md │ │ │ ├── proxy.md │ │ │ ├── retries.md │ │ │ └── timeout.md │ │ └── websocket_streams │ │ │ ├── agent.md │ │ │ ├── compression.md │ │ │ ├── connection-mode.md │ │ │ └── reconnect-delay.md │ ├── examples │ │ ├── rest_api │ │ │ ├── Account │ │ │ │ ├── account_funding_flow.py │ │ │ │ ├── get_download_id_for_option_transaction_history.py │ │ │ │ ├── get_option_transaction_history_download_link_by_id.py │ │ │ │ ├── option_account_information.py │ │ │ │ └── option_margin_account_information.py │ │ │ ├── MarketData │ │ │ │ ├── check_server_time.py │ │ │ │ ├── exchange_information.py │ │ │ │ ├── historical_exercise_records.py │ │ │ │ ├── index_price_ticker.py │ │ │ │ ├── kline_candlestick_data.py │ │ │ │ ├── old_trades_lookup.py │ │ │ │ ├── open_interest.py │ │ │ │ ├── option_mark_price.py │ │ │ │ ├── order_book.py │ │ │ │ ├── recent_block_trades_list.py │ │ │ │ ├── recent_trades_list.py │ │ │ │ ├── test_connectivity.py │ │ │ │ └── ticker24hr_price_change_statistics.py │ │ │ ├── MarketMakerBlockTrade │ │ │ │ ├── accept_block_trade_order.py │ │ │ │ ├── account_block_trade_list.py │ │ │ │ ├── cancel_block_trade_order.py │ │ │ │ ├── extend_block_trade_order.py │ │ │ │ ├── new_block_trade_order.py │ │ │ │ ├── query_block_trade_details.py │ │ │ │ └── query_block_trade_order.py │ │ │ ├── MarketMakerEndpoints │ │ │ │ ├── auto_cancel_all_open_orders.py │ │ │ │ ├── get_auto_cancel_all_open_orders.py │ │ │ │ ├── get_market_maker_protection_config.py │ │ │ │ ├── reset_market_maker_protection_config.py │ │ │ │ ├── set_auto_cancel_all_open_orders.py │ │ │ │ └── set_market_maker_protection_config.py │ │ │ ├── Trade │ │ │ │ ├── account_trade_list.py │ │ │ │ ├── cancel_all_option_orders_by_underlying.py │ │ │ │ ├── cancel_all_option_orders_on_specific_symbol.py │ │ │ │ ├── cancel_multiple_option_orders.py │ │ │ │ ├── cancel_option_order.py │ │ │ │ ├── new_order.py │ │ │ │ ├── option_position_information.py │ │ │ │ ├── place_multiple_orders.py │ │ │ │ ├── query_current_open_option_orders.py │ │ │ │ ├── query_option_order_history.py │ │ │ │ ├── query_single_order.py │ │ │ │ └── user_exercise_record.py │ │ │ └── UserDataStreams │ │ │ │ ├── close_user_data_stream.py │ │ │ │ ├── keepalive_user_data_stream.py │ │ │ │ └── start_user_data_stream.py │ │ └── websocket_streams │ │ │ ├── index_price_streams.py │ │ │ ├── kline_candlestick_streams.py │ │ │ ├── mark_price.py │ │ │ ├── new_symbol_info.py │ │ │ ├── open_interest.py │ │ │ ├── partial_book_depth_streams.py │ │ │ ├── ticker24_hour.py │ │ │ ├── ticker24_hour_by_underlying_asset_and_expiration_data.py │ │ │ └── trade_streams.py │ ├── pyproject.toml │ ├── src │ │ └── binance_sdk_derivatives_trading_options │ │ │ ├── __init__.py │ │ │ ├── derivatives_trading_options.py │ │ │ ├── metadata.py │ │ │ ├── rest_api │ │ │ ├── __init__.py │ │ │ ├── api │ │ │ │ ├── __init__.py │ │ │ │ ├── account_api.py │ │ │ │ ├── market_data_api.py │ │ │ │ ├── market_maker_block_trade_api.py │ │ │ │ ├── market_maker_endpoints_api.py │ │ │ │ ├── trade_api.py │ │ │ │ └── user_data_streams_api.py │ │ │ ├── models │ │ │ │ ├── __init__.py │ │ │ │ ├── accept_block_trade_order_response.py │ │ │ │ ├── accept_block_trade_order_response_legs_inner.py │ │ │ │ ├── account_block_trade_list_response.py │ │ │ │ ├── account_block_trade_list_response_inner.py │ │ │ │ ├── account_block_trade_list_response_inner_legs_inner.py │ │ │ │ ├── account_funding_flow_response.py │ │ │ │ ├── account_funding_flow_response_inner.py │ │ │ │ ├── account_trade_list_response.py │ │ │ │ ├── account_trade_list_response_inner.py │ │ │ │ ├── auto_cancel_all_open_orders_response.py │ │ │ │ ├── cancel_all_option_orders_by_underlying_response.py │ │ │ │ ├── cancel_all_option_orders_on_specific_symbol_response.py │ │ │ │ ├── cancel_multiple_option_orders_response.py │ │ │ │ ├── cancel_multiple_option_orders_response_inner.py │ │ │ │ ├── cancel_option_order_response.py │ │ │ │ ├── check_server_time_response.py │ │ │ │ ├── enums.py │ │ │ │ ├── exchange_information_response.py │ │ │ │ ├── exchange_information_response_option_assets_inner.py │ │ │ │ ├── exchange_information_response_option_contracts_inner.py │ │ │ │ ├── exchange_information_response_option_symbols_inner.py │ │ │ │ ├── exchange_information_response_option_symbols_inner_filters_inner.py │ │ │ │ ├── exchange_information_response_rate_limits_inner.py │ │ │ │ ├── extend_block_trade_order_response.py │ │ │ │ ├── extend_block_trade_order_response_legs_inner.py │ │ │ │ ├── get_auto_cancel_all_open_orders_response.py │ │ │ │ ├── get_download_id_for_option_transaction_history_response.py │ │ │ │ ├── get_market_maker_protection_config_response.py │ │ │ │ ├── get_option_transaction_history_download_link_by_id_response.py │ │ │ │ ├── historical_exercise_records_response.py │ │ │ │ ├── historical_exercise_records_response_inner.py │ │ │ │ ├── index_price_ticker_response.py │ │ │ │ ├── kline_candlestick_data_response.py │ │ │ │ ├── kline_candlestick_data_response_inner.py │ │ │ │ ├── new_block_trade_order_response.py │ │ │ │ ├── new_order_response.py │ │ │ │ ├── old_trades_lookup_response.py │ │ │ │ ├── old_trades_lookup_response_inner.py │ │ │ │ ├── open_interest_response.py │ │ │ │ ├── open_interest_response_inner.py │ │ │ │ ├── option_account_information_response.py │ │ │ │ ├── option_account_information_response_asset_inner.py │ │ │ │ ├── option_account_information_response_greek_inner.py │ │ │ │ ├── option_margin_account_information_response.py │ │ │ │ ├── option_margin_account_information_response_asset_inner.py │ │ │ │ ├── option_mark_price_response.py │ │ │ │ ├── option_mark_price_response_inner.py │ │ │ │ ├── option_position_information_response.py │ │ │ │ ├── option_position_information_response_inner.py │ │ │ │ ├── order_book_response.py │ │ │ │ ├── order_book_response_asks_item.py │ │ │ │ ├── order_book_response_bids_item.py │ │ │ │ ├── place_multiple_orders_orders_parameter_inner.py │ │ │ │ ├── place_multiple_orders_response.py │ │ │ │ ├── place_multiple_orders_response_inner.py │ │ │ │ ├── query_block_trade_details_response.py │ │ │ │ ├── query_block_trade_details_response_legs_inner.py │ │ │ │ ├── query_block_trade_order_response.py │ │ │ │ ├── query_block_trade_order_response_inner.py │ │ │ │ ├── query_current_open_option_orders_response.py │ │ │ │ ├── query_current_open_option_orders_response_inner.py │ │ │ │ ├── query_option_order_history_response.py │ │ │ │ ├── query_option_order_history_response_inner.py │ │ │ │ ├── query_single_order_response.py │ │ │ │ ├── recent_block_trades_list_response.py │ │ │ │ ├── recent_block_trades_list_response_inner.py │ │ │ │ ├── recent_trades_list_response.py │ │ │ │ ├── recent_trades_list_response_inner.py │ │ │ │ ├── reset_market_maker_protection_config_response.py │ │ │ │ ├── set_auto_cancel_all_open_orders_response.py │ │ │ │ ├── set_market_maker_protection_config_response.py │ │ │ │ ├── start_user_data_stream_response.py │ │ │ │ ├── ticker24hr_price_change_statistics_response.py │ │ │ │ ├── ticker24hr_price_change_statistics_response_inner.py │ │ │ │ ├── user_exercise_record_response.py │ │ │ │ └── user_exercise_record_response_inner.py │ │ │ └── rest_api.py │ │ │ └── websocket_streams │ │ │ ├── __init__.py │ │ │ ├── models │ │ │ ├── __init__.py │ │ │ ├── account_update.py │ │ │ ├── account_update_b_inner.py │ │ │ ├── account_update_g_inner.py │ │ │ ├── account_update_p_inner.py │ │ │ ├── enums.py │ │ │ ├── index_price_streams_response.py │ │ │ ├── kline_candlestick_streams_response.py │ │ │ ├── kline_candlestick_streams_response_k.py │ │ │ ├── mark_price_response.py │ │ │ ├── mark_price_response_inner.py │ │ │ ├── new_symbol_info_response.py │ │ │ ├── open_interest_response.py │ │ │ ├── open_interest_response_inner.py │ │ │ ├── order_trade_update.py │ │ │ ├── order_trade_update_o_inner.py │ │ │ ├── order_trade_update_o_inner_fi_inner.py │ │ │ ├── partial_book_depth_streams_response.py │ │ │ ├── partial_book_depth_streams_response_a_item.py │ │ │ ├── partial_book_depth_streams_response_b_item.py │ │ │ ├── risk_level_change.py │ │ │ ├── ticker24_hour_by_underlying_asset_and_expiration_data_response.py │ │ │ ├── ticker24_hour_by_underlying_asset_and_expiration_data_response_inner.py │ │ │ ├── ticker24_hour_response.py │ │ │ ├── trade_streams_response.py │ │ │ └── user_data_stream_events_response.py │ │ │ ├── streams │ │ │ ├── __init__.py │ │ │ └── websocket_market_streams_api.py │ │ │ └── websocket_streams.py │ ├── tests │ │ └── unit │ │ │ ├── rest_api │ │ │ ├── test_account_api.py │ │ │ ├── test_market_data_api.py │ │ │ ├── test_market_maker_block_trade_api.py │ │ │ ├── test_market_maker_endpoints_api.py │ │ │ ├── test_trade_api.py │ │ │ └── test_user_data_streams_api.py │ │ │ └── websocket_streams │ │ │ └── test_websocket_market_streams_api_ws_streams.py │ └── tox.ini ├── derivatives_trading_portfolio_margin │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENCE │ ├── README.md │ ├── docs │ │ └── rest_api │ │ │ ├── certificate-pinning.md │ │ │ ├── compression.md │ │ │ ├── error-handling.md │ │ │ ├── httpsAgent.md │ │ │ ├── keepAlive.md │ │ │ ├── key-pair-authentication.md │ │ │ ├── proxy.md │ │ │ ├── retries.md │ │ │ └── timeout.md │ ├── examples │ │ └── rest_api │ │ │ ├── Account │ │ │ ├── account_balance.py │ │ │ ├── account_information.py │ │ │ ├── bnb_transfer.py │ │ │ ├── change_auto_repay_futures_status.py │ │ │ ├── change_cm_initial_leverage.py │ │ │ ├── change_cm_position_mode.py │ │ │ ├── change_um_initial_leverage.py │ │ │ ├── change_um_position_mode.py │ │ │ ├── cm_notional_and_leverage_brackets.py │ │ │ ├── fund_auto_collection.py │ │ │ ├── fund_collection_by_asset.py │ │ │ ├── get_auto_repay_futures_status.py │ │ │ ├── get_cm_account_detail.py │ │ │ ├── get_cm_current_position_mode.py │ │ │ ├── get_cm_income_history.py │ │ │ ├── get_download_id_for_um_futures_order_history.py │ │ │ ├── get_download_id_for_um_futures_trade_history.py │ │ │ ├── get_download_id_for_um_futures_transaction_history.py │ │ │ ├── get_margin_borrow_loan_interest_history.py │ │ │ ├── get_um_account_detail.py │ │ │ ├── get_um_account_detail_v2.py │ │ │ ├── get_um_current_position_mode.py │ │ │ ├── get_um_futures_order_download_link_by_id.py │ │ │ ├── get_um_futures_trade_download_link_by_id.py │ │ │ ├── get_um_futures_transaction_download_link_by_id.py │ │ │ ├── get_um_income_history.py │ │ │ ├── get_user_commission_rate_for_cm.py │ │ │ ├── get_user_commission_rate_for_um.py │ │ │ ├── margin_max_borrow.py │ │ │ ├── portfolio_margin_um_trading_quantitative_rules_indicators.py │ │ │ ├── query_cm_position_information.py │ │ │ ├── query_margin_loan_record.py │ │ │ ├── query_margin_max_withdraw.py │ │ │ ├── query_margin_repay_record.py │ │ │ ├── query_portfolio_margin_negative_balance_interest_history.py │ │ │ ├── query_um_position_information.py │ │ │ ├── query_user_negative_balance_auto_exchange_record.py │ │ │ ├── query_user_rate_limit.py │ │ │ ├── repay_futures_negative_balance.py │ │ │ ├── um_futures_account_configuration.py │ │ │ ├── um_futures_symbol_configuration.py │ │ │ └── um_notional_and_leverage_brackets.py │ │ │ ├── MarketData │ │ │ └── test_connectivity.py │ │ │ ├── Trade │ │ │ ├── cancel_all_cm_open_conditional_orders.py │ │ │ ├── cancel_all_cm_open_orders.py │ │ │ ├── cancel_all_um_open_conditional_orders.py │ │ │ ├── cancel_all_um_open_orders.py │ │ │ ├── cancel_cm_conditional_order.py │ │ │ ├── cancel_cm_order.py │ │ │ ├── cancel_margin_account_all_open_orders_on_a_symbol.py │ │ │ ├── cancel_margin_account_oco_orders.py │ │ │ ├── cancel_margin_account_order.py │ │ │ ├── cancel_um_conditional_order.py │ │ │ ├── cancel_um_order.py │ │ │ ├── cm_account_trade_list.py │ │ │ ├── cm_position_adl_quantile_estimation.py │ │ │ ├── get_um_futures_bnb_burn_status.py │ │ │ ├── margin_account_borrow.py │ │ │ ├── margin_account_new_oco.py │ │ │ ├── margin_account_repay.py │ │ │ ├── margin_account_repay_debt.py │ │ │ ├── margin_account_trade_list.py │ │ │ ├── modify_cm_order.py │ │ │ ├── modify_um_order.py │ │ │ ├── new_cm_conditional_order.py │ │ │ ├── new_cm_order.py │ │ │ ├── new_margin_order.py │ │ │ ├── new_um_conditional_order.py │ │ │ ├── new_um_order.py │ │ │ ├── query_all_cm_conditional_orders.py │ │ │ ├── query_all_cm_orders.py │ │ │ ├── query_all_current_cm_open_conditional_orders.py │ │ │ ├── query_all_current_cm_open_orders.py │ │ │ ├── query_all_current_um_open_conditional_orders.py │ │ │ ├── query_all_current_um_open_orders.py │ │ │ ├── query_all_margin_account_orders.py │ │ │ ├── query_all_um_conditional_orders.py │ │ │ ├── query_all_um_orders.py │ │ │ ├── query_cm_conditional_order_history.py │ │ │ ├── query_cm_modify_order_history.py │ │ │ ├── query_cm_order.py │ │ │ ├── query_current_cm_open_conditional_order.py │ │ │ ├── query_current_cm_open_order.py │ │ │ ├── query_current_margin_open_order.py │ │ │ ├── query_current_um_open_conditional_order.py │ │ │ ├── query_current_um_open_order.py │ │ │ ├── query_margin_account_order.py │ │ │ ├── query_margin_accounts_all_oco.py │ │ │ ├── query_margin_accounts_oco.py │ │ │ ├── query_margin_accounts_open_oco.py │ │ │ ├── query_um_conditional_order_history.py │ │ │ ├── query_um_modify_order_history.py │ │ │ ├── query_um_order.py │ │ │ ├── query_users_cm_force_orders.py │ │ │ ├── query_users_margin_force_orders.py │ │ │ ├── query_users_um_force_orders.py │ │ │ ├── toggle_bnb_burn_on_um_futures_trade.py │ │ │ ├── um_account_trade_list.py │ │ │ └── um_position_adl_quantile_estimation.py │ │ │ └── UserDataStreams │ │ │ ├── close_user_data_stream.py │ │ │ ├── keepalive_user_data_stream.py │ │ │ └── start_user_data_stream.py │ ├── pyproject.toml │ ├── src │ │ └── binance_sdk_derivatives_trading_portfolio_margin │ │ │ ├── __init__.py │ │ │ ├── derivatives_trading_portfolio_margin.py │ │ │ ├── metadata.py │ │ │ ├── rest_api │ │ │ ├── __init__.py │ │ │ ├── api │ │ │ │ ├── __init__.py │ │ │ │ ├── account_api.py │ │ │ │ ├── market_data_api.py │ │ │ │ ├── trade_api.py │ │ │ │ └── user_data_streams_api.py │ │ │ ├── models │ │ │ │ ├── __init__.py │ │ │ │ ├── account_balance_response.py │ │ │ │ ├── account_balance_response1.py │ │ │ │ ├── account_balance_response1_inner.py │ │ │ │ ├── account_balance_response2.py │ │ │ │ ├── account_information_response.py │ │ │ │ ├── bnb_transfer_response.py │ │ │ │ ├── cancel_all_cm_open_conditional_orders_response.py │ │ │ │ ├── cancel_all_cm_open_orders_response.py │ │ │ │ ├── cancel_all_um_open_conditional_orders_response.py │ │ │ │ ├── cancel_all_um_open_orders_response.py │ │ │ │ ├── cancel_cm_conditional_order_response.py │ │ │ │ ├── cancel_cm_order_response.py │ │ │ │ ├── cancel_margin_account_all_open_orders_on_a_symbol_response.py │ │ │ │ ├── cancel_margin_account_all_open_orders_on_a_symbol_response_inner.py │ │ │ │ ├── cancel_margin_account_all_open_orders_on_a_symbol_response_inner_order_reports_inner.py │ │ │ │ ├── cancel_margin_account_all_open_orders_on_a_symbol_response_inner_orders_inner.py │ │ │ │ ├── cancel_margin_account_oco_orders_response.py │ │ │ │ ├── cancel_margin_account_oco_orders_response_order_reports_inner.py │ │ │ │ ├── cancel_margin_account_oco_orders_response_orders_inner.py │ │ │ │ ├── cancel_margin_account_order_response.py │ │ │ │ ├── cancel_um_conditional_order_response.py │ │ │ │ ├── cancel_um_order_response.py │ │ │ │ ├── change_auto_repay_futures_status_response.py │ │ │ │ ├── change_cm_initial_leverage_response.py │ │ │ │ ├── change_cm_position_mode_response.py │ │ │ │ ├── change_um_initial_leverage_response.py │ │ │ │ ├── change_um_position_mode_response.py │ │ │ │ ├── cm_account_trade_list_response.py │ │ │ │ ├── cm_account_trade_list_response_inner.py │ │ │ │ ├── cm_notional_and_leverage_brackets_response.py │ │ │ │ ├── cm_notional_and_leverage_brackets_response_inner.py │ │ │ │ ├── cm_notional_and_leverage_brackets_response_inner_brackets_inner.py │ │ │ │ ├── cm_position_adl_quantile_estimation_response.py │ │ │ │ ├── cm_position_adl_quantile_estimation_response_inner.py │ │ │ │ ├── cm_position_adl_quantile_estimation_response_inner_adl_quantile.py │ │ │ │ ├── enums.py │ │ │ │ ├── fund_auto_collection_response.py │ │ │ │ ├── fund_collection_by_asset_response.py │ │ │ │ ├── get_auto_repay_futures_status_response.py │ │ │ │ ├── get_cm_account_detail_response.py │ │ │ │ ├── get_cm_account_detail_response_assets_inner.py │ │ │ │ ├── get_cm_account_detail_response_positions_inner.py │ │ │ │ ├── get_cm_current_position_mode_response.py │ │ │ │ ├── get_cm_income_history_response.py │ │ │ │ ├── get_cm_income_history_response_inner.py │ │ │ │ ├── get_download_id_for_um_futures_order_history_response.py │ │ │ │ ├── get_download_id_for_um_futures_trade_history_response.py │ │ │ │ ├── get_download_id_for_um_futures_transaction_history_response.py │ │ │ │ ├── get_margin_borrow_loan_interest_history_response.py │ │ │ │ ├── get_margin_borrow_loan_interest_history_response_rows_inner.py │ │ │ │ ├── get_um_account_detail_response.py │ │ │ │ ├── get_um_account_detail_response_positions_inner.py │ │ │ │ ├── get_um_account_detail_v2_response.py │ │ │ │ ├── get_um_account_detail_v2_response_assets_inner.py │ │ │ │ ├── get_um_account_detail_v2_response_positions_inner.py │ │ │ │ ├── get_um_current_position_mode_response.py │ │ │ │ ├── get_um_futures_bnb_burn_status_response.py │ │ │ │ ├── get_um_futures_order_download_link_by_id_response.py │ │ │ │ ├── get_um_futures_trade_download_link_by_id_response.py │ │ │ │ ├── get_um_futures_transaction_download_link_by_id_response.py │ │ │ │ ├── get_um_income_history_response.py │ │ │ │ ├── get_um_income_history_response_inner.py │ │ │ │ ├── get_user_commission_rate_for_cm_response.py │ │ │ │ ├── get_user_commission_rate_for_um_response.py │ │ │ │ ├── margin_account_borrow_response.py │ │ │ │ ├── margin_account_new_oco_response.py │ │ │ │ ├── margin_account_new_oco_response_order_reports_inner.py │ │ │ │ ├── margin_account_new_oco_response_orders_inner.py │ │ │ │ ├── margin_account_repay_debt_response.py │ │ │ │ ├── margin_account_repay_response.py │ │ │ │ ├── margin_account_trade_list_response.py │ │ │ │ ├── margin_account_trade_list_response_inner.py │ │ │ │ ├── margin_max_borrow_response.py │ │ │ │ ├── modify_cm_order_response.py │ │ │ │ ├── modify_um_order_response.py │ │ │ │ ├── new_cm_conditional_order_response.py │ │ │ │ ├── new_cm_order_response.py │ │ │ │ ├── new_margin_order_response.py │ │ │ │ ├── new_margin_order_response_fills_inner.py │ │ │ │ ├── new_um_conditional_order_response.py │ │ │ │ ├── new_um_order_response.py │ │ │ │ ├── portfolio_margin_um_trading_quantitative_rules_indicators_response.py │ │ │ │ ├── portfolio_margin_um_trading_quantitative_rules_indicators_response_indicators.py │ │ │ │ ├── portfolio_margin_um_trading_quantitative_rules_indicators_response_indicators_account_inner.py │ │ │ │ ├── portfolio_margin_um_trading_quantitative_rules_indicators_response_indicators_btcusdt_inner.py │ │ │ │ ├── query_all_cm_conditional_orders_response.py │ │ │ │ ├── query_all_cm_conditional_orders_response_inner.py │ │ │ │ ├── query_all_cm_orders_response.py │ │ │ │ ├── query_all_cm_orders_response_inner.py │ │ │ │ ├── query_all_current_cm_open_conditional_orders_response.py │ │ │ │ ├── query_all_current_cm_open_conditional_orders_response_inner.py │ │ │ │ ├── query_all_current_cm_open_orders_response.py │ │ │ │ ├── query_all_current_um_open_conditional_orders_response.py │ │ │ │ ├── query_all_current_um_open_conditional_orders_response_inner.py │ │ │ │ ├── query_all_current_um_open_orders_response.py │ │ │ │ ├── query_all_current_um_open_orders_response_inner.py │ │ │ │ ├── query_all_margin_account_orders_response.py │ │ │ │ ├── query_all_margin_account_orders_response_inner.py │ │ │ │ ├── query_all_um_conditional_orders_response.py │ │ │ │ ├── query_all_um_conditional_orders_response_inner.py │ │ │ │ ├── query_all_um_orders_response.py │ │ │ │ ├── query_cm_conditional_order_history_response.py │ │ │ │ ├── query_cm_modify_order_history_response.py │ │ │ │ ├── query_cm_modify_order_history_response_inner.py │ │ │ │ ├── query_cm_modify_order_history_response_inner_amendment.py │ │ │ │ ├── query_cm_modify_order_history_response_inner_amendment_orig_qty.py │ │ │ │ ├── query_cm_modify_order_history_response_inner_amendment_price.py │ │ │ │ ├── query_cm_order_response.py │ │ │ │ ├── query_cm_position_information_response.py │ │ │ │ ├── query_cm_position_information_response_inner.py │ │ │ │ ├── query_current_cm_open_conditional_order_response.py │ │ │ │ ├── query_current_cm_open_order_response.py │ │ │ │ ├── query_current_margin_open_order_response.py │ │ │ │ ├── query_current_margin_open_order_response_inner.py │ │ │ │ ├── query_current_um_open_conditional_order_response.py │ │ │ │ ├── query_current_um_open_order_response.py │ │ │ │ ├── query_margin_account_order_response.py │ │ │ │ ├── query_margin_accounts_all_oco_response.py │ │ │ │ ├── query_margin_accounts_all_oco_response_inner.py │ │ │ │ ├── query_margin_accounts_all_oco_response_inner_orders_inner.py │ │ │ │ ├── query_margin_accounts_oco_response.py │ │ │ │ ├── query_margin_accounts_oco_response_orders_inner.py │ │ │ │ ├── query_margin_accounts_open_oco_response.py │ │ │ │ ├── query_margin_accounts_open_oco_response_inner.py │ │ │ │ ├── query_margin_accounts_open_oco_response_inner_orders_inner.py │ │ │ │ ├── query_margin_loan_record_response.py │ │ │ │ ├── query_margin_loan_record_response_rows_inner.py │ │ │ │ ├── query_margin_max_withdraw_response.py │ │ │ │ ├── query_margin_repay_record_response.py │ │ │ │ ├── query_margin_repay_record_response_rows_inner.py │ │ │ │ ├── query_portfolio_margin_negative_balance_interest_history_response.py │ │ │ │ ├── query_portfolio_margin_negative_balance_interest_history_response_inner.py │ │ │ │ ├── query_um_conditional_order_history_response.py │ │ │ │ ├── query_um_modify_order_history_response.py │ │ │ │ ├── query_um_modify_order_history_response_inner.py │ │ │ │ ├── query_um_order_response.py │ │ │ │ ├── query_um_position_information_response.py │ │ │ │ ├── query_um_position_information_response_inner.py │ │ │ │ ├── query_user_negative_balance_auto_exchange_record_response.py │ │ │ │ ├── query_user_negative_balance_auto_exchange_record_response_rows_inner.py │ │ │ │ ├── query_user_negative_balance_auto_exchange_record_response_rows_inner_details_inner.py │ │ │ │ ├── query_user_rate_limit_response.py │ │ │ │ ├── query_user_rate_limit_response_inner.py │ │ │ │ ├── query_users_cm_force_orders_response.py │ │ │ │ ├── query_users_cm_force_orders_response_inner.py │ │ │ │ ├── query_users_margin_force_orders_response.py │ │ │ │ ├── query_users_margin_force_orders_response_rows_inner.py │ │ │ │ ├── query_users_um_force_orders_response.py │ │ │ │ ├── query_users_um_force_orders_response_inner.py │ │ │ │ ├── repay_futures_negative_balance_response.py │ │ │ │ ├── start_user_data_stream_response.py │ │ │ │ ├── toggle_bnb_burn_on_um_futures_trade_response.py │ │ │ │ ├── um_account_trade_list_response.py │ │ │ │ ├── um_account_trade_list_response_inner.py │ │ │ │ ├── um_futures_account_configuration_response.py │ │ │ │ ├── um_futures_symbol_configuration_response.py │ │ │ │ ├── um_futures_symbol_configuration_response_inner.py │ │ │ │ ├── um_notional_and_leverage_brackets_response.py │ │ │ │ ├── um_notional_and_leverage_brackets_response_inner.py │ │ │ │ ├── um_notional_and_leverage_brackets_response_inner_brackets_inner.py │ │ │ │ ├── um_position_adl_quantile_estimation_response.py │ │ │ │ └── um_position_adl_quantile_estimation_response_inner.py │ │ │ └── rest_api.py │ │ │ └── websocket_streams │ │ │ ├── __init__.py │ │ │ ├── models │ │ │ ├── __init__.py │ │ │ ├── account_config_update.py │ │ │ ├── account_config_update_ac.py │ │ │ ├── account_update.py │ │ │ ├── account_update_a.py │ │ │ ├── account_update_ab_inner.py │ │ │ ├── account_update_ap_inner.py │ │ │ ├── balanceupdate.py │ │ │ ├── conditional_order_trade_update.py │ │ │ ├── conditional_order_trade_update_so.py │ │ │ ├── enums.py │ │ │ ├── executionreport.py │ │ │ ├── liabilitychange.py │ │ │ ├── listenkeyexpired.py │ │ │ ├── openorderloss.py │ │ │ ├── openorderloss_o_inner.py │ │ │ ├── order_trade_update.py │ │ │ ├── order_trade_update_o.py │ │ │ ├── outboundaccountposition.py │ │ │ ├── outboundaccountposition_b_inner.py │ │ │ ├── risklevelchange.py │ │ │ └── user_data_stream_events_response.py │ │ │ ├── streams │ │ │ └── __init__.py │ │ │ └── websocket_streams.py │ ├── tests │ │ └── unit │ │ │ └── rest_api │ │ │ ├── test_account_api.py │ │ │ ├── test_market_data_api.py │ │ │ ├── test_trade_api.py │ │ │ └── test_user_data_streams_api.py │ └── tox.ini ├── derivatives_trading_portfolio_margin_pro │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENCE │ ├── README.md │ ├── docs │ │ ├── migration_guide_derivatives_trading_portfolio_margin_pro_sdk.md │ │ └── rest_api │ │ │ ├── certificate-pinning.md │ │ │ ├── compression.md │ │ │ ├── error-handling.md │ │ │ ├── httpsAgent.md │ │ │ ├── keepAlive.md │ │ │ ├── key-pair-authentication.md │ │ │ ├── proxy.md │ │ │ ├── retries.md │ │ │ └── timeout.md │ ├── examples │ │ └── rest_api │ │ │ ├── Account │ │ │ ├── bnb_transfer.py │ │ │ ├── change_auto_repay_futures_status.py │ │ │ ├── fund_auto_collection.py │ │ │ ├── fund_collection_by_asset.py │ │ │ ├── get_auto_repay_futures_status.py │ │ │ ├── get_portfolio_margin_pro_account_balance.py │ │ │ ├── get_portfolio_margin_pro_account_info.py │ │ │ ├── get_portfolio_margin_pro_span_account_info.py │ │ │ ├── get_transferable_earn_asset_balance_for_portfolio_margin.py │ │ │ ├── portfolio_margin_pro_bankruptcy_loan_repay.py │ │ │ ├── query_portfolio_margin_pro_bankruptcy_loan_amount.py │ │ │ ├── query_portfolio_margin_pro_bankruptcy_loan_repay_history.py │ │ │ ├── query_portfolio_margin_pro_negative_balance_interest_history.py │ │ │ ├── repay_futures_negative_balance.py │ │ │ └── transfer_ldusdt_rwusd_for_portfolio_margin.py │ │ │ └── MarketData │ │ │ ├── get_portfolio_margin_asset_leverage.py │ │ │ ├── portfolio_margin_collateral_rate.py │ │ │ ├── portfolio_margin_pro_tiered_collateral_rate.py │ │ │ └── query_portfolio_margin_asset_index_price.py │ ├── pyproject.toml │ ├── src │ │ └── binance_sdk_derivatives_trading_portfolio_margin_pro │ │ │ ├── __init__.py │ │ │ ├── derivatives_trading_portfolio_margin_pro.py │ │ │ ├── metadata.py │ │ │ ├── rest_api │ │ │ ├── __init__.py │ │ │ ├── api │ │ │ │ ├── __init__.py │ │ │ │ ├── account_api.py │ │ │ │ └── market_data_api.py │ │ │ ├── models │ │ │ │ ├── __init__.py │ │ │ │ ├── bnb_transfer_response.py │ │ │ │ ├── change_auto_repay_futures_status_response.py │ │ │ │ ├── enums.py │ │ │ │ ├── fund_auto_collection_response.py │ │ │ │ ├── fund_collection_by_asset_response.py │ │ │ │ ├── get_auto_repay_futures_status_response.py │ │ │ │ ├── get_portfolio_margin_asset_leverage_response.py │ │ │ │ ├── get_portfolio_margin_asset_leverage_response_inner.py │ │ │ │ ├── get_portfolio_margin_pro_account_balance_response.py │ │ │ │ ├── get_portfolio_margin_pro_account_balance_response_inner.py │ │ │ │ ├── get_portfolio_margin_pro_account_info_response.py │ │ │ │ ├── get_portfolio_margin_pro_span_account_info_response.py │ │ │ │ ├── get_portfolio_margin_pro_span_account_info_response_risk_unit_mm_list_inner.py │ │ │ │ ├── get_transferable_earn_asset_balance_for_portfolio_margin_response.py │ │ │ │ ├── portfolio_margin_collateral_rate_response.py │ │ │ │ ├── portfolio_margin_collateral_rate_response_inner.py │ │ │ │ ├── portfolio_margin_pro_bankruptcy_loan_repay_response.py │ │ │ │ ├── portfolio_margin_pro_tiered_collateral_rate_response.py │ │ │ │ ├── portfolio_margin_pro_tiered_collateral_rate_response_inner.py │ │ │ │ ├── portfolio_margin_pro_tiered_collateral_rate_response_inner_collateral_info_inner.py │ │ │ │ ├── query_portfolio_margin_asset_index_price_response.py │ │ │ │ ├── query_portfolio_margin_asset_index_price_response_inner.py │ │ │ │ ├── query_portfolio_margin_pro_bankruptcy_loan_amount_response.py │ │ │ │ ├── query_portfolio_margin_pro_bankruptcy_loan_repay_history_response.py │ │ │ │ ├── query_portfolio_margin_pro_bankruptcy_loan_repay_history_response_rows_inner.py │ │ │ │ ├── query_portfolio_margin_pro_negative_balance_interest_history_response.py │ │ │ │ ├── query_portfolio_margin_pro_negative_balance_interest_history_response_inner.py │ │ │ │ ├── repay_futures_negative_balance_response.py │ │ │ │ └── transfer_ldusdt_rwusd_for_portfolio_margin_response.py │ │ │ └── rest_api.py │ │ │ └── websocket_streams │ │ │ ├── __init__.py │ │ │ ├── models │ │ │ ├── __init__.py │ │ │ ├── enums.py │ │ │ ├── risklevelchange.py │ │ │ └── user_data_stream_events_response.py │ │ │ ├── streams │ │ │ └── __init__.py │ │ │ └── websocket_streams.py │ ├── tests │ │ └── unit │ │ │ └── rest_api │ │ │ ├── test_account_api.py │ │ │ └── test_market_data_api.py │ └── tox.ini ├── derivatives_trading_usds_futures │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENCE │ ├── README.md │ ├── docs │ │ ├── migration_guide_derivatives_trading_usds_futures_sdk.md │ │ ├── rest_api │ │ │ ├── certificate-pinning.md │ │ │ ├── compression.md │ │ │ ├── error-handling.md │ │ │ ├── httpsAgent.md │ │ │ ├── keepAlive.md │ │ │ ├── key-pair-authentication.md │ │ │ ├── proxy.md │ │ │ ├── retries.md │ │ │ └── timeout.md │ │ ├── websocket_api │ │ │ ├── agent.md │ │ │ ├── compression.md │ │ │ ├── connection-mode.md │ │ │ ├── key-pair-authentication.md │ │ │ ├── proxy.md │ │ │ ├── reconnect-delay.md │ │ │ └── timeout.md │ │ └── websocket_streams │ │ │ ├── agent.md │ │ │ ├── compression.md │ │ │ ├── connection-mode.md │ │ │ ├── proxy.md │ │ │ └── reconnect-delay.md │ ├── examples │ │ ├── rest_api │ │ │ ├── Account │ │ │ │ ├── account_information_v2.py │ │ │ │ ├── account_information_v3.py │ │ │ │ ├── futures_account_balance_v2.py │ │ │ │ ├── futures_account_balance_v3.py │ │ │ │ ├── futures_account_configuration.py │ │ │ │ ├── futures_trading_quantitative_rules_indicators.py │ │ │ │ ├── get_bnb_burn_status.py │ │ │ │ ├── get_current_multi_assets_mode.py │ │ │ │ ├── get_current_position_mode.py │ │ │ │ ├── get_download_id_for_futures_order_history.py │ │ │ │ ├── get_download_id_for_futures_trade_history.py │ │ │ │ ├── get_download_id_for_futures_transaction_history.py │ │ │ │ ├── get_futures_order_history_download_link_by_id.py │ │ │ │ ├── get_futures_trade_download_link_by_id.py │ │ │ │ ├── get_futures_transaction_history_download_link_by_id.py │ │ │ │ ├── get_income_history.py │ │ │ │ ├── notional_and_leverage_brackets.py │ │ │ │ ├── query_user_rate_limit.py │ │ │ │ ├── symbol_configuration.py │ │ │ │ ├── toggle_bnb_burn_on_futures_trade.py │ │ │ │ └── user_commission_rate.py │ │ │ ├── Convert │ │ │ │ ├── accept_the_offered_quote.py │ │ │ │ ├── list_all_convert_pairs.py │ │ │ │ ├── order_status.py │ │ │ │ └── send_quote_request.py │ │ │ ├── MarketData │ │ │ │ ├── adl_risk.py │ │ │ │ ├── basis.py │ │ │ │ ├── check_server_time.py │ │ │ │ ├── composite_index_symbol_information.py │ │ │ │ ├── compressed_aggregate_trades_list.py │ │ │ │ ├── continuous_contract_kline_candlestick_data.py │ │ │ │ ├── exchange_information.py │ │ │ │ ├── get_funding_rate_history.py │ │ │ │ ├── get_funding_rate_info.py │ │ │ │ ├── index_price_kline_candlestick_data.py │ │ │ │ ├── kline_candlestick_data.py │ │ │ │ ├── long_short_ratio.py │ │ │ │ ├── mark_price.py │ │ │ │ ├── mark_price_kline_candlestick_data.py │ │ │ │ ├── multi_assets_mode_asset_index.py │ │ │ │ ├── old_trades_lookup.py │ │ │ │ ├── open_interest.py │ │ │ │ ├── open_interest_statistics.py │ │ │ │ ├── order_book.py │ │ │ │ ├── premium_index_kline_data.py │ │ │ │ ├── quarterly_contract_settlement_price.py │ │ │ │ ├── query_index_price_constituents.py │ │ │ │ ├── query_insurance_fund_balance_snapshot.py │ │ │ │ ├── recent_trades_list.py │ │ │ │ ├── symbol_order_book_ticker.py │ │ │ │ ├── symbol_price_ticker.py │ │ │ │ ├── symbol_price_ticker_v2.py │ │ │ │ ├── taker_buy_sell_volume.py │ │ │ │ ├── test_connectivity.py │ │ │ │ ├── ticker24hr_price_change_statistics.py │ │ │ │ ├── top_trader_long_short_ratio_accounts.py │ │ │ │ └── top_trader_long_short_ratio_positions.py │ │ │ ├── PortfolioMarginEndpoints │ │ │ │ └── classic_portfolio_margin_account_information.py │ │ │ ├── Trade │ │ │ │ ├── account_trade_list.py │ │ │ │ ├── all_orders.py │ │ │ │ ├── auto_cancel_all_open_orders.py │ │ │ │ ├── cancel_algo_order.py │ │ │ │ ├── cancel_all_algo_open_orders.py │ │ │ │ ├── cancel_all_open_orders.py │ │ │ │ ├── cancel_multiple_orders.py │ │ │ │ ├── cancel_order.py │ │ │ │ ├── change_initial_leverage.py │ │ │ │ ├── change_margin_type.py │ │ │ │ ├── change_multi_assets_mode.py │ │ │ │ ├── change_position_mode.py │ │ │ │ ├── current_all_algo_open_orders.py │ │ │ │ ├── current_all_open_orders.py │ │ │ │ ├── get_order_modify_history.py │ │ │ │ ├── get_position_margin_change_history.py │ │ │ │ ├── modify_isolated_position_margin.py │ │ │ │ ├── modify_multiple_orders.py │ │ │ │ ├── modify_order.py │ │ │ │ ├── new_algo_order.py │ │ │ │ ├── new_order.py │ │ │ │ ├── place_multiple_orders.py │ │ │ │ ├── position_adl_quantile_estimation.py │ │ │ │ ├── position_information_v2.py │ │ │ │ ├── position_information_v3.py │ │ │ │ ├── query_algo_order.py │ │ │ │ ├── query_all_algo_orders.py │ │ │ │ ├── query_current_open_order.py │ │ │ │ ├── query_order.py │ │ │ │ ├── test_order.py │ │ │ │ └── users_force_orders.py │ │ │ └── UserDataStreams │ │ │ │ ├── close_user_data_stream.py │ │ │ │ ├── keepalive_user_data_stream.py │ │ │ │ └── start_user_data_stream.py │ │ ├── websocket_api │ │ │ ├── Account │ │ │ │ ├── account_information.py │ │ │ │ ├── account_information_v2.py │ │ │ │ ├── futures_account_balance.py │ │ │ │ └── futures_account_balance_v2.py │ │ │ ├── MarketData │ │ │ │ ├── order_book.py │ │ │ │ ├── symbol_order_book_ticker.py │ │ │ │ └── symbol_price_ticker.py │ │ │ ├── Trade │ │ │ │ ├── cancel_algo_order.py │ │ │ │ ├── cancel_order.py │ │ │ │ ├── modify_order.py │ │ │ │ ├── new_algo_order.py │ │ │ │ ├── new_order.py │ │ │ │ ├── position_information.py │ │ │ │ ├── position_information_v2.py │ │ │ │ └── query_order.py │ │ │ └── UserDataStreams │ │ │ │ ├── close_user_data_stream.py │ │ │ │ ├── keepalive_user_data_stream.py │ │ │ │ └── start_user_data_stream.py │ │ └── websocket_streams │ │ │ ├── aggregate_trade_streams.py │ │ │ ├── all_book_tickers_stream.py │ │ │ ├── all_market_liquidation_order_streams.py │ │ │ ├── all_market_mini_tickers_stream.py │ │ │ ├── all_market_tickers_streams.py │ │ │ ├── composite_index_symbol_information_streams.py │ │ │ ├── continuous_contract_kline_candlestick_streams.py │ │ │ ├── contract_info_stream.py │ │ │ ├── diff_book_depth_streams.py │ │ │ ├── individual_symbol_book_ticker_streams.py │ │ │ ├── individual_symbol_mini_ticker_stream.py │ │ │ ├── individual_symbol_ticker_streams.py │ │ │ ├── kline_candlestick_streams.py │ │ │ ├── liquidation_order_streams.py │ │ │ ├── mark_price_stream.py │ │ │ ├── mark_price_stream_for_all_market.py │ │ │ ├── multi_assets_mode_asset_index.py │ │ │ └── partial_book_depth_streams.py │ ├── pyproject.toml │ ├── src │ │ └── binance_sdk_derivatives_trading_usds_futures │ │ │ ├── __init__.py │ │ │ ├── derivatives_trading_usds_futures.py │ │ │ ├── metadata.py │ │ │ ├── rest_api │ │ │ ├── __init__.py │ │ │ ├── api │ │ │ │ ├── __init__.py │ │ │ │ ├── account_api.py │ │ │ │ ├── convert_api.py │ │ │ │ ├── market_data_api.py │ │ │ │ ├── portfolio_margin_endpoints_api.py │ │ │ │ ├── trade_api.py │ │ │ │ └── user_data_streams_api.py │ │ │ ├── models │ │ │ │ ├── __init__.py │ │ │ │ ├── accept_the_offered_quote_response.py │ │ │ │ ├── account_information_v2_response.py │ │ │ │ ├── account_information_v2_response_assets_inner.py │ │ │ │ ├── account_information_v2_response_positions_inner.py │ │ │ │ ├── account_information_v3_response.py │ │ │ │ ├── account_information_v3_response_assets_inner.py │ │ │ │ ├── account_information_v3_response_positions_inner.py │ │ │ │ ├── account_trade_list_response.py │ │ │ │ ├── account_trade_list_response_inner.py │ │ │ │ ├── adl_risk_response.py │ │ │ │ ├── adl_risk_response1.py │ │ │ │ ├── adl_risk_response2.py │ │ │ │ ├── adl_risk_response2_inner.py │ │ │ │ ├── all_orders_response.py │ │ │ │ ├── all_orders_response_inner.py │ │ │ │ ├── auto_cancel_all_open_orders_response.py │ │ │ │ ├── basis_response.py │ │ │ │ ├── basis_response_inner.py │ │ │ │ ├── cancel_algo_order_response.py │ │ │ │ ├── cancel_all_algo_open_orders_response.py │ │ │ │ ├── cancel_all_open_orders_response.py │ │ │ │ ├── cancel_multiple_orders_response.py │ │ │ │ ├── cancel_multiple_orders_response_inner.py │ │ │ │ ├── cancel_order_response.py │ │ │ │ ├── change_initial_leverage_response.py │ │ │ │ ├── change_margin_type_response.py │ │ │ │ ├── change_multi_assets_mode_response.py │ │ │ │ ├── change_position_mode_response.py │ │ │ │ ├── check_server_time_response.py │ │ │ │ ├── classic_portfolio_margin_account_information_response.py │ │ │ │ ├── composite_index_symbol_information_response.py │ │ │ │ ├── composite_index_symbol_information_response_inner.py │ │ │ │ ├── composite_index_symbol_information_response_inner_base_asset_list_inner.py │ │ │ │ ├── compressed_aggregate_trades_list_response.py │ │ │ │ ├── compressed_aggregate_trades_list_response_inner.py │ │ │ │ ├── continuous_contract_kline_candlestick_data_response.py │ │ │ │ ├── continuous_contract_kline_candlestick_data_response_item.py │ │ │ │ ├── continuous_contract_kline_candlestick_data_response_item_inner.py │ │ │ │ ├── current_all_algo_open_orders_response.py │ │ │ │ ├── current_all_algo_open_orders_response_inner.py │ │ │ │ ├── current_all_open_orders_response.py │ │ │ │ ├── enums.py │ │ │ │ ├── exchange_information_response.py │ │ │ │ ├── exchange_information_response_assets_inner.py │ │ │ │ ├── exchange_information_response_rate_limits_inner.py │ │ │ │ ├── exchange_information_response_symbols_inner.py │ │ │ │ ├── exchange_information_response_symbols_inner_filters_inner.py │ │ │ │ ├── futures_account_balance_v2_response.py │ │ │ │ ├── futures_account_balance_v2_response_inner.py │ │ │ │ ├── futures_account_balance_v3_response.py │ │ │ │ ├── futures_account_configuration_response.py │ │ │ │ ├── futures_trading_quantitative_rules_indicators_response.py │ │ │ │ ├── futures_trading_quantitative_rules_indicators_response_indicators.py │ │ │ │ ├── futures_trading_quantitative_rules_indicators_response_indicators_account_inner.py │ │ │ │ ├── futures_trading_quantitative_rules_indicators_response_indicators_btcusdt_inner.py │ │ │ │ ├── get_bnb_burn_status_response.py │ │ │ │ ├── get_current_multi_assets_mode_response.py │ │ │ │ ├── get_current_position_mode_response.py │ │ │ │ ├── get_download_id_for_futures_order_history_response.py │ │ │ │ ├── get_download_id_for_futures_trade_history_response.py │ │ │ │ ├── get_download_id_for_futures_transaction_history_response.py │ │ │ │ ├── get_funding_rate_history_response.py │ │ │ │ ├── get_funding_rate_history_response_inner.py │ │ │ │ ├── get_funding_rate_info_response.py │ │ │ │ ├── get_funding_rate_info_response_inner.py │ │ │ │ ├── get_futures_order_history_download_link_by_id_response.py │ │ │ │ ├── get_futures_trade_download_link_by_id_response.py │ │ │ │ ├── get_futures_transaction_history_download_link_by_id_response.py │ │ │ │ ├── get_income_history_response.py │ │ │ │ ├── get_income_history_response_inner.py │ │ │ │ ├── get_order_modify_history_response.py │ │ │ │ ├── get_order_modify_history_response_inner.py │ │ │ │ ├── get_order_modify_history_response_inner_amendment.py │ │ │ │ ├── get_order_modify_history_response_inner_amendment_orig_qty.py │ │ │ │ ├── get_order_modify_history_response_inner_amendment_price.py │ │ │ │ ├── get_position_margin_change_history_response.py │ │ │ │ ├── get_position_margin_change_history_response_inner.py │ │ │ │ ├── index_price_kline_candlestick_data_response.py │ │ │ │ ├── index_price_kline_candlestick_data_response_item.py │ │ │ │ ├── index_price_kline_candlestick_data_response_item_inner.py │ │ │ │ ├── keepalive_user_data_stream_response.py │ │ │ │ ├── kline_candlestick_data_response.py │ │ │ │ ├── kline_candlestick_data_response_item.py │ │ │ │ ├── kline_candlestick_data_response_item_inner.py │ │ │ │ ├── list_all_convert_pairs_response.py │ │ │ │ ├── list_all_convert_pairs_response_inner.py │ │ │ │ ├── long_short_ratio_response.py │ │ │ │ ├── long_short_ratio_response_inner.py │ │ │ │ ├── mark_price_kline_candlestick_data_response.py │ │ │ │ ├── mark_price_kline_candlestick_data_response_item.py │ │ │ │ ├── mark_price_kline_candlestick_data_response_item_inner.py │ │ │ │ ├── mark_price_response.py │ │ │ │ ├── mark_price_response1.py │ │ │ │ ├── mark_price_response2.py │ │ │ │ ├── mark_price_response2_inner.py │ │ │ │ ├── modify_isolated_position_margin_response.py │ │ │ │ ├── modify_multiple_orders_batch_orders_parameter_inner.py │ │ │ │ ├── modify_multiple_orders_response.py │ │ │ │ ├── modify_multiple_orders_response_inner.py │ │ │ │ ├── modify_order_response.py │ │ │ │ ├── multi_assets_mode_asset_index_response.py │ │ │ │ ├── multi_assets_mode_asset_index_response1.py │ │ │ │ ├── multi_assets_mode_asset_index_response2.py │ │ │ │ ├── multi_assets_mode_asset_index_response2_inner.py │ │ │ │ ├── new_algo_order_response.py │ │ │ │ ├── new_order_response.py │ │ │ │ ├── notional_and_leverage_brackets_response.py │ │ │ │ ├── notional_and_leverage_brackets_response1.py │ │ │ │ ├── notional_and_leverage_brackets_response1_inner.py │ │ │ │ ├── notional_and_leverage_brackets_response1_inner_brackets_inner.py │ │ │ │ ├── notional_and_leverage_brackets_response2.py │ │ │ │ ├── notional_and_leverage_brackets_response2_brackets_inner.py │ │ │ │ ├── old_trades_lookup_response.py │ │ │ │ ├── old_trades_lookup_response_inner.py │ │ │ │ ├── open_interest_response.py │ │ │ │ ├── open_interest_statistics_response.py │ │ │ │ ├── open_interest_statistics_response_inner.py │ │ │ │ ├── order_book_response.py │ │ │ │ ├── order_book_response_asks_item.py │ │ │ │ ├── order_book_response_bids_item.py │ │ │ │ ├── order_status_response.py │ │ │ │ ├── place_multiple_orders_batch_orders_parameter_inner.py │ │ │ │ ├── place_multiple_orders_response.py │ │ │ │ ├── place_multiple_orders_response_inner.py │ │ │ │ ├── position_adl_quantile_estimation_response.py │ │ │ │ ├── position_adl_quantile_estimation_response_inner.py │ │ │ │ ├── position_adl_quantile_estimation_response_inner_adl_quantile.py │ │ │ │ ├── position_information_v2_response.py │ │ │ │ ├── position_information_v2_response_inner.py │ │ │ │ ├── position_information_v3_response.py │ │ │ │ ├── position_information_v3_response_inner.py │ │ │ │ ├── premium_index_kline_data_response.py │ │ │ │ ├── premium_index_kline_data_response_item.py │ │ │ │ ├── premium_index_kline_data_response_item_inner.py │ │ │ │ ├── quarterly_contract_settlement_price_response.py │ │ │ │ ├── quarterly_contract_settlement_price_response_inner.py │ │ │ │ ├── query_algo_order_response.py │ │ │ │ ├── query_all_algo_orders_response.py │ │ │ │ ├── query_all_algo_orders_response_inner.py │ │ │ │ ├── query_current_open_order_response.py │ │ │ │ ├── query_index_price_constituents_response.py │ │ │ │ ├── query_index_price_constituents_response_constituents_inner.py │ │ │ │ ├── query_insurance_fund_balance_snapshot_response.py │ │ │ │ ├── query_insurance_fund_balance_snapshot_response1.py │ │ │ │ ├── query_insurance_fund_balance_snapshot_response1_assets_inner.py │ │ │ │ ├── query_insurance_fund_balance_snapshot_response2.py │ │ │ │ ├── query_insurance_fund_balance_snapshot_response2_inner.py │ │ │ │ ├── query_insurance_fund_balance_snapshot_response2_inner_assets_inner.py │ │ │ │ ├── query_order_response.py │ │ │ │ ├── query_user_rate_limit_response.py │ │ │ │ ├── query_user_rate_limit_response_inner.py │ │ │ │ ├── recent_trades_list_response.py │ │ │ │ ├── recent_trades_list_response_inner.py │ │ │ │ ├── send_quote_request_response.py │ │ │ │ ├── start_user_data_stream_response.py │ │ │ │ ├── symbol_configuration_response.py │ │ │ │ ├── symbol_configuration_response_inner.py │ │ │ │ ├── symbol_order_book_ticker_response.py │ │ │ │ ├── symbol_order_book_ticker_response1.py │ │ │ │ ├── symbol_order_book_ticker_response2.py │ │ │ │ ├── symbol_order_book_ticker_response2_inner.py │ │ │ │ ├── symbol_price_ticker_response.py │ │ │ │ ├── symbol_price_ticker_response1.py │ │ │ │ ├── symbol_price_ticker_response2.py │ │ │ │ ├── symbol_price_ticker_v2_response.py │ │ │ │ ├── symbol_price_ticker_v2_response1.py │ │ │ │ ├── symbol_price_ticker_v2_response2.py │ │ │ │ ├── symbol_price_ticker_v2_response2_inner.py │ │ │ │ ├── taker_buy_sell_volume_response.py │ │ │ │ ├── taker_buy_sell_volume_response_inner.py │ │ │ │ ├── test_order_response.py │ │ │ │ ├── ticker24hr_price_change_statistics_response.py │ │ │ │ ├── ticker24hr_price_change_statistics_response1.py │ │ │ │ ├── ticker24hr_price_change_statistics_response2.py │ │ │ │ ├── ticker24hr_price_change_statistics_response2_inner.py │ │ │ │ ├── toggle_bnb_burn_on_futures_trade_response.py │ │ │ │ ├── top_trader_long_short_ratio_accounts_response.py │ │ │ │ ├── top_trader_long_short_ratio_accounts_response_inner.py │ │ │ │ ├── top_trader_long_short_ratio_positions_response.py │ │ │ │ ├── top_trader_long_short_ratio_positions_response_inner.py │ │ │ │ ├── user_commission_rate_response.py │ │ │ │ ├── users_force_orders_response.py │ │ │ │ └── users_force_orders_response_inner.py │ │ │ └── rest_api.py │ │ │ ├── websocket_api │ │ │ ├── __init__.py │ │ │ ├── api │ │ │ │ ├── __init__.py │ │ │ │ ├── account_api.py │ │ │ │ ├── market_data_api.py │ │ │ │ ├── trade_api.py │ │ │ │ └── user_data_streams_api.py │ │ │ ├── models │ │ │ │ ├── __init__.py │ │ │ │ ├── account_information_response.py │ │ │ │ ├── account_information_response_result.py │ │ │ │ ├── account_information_response_result_assets_inner.py │ │ │ │ ├── account_information_response_result_positions_inner.py │ │ │ │ ├── account_information_v2_response.py │ │ │ │ ├── account_information_v2_response_rate_limits_inner.py │ │ │ │ ├── account_information_v2_response_result.py │ │ │ │ ├── account_information_v2_response_result_assets_inner.py │ │ │ │ ├── account_information_v2_response_result_positions_inner.py │ │ │ │ ├── cancel_algo_order_response.py │ │ │ │ ├── cancel_algo_order_response_rate_limits_inner.py │ │ │ │ ├── cancel_algo_order_response_result.py │ │ │ │ ├── cancel_order_response.py │ │ │ │ ├── cancel_order_response_result.py │ │ │ │ ├── close_user_data_stream_response.py │ │ │ │ ├── enums.py │ │ │ │ ├── futures_account_balance_response.py │ │ │ │ ├── futures_account_balance_v2_response.py │ │ │ │ ├── futures_account_balance_v2_response_result_inner.py │ │ │ │ ├── keepalive_user_data_stream_response.py │ │ │ │ ├── keepalive_user_data_stream_response_result.py │ │ │ │ ├── modify_order_response.py │ │ │ │ ├── modify_order_response_rate_limits_inner.py │ │ │ │ ├── modify_order_response_result.py │ │ │ │ ├── new_algo_order_response.py │ │ │ │ ├── new_algo_order_response_result.py │ │ │ │ ├── new_order_response.py │ │ │ │ ├── new_order_response_result.py │ │ │ │ ├── order_book_response.py │ │ │ │ ├── order_book_response_rate_limits_inner.py │ │ │ │ ├── order_book_response_result.py │ │ │ │ ├── position_information_response.py │ │ │ │ ├── position_information_response_result_inner.py │ │ │ │ ├── position_information_v2_response.py │ │ │ │ ├── position_information_v2_response_result_inner.py │ │ │ │ ├── query_order_response.py │ │ │ │ ├── query_order_response_result.py │ │ │ │ ├── start_user_data_stream_response.py │ │ │ │ ├── start_user_data_stream_response_result.py │ │ │ │ ├── symbol_order_book_ticker_response.py │ │ │ │ ├── symbol_order_book_ticker_response1.py │ │ │ │ ├── symbol_order_book_ticker_response1_rate_limits_inner.py │ │ │ │ ├── symbol_order_book_ticker_response1_result.py │ │ │ │ ├── symbol_order_book_ticker_response2.py │ │ │ │ ├── symbol_price_ticker_response.py │ │ │ │ ├── symbol_price_ticker_response1.py │ │ │ │ ├── symbol_price_ticker_response1_result.py │ │ │ │ └── symbol_price_ticker_response2.py │ │ │ └── websocket_api.py │ │ │ └── websocket_streams │ │ │ ├── __init__.py │ │ │ ├── models │ │ │ ├── __init__.py │ │ │ ├── account_config_update.py │ │ │ ├── account_config_update_ac.py │ │ │ ├── account_config_update_ai.py │ │ │ ├── account_update.py │ │ │ ├── account_update_a.py │ │ │ ├── account_update_ab_inner.py │ │ │ ├── account_update_ap_inner.py │ │ │ ├── aggregate_trade_streams_response.py │ │ │ ├── algo_update.py │ │ │ ├── algo_update_o.py │ │ │ ├── all_book_tickers_stream_response.py │ │ │ ├── all_market_liquidation_order_streams_response.py │ │ │ ├── all_market_liquidation_order_streams_response_o.py │ │ │ ├── all_market_mini_tickers_stream_response.py │ │ │ ├── all_market_mini_tickers_stream_response_inner.py │ │ │ ├── all_market_tickers_streams_response.py │ │ │ ├── all_market_tickers_streams_response_inner.py │ │ │ ├── composite_index_symbol_information_streams_response.py │ │ │ ├── composite_index_symbol_information_streams_response_c_inner.py │ │ │ ├── conditional_order_trigger_reject.py │ │ │ ├── conditional_order_trigger_reject_or.py │ │ │ ├── continuous_contract_kline_candlestick_streams_response.py │ │ │ ├── continuous_contract_kline_candlestick_streams_response_k.py │ │ │ ├── contract_info_stream_response.py │ │ │ ├── contract_info_stream_response_bks_inner.py │ │ │ ├── diff_book_depth_streams_response.py │ │ │ ├── diff_book_depth_streams_response_a_item.py │ │ │ ├── diff_book_depth_streams_response_b_item.py │ │ │ ├── enums.py │ │ │ ├── grid_update.py │ │ │ ├── grid_update_gu.py │ │ │ ├── individual_symbol_book_ticker_streams_response.py │ │ │ ├── individual_symbol_mini_ticker_stream_response.py │ │ │ ├── individual_symbol_ticker_streams_response.py │ │ │ ├── kline_candlestick_streams_response.py │ │ │ ├── kline_candlestick_streams_response_k.py │ │ │ ├── liquidation_order_streams_response.py │ │ │ ├── listenkeyexpired.py │ │ │ ├── margin_call.py │ │ │ ├── margin_call_p_inner.py │ │ │ ├── mark_price_stream_for_all_market_response.py │ │ │ ├── mark_price_stream_for_all_market_response_inner.py │ │ │ ├── mark_price_stream_response.py │ │ │ ├── multi_assets_mode_asset_index_response.py │ │ │ ├── multi_assets_mode_asset_index_response_inner.py │ │ │ ├── order_trade_update.py │ │ │ ├── order_trade_update_o.py │ │ │ ├── partial_book_depth_streams_response.py │ │ │ ├── partial_book_depth_streams_response_a_item.py │ │ │ ├── partial_book_depth_streams_response_b_item.py │ │ │ ├── strategy_update.py │ │ │ ├── strategy_update_su.py │ │ │ ├── trade_lite.py │ │ │ └── user_data_stream_events_response.py │ │ │ ├── streams │ │ │ ├── __init__.py │ │ │ └── websocket_market_streams_api.py │ │ │ └── websocket_streams.py │ ├── tests │ │ └── unit │ │ │ ├── rest_api │ │ │ ├── test_account_api.py │ │ │ ├── test_convert_api.py │ │ │ ├── test_market_data_api.py │ │ │ ├── test_portfolio_margin_endpoints_api.py │ │ │ ├── test_trade_api.py │ │ │ └── test_user_data_streams_api.py │ │ │ ├── websocket_api │ │ │ ├── test_account_api_ws_api.py │ │ │ ├── test_market_data_api_ws_api.py │ │ │ ├── test_trade_api_ws_api.py │ │ │ └── test_user_data_streams_api_ws_api.py │ │ │ └── websocket_streams │ │ │ └── test_websocket_market_streams_api_ws_streams.py │ └── tox.ini ├── dual_investment │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENCE │ ├── README.md │ ├── docs │ │ └── rest_api │ │ │ ├── certificate-pinning.md │ │ │ ├── compression.md │ │ │ ├── error-handling.md │ │ │ ├── httpsAgent.md │ │ │ ├── keepAlive.md │ │ │ ├── key-pair-authentication.md │ │ │ ├── proxy.md │ │ │ ├── retries.md │ │ │ └── timeout.md │ ├── examples │ │ └── rest_api │ │ │ ├── MarketData │ │ │ └── get_dual_investment_product_list.py │ │ │ └── Trade │ │ │ ├── change_auto_compound_status.py │ │ │ ├── check_dual_investment_accounts.py │ │ │ ├── get_dual_investment_positions.py │ │ │ └── subscribe_dual_investment_products.py │ ├── pyproject.toml │ ├── src │ │ └── binance_sdk_dual_investment │ │ │ ├── __init__.py │ │ │ ├── dual_investment.py │ │ │ ├── metadata.py │ │ │ └── rest_api │ │ │ ├── __init__.py │ │ │ ├── api │ │ │ ├── __init__.py │ │ │ ├── market_data_api.py │ │ │ └── trade_api.py │ │ │ ├── models │ │ │ ├── __init__.py │ │ │ ├── change_auto_compound_status_response.py │ │ │ ├── check_dual_investment_accounts_response.py │ │ │ ├── enums.py │ │ │ ├── get_dual_investment_positions_response.py │ │ │ ├── get_dual_investment_positions_response_list_inner.py │ │ │ ├── get_dual_investment_product_list_response.py │ │ │ ├── get_dual_investment_product_list_response_list_inner.py │ │ │ └── subscribe_dual_investment_products_response.py │ │ │ └── rest_api.py │ ├── tests │ │ └── unit │ │ │ └── rest_api │ │ │ ├── test_market_data_api.py │ │ │ └── test_trade_api.py │ └── tox.ini ├── fiat │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENCE │ ├── README.md │ ├── docs │ │ ├── migration_guide_fiat_sdk.md │ │ └── rest_api │ │ │ ├── certificate-pinning.md │ │ │ ├── compression.md │ │ │ ├── error-handling.md │ │ │ ├── httpsAgent.md │ │ │ ├── keepAlive.md │ │ │ ├── key-pair-authentication.md │ │ │ ├── proxy.md │ │ │ ├── retries.md │ │ │ └── timeout.md │ ├── examples │ │ └── rest_api │ │ │ └── Fiat │ │ │ ├── get_fiat_deposit_withdraw_history.py │ │ │ └── get_fiat_payments_history.py │ ├── pyproject.toml │ ├── src │ │ └── binance_sdk_fiat │ │ │ ├── __init__.py │ │ │ ├── fiat.py │ │ │ ├── metadata.py │ │ │ └── rest_api │ │ │ ├── __init__.py │ │ │ ├── api │ │ │ ├── __init__.py │ │ │ └── fiat_api.py │ │ │ ├── models │ │ │ ├── __init__.py │ │ │ ├── enums.py │ │ │ ├── get_fiat_deposit_withdraw_history_response.py │ │ │ ├── get_fiat_deposit_withdraw_history_response_data_inner.py │ │ │ ├── get_fiat_payments_history_response.py │ │ │ └── get_fiat_payments_history_response_data_inner.py │ │ │ └── rest_api.py │ ├── tests │ │ └── unit │ │ │ └── rest_api │ │ │ └── test_fiat_api.py │ └── tox.ini ├── gift_card │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENCE │ ├── README.md │ ├── docs │ │ ├── migration_guide_gift_card_sdk.md │ │ └── rest_api │ │ │ ├── certificate-pinning.md │ │ │ ├── compression.md │ │ │ ├── error-handling.md │ │ │ ├── httpsAgent.md │ │ │ ├── keepAlive.md │ │ │ ├── key-pair-authentication.md │ │ │ ├── proxy.md │ │ │ ├── retries.md │ │ │ └── timeout.md │ ├── examples │ │ └── rest_api │ │ │ └── MarketData │ │ │ ├── create_a_dual_token_gift_card.py │ │ │ ├── create_a_single_token_gift_card.py │ │ │ ├── fetch_rsa_public_key.py │ │ │ ├── fetch_token_limit.py │ │ │ ├── redeem_a_binance_gift_card.py │ │ │ └── verify_binance_gift_card_by_gift_card_number.py │ ├── pyproject.toml │ ├── src │ │ └── binance_sdk_gift_card │ │ │ ├── __init__.py │ │ │ ├── gift_card.py │ │ │ ├── metadata.py │ │ │ └── rest_api │ │ │ ├── __init__.py │ │ │ ├── api │ │ │ ├── __init__.py │ │ │ └── market_data_api.py │ │ │ ├── models │ │ │ ├── __init__.py │ │ │ ├── create_a_dual_token_gift_card_response.py │ │ │ ├── create_a_dual_token_gift_card_response_data.py │ │ │ ├── create_a_single_token_gift_card_response.py │ │ │ ├── enums.py │ │ │ ├── fetch_rsa_public_key_response.py │ │ │ ├── fetch_token_limit_response.py │ │ │ ├── fetch_token_limit_response_data_inner.py │ │ │ ├── redeem_a_binance_gift_card_response.py │ │ │ ├── redeem_a_binance_gift_card_response_data.py │ │ │ ├── verify_binance_gift_card_by_gift_card_number_response.py │ │ │ └── verify_binance_gift_card_by_gift_card_number_response_data.py │ │ │ └── rest_api.py │ ├── tests │ │ └── unit │ │ │ └── rest_api │ │ │ └── test_market_data_api.py │ └── tox.ini ├── margin_trading │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENCE │ ├── README.md │ ├── docs │ │ ├── migration_guide_margin_trading_sdk.md │ │ └── rest_api │ │ │ ├── certificate-pinning.md │ │ │ ├── compression.md │ │ │ ├── error-handling.md │ │ │ ├── httpsAgent.md │ │ │ ├── keepAlive.md │ │ │ ├── key-pair-authentication.md │ │ │ ├── retries.md │ │ │ └── timeout.md │ ├── examples │ │ └── rest_api │ │ │ ├── Account │ │ │ ├── adjust_cross_margin_max_leverage.py │ │ │ ├── disable_isolated_margin_account.py │ │ │ ├── enable_isolated_margin_account.py │ │ │ ├── get_bnb_burn_status.py │ │ │ ├── get_summary_of_margin_account.py │ │ │ ├── query_cross_isolated_margin_capital_flow.py │ │ │ ├── query_cross_margin_account_details.py │ │ │ ├── query_cross_margin_fee_data.py │ │ │ ├── query_enabled_isolated_margin_account_limit.py │ │ │ ├── query_isolated_margin_account_info.py │ │ │ └── query_isolated_margin_fee_data.py │ │ │ ├── BorrowRepay │ │ │ ├── get_future_hourly_interest_rate.py │ │ │ ├── get_interest_history.py │ │ │ ├── margin_account_borrow_repay.py │ │ │ ├── query_borrow_repay_records_in_margin_account.py │ │ │ ├── query_margin_interest_rate_history.py │ │ │ └── query_max_borrow.py │ │ │ ├── MarketData │ │ │ ├── cross_margin_collateral_ratio.py │ │ │ ├── get_all_cross_margin_pairs.py │ │ │ ├── get_all_isolated_margin_symbol.py │ │ │ ├── get_all_margin_assets.py │ │ │ ├── get_delist_schedule.py │ │ │ ├── get_limit_price_pairs.py │ │ │ ├── get_list_schedule.py │ │ │ ├── query_isolated_margin_tier_data.py │ │ │ ├── query_liability_coin_leverage_bracket_in_cross_margin_pro_mode.py │ │ │ ├── query_margin_available_inventory.py │ │ │ └── query_margin_priceindex.py │ │ │ ├── RiskDataStream │ │ │ ├── close_user_data_stream.py │ │ │ ├── keepalive_user_data_stream.py │ │ │ └── start_user_data_stream.py │ │ │ ├── Trade │ │ │ ├── create_special_key.py │ │ │ ├── delete_special_key.py │ │ │ ├── edit_ip_for_special_key.py │ │ │ ├── get_force_liquidation_record.py │ │ │ ├── get_small_liability_exchange_coin_list.py │ │ │ ├── get_small_liability_exchange_history.py │ │ │ ├── margin_account_cancel_all_open_orders_on_a_symbol.py │ │ │ ├── margin_account_cancel_oco.py │ │ │ ├── margin_account_cancel_order.py │ │ │ ├── margin_account_new_oco.py │ │ │ ├── margin_account_new_order.py │ │ │ ├── margin_account_new_oto.py │ │ │ ├── margin_account_new_otoco.py │ │ │ ├── margin_manual_liquidation.py │ │ │ ├── query_current_margin_order_count_usage.py │ │ │ ├── query_margin_accounts_all_oco.py │ │ │ ├── query_margin_accounts_all_orders.py │ │ │ ├── query_margin_accounts_oco.py │ │ │ ├── query_margin_accounts_open_oco.py │ │ │ ├── query_margin_accounts_open_orders.py │ │ │ ├── query_margin_accounts_order.py │ │ │ ├── query_margin_accounts_trade_list.py │ │ │ ├── query_special_key.py │ │ │ ├── query_special_key_list.py │ │ │ └── small_liability_exchange.py │ │ │ └── Transfer │ │ │ ├── get_cross_margin_transfer_history.py │ │ │ └── query_max_transfer_out_amount.py │ ├── pyproject.toml │ ├── src │ │ └── binance_sdk_margin_trading │ │ │ ├── __init__.py │ │ │ ├── margin_trading.py │ │ │ ├── metadata.py │ │ │ ├── rest_api │ │ │ ├── __init__.py │ │ │ ├── api │ │ │ │ ├── __init__.py │ │ │ │ ├── account_api.py │ │ │ │ ├── borrow_repay_api.py │ │ │ │ ├── market_data_api.py │ │ │ │ ├── risk_data_stream_api.py │ │ │ │ ├── trade_api.py │ │ │ │ └── transfer_api.py │ │ │ ├── models │ │ │ │ ├── __init__.py │ │ │ │ ├── adjust_cross_margin_max_leverage_response.py │ │ │ │ ├── create_special_key_response.py │ │ │ │ ├── cross_margin_collateral_ratio_response.py │ │ │ │ ├── cross_margin_collateral_ratio_response_inner.py │ │ │ │ ├── cross_margin_collateral_ratio_response_inner_collaterals_inner.py │ │ │ │ ├── disable_isolated_margin_account_response.py │ │ │ │ ├── enable_isolated_margin_account_response.py │ │ │ │ ├── enums.py │ │ │ │ ├── get_all_cross_margin_pairs_response.py │ │ │ │ ├── get_all_cross_margin_pairs_response_inner.py │ │ │ │ ├── get_all_isolated_margin_symbol_response.py │ │ │ │ ├── get_all_isolated_margin_symbol_response_inner.py │ │ │ │ ├── get_all_margin_assets_response.py │ │ │ │ ├── get_all_margin_assets_response_inner.py │ │ │ │ ├── get_bnb_burn_status_response.py │ │ │ │ ├── get_cross_margin_transfer_history_response.py │ │ │ │ ├── get_cross_margin_transfer_history_response_rows_inner.py │ │ │ │ ├── get_delist_schedule_response.py │ │ │ │ ├── get_delist_schedule_response_inner.py │ │ │ │ ├── get_force_liquidation_record_response.py │ │ │ │ ├── get_force_liquidation_record_response_rows_inner.py │ │ │ │ ├── get_future_hourly_interest_rate_response.py │ │ │ │ ├── get_future_hourly_interest_rate_response_inner.py │ │ │ │ ├── get_interest_history_response.py │ │ │ │ ├── get_interest_history_response_rows_inner.py │ │ │ │ ├── get_limit_price_pairs_response.py │ │ │ │ ├── get_list_schedule_response.py │ │ │ │ ├── get_list_schedule_response_inner.py │ │ │ │ ├── get_small_liability_exchange_coin_list_response.py │ │ │ │ ├── get_small_liability_exchange_coin_list_response_inner.py │ │ │ │ ├── get_small_liability_exchange_history_response.py │ │ │ │ ├── get_small_liability_exchange_history_response_rows_inner.py │ │ │ │ ├── get_summary_of_margin_account_response.py │ │ │ │ ├── margin_account_borrow_repay_response.py │ │ │ │ ├── margin_account_cancel_all_open_orders_on_a_symbol_response.py │ │ │ │ ├── margin_account_cancel_all_open_orders_on_a_symbol_response_inner.py │ │ │ │ ├── margin_account_cancel_all_open_orders_on_a_symbol_response_inner_order_reports_inner.py │ │ │ │ ├── margin_account_cancel_all_open_orders_on_a_symbol_response_inner_orders_inner.py │ │ │ │ ├── margin_account_cancel_oco_response.py │ │ │ │ ├── margin_account_cancel_oco_response_order_reports_inner.py │ │ │ │ ├── margin_account_cancel_oco_response_orders_inner.py │ │ │ │ ├── margin_account_cancel_order_response.py │ │ │ │ ├── margin_account_new_oco_response.py │ │ │ │ ├── margin_account_new_oco_response_order_reports_inner.py │ │ │ │ ├── margin_account_new_oco_response_orders_inner.py │ │ │ │ ├── margin_account_new_order_response.py │ │ │ │ ├── margin_account_new_order_response_fills_inner.py │ │ │ │ ├── margin_account_new_oto_response.py │ │ │ │ ├── margin_account_new_oto_response_order_reports_inner.py │ │ │ │ ├── margin_account_new_oto_response_orders_inner.py │ │ │ │ ├── margin_account_new_otoco_response.py │ │ │ │ ├── margin_account_new_otoco_response_order_reports_inner.py │ │ │ │ ├── margin_account_new_otoco_response_orders_inner.py │ │ │ │ ├── margin_manual_liquidation_response.py │ │ │ │ ├── query_borrow_repay_records_in_margin_account_response.py │ │ │ │ ├── query_borrow_repay_records_in_margin_account_response_rows_inner.py │ │ │ │ ├── query_cross_isolated_margin_capital_flow_response.py │ │ │ │ ├── query_cross_isolated_margin_capital_flow_response_inner.py │ │ │ │ ├── query_cross_margin_account_details_response.py │ │ │ │ ├── query_cross_margin_account_details_response_user_assets_inner.py │ │ │ │ ├── query_cross_margin_fee_data_response.py │ │ │ │ ├── query_cross_margin_fee_data_response_inner.py │ │ │ │ ├── query_current_margin_order_count_usage_response.py │ │ │ │ ├── query_current_margin_order_count_usage_response_inner.py │ │ │ │ ├── query_enabled_isolated_margin_account_limit_response.py │ │ │ │ ├── query_isolated_margin_account_info_response.py │ │ │ │ ├── query_isolated_margin_account_info_response_assets_inner.py │ │ │ │ ├── query_isolated_margin_account_info_response_assets_inner_base_asset.py │ │ │ │ ├── query_isolated_margin_account_info_response_assets_inner_quote_asset.py │ │ │ │ ├── query_isolated_margin_fee_data_response.py │ │ │ │ ├── query_isolated_margin_fee_data_response_inner.py │ │ │ │ ├── query_isolated_margin_fee_data_response_inner_data_inner.py │ │ │ │ ├── query_isolated_margin_tier_data_response.py │ │ │ │ ├── query_isolated_margin_tier_data_response_inner.py │ │ │ │ ├── query_liability_coin_leverage_bracket_in_cross_margin_pro_mode_response.py │ │ │ │ ├── query_liability_coin_leverage_bracket_in_cross_margin_pro_mode_response_inner.py │ │ │ │ ├── query_liability_coin_leverage_bracket_in_cross_margin_pro_mode_response_inner_brackets_inner.py │ │ │ │ ├── query_margin_accounts_all_oco_response.py │ │ │ │ ├── query_margin_accounts_all_oco_response_inner.py │ │ │ │ ├── query_margin_accounts_all_oco_response_inner_orders_inner.py │ │ │ │ ├── query_margin_accounts_all_orders_response.py │ │ │ │ ├── query_margin_accounts_all_orders_response_inner.py │ │ │ │ ├── query_margin_accounts_oco_response.py │ │ │ │ ├── query_margin_accounts_oco_response_orders_inner.py │ │ │ │ ├── query_margin_accounts_open_oco_response.py │ │ │ │ ├── query_margin_accounts_open_oco_response_inner.py │ │ │ │ ├── query_margin_accounts_open_oco_response_inner_orders_inner.py │ │ │ │ ├── query_margin_accounts_open_orders_response.py │ │ │ │ ├── query_margin_accounts_open_orders_response_inner.py │ │ │ │ ├── query_margin_accounts_order_response.py │ │ │ │ ├── query_margin_accounts_trade_list_response.py │ │ │ │ ├── query_margin_accounts_trade_list_response_inner.py │ │ │ │ ├── query_margin_available_inventory_response.py │ │ │ │ ├── query_margin_available_inventory_response_assets.py │ │ │ │ ├── query_margin_interest_rate_history_response.py │ │ │ │ ├── query_margin_interest_rate_history_response_inner.py │ │ │ │ ├── query_margin_priceindex_response.py │ │ │ │ ├── query_max_borrow_response.py │ │ │ │ ├── query_max_transfer_out_amount_response.py │ │ │ │ ├── query_special_key_list_response.py │ │ │ │ ├── query_special_key_list_response_inner.py │ │ │ │ ├── query_special_key_response.py │ │ │ │ └── start_user_data_stream_response.py │ │ │ └── rest_api.py │ │ │ └── websocket_streams │ │ │ ├── __init__.py │ │ │ ├── models │ │ │ ├── __init__.py │ │ │ ├── balanceupdate.py │ │ │ ├── enums.py │ │ │ ├── executionreport.py │ │ │ ├── listenkeyexpired.py │ │ │ ├── liststatus.py │ │ │ ├── liststatus_o_inner.py │ │ │ ├── margin_level_status_change.py │ │ │ ├── outboundaccountposition.py │ │ │ ├── outboundaccountposition_b_inner.py │ │ │ ├── risk_data_stream_events_response.py │ │ │ ├── trade_data_stream_events_response.py │ │ │ └── user_liability_change.py │ │ │ ├── streams │ │ │ └── __init__.py │ │ │ └── websocket_streams.py │ ├── tests │ │ └── unit │ │ │ └── rest_api │ │ │ ├── test_account_api.py │ │ │ ├── test_borrow_repay_api.py │ │ │ ├── test_market_data_api.py │ │ │ ├── test_risk_data_stream_api.py │ │ │ ├── test_trade_api.py │ │ │ └── test_transfer_api.py │ └── tox.ini ├── mining │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENCE │ ├── README.md │ ├── docs │ │ ├── migration_guide_mining_sdk.md │ │ └── rest_api │ │ │ ├── certificate-pinning.md │ │ │ ├── compression.md │ │ │ ├── error-handling.md │ │ │ ├── httpsAgent.md │ │ │ ├── keepAlive.md │ │ │ ├── key-pair-authentication.md │ │ │ ├── proxy.md │ │ │ ├── retries.md │ │ │ └── timeout.md │ ├── examples │ │ └── rest_api │ │ │ └── Mining │ │ │ ├── account_list.py │ │ │ ├── acquiring_algorithm.py │ │ │ ├── acquiring_coinname.py │ │ │ ├── cancel_hashrate_resale_configuration.py │ │ │ ├── earnings_list.py │ │ │ ├── extra_bonus_list.py │ │ │ ├── hashrate_resale_detail.py │ │ │ ├── hashrate_resale_list.py │ │ │ ├── hashrate_resale_request.py │ │ │ ├── mining_account_earning.py │ │ │ ├── request_for_detail_miner_list.py │ │ │ ├── request_for_miner_list.py │ │ │ └── statistic_list.py │ ├── pyproject.toml │ ├── src │ │ └── binance_sdk_mining │ │ │ ├── __init__.py │ │ │ ├── metadata.py │ │ │ ├── mining.py │ │ │ └── rest_api │ │ │ ├── __init__.py │ │ │ ├── api │ │ │ ├── __init__.py │ │ │ └── mining_api.py │ │ │ ├── models │ │ │ ├── __init__.py │ │ │ ├── account_list_response.py │ │ │ ├── account_list_response_data_inner.py │ │ │ ├── account_list_response_data_inner_list_inner.py │ │ │ ├── acquiring_algorithm_response.py │ │ │ ├── acquiring_algorithm_response_data_inner.py │ │ │ ├── acquiring_coinname_response.py │ │ │ ├── acquiring_coinname_response_data_inner.py │ │ │ ├── cancel_hashrate_resale_configuration_response.py │ │ │ ├── earnings_list_response.py │ │ │ ├── earnings_list_response_data.py │ │ │ ├── earnings_list_response_data_account_profits_inner.py │ │ │ ├── enums.py │ │ │ ├── extra_bonus_list_response.py │ │ │ ├── extra_bonus_list_response_data.py │ │ │ ├── extra_bonus_list_response_data_other_profits_inner.py │ │ │ ├── hashrate_resale_detail_response.py │ │ │ ├── hashrate_resale_detail_response_data.py │ │ │ ├── hashrate_resale_detail_response_data_profit_transfer_details_inner.py │ │ │ ├── hashrate_resale_list_response.py │ │ │ ├── hashrate_resale_list_response_data.py │ │ │ ├── hashrate_resale_list_response_data_config_details_inner.py │ │ │ ├── hashrate_resale_request_response.py │ │ │ ├── mining_account_earning_response.py │ │ │ ├── mining_account_earning_response_data.py │ │ │ ├── mining_account_earning_response_data_account_profits_inner.py │ │ │ ├── request_for_detail_miner_list_response.py │ │ │ ├── request_for_detail_miner_list_response_data_inner.py │ │ │ ├── request_for_detail_miner_list_response_data_inner_hashrate_datas_inner.py │ │ │ ├── request_for_miner_list_response.py │ │ │ ├── request_for_miner_list_response_data.py │ │ │ ├── request_for_miner_list_response_data_worker_datas_inner.py │ │ │ ├── statistic_list_response.py │ │ │ ├── statistic_list_response_data.py │ │ │ └── statistic_list_response_data_profit_today.py │ │ │ └── rest_api.py │ ├── tests │ │ └── unit │ │ │ └── rest_api │ │ │ └── test_mining_api.py │ └── tox.ini ├── nft │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENCE │ ├── README.md │ ├── docs │ │ ├── migration_guide_nft_sdk.md │ │ └── rest_api │ │ │ ├── certificate-pinning.md │ │ │ ├── compression.md │ │ │ ├── error-handling.md │ │ │ ├── httpsAgent.md │ │ │ ├── keepAlive.md │ │ │ ├── key-pair-authentication.md │ │ │ ├── proxy.md │ │ │ ├── retries.md │ │ │ └── timeout.md │ ├── examples │ │ └── rest_api │ │ │ └── NFT │ │ │ ├── get_nft_asset.py │ │ │ ├── get_nft_deposit_history.py │ │ │ ├── get_nft_transaction_history.py │ │ │ └── get_nft_withdraw_history.py │ ├── pyproject.toml │ ├── src │ │ └── binance_sdk_nft │ │ │ ├── __init__.py │ │ │ ├── metadata.py │ │ │ ├── nft.py │ │ │ └── rest_api │ │ │ ├── __init__.py │ │ │ ├── api │ │ │ ├── __init__.py │ │ │ └── nft_api.py │ │ │ ├── models │ │ │ ├── __init__.py │ │ │ ├── enums.py │ │ │ ├── get_nft_asset_response.py │ │ │ ├── get_nft_asset_response_list_inner.py │ │ │ ├── get_nft_deposit_history_response.py │ │ │ ├── get_nft_deposit_history_response_list_inner.py │ │ │ ├── get_nft_transaction_history_response.py │ │ │ ├── get_nft_transaction_history_response_list_inner.py │ │ │ ├── get_nft_transaction_history_response_list_inner_tokens_inner.py │ │ │ ├── get_nft_withdraw_history_response.py │ │ │ └── get_nft_withdraw_history_response_list_inner.py │ │ │ └── rest_api.py │ ├── tests │ │ └── unit │ │ │ └── rest_api │ │ │ └── test_nft_api.py │ └── tox.ini ├── pay │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENCE │ ├── README.md │ ├── docs │ │ ├── migration_guide_pay_sdk.md │ │ └── rest_api │ │ │ ├── certificate-pinning.md │ │ │ ├── compression.md │ │ │ ├── error-handling.md │ │ │ ├── httpsAgent.md │ │ │ ├── keepAlive.md │ │ │ ├── key-pair-authentication.md │ │ │ ├── proxy.md │ │ │ ├── retries.md │ │ │ └── timeout.md │ ├── examples │ │ └── rest_api │ │ │ └── Pay │ │ │ └── get_pay_trade_history.py │ ├── pyproject.toml │ ├── src │ │ └── binance_sdk_pay │ │ │ ├── __init__.py │ │ │ ├── metadata.py │ │ │ ├── pay.py │ │ │ └── rest_api │ │ │ ├── __init__.py │ │ │ ├── api │ │ │ ├── __init__.py │ │ │ └── pay_api.py │ │ │ ├── models │ │ │ ├── __init__.py │ │ │ ├── enums.py │ │ │ ├── get_pay_trade_history_response.py │ │ │ ├── get_pay_trade_history_response_data_inner.py │ │ │ ├── get_pay_trade_history_response_data_inner_funds_detail_inner.py │ │ │ ├── get_pay_trade_history_response_data_inner_funds_detail_inner_wallet_asset_cost_inner.py │ │ │ ├── get_pay_trade_history_response_data_inner_payer_info.py │ │ │ ├── get_pay_trade_history_response_data_inner_receiver_info.py │ │ │ └── get_pay_trade_history_response_data_inner_receiver_info_extend.py │ │ │ └── rest_api.py │ ├── tests │ │ └── unit │ │ │ └── rest_api │ │ │ └── test_pay_api.py │ └── tox.ini ├── rebate │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENCE │ ├── README.md │ ├── docs │ │ ├── migration_guide_rebate_sdk.md │ │ └── rest_api │ │ │ ├── certificate-pinning.md │ │ │ ├── compression.md │ │ │ ├── error-handling.md │ │ │ ├── httpsAgent.md │ │ │ ├── keepAlive.md │ │ │ ├── key-pair-authentication.md │ │ │ ├── proxy.md │ │ │ ├── retries.md │ │ │ └── timeout.md │ ├── examples │ │ └── rest_api │ │ │ └── Rebate │ │ │ └── get_spot_rebate_history_records.py │ ├── pyproject.toml │ ├── src │ │ └── binance_sdk_rebate │ │ │ ├── __init__.py │ │ │ ├── metadata.py │ │ │ ├── rebate.py │ │ │ └── rest_api │ │ │ ├── __init__.py │ │ │ ├── api │ │ │ ├── __init__.py │ │ │ └── rebate_api.py │ │ │ ├── models │ │ │ ├── __init__.py │ │ │ ├── enums.py │ │ │ ├── get_spot_rebate_history_records_response.py │ │ │ ├── get_spot_rebate_history_records_response_data.py │ │ │ └── get_spot_rebate_history_records_response_data_data_inner.py │ │ │ └── rest_api.py │ ├── tests │ │ └── unit │ │ │ └── rest_api │ │ │ └── test_rebate_api.py │ └── tox.ini ├── simple_earn │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENCE │ ├── README.md │ ├── docs │ │ ├── migration_guide_simple_earn_sdk.md │ │ └── rest_api │ │ │ ├── certificate-pinning.md │ │ │ ├── compression.md │ │ │ ├── error-handling.md │ │ │ ├── httpsAgent.md │ │ │ ├── keepAlive.md │ │ │ ├── key-pair-authentication.md │ │ │ ├── proxy.md │ │ │ ├── retries.md │ │ │ └── timeout.md │ ├── examples │ │ └── rest_api │ │ │ ├── Bfusd │ │ │ ├── get_bfusd_account.py │ │ │ ├── get_bfusd_quota_details.py │ │ │ ├── get_bfusd_rate_history.py │ │ │ ├── get_bfusd_redemption_history.py │ │ │ ├── get_bfusd_rewards_history.py │ │ │ ├── get_bfusd_subscription_history.py │ │ │ ├── redeem_bfusd.py │ │ │ └── subscribe_bfusd.py │ │ │ ├── FlexibleLocked │ │ │ ├── get_collateral_record.py │ │ │ ├── get_flexible_personal_left_quota.py │ │ │ ├── get_flexible_product_position.py │ │ │ ├── get_flexible_redemption_record.py │ │ │ ├── get_flexible_rewards_history.py │ │ │ ├── get_flexible_subscription_preview.py │ │ │ ├── get_flexible_subscription_record.py │ │ │ ├── get_locked_personal_left_quota.py │ │ │ ├── get_locked_product_position.py │ │ │ ├── get_locked_redemption_record.py │ │ │ ├── get_locked_rewards_history.py │ │ │ ├── get_locked_subscription_preview.py │ │ │ ├── get_locked_subscription_record.py │ │ │ ├── get_rate_history.py │ │ │ ├── get_simple_earn_flexible_product_list.py │ │ │ ├── get_simple_earn_locked_product_list.py │ │ │ ├── redeem_flexible_product.py │ │ │ ├── redeem_locked_product.py │ │ │ ├── set_flexible_auto_subscribe.py │ │ │ ├── set_locked_auto_subscribe.py │ │ │ ├── set_locked_product_redeem_option.py │ │ │ ├── simple_account.py │ │ │ ├── subscribe_flexible_product.py │ │ │ └── subscribe_locked_product.py │ │ │ └── Rwusd │ │ │ ├── get_rwusd_account.py │ │ │ ├── get_rwusd_quota_details.py │ │ │ ├── get_rwusd_rate_history.py │ │ │ ├── get_rwusd_redemption_history.py │ │ │ ├── get_rwusd_rewards_history.py │ │ │ ├── get_rwusd_subscription_history.py │ │ │ ├── redeem_rwusd.py │ │ │ └── subscribe_rwusd.py │ ├── pyproject.toml │ ├── src │ │ └── binance_sdk_simple_earn │ │ │ ├── __init__.py │ │ │ ├── metadata.py │ │ │ ├── rest_api │ │ │ ├── __init__.py │ │ │ ├── api │ │ │ │ ├── __init__.py │ │ │ │ ├── bfusd_api.py │ │ │ │ ├── flexible_locked_api.py │ │ │ │ └── rwusd_api.py │ │ │ ├── models │ │ │ │ ├── __init__.py │ │ │ │ ├── enums.py │ │ │ │ ├── get_bfusd_account_response.py │ │ │ │ ├── get_bfusd_quota_details_response.py │ │ │ │ ├── get_bfusd_quota_details_response_fast_redemption_quota.py │ │ │ │ ├── get_bfusd_quota_details_response_standard_redemption_quota.py │ │ │ │ ├── get_bfusd_rate_history_response.py │ │ │ │ ├── get_bfusd_rate_history_response_rows_inner.py │ │ │ │ ├── get_bfusd_redemption_history_response.py │ │ │ │ ├── get_bfusd_redemption_history_response_rows_inner.py │ │ │ │ ├── get_bfusd_rewards_history_response.py │ │ │ │ ├── get_bfusd_rewards_history_response_rows_inner.py │ │ │ │ ├── get_bfusd_subscription_history_response.py │ │ │ │ ├── get_bfusd_subscription_history_response_rows_inner.py │ │ │ │ ├── get_collateral_record_response.py │ │ │ │ ├── get_collateral_record_response_rows_inner.py │ │ │ │ ├── get_flexible_personal_left_quota_response.py │ │ │ │ ├── get_flexible_product_position_response.py │ │ │ │ ├── get_flexible_product_position_response_rows_inner.py │ │ │ │ ├── get_flexible_product_position_response_rows_inner_tier_annual_percentage_rate.py │ │ │ │ ├── get_flexible_redemption_record_response.py │ │ │ │ ├── get_flexible_redemption_record_response_rows_inner.py │ │ │ │ ├── get_flexible_rewards_history_response.py │ │ │ │ ├── get_flexible_rewards_history_response_rows_inner.py │ │ │ │ ├── get_flexible_subscription_preview_response.py │ │ │ │ ├── get_flexible_subscription_record_response.py │ │ │ │ ├── get_flexible_subscription_record_response_rows_inner.py │ │ │ │ ├── get_locked_personal_left_quota_response.py │ │ │ │ ├── get_locked_product_position_response.py │ │ │ │ ├── get_locked_product_position_response_rows_inner.py │ │ │ │ ├── get_locked_redemption_record_response.py │ │ │ │ ├── get_locked_redemption_record_response_rows_inner.py │ │ │ │ ├── get_locked_rewards_history_response.py │ │ │ │ ├── get_locked_rewards_history_response_rows_inner.py │ │ │ │ ├── get_locked_subscription_preview_response.py │ │ │ │ ├── get_locked_subscription_preview_response_inner.py │ │ │ │ ├── get_locked_subscription_record_response.py │ │ │ │ ├── get_locked_subscription_record_response_rows_inner.py │ │ │ │ ├── get_rate_history_response.py │ │ │ │ ├── get_rate_history_response_rows_inner.py │ │ │ │ ├── get_rwusd_account_response.py │ │ │ │ ├── get_rwusd_quota_details_response.py │ │ │ │ ├── get_rwusd_quota_details_response_fast_redemption_quota.py │ │ │ │ ├── get_rwusd_quota_details_response_standard_redemption_quota.py │ │ │ │ ├── get_rwusd_quota_details_response_subscription_quota.py │ │ │ │ ├── get_rwusd_rate_history_response.py │ │ │ │ ├── get_rwusd_redemption_history_response.py │ │ │ │ ├── get_rwusd_redemption_history_response_rows_inner.py │ │ │ │ ├── get_rwusd_rewards_history_response.py │ │ │ │ ├── get_rwusd_rewards_history_response_rows_inner.py │ │ │ │ ├── get_rwusd_subscription_history_response.py │ │ │ │ ├── get_rwusd_subscription_history_response_rows_inner.py │ │ │ │ ├── get_simple_earn_flexible_product_list_response.py │ │ │ │ ├── get_simple_earn_flexible_product_list_response_rows_inner.py │ │ │ │ ├── get_simple_earn_locked_product_list_response.py │ │ │ │ ├── get_simple_earn_locked_product_list_response_rows_inner.py │ │ │ │ ├── get_simple_earn_locked_product_list_response_rows_inner_detail.py │ │ │ │ ├── get_simple_earn_locked_product_list_response_rows_inner_quota.py │ │ │ │ ├── redeem_bfusd_response.py │ │ │ │ ├── redeem_flexible_product_response.py │ │ │ │ ├── redeem_locked_product_response.py │ │ │ │ ├── redeem_rwusd_response.py │ │ │ │ ├── set_flexible_auto_subscribe_response.py │ │ │ │ ├── set_locked_auto_subscribe_response.py │ │ │ │ ├── set_locked_product_redeem_option_response.py │ │ │ │ ├── simple_account_response.py │ │ │ │ ├── subscribe_bfusd_response.py │ │ │ │ ├── subscribe_flexible_product_response.py │ │ │ │ ├── subscribe_locked_product_response.py │ │ │ │ └── subscribe_rwusd_response.py │ │ │ └── rest_api.py │ │ │ └── simple_earn.py │ ├── tests │ │ └── unit │ │ │ └── rest_api │ │ │ ├── test_bfusd_api.py │ │ │ ├── test_flexible_locked_api.py │ │ │ └── test_rwusd_api.py │ └── tox.ini ├── spot │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENCE │ ├── README.md │ ├── docs │ │ ├── migration_guide_spot_sdk.md │ │ ├── rest_api │ │ │ ├── certificate-pinning.md │ │ │ ├── compression.md │ │ │ ├── error-handling.md │ │ │ ├── httpsAgent.md │ │ │ ├── keepAlive.md │ │ │ ├── key-pair-authentication.md │ │ │ ├── proxy.md │ │ │ ├── retries.md │ │ │ ├── time-unit.md │ │ │ └── timeout.md │ │ ├── websocket_api │ │ │ ├── agent.md │ │ │ ├── compression.md │ │ │ ├── connection-mode.md │ │ │ ├── key-pair-authentication.md │ │ │ ├── proxy.md │ │ │ ├── reconnect-delay.md │ │ │ ├── time-unit.md │ │ │ ├── timeout.md │ │ │ └── user-data.md │ │ └── websocket_streams │ │ │ ├── agent.md │ │ │ ├── compression.md │ │ │ ├── connection-mode.md │ │ │ ├── proxy.md │ │ │ ├── reconnect-delay.md │ │ │ └── time-unit.md │ ├── examples │ │ ├── rest_api │ │ │ ├── Account │ │ │ │ ├── account_commission.py │ │ │ │ ├── all_order_list.py │ │ │ │ ├── all_orders.py │ │ │ │ ├── get_account.py │ │ │ │ ├── get_open_orders.py │ │ │ │ ├── get_order.py │ │ │ │ ├── get_order_list.py │ │ │ │ ├── my_allocations.py │ │ │ │ ├── my_filters.py │ │ │ │ ├── my_prevented_matches.py │ │ │ │ ├── my_trades.py │ │ │ │ ├── open_order_list.py │ │ │ │ ├── order_amendments.py │ │ │ │ └── rate_limit_order.py │ │ │ ├── General │ │ │ │ ├── exchange_info.py │ │ │ │ ├── ping.py │ │ │ │ └── time.py │ │ │ ├── Market │ │ │ │ ├── agg_trades.py │ │ │ │ ├── avg_price.py │ │ │ │ ├── depth.py │ │ │ │ ├── get_trades.py │ │ │ │ ├── historical_trades.py │ │ │ │ ├── klines.py │ │ │ │ ├── ticker.py │ │ │ │ ├── ticker24hr.py │ │ │ │ ├── ticker_book_ticker.py │ │ │ │ ├── ticker_price.py │ │ │ │ ├── ticker_trading_day.py │ │ │ │ └── ui_klines.py │ │ │ └── Trade │ │ │ │ ├── delete_open_orders.py │ │ │ │ ├── delete_order.py │ │ │ │ ├── delete_order_list.py │ │ │ │ ├── new_order.py │ │ │ │ ├── order_amend_keep_priority.py │ │ │ │ ├── order_cancel_replace.py │ │ │ │ ├── order_list_oco.py │ │ │ │ ├── order_list_oto.py │ │ │ │ ├── order_list_otoco.py │ │ │ │ ├── order_oco.py │ │ │ │ ├── order_test.py │ │ │ │ ├── sor_order.py │ │ │ │ └── sor_order_test.py │ │ ├── websocket_api │ │ │ ├── Account │ │ │ │ ├── account_commission.py │ │ │ │ ├── account_rate_limits_orders.py │ │ │ │ ├── account_status.py │ │ │ │ ├── all_order_lists.py │ │ │ │ ├── all_orders.py │ │ │ │ ├── my_allocations.py │ │ │ │ ├── my_filters.py │ │ │ │ ├── my_prevented_matches.py │ │ │ │ ├── my_trades.py │ │ │ │ ├── open_order_lists_status.py │ │ │ │ ├── open_orders_status.py │ │ │ │ ├── order_amendments.py │ │ │ │ ├── order_list_status.py │ │ │ │ └── order_status.py │ │ │ ├── Auth │ │ │ │ ├── session_logon.py │ │ │ │ ├── session_logout.py │ │ │ │ └── session_status.py │ │ │ ├── General │ │ │ │ ├── exchange_info.py │ │ │ │ ├── ping.py │ │ │ │ └── time.py │ │ │ ├── Market │ │ │ │ ├── avg_price.py │ │ │ │ ├── depth.py │ │ │ │ ├── klines.py │ │ │ │ ├── ticker.py │ │ │ │ ├── ticker24hr.py │ │ │ │ ├── ticker_book.py │ │ │ │ ├── ticker_price.py │ │ │ │ ├── ticker_trading_day.py │ │ │ │ ├── trades_aggregate.py │ │ │ │ ├── trades_historical.py │ │ │ │ ├── trades_recent.py │ │ │ │ └── ui_klines.py │ │ │ ├── Trade │ │ │ │ ├── open_orders_cancel_all.py │ │ │ │ ├── order_amend_keep_priority.py │ │ │ │ ├── order_cancel.py │ │ │ │ ├── order_cancel_replace.py │ │ │ │ ├── order_list_cancel.py │ │ │ │ ├── order_list_place.py │ │ │ │ ├── order_list_place_oco.py │ │ │ │ ├── order_list_place_oto.py │ │ │ │ ├── order_list_place_otoco.py │ │ │ │ ├── order_place.py │ │ │ │ ├── order_test_ws_api.py │ │ │ │ ├── sor_order_place.py │ │ │ │ └── sor_order_test_ws_api.py │ │ │ └── UserDataStream │ │ │ │ ├── session_subscriptions.py │ │ │ │ ├── user_data_stream_subscribe.py │ │ │ │ ├── user_data_stream_subscribe_signature.py │ │ │ │ └── user_data_stream_unsubscribe.py │ │ └── websocket_streams │ │ │ ├── agg_trade.py │ │ │ ├── all_market_rolling_window_ticker.py │ │ │ ├── all_mini_ticker.py │ │ │ ├── all_ticker.py │ │ │ ├── avg_price.py │ │ │ ├── book_ticker.py │ │ │ ├── diff_book_depth.py │ │ │ ├── kline.py │ │ │ ├── kline_offset.py │ │ │ ├── mini_ticker.py │ │ │ ├── partial_book_depth.py │ │ │ ├── rolling_window_ticker.py │ │ │ ├── ticker.py │ │ │ └── trade.py │ ├── pyproject.toml │ ├── src │ │ └── binance_sdk_spot │ │ │ ├── __init__.py │ │ │ ├── metadata.py │ │ │ ├── rest_api │ │ │ ├── __init__.py │ │ │ ├── api │ │ │ │ ├── __init__.py │ │ │ │ ├── account_api.py │ │ │ │ ├── general_api.py │ │ │ │ ├── market_api.py │ │ │ │ └── trade_api.py │ │ │ ├── models │ │ │ │ ├── __init__.py │ │ │ │ ├── account_commission_response.py │ │ │ │ ├── account_commission_response_discount.py │ │ │ │ ├── account_commission_response_special_commission.py │ │ │ │ ├── account_commission_response_standard_commission.py │ │ │ │ ├── account_commission_response_tax_commission.py │ │ │ │ ├── agg_trades_response.py │ │ │ │ ├── agg_trades_response_inner.py │ │ │ │ ├── all_order_list_response.py │ │ │ │ ├── all_order_list_response_inner.py │ │ │ │ ├── all_order_list_response_inner_orders_inner.py │ │ │ │ ├── all_orders_response.py │ │ │ │ ├── all_orders_response_inner.py │ │ │ │ ├── asset_filters.py │ │ │ │ ├── avg_price_response.py │ │ │ │ ├── delete_open_orders_response.py │ │ │ │ ├── delete_open_orders_response_inner.py │ │ │ │ ├── delete_order_list_response.py │ │ │ │ ├── delete_order_list_response_order_reports_inner.py │ │ │ │ ├── delete_order_list_response_orders_inner.py │ │ │ │ ├── delete_order_response.py │ │ │ │ ├── depth_response.py │ │ │ │ ├── enums.py │ │ │ │ ├── exchange_filters.py │ │ │ │ ├── exchange_info_response.py │ │ │ │ ├── exchange_info_response_symbols_inner.py │ │ │ │ ├── exchange_max_num_algo_orders_filter.py │ │ │ │ ├── exchange_max_num_iceberg_orders_filter.py │ │ │ │ ├── exchange_max_num_order_lists_filter.py │ │ │ │ ├── exchange_max_num_orders_filter.py │ │ │ │ ├── get_account_response.py │ │ │ │ ├── get_account_response_balances_inner.py │ │ │ │ ├── get_account_response_commission_rates.py │ │ │ │ ├── get_open_orders_response.py │ │ │ │ ├── get_order_list_response.py │ │ │ │ ├── get_order_list_response_orders_inner.py │ │ │ │ ├── get_order_response.py │ │ │ │ ├── get_trades_response.py │ │ │ │ ├── historical_trades_response.py │ │ │ │ ├── historical_trades_response_inner.py │ │ │ │ ├── iceberg_parts_filter.py │ │ │ │ ├── klines_item.py │ │ │ │ ├── klines_item_inner.py │ │ │ │ ├── klines_response.py │ │ │ │ ├── lot_size_filter.py │ │ │ │ ├── market_lot_size_filter.py │ │ │ │ ├── max_asset_filter.py │ │ │ │ ├── max_num_algo_orders_filter.py │ │ │ │ ├── max_num_iceberg_orders_filter.py │ │ │ │ ├── max_num_order_amends_filter.py │ │ │ │ ├── max_num_order_lists_filter.py │ │ │ │ ├── max_num_orders_filter.py │ │ │ │ ├── max_position_filter.py │ │ │ │ ├── min_notional_filter.py │ │ │ │ ├── my_allocations_response.py │ │ │ │ ├── my_allocations_response_inner.py │ │ │ │ ├── my_filters_response.py │ │ │ │ ├── my_prevented_matches_response.py │ │ │ │ ├── my_prevented_matches_response_inner.py │ │ │ │ ├── my_trades_response.py │ │ │ │ ├── my_trades_response_inner.py │ │ │ │ ├── new_order_response.py │ │ │ │ ├── new_order_response_fills_inner.py │ │ │ │ ├── notional_filter.py │ │ │ │ ├── open_order_list_response.py │ │ │ │ ├── open_order_list_response_inner.py │ │ │ │ ├── open_order_list_response_inner_orders_inner.py │ │ │ │ ├── order_amend_keep_priority_response.py │ │ │ │ ├── order_amend_keep_priority_response_amended_order.py │ │ │ │ ├── order_amend_keep_priority_response_list_status.py │ │ │ │ ├── order_amend_keep_priority_response_list_status_orders_inner.py │ │ │ │ ├── order_amendments_response.py │ │ │ │ ├── order_amendments_response_inner.py │ │ │ │ ├── order_cancel_replace_response.py │ │ │ │ ├── order_cancel_replace_response_cancel_response.py │ │ │ │ ├── order_cancel_replace_response_data.py │ │ │ │ ├── order_cancel_replace_response_data_cancel_response.py │ │ │ │ ├── order_cancel_replace_response_data_new_order_response.py │ │ │ │ ├── order_cancel_replace_response_new_order_response.py │ │ │ │ ├── order_list_oco_response.py │ │ │ │ ├── order_list_oco_response_order_reports_inner.py │ │ │ │ ├── order_list_oco_response_orders_inner.py │ │ │ │ ├── order_list_oto_response.py │ │ │ │ ├── order_list_oto_response_order_reports_inner.py │ │ │ │ ├── order_list_oto_response_orders_inner.py │ │ │ │ ├── order_list_otoco_response.py │ │ │ │ ├── order_list_otoco_response_order_reports_inner.py │ │ │ │ ├── order_list_otoco_response_orders_inner.py │ │ │ │ ├── order_oco_response.py │ │ │ │ ├── order_oco_response_order_reports_inner.py │ │ │ │ ├── order_oco_response_orders_inner.py │ │ │ │ ├── order_test_response.py │ │ │ │ ├── order_test_response_discount.py │ │ │ │ ├── order_test_response_special_commission_for_order.py │ │ │ │ ├── order_test_response_standard_commission_for_order.py │ │ │ │ ├── percent_price_by_side_filter.py │ │ │ │ ├── percent_price_filter.py │ │ │ │ ├── price_filter.py │ │ │ │ ├── rate_limit_order_response.py │ │ │ │ ├── rate_limit_order_response_inner.py │ │ │ │ ├── rate_limits.py │ │ │ │ ├── sor_order_response.py │ │ │ │ ├── sor_order_response_fills_inner.py │ │ │ │ ├── sor_order_test_response.py │ │ │ │ ├── symbol_filters.py │ │ │ │ ├── t_plus_sell_filter.py │ │ │ │ ├── ticker24hr_response.py │ │ │ │ ├── ticker24hr_response1.py │ │ │ │ ├── ticker24hr_response2.py │ │ │ │ ├── ticker24hr_response2_inner.py │ │ │ │ ├── ticker_book_ticker_response.py │ │ │ │ ├── ticker_book_ticker_response1.py │ │ │ │ ├── ticker_book_ticker_response2.py │ │ │ │ ├── ticker_book_ticker_response2_inner.py │ │ │ │ ├── ticker_price_response.py │ │ │ │ ├── ticker_price_response1.py │ │ │ │ ├── ticker_price_response2.py │ │ │ │ ├── ticker_price_response2_inner.py │ │ │ │ ├── ticker_response.py │ │ │ │ ├── ticker_response1.py │ │ │ │ ├── ticker_response2.py │ │ │ │ ├── ticker_response2_inner.py │ │ │ │ ├── ticker_trading_day_response.py │ │ │ │ ├── ticker_trading_day_response1.py │ │ │ │ ├── ticker_trading_day_response2.py │ │ │ │ ├── ticker_trading_day_response2_inner.py │ │ │ │ ├── time_response.py │ │ │ │ ├── trailing_delta_filter.py │ │ │ │ ├── ui_klines_item.py │ │ │ │ └── ui_klines_response.py │ │ │ └── rest_api.py │ │ │ ├── spot.py │ │ │ ├── websocket_api │ │ │ ├── __init__.py │ │ │ ├── api │ │ │ │ ├── __init__.py │ │ │ │ ├── account_api.py │ │ │ │ ├── auth_api.py │ │ │ │ ├── general_api.py │ │ │ │ ├── market_api.py │ │ │ │ ├── trade_api.py │ │ │ │ └── user_data_stream_api.py │ │ │ ├── models │ │ │ │ ├── __init__.py │ │ │ │ ├── account_commission_response.py │ │ │ │ ├── account_commission_response_result.py │ │ │ │ ├── account_commission_response_result_discount.py │ │ │ │ ├── account_commission_response_result_special_commission.py │ │ │ │ ├── account_commission_response_result_standard_commission.py │ │ │ │ ├── account_commission_response_result_tax_commission.py │ │ │ │ ├── account_rate_limits_orders_response.py │ │ │ │ ├── account_rate_limits_orders_response_result_inner.py │ │ │ │ ├── account_status_response.py │ │ │ │ ├── account_status_response_result.py │ │ │ │ ├── account_status_response_result_balances_inner.py │ │ │ │ ├── account_status_response_result_commission_rates.py │ │ │ │ ├── all_order_lists_response.py │ │ │ │ ├── all_order_lists_response_result_inner.py │ │ │ │ ├── all_orders_response.py │ │ │ │ ├── all_orders_response_result_inner.py │ │ │ │ ├── asset_filters.py │ │ │ │ ├── avg_price_response.py │ │ │ │ ├── avg_price_response_result.py │ │ │ │ ├── balance_update.py │ │ │ │ ├── depth_response.py │ │ │ │ ├── depth_response_result.py │ │ │ │ ├── enums.py │ │ │ │ ├── event_stream_terminated.py │ │ │ │ ├── exchange_filters.py │ │ │ │ ├── exchange_info_response.py │ │ │ │ ├── exchange_info_response_result.py │ │ │ │ ├── exchange_info_response_result_sors_inner.py │ │ │ │ ├── exchange_info_response_result_symbols_inner.py │ │ │ │ ├── exchange_max_num_algo_orders_filter.py │ │ │ │ ├── exchange_max_num_iceberg_orders_filter.py │ │ │ │ ├── exchange_max_num_order_lists_filter.py │ │ │ │ ├── exchange_max_num_orders_filter.py │ │ │ │ ├── execution_report.py │ │ │ │ ├── external_lock_update.py │ │ │ │ ├── iceberg_parts_filter.py │ │ │ │ ├── klines_item_inner.py │ │ │ │ ├── klines_response.py │ │ │ │ ├── list_status.py │ │ │ │ ├── list_status_o_inner.py │ │ │ │ ├── lot_size_filter.py │ │ │ │ ├── market_lot_size_filter.py │ │ │ │ ├── max_asset_filter.py │ │ │ │ ├── max_num_algo_orders_filter.py │ │ │ │ ├── max_num_iceberg_orders_filter.py │ │ │ │ ├── max_num_order_amends_filter.py │ │ │ │ ├── max_num_order_lists_filter.py │ │ │ │ ├── max_num_orders_filter.py │ │ │ │ ├── max_position_filter.py │ │ │ │ ├── min_notional_filter.py │ │ │ │ ├── my_allocations_response.py │ │ │ │ ├── my_allocations_response_result_inner.py │ │ │ │ ├── my_filters_response.py │ │ │ │ ├── my_filters_response_result.py │ │ │ │ ├── my_prevented_matches_response.py │ │ │ │ ├── my_prevented_matches_response_result_inner.py │ │ │ │ ├── my_trades_response.py │ │ │ │ ├── my_trades_response_result_inner.py │ │ │ │ ├── notional_filter.py │ │ │ │ ├── open_order_lists_status_response.py │ │ │ │ ├── open_order_lists_status_response_result_inner.py │ │ │ │ ├── open_order_lists_status_response_result_inner_orders_inner.py │ │ │ │ ├── open_orders_cancel_all_response.py │ │ │ │ ├── open_orders_cancel_all_response_result_inner.py │ │ │ │ ├── open_orders_cancel_all_response_result_inner_order_reports_inner.py │ │ │ │ ├── open_orders_cancel_all_response_result_inner_orders_inner.py │ │ │ │ ├── open_orders_status_response.py │ │ │ │ ├── open_orders_status_response_result_inner.py │ │ │ │ ├── order_amend_keep_priority_response.py │ │ │ │ ├── order_amend_keep_priority_response_result.py │ │ │ │ ├── order_amend_keep_priority_response_result_amended_order.py │ │ │ │ ├── order_amend_keep_priority_response_result_list_status.py │ │ │ │ ├── order_amend_keep_priority_response_result_list_status_orders_inner.py │ │ │ │ ├── order_amendments_response.py │ │ │ │ ├── order_amendments_response_result_inner.py │ │ │ │ ├── order_cancel_replace_response.py │ │ │ │ ├── order_cancel_replace_response_result.py │ │ │ │ ├── order_cancel_replace_response_result_cancel_response.py │ │ │ │ ├── order_cancel_replace_response_result_new_order_response.py │ │ │ │ ├── order_cancel_response.py │ │ │ │ ├── order_cancel_response_result.py │ │ │ │ ├── order_list_cancel_response.py │ │ │ │ ├── order_list_cancel_response_result.py │ │ │ │ ├── order_list_cancel_response_result_order_reports_inner.py │ │ │ │ ├── order_list_cancel_response_result_orders_inner.py │ │ │ │ ├── order_list_place_oco_response.py │ │ │ │ ├── order_list_place_oco_response_result.py │ │ │ │ ├── order_list_place_oco_response_result_order_reports_inner.py │ │ │ │ ├── order_list_place_oco_response_result_orders_inner.py │ │ │ │ ├── order_list_place_oto_response.py │ │ │ │ ├── order_list_place_oto_response_result.py │ │ │ │ ├── order_list_place_oto_response_result_order_reports_inner.py │ │ │ │ ├── order_list_place_oto_response_result_orders_inner.py │ │ │ │ ├── order_list_place_otoco_response.py │ │ │ │ ├── order_list_place_otoco_response_result.py │ │ │ │ ├── order_list_place_otoco_response_result_order_reports_inner.py │ │ │ │ ├── order_list_place_otoco_response_result_orders_inner.py │ │ │ │ ├── order_list_place_response.py │ │ │ │ ├── order_list_place_response_result.py │ │ │ │ ├── order_list_place_response_result_order_reports_inner.py │ │ │ │ ├── order_list_status_response.py │ │ │ │ ├── order_place_response.py │ │ │ │ ├── order_place_response_result.py │ │ │ │ ├── order_place_response_result_fills_inner.py │ │ │ │ ├── order_status_response.py │ │ │ │ ├── order_status_response_result.py │ │ │ │ ├── order_test_response.py │ │ │ │ ├── order_test_response_result.py │ │ │ │ ├── order_test_response_result_discount.py │ │ │ │ ├── order_test_response_result_special_commission_for_order.py │ │ │ │ ├── order_test_response_result_standard_commission_for_order.py │ │ │ │ ├── outbound_account_position.py │ │ │ │ ├── outbound_account_position_b_inner.py │ │ │ │ ├── percent_price_by_side_filter.py │ │ │ │ ├── percent_price_filter.py │ │ │ │ ├── ping_response.py │ │ │ │ ├── price_filter.py │ │ │ │ ├── rate_limits.py │ │ │ │ ├── session_logon_response.py │ │ │ │ ├── session_logon_response_result.py │ │ │ │ ├── session_logout_response.py │ │ │ │ ├── session_logout_response_result.py │ │ │ │ ├── session_status_response.py │ │ │ │ ├── session_status_response_result.py │ │ │ │ ├── session_subscriptions_response.py │ │ │ │ ├── session_subscriptions_response_result_inner.py │ │ │ │ ├── sor_order_place_response.py │ │ │ │ ├── sor_order_place_response_result_inner.py │ │ │ │ ├── sor_order_place_response_result_inner_fills_inner.py │ │ │ │ ├── sor_order_test_response.py │ │ │ │ ├── sor_order_test_response_result.py │ │ │ │ ├── symbol_filters.py │ │ │ │ ├── t_plus_sell_filter.py │ │ │ │ ├── ticker24hr_response.py │ │ │ │ ├── ticker24hr_response1.py │ │ │ │ ├── ticker24hr_response1_result.py │ │ │ │ ├── ticker24hr_response2.py │ │ │ │ ├── ticker24hr_response2_result_inner.py │ │ │ │ ├── ticker_book_response.py │ │ │ │ ├── ticker_book_response1.py │ │ │ │ ├── ticker_book_response1_result.py │ │ │ │ ├── ticker_book_response2.py │ │ │ │ ├── ticker_book_response2_result_inner.py │ │ │ │ ├── ticker_price_response.py │ │ │ │ ├── ticker_price_response1.py │ │ │ │ ├── ticker_price_response1_result.py │ │ │ │ ├── ticker_price_response2.py │ │ │ │ ├── ticker_price_response2_result_inner.py │ │ │ │ ├── ticker_response.py │ │ │ │ ├── ticker_response1.py │ │ │ │ ├── ticker_response1_result.py │ │ │ │ ├── ticker_response2.py │ │ │ │ ├── ticker_response2_result_inner.py │ │ │ │ ├── ticker_trading_day_response.py │ │ │ │ ├── ticker_trading_day_response_result_inner.py │ │ │ │ ├── time_response.py │ │ │ │ ├── time_response_result.py │ │ │ │ ├── trades_aggregate_response.py │ │ │ │ ├── trades_aggregate_response_result_inner.py │ │ │ │ ├── trades_historical_response.py │ │ │ │ ├── trades_historical_response_result_inner.py │ │ │ │ ├── trades_recent_response.py │ │ │ │ ├── trades_recent_response_result_inner.py │ │ │ │ ├── trailing_delta_filter.py │ │ │ │ ├── ui_klines_response.py │ │ │ │ ├── user_data_stream_events_response.py │ │ │ │ ├── user_data_stream_subscribe_response.py │ │ │ │ ├── user_data_stream_subscribe_response_result.py │ │ │ │ ├── user_data_stream_subscribe_signature_response.py │ │ │ │ └── user_data_stream_unsubscribe_response.py │ │ │ └── websocket_api.py │ │ │ └── websocket_streams │ │ │ ├── __init__.py │ │ │ ├── models │ │ │ ├── __init__.py │ │ │ ├── agg_trade_response.py │ │ │ ├── all_market_rolling_window_ticker_response.py │ │ │ ├── all_market_rolling_window_ticker_response_inner.py │ │ │ ├── all_mini_ticker_response.py │ │ │ ├── all_mini_ticker_response_inner.py │ │ │ ├── all_ticker_response.py │ │ │ ├── all_ticker_response_inner.py │ │ │ ├── asset_filters.py │ │ │ ├── avg_price_response.py │ │ │ ├── book_ticker_response.py │ │ │ ├── diff_book_depth_response.py │ │ │ ├── enums.py │ │ │ ├── exchange_filters.py │ │ │ ├── exchange_max_num_algo_orders_filter.py │ │ │ ├── exchange_max_num_iceberg_orders_filter.py │ │ │ ├── exchange_max_num_order_lists_filter.py │ │ │ ├── exchange_max_num_orders_filter.py │ │ │ ├── iceberg_parts_filter.py │ │ │ ├── kline_offset_response.py │ │ │ ├── kline_response.py │ │ │ ├── kline_response_k.py │ │ │ ├── lot_size_filter.py │ │ │ ├── market_lot_size_filter.py │ │ │ ├── max_asset_filter.py │ │ │ ├── max_num_algo_orders_filter.py │ │ │ ├── max_num_iceberg_orders_filter.py │ │ │ ├── max_num_order_amends_filter.py │ │ │ ├── max_num_order_lists_filter.py │ │ │ ├── max_num_orders_filter.py │ │ │ ├── max_position_filter.py │ │ │ ├── min_notional_filter.py │ │ │ ├── mini_ticker_response.py │ │ │ ├── notional_filter.py │ │ │ ├── partial_book_depth_response.py │ │ │ ├── percent_price_by_side_filter.py │ │ │ ├── percent_price_filter.py │ │ │ ├── price_filter.py │ │ │ ├── rate_limits.py │ │ │ ├── rolling_window_ticker_response.py │ │ │ ├── symbol_filters.py │ │ │ ├── t_plus_sell_filter.py │ │ │ ├── ticker_response.py │ │ │ ├── trade_response.py │ │ │ └── trailing_delta_filter.py │ │ │ ├── streams │ │ │ ├── __init__.py │ │ │ └── web_socket_streams_api.py │ │ │ └── websocket_streams.py │ ├── tests │ │ └── unit │ │ │ ├── rest_api │ │ │ ├── test_account_api.py │ │ │ ├── test_general_api.py │ │ │ ├── test_market_api.py │ │ │ └── test_trade_api.py │ │ │ ├── websocket_api │ │ │ ├── test_account_api_ws_api.py │ │ │ ├── test_auth_api_ws_api.py │ │ │ ├── test_general_api_ws_api.py │ │ │ ├── test_market_api_ws_api.py │ │ │ ├── test_trade_api_ws_api.py │ │ │ └── test_user_data_stream_api_ws_api.py │ │ │ └── websocket_streams │ │ │ └── test_web_socket_streams_api_ws_streams.py │ └── tox.ini ├── staking │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENCE │ ├── README.md │ ├── docs │ │ ├── migration_guide_staking_sdk.md │ │ └── rest_api │ │ │ ├── certificate-pinning.md │ │ │ ├── compression.md │ │ │ ├── error-handling.md │ │ │ ├── httpsAgent.md │ │ │ ├── keepAlive.md │ │ │ ├── key-pair-authentication.md │ │ │ ├── proxy.md │ │ │ ├── retries.md │ │ │ └── timeout.md │ ├── examples │ │ └── rest_api │ │ │ ├── EthStaking │ │ │ ├── eth_staking_account.py │ │ │ ├── get_current_eth_staking_quota.py │ │ │ ├── get_eth_redemption_history.py │ │ │ ├── get_eth_staking_history.py │ │ │ ├── get_wbeth_rate_history.py │ │ │ ├── get_wbeth_rewards_history.py │ │ │ ├── get_wbeth_unwrap_history.py │ │ │ ├── get_wbeth_wrap_history.py │ │ │ ├── redeem_eth.py │ │ │ ├── subscribe_eth_staking.py │ │ │ └── wrap_beth.py │ │ │ ├── OnChainYields │ │ │ ├── get_on_chain_yields_locked_personal_left_quota.py │ │ │ ├── get_on_chain_yields_locked_product_list.py │ │ │ ├── get_on_chain_yields_locked_product_position.py │ │ │ ├── get_on_chain_yields_locked_redemption_record.py │ │ │ ├── get_on_chain_yields_locked_rewards_history.py │ │ │ ├── get_on_chain_yields_locked_subscription_preview.py │ │ │ ├── get_on_chain_yields_locked_subscription_record.py │ │ │ ├── on_chain_yields_account.py │ │ │ ├── redeem_on_chain_yields_locked_product.py │ │ │ ├── set_on_chain_yields_locked_auto_subscribe.py │ │ │ ├── set_on_chain_yields_locked_product_redeem_option.py │ │ │ └── subscribe_on_chain_yields_locked_product.py │ │ │ ├── SoftStaking │ │ │ ├── get_soft_staking_product_list.py │ │ │ ├── get_soft_staking_rewards_history.py │ │ │ └── set_soft_staking.py │ │ │ └── SolStaking │ │ │ ├── claim_boost_rewards.py │ │ │ ├── get_bnsol_rate_history.py │ │ │ ├── get_bnsol_rewards_history.py │ │ │ ├── get_boost_rewards_history.py │ │ │ ├── get_sol_redemption_history.py │ │ │ ├── get_sol_staking_history.py │ │ │ ├── get_sol_staking_quota_details.py │ │ │ ├── get_unclaimed_rewards.py │ │ │ ├── redeem_sol.py │ │ │ ├── sol_staking_account.py │ │ │ └── subscribe_sol_staking.py │ ├── pyproject.toml │ ├── src │ │ └── binance_sdk_staking │ │ │ ├── __init__.py │ │ │ ├── metadata.py │ │ │ ├── rest_api │ │ │ ├── __init__.py │ │ │ ├── api │ │ │ │ ├── __init__.py │ │ │ │ ├── eth_staking_api.py │ │ │ │ ├── on_chain_yields_api.py │ │ │ │ ├── soft_staking_api.py │ │ │ │ └── sol_staking_api.py │ │ │ ├── models │ │ │ │ ├── __init__.py │ │ │ │ ├── claim_boost_rewards_response.py │ │ │ │ ├── enums.py │ │ │ │ ├── eth_staking_account_response.py │ │ │ │ ├── eth_staking_account_response_holdings.py │ │ │ │ ├── eth_staking_account_response_profit.py │ │ │ │ ├── get_bnsol_rate_history_response.py │ │ │ │ ├── get_bnsol_rate_history_response_rows_inner.py │ │ │ │ ├── get_bnsol_rate_history_response_rows_inner_boost_rewards_inner.py │ │ │ │ ├── get_bnsol_rewards_history_response.py │ │ │ │ ├── get_bnsol_rewards_history_response_rows_inner.py │ │ │ │ ├── get_boost_rewards_history_response.py │ │ │ │ ├── get_boost_rewards_history_response_rows_inner.py │ │ │ │ ├── get_current_eth_staking_quota_response.py │ │ │ │ ├── get_eth_redemption_history_response.py │ │ │ │ ├── get_eth_redemption_history_response_rows_inner.py │ │ │ │ ├── get_eth_staking_history_response.py │ │ │ │ ├── get_eth_staking_history_response_rows_inner.py │ │ │ │ ├── get_on_chain_yields_locked_personal_left_quota_response.py │ │ │ │ ├── get_on_chain_yields_locked_product_list_response.py │ │ │ │ ├── get_on_chain_yields_locked_product_list_response_rows_inner.py │ │ │ │ ├── get_on_chain_yields_locked_product_list_response_rows_inner_detail.py │ │ │ │ ├── get_on_chain_yields_locked_product_list_response_rows_inner_quota.py │ │ │ │ ├── get_on_chain_yields_locked_product_position_response.py │ │ │ │ ├── get_on_chain_yields_locked_product_position_response_rows_inner.py │ │ │ │ ├── get_on_chain_yields_locked_redemption_record_response.py │ │ │ │ ├── get_on_chain_yields_locked_redemption_record_response_rows_inner.py │ │ │ │ ├── get_on_chain_yields_locked_rewards_history_response.py │ │ │ │ ├── get_on_chain_yields_locked_rewards_history_response_rows_inner.py │ │ │ │ ├── get_on_chain_yields_locked_subscription_preview_response.py │ │ │ │ ├── get_on_chain_yields_locked_subscription_record_response.py │ │ │ │ ├── get_on_chain_yields_locked_subscription_record_response_rows_inner.py │ │ │ │ ├── get_soft_staking_product_list_response.py │ │ │ │ ├── get_soft_staking_product_list_response_rows_inner.py │ │ │ │ ├── get_soft_staking_rewards_history_response.py │ │ │ │ ├── get_soft_staking_rewards_history_response_rows_inner.py │ │ │ │ ├── get_sol_redemption_history_response.py │ │ │ │ ├── get_sol_redemption_history_response_rows_inner.py │ │ │ │ ├── get_sol_staking_history_response.py │ │ │ │ ├── get_sol_staking_history_response_rows_inner.py │ │ │ │ ├── get_sol_staking_quota_details_response.py │ │ │ │ ├── get_unclaimed_rewards_response.py │ │ │ │ ├── get_unclaimed_rewards_response_inner.py │ │ │ │ ├── get_wbeth_rate_history_response.py │ │ │ │ ├── get_wbeth_rate_history_response_rows_inner.py │ │ │ │ ├── get_wbeth_rewards_history_response.py │ │ │ │ ├── get_wbeth_rewards_history_response_rows_inner.py │ │ │ │ ├── get_wbeth_unwrap_history_response.py │ │ │ │ ├── get_wbeth_unwrap_history_response_rows_inner.py │ │ │ │ ├── get_wbeth_wrap_history_response.py │ │ │ │ ├── get_wbeth_wrap_history_response_rows_inner.py │ │ │ │ ├── on_chain_yields_account_response.py │ │ │ │ ├── redeem_eth_response.py │ │ │ │ ├── redeem_on_chain_yields_locked_product_response.py │ │ │ │ ├── redeem_sol_response.py │ │ │ │ ├── set_on_chain_yields_locked_auto_subscribe_response.py │ │ │ │ ├── set_on_chain_yields_locked_product_redeem_option_response.py │ │ │ │ ├── set_soft_staking_response.py │ │ │ │ ├── sol_staking_account_response.py │ │ │ │ ├── subscribe_eth_staking_response.py │ │ │ │ ├── subscribe_on_chain_yields_locked_product_response.py │ │ │ │ ├── subscribe_sol_staking_response.py │ │ │ │ └── wrap_beth_response.py │ │ │ └── rest_api.py │ │ │ └── staking.py │ ├── tests │ │ └── unit │ │ │ └── rest_api │ │ │ ├── test_eth_staking_api.py │ │ │ ├── test_on_chain_yields_api.py │ │ │ ├── test_soft_staking_api.py │ │ │ └── test_sol_staking_api.py │ └── tox.ini ├── sub_account │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENCE │ ├── README.md │ ├── docs │ │ ├── migration_guide_sub_account_sdk.md │ │ └── rest_api │ │ │ ├── certificate-pinning.md │ │ │ ├── compression.md │ │ │ ├── error-handling.md │ │ │ ├── httpsAgent.md │ │ │ ├── keepAlive.md │ │ │ ├── key-pair-authentication.md │ │ │ ├── proxy.md │ │ │ ├── retries.md │ │ │ └── timeout.md │ ├── examples │ │ └── rest_api │ │ │ ├── AccountManagement │ │ │ ├── create_a_virtual_sub_account.py │ │ │ ├── enable_futures_for_sub_account.py │ │ │ ├── enable_options_for_sub_account.py │ │ │ ├── get_futures_position_risk_of_sub_account.py │ │ │ ├── get_futures_position_risk_of_sub_account_v2.py │ │ │ ├── get_sub_accounts_status_on_margin_or_futures.py │ │ │ ├── query_sub_account_list.py │ │ │ └── query_sub_account_transaction_statistics.py │ │ │ ├── AssetManagement │ │ │ ├── futures_transfer_for_sub_account.py │ │ │ ├── get_detail_on_sub_accounts_futures_account.py │ │ │ ├── get_detail_on_sub_accounts_futures_account_v2.py │ │ │ ├── get_detail_on_sub_accounts_margin_account.py │ │ │ ├── get_move_position_history_for_sub_account.py │ │ │ ├── get_sub_account_deposit_address.py │ │ │ ├── get_sub_account_deposit_history.py │ │ │ ├── get_summary_of_sub_accounts_futures_account.py │ │ │ ├── get_summary_of_sub_accounts_futures_account_v2.py │ │ │ ├── get_summary_of_sub_accounts_margin_account.py │ │ │ ├── margin_transfer_for_sub_account.py │ │ │ ├── move_position_for_sub_account.py │ │ │ ├── query_sub_account_assets.py │ │ │ ├── query_sub_account_assets_asset_management.py │ │ │ ├── query_sub_account_futures_asset_transfer_history.py │ │ │ ├── query_sub_account_spot_asset_transfer_history.py │ │ │ ├── query_sub_account_spot_assets_summary.py │ │ │ ├── query_universal_transfer_history.py │ │ │ ├── sub_account_futures_asset_transfer.py │ │ │ ├── sub_account_transfer_history.py │ │ │ ├── transfer_to_master.py │ │ │ ├── transfer_to_sub_account_of_same_master.py │ │ │ └── universal_transfer.py │ │ │ ├── ManagedSubAccount │ │ │ ├── deposit_assets_into_the_managed_sub_account.py │ │ │ ├── get_managed_sub_account_deposit_address.py │ │ │ ├── query_managed_sub_account_asset_details.py │ │ │ ├── query_managed_sub_account_futures_asset_details.py │ │ │ ├── query_managed_sub_account_list.py │ │ │ ├── query_managed_sub_account_margin_asset_details.py │ │ │ ├── query_managed_sub_account_snapshot.py │ │ │ ├── query_managed_sub_account_transfer_log_master_account_investor.py │ │ │ ├── query_managed_sub_account_transfer_log_master_account_trading.py │ │ │ ├── query_managed_sub_account_transfer_log_sub_account_trading.py │ │ │ └── withdrawl_assets_from_the_managed_sub_account.py │ │ │ └── ManagementApi │ │ │ ├── add_ip_restriction_for_sub_account_api_key.py │ │ │ ├── delete_ip_list_for_a_sub_account_api_key.py │ │ │ └── get_ip_restriction_for_a_sub_account_api_key.py │ ├── pyproject.toml │ ├── src │ │ └── binance_sdk_sub_account │ │ │ ├── __init__.py │ │ │ ├── metadata.py │ │ │ ├── rest_api │ │ │ ├── __init__.py │ │ │ ├── api │ │ │ │ ├── __init__.py │ │ │ │ ├── account_management_api.py │ │ │ │ ├── api_management_api.py │ │ │ │ ├── asset_management_api.py │ │ │ │ └── managed_sub_account_api.py │ │ │ ├── models │ │ │ │ ├── __init__.py │ │ │ │ ├── add_ip_restriction_for_sub_account_api_key_response.py │ │ │ │ ├── create_a_virtual_sub_account_response.py │ │ │ │ ├── delete_ip_list_for_a_sub_account_api_key_response.py │ │ │ │ ├── deposit_assets_into_the_managed_sub_account_response.py │ │ │ │ ├── enable_futures_for_sub_account_response.py │ │ │ │ ├── enable_options_for_sub_account_response.py │ │ │ │ ├── enums.py │ │ │ │ ├── futures_transfer_for_sub_account_response.py │ │ │ │ ├── get_detail_on_sub_accounts_futures_account_response.py │ │ │ │ ├── get_detail_on_sub_accounts_futures_account_v2_response.py │ │ │ │ ├── get_detail_on_sub_accounts_futures_account_v2_response_delivery_account_resp.py │ │ │ │ ├── get_detail_on_sub_accounts_futures_account_v2_response_delivery_account_resp_assets_inner.py │ │ │ │ ├── get_detail_on_sub_accounts_futures_account_v2_response_future_account_resp.py │ │ │ │ ├── get_detail_on_sub_accounts_futures_account_v2_response_future_account_resp_assets_inner.py │ │ │ │ ├── get_detail_on_sub_accounts_margin_account_response.py │ │ │ │ ├── get_detail_on_sub_accounts_margin_account_response_margin_trade_coeff_vo.py │ │ │ │ ├── get_detail_on_sub_accounts_margin_account_response_margin_user_asset_vo_list_inner.py │ │ │ │ ├── get_futures_position_risk_of_sub_account_response.py │ │ │ │ ├── get_futures_position_risk_of_sub_account_v2_response.py │ │ │ │ ├── get_futures_position_risk_of_sub_account_v2_response_delivery_position_risk_vos_inner.py │ │ │ │ ├── get_futures_position_risk_of_sub_account_v2_response_future_position_risk_vos_inner.py │ │ │ │ ├── get_ip_restriction_for_a_sub_account_api_key_response.py │ │ │ │ ├── get_managed_sub_account_deposit_address_response.py │ │ │ │ ├── get_move_position_history_for_sub_account_response.py │ │ │ │ ├── get_move_position_history_for_sub_account_response_future_move_position_order_vo_list_inner.py │ │ │ │ ├── get_sub_account_deposit_address_response.py │ │ │ │ ├── get_sub_account_deposit_history_response.py │ │ │ │ ├── get_sub_account_deposit_history_response_inner.py │ │ │ │ ├── get_sub_accounts_status_on_margin_or_futures_response.py │ │ │ │ ├── get_sub_accounts_status_on_margin_or_futures_response_inner.py │ │ │ │ ├── get_summary_of_sub_accounts_futures_account_response.py │ │ │ │ ├── get_summary_of_sub_accounts_futures_account_v2_response.py │ │ │ │ ├── get_summary_of_sub_accounts_futures_account_v2_response_delivery_account_summary_resp.py │ │ │ │ ├── get_summary_of_sub_accounts_futures_account_v2_response_delivery_account_summary_resp_sub_account_list_inner.py │ │ │ │ ├── get_summary_of_sub_accounts_futures_account_v2_response_future_account_summary_resp.py │ │ │ │ ├── get_summary_of_sub_accounts_futures_account_v2_response_future_account_summary_resp_sub_account_list_inner.py │ │ │ │ ├── get_summary_of_sub_accounts_margin_account_response.py │ │ │ │ ├── get_summary_of_sub_accounts_margin_account_response_sub_account_list_inner.py │ │ │ │ ├── margin_transfer_for_sub_account_response.py │ │ │ │ ├── move_position_for_sub_account_order_args_parameter_inner.py │ │ │ │ ├── move_position_for_sub_account_response.py │ │ │ │ ├── move_position_for_sub_account_response_move_position_orders_inner.py │ │ │ │ ├── query_managed_sub_account_asset_details_response.py │ │ │ │ ├── query_managed_sub_account_asset_details_response_inner.py │ │ │ │ ├── query_managed_sub_account_futures_asset_details_response.py │ │ │ │ ├── query_managed_sub_account_futures_asset_details_response_snapshot_vos_inner.py │ │ │ │ ├── query_managed_sub_account_futures_asset_details_response_snapshot_vos_inner_data.py │ │ │ │ ├── query_managed_sub_account_futures_asset_details_response_snapshot_vos_inner_data_assets_inner.py │ │ │ │ ├── query_managed_sub_account_futures_asset_details_response_snapshot_vos_inner_data_position_inner.py │ │ │ │ ├── query_managed_sub_account_list_response.py │ │ │ │ ├── query_managed_sub_account_list_response_manager_sub_user_info_vo_list_inner.py │ │ │ │ ├── query_managed_sub_account_margin_asset_details_response.py │ │ │ │ ├── query_managed_sub_account_margin_asset_details_response_user_assets_inner.py │ │ │ │ ├── query_managed_sub_account_snapshot_response.py │ │ │ │ ├── query_managed_sub_account_snapshot_response_snapshot_vos_inner.py │ │ │ │ ├── query_managed_sub_account_snapshot_response_snapshot_vos_inner_data.py │ │ │ │ ├── query_managed_sub_account_snapshot_response_snapshot_vos_inner_data_assets_inner.py │ │ │ │ ├── query_managed_sub_account_snapshot_response_snapshot_vos_inner_data_balances_inner.py │ │ │ │ ├── query_managed_sub_account_snapshot_response_snapshot_vos_inner_data_position_inner.py │ │ │ │ ├── query_managed_sub_account_snapshot_response_snapshot_vos_inner_data_user_assets_inner.py │ │ │ │ ├── query_managed_sub_account_transfer_log_master_account_investor_response.py │ │ │ │ ├── query_managed_sub_account_transfer_log_master_account_investor_response_manager_sub_transfer_history_vos_inner.py │ │ │ │ ├── query_managed_sub_account_transfer_log_master_account_trading_response.py │ │ │ │ ├── query_managed_sub_account_transfer_log_sub_account_trading_response.py │ │ │ │ ├── query_sub_account_assets_asset_management_response.py │ │ │ │ ├── query_sub_account_assets_asset_management_response_balances_inner.py │ │ │ │ ├── query_sub_account_assets_response.py │ │ │ │ ├── query_sub_account_assets_response_balances_inner.py │ │ │ │ ├── query_sub_account_futures_asset_transfer_history_response.py │ │ │ │ ├── query_sub_account_futures_asset_transfer_history_response_transfers_inner.py │ │ │ │ ├── query_sub_account_list_response.py │ │ │ │ ├── query_sub_account_list_response_sub_accounts_inner.py │ │ │ │ ├── query_sub_account_spot_asset_transfer_history_response.py │ │ │ │ ├── query_sub_account_spot_asset_transfer_history_response_inner.py │ │ │ │ ├── query_sub_account_spot_assets_summary_response.py │ │ │ │ ├── query_sub_account_spot_assets_summary_response_spot_sub_user_asset_btc_vo_list_inner.py │ │ │ │ ├── query_sub_account_transaction_statistics_response.py │ │ │ │ ├── query_sub_account_transaction_statistics_response_trade_info_vos_inner.py │ │ │ │ ├── query_universal_transfer_history_response.py │ │ │ │ ├── query_universal_transfer_history_response_result_inner.py │ │ │ │ ├── sub_account_futures_asset_transfer_response.py │ │ │ │ ├── sub_account_transfer_history_response.py │ │ │ │ ├── sub_account_transfer_history_response_inner.py │ │ │ │ ├── transfer_to_master_response.py │ │ │ │ ├── transfer_to_sub_account_of_same_master_response.py │ │ │ │ ├── universal_transfer_response.py │ │ │ │ └── withdrawl_assets_from_the_managed_sub_account_response.py │ │ │ └── rest_api.py │ │ │ └── sub_account.py │ ├── tests │ │ └── unit │ │ │ └── rest_api │ │ │ ├── test_account_management_api.py │ │ │ ├── test_api_management_api.py │ │ │ ├── test_asset_management_api.py │ │ │ └── test_managed_sub_account_api.py │ └── tox.ini ├── vip_loan │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENCE │ ├── README.md │ ├── docs │ │ └── rest_api │ │ │ ├── certificate-pinning.md │ │ │ ├── compression.md │ │ │ ├── error-handling.md │ │ │ ├── httpsAgent.md │ │ │ ├── keepAlive.md │ │ │ ├── key-pair-authentication.md │ │ │ ├── proxy.md │ │ │ ├── retries.md │ │ │ └── timeout.md │ ├── examples │ │ └── rest_api │ │ │ ├── MarketData │ │ │ ├── get_borrow_interest_rate.py │ │ │ ├── get_collateral_asset_data.py │ │ │ └── get_loanable_assets_data.py │ │ │ ├── Trade │ │ │ ├── vip_loan_borrow.py │ │ │ ├── vip_loan_renew.py │ │ │ └── vip_loan_repay.py │ │ │ └── UserInformation │ │ │ ├── check_vip_loan_collateral_account.py │ │ │ ├── get_vip_loan_ongoing_orders.py │ │ │ └── query_application_status.py │ ├── pyproject.toml │ ├── src │ │ └── binance_sdk_vip_loan │ │ │ ├── __init__.py │ │ │ ├── metadata.py │ │ │ ├── rest_api │ │ │ ├── __init__.py │ │ │ ├── api │ │ │ │ ├── __init__.py │ │ │ │ ├── market_data_api.py │ │ │ │ ├── trade_api.py │ │ │ │ └── user_information_api.py │ │ │ ├── models │ │ │ │ ├── __init__.py │ │ │ │ ├── check_vip_loan_collateral_account_response.py │ │ │ │ ├── check_vip_loan_collateral_account_response_rows_inner.py │ │ │ │ ├── enums.py │ │ │ │ ├── get_borrow_interest_rate_response.py │ │ │ │ ├── get_borrow_interest_rate_response_inner.py │ │ │ │ ├── get_collateral_asset_data_response.py │ │ │ │ ├── get_collateral_asset_data_response_rows_inner.py │ │ │ │ ├── get_loanable_assets_data_response.py │ │ │ │ ├── get_loanable_assets_data_response_rows_inner.py │ │ │ │ ├── get_vip_loan_ongoing_orders_response.py │ │ │ │ ├── get_vip_loan_ongoing_orders_response_rows_inner.py │ │ │ │ ├── query_application_status_response.py │ │ │ │ ├── query_application_status_response_rows_inner.py │ │ │ │ ├── vip_loan_borrow_response.py │ │ │ │ ├── vip_loan_renew_response.py │ │ │ │ └── vip_loan_repay_response.py │ │ │ └── rest_api.py │ │ │ └── vip_loan.py │ ├── tests │ │ └── unit │ │ │ └── rest_api │ │ │ ├── test_market_data_api.py │ │ │ ├── test_trade_api.py │ │ │ └── test_user_information_api.py │ └── tox.ini └── wallet │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENCE │ ├── README.md │ ├── docs │ ├── migration_guide_wallet_sdk.md │ └── rest_api │ │ ├── certificate-pinning.md │ │ ├── compression.md │ │ ├── error-handling.md │ │ ├── httpsAgent.md │ │ ├── keepAlive.md │ │ ├── key-pair-authentication.md │ │ ├── proxy.md │ │ ├── retries.md │ │ └── timeout.md │ ├── examples │ └── rest_api │ │ ├── Account │ │ ├── account_api_trading_status.py │ │ ├── account_info.py │ │ ├── account_status.py │ │ ├── daily_account_snapshot.py │ │ ├── disable_fast_withdraw_switch.py │ │ ├── enable_fast_withdraw_switch.py │ │ └── get_api_key_permission.py │ │ ├── Asset │ │ ├── asset_detail.py │ │ ├── asset_dividend_record.py │ │ ├── dust_transfer.py │ │ ├── dustlog.py │ │ ├── funding_wallet.py │ │ ├── get_assets_that_can_be_converted_into_bnb.py │ │ ├── get_cloud_mining_payment_and_refund_history.py │ │ ├── get_open_symbol_list.py │ │ ├── query_user_delegation_history.py │ │ ├── query_user_universal_transfer_history.py │ │ ├── query_user_wallet_balance.py │ │ ├── toggle_bnb_burn_on_spot_trade_and_margin_interest.py │ │ ├── trade_fee.py │ │ ├── user_asset.py │ │ └── user_universal_transfer.py │ │ ├── Capital │ │ ├── all_coins_information.py │ │ ├── deposit_address.py │ │ ├── deposit_history.py │ │ ├── fetch_deposit_address_list_with_network.py │ │ ├── fetch_withdraw_address_list.py │ │ ├── fetch_withdraw_quota.py │ │ ├── one_click_arrival_deposit_apply.py │ │ ├── withdraw.py │ │ └── withdraw_history.py │ │ ├── Others │ │ ├── get_symbols_delist_schedule_for_spot.py │ │ └── system_status.py │ │ └── TravelRule │ │ ├── broker_withdraw.py │ │ ├── check_questionnaire_requirements.py │ │ ├── deposit_history_travel_rule.py │ │ ├── deposit_history_v2.py │ │ ├── fetch_address_verification_list.py │ │ ├── submit_deposit_questionnaire.py │ │ ├── submit_deposit_questionnaire_travel_rule.py │ │ ├── vasp_list.py │ │ ├── withdraw_history_v1.py │ │ ├── withdraw_history_v2.py │ │ └── withdraw_travel_rule.py │ ├── pyproject.toml │ ├── src │ └── binance_sdk_wallet │ │ ├── __init__.py │ │ ├── metadata.py │ │ ├── rest_api │ │ ├── __init__.py │ │ ├── api │ │ │ ├── __init__.py │ │ │ ├── account_api.py │ │ │ ├── asset_api.py │ │ │ ├── capital_api.py │ │ │ ├── others_api.py │ │ │ └── travel_rule_api.py │ │ ├── models │ │ │ ├── __init__.py │ │ │ ├── account_api_trading_status_response.py │ │ │ ├── account_api_trading_status_response_data.py │ │ │ ├── account_api_trading_status_response_data_trigger_condition.py │ │ │ ├── account_info_response.py │ │ │ ├── account_status_response.py │ │ │ ├── all_coins_information_response.py │ │ │ ├── all_coins_information_response_inner.py │ │ │ ├── all_coins_information_response_inner_network_list_inner.py │ │ │ ├── asset_detail_response.py │ │ │ ├── asset_detail_response_ctr.py │ │ │ ├── asset_detail_response_sky.py │ │ │ ├── asset_dividend_record_response.py │ │ │ ├── asset_dividend_record_response_rows_inner.py │ │ │ ├── broker_withdraw_response.py │ │ │ ├── check_questionnaire_requirements_response.py │ │ │ ├── daily_account_snapshot_response.py │ │ │ ├── daily_account_snapshot_response_snapshot_vos_inner.py │ │ │ ├── daily_account_snapshot_response_snapshot_vos_inner_data.py │ │ │ ├── daily_account_snapshot_response_snapshot_vos_inner_data_assets_inner.py │ │ │ ├── daily_account_snapshot_response_snapshot_vos_inner_data_balances_inner.py │ │ │ ├── daily_account_snapshot_response_snapshot_vos_inner_data_position_inner.py │ │ │ ├── daily_account_snapshot_response_snapshot_vos_inner_data_user_assets_inner.py │ │ │ ├── deposit_address_response.py │ │ │ ├── deposit_history_response.py │ │ │ ├── deposit_history_response_inner.py │ │ │ ├── deposit_history_travel_rule_response.py │ │ │ ├── deposit_history_travel_rule_response_inner.py │ │ │ ├── deposit_history_v2_response.py │ │ │ ├── deposit_history_v2_response_inner.py │ │ │ ├── deposit_history_v2_response_inner_questionnaire.py │ │ │ ├── dust_transfer_response.py │ │ │ ├── dust_transfer_response_transfer_result_inner.py │ │ │ ├── dustlog_response.py │ │ │ ├── dustlog_response_user_asset_dribblets_inner.py │ │ │ ├── dustlog_response_user_asset_dribblets_inner_user_asset_dribblet_details_inner.py │ │ │ ├── enums.py │ │ │ ├── fetch_address_verification_list_response.py │ │ │ ├── fetch_address_verification_list_response_inner.py │ │ │ ├── fetch_address_verification_list_response_inner_address_questionnaire.py │ │ │ ├── fetch_deposit_address_list_with_network_response.py │ │ │ ├── fetch_deposit_address_list_with_network_response_inner.py │ │ │ ├── fetch_withdraw_address_list_response.py │ │ │ ├── fetch_withdraw_address_list_response_inner.py │ │ │ ├── fetch_withdraw_quota_response.py │ │ │ ├── funding_wallet_response.py │ │ │ ├── funding_wallet_response_inner.py │ │ │ ├── get_api_key_permission_response.py │ │ │ ├── get_assets_that_can_be_converted_into_bnb_response.py │ │ │ ├── get_assets_that_can_be_converted_into_bnb_response_details_inner.py │ │ │ ├── get_cloud_mining_payment_and_refund_history_response.py │ │ │ ├── get_cloud_mining_payment_and_refund_history_response_rows_inner.py │ │ │ ├── get_open_symbol_list_response.py │ │ │ ├── get_open_symbol_list_response_inner.py │ │ │ ├── get_spot_delist_schedule_response.py │ │ │ ├── get_spot_delist_schedule_response_inner.py │ │ │ ├── get_symbols_delist_schedule_for_spot_response.py │ │ │ ├── get_symbols_delist_schedule_for_spot_response_inner.py │ │ │ ├── one_click_arrival_deposit_apply_response.py │ │ │ ├── query_user_delegation_history_response.py │ │ │ ├── query_user_delegation_history_response_rows_inner.py │ │ │ ├── query_user_universal_transfer_history_response.py │ │ │ ├── query_user_universal_transfer_history_response_rows_inner.py │ │ │ ├── query_user_wallet_balance_response.py │ │ │ ├── query_user_wallet_balance_response_inner.py │ │ │ ├── submit_deposit_questionnaire_response.py │ │ │ ├── submit_deposit_questionnaire_travel_rule_response.py │ │ │ ├── system_status_response.py │ │ │ ├── toggle_bnb_burn_on_spot_trade_and_margin_interest_response.py │ │ │ ├── trade_fee_response.py │ │ │ ├── trade_fee_response_inner.py │ │ │ ├── user_asset_response.py │ │ │ ├── user_asset_response_inner.py │ │ │ ├── user_universal_transfer_response.py │ │ │ ├── vasp_list_response.py │ │ │ ├── vasp_list_response_inner.py │ │ │ ├── withdraw_history_response.py │ │ │ ├── withdraw_history_response_inner.py │ │ │ ├── withdraw_history_v1_response.py │ │ │ ├── withdraw_history_v2_response.py │ │ │ ├── withdraw_history_v2_response_inner.py │ │ │ ├── withdraw_response.py │ │ │ └── withdraw_travel_rule_response.py │ │ └── rest_api.py │ │ └── wallet.py │ ├── tests │ └── unit │ │ └── rest_api │ │ ├── test_account_api.py │ │ ├── test_asset_api.py │ │ ├── test_capital_api.py │ │ ├── test_others_api.py │ │ └── test_travel_rule_api.py │ └── tox.ini └── common ├── .gitignore ├── CHANGELOG.md ├── LICENCE ├── README.md ├── pyproject.toml ├── src └── binance_common │ ├── __init__.py │ ├── configuration.py │ ├── constants.py │ ├── errors.py │ ├── headers.py │ ├── logger.py │ ├── models.py │ ├── signature.py │ ├── utils.py │ └── websocket.py ├── tests └── unit │ ├── test_utils.py │ └── test_websocket.py └── tox.ini /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/LICENSE.md -------------------------------------------------------------------------------- /MIGRATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/MIGRATION.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/README.md -------------------------------------------------------------------------------- /clients/algo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/algo/.gitignore -------------------------------------------------------------------------------- /clients/algo/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/algo/CHANGELOG.md -------------------------------------------------------------------------------- /clients/algo/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/algo/LICENCE -------------------------------------------------------------------------------- /clients/algo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/algo/README.md -------------------------------------------------------------------------------- /clients/algo/docs/rest_api/certificate-pinning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/algo/docs/rest_api/certificate-pinning.md -------------------------------------------------------------------------------- /clients/algo/docs/rest_api/compression.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/algo/docs/rest_api/compression.md -------------------------------------------------------------------------------- /clients/algo/docs/rest_api/error-handling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/algo/docs/rest_api/error-handling.md -------------------------------------------------------------------------------- /clients/algo/docs/rest_api/httpsAgent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/algo/docs/rest_api/httpsAgent.md -------------------------------------------------------------------------------- /clients/algo/docs/rest_api/keepAlive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/algo/docs/rest_api/keepAlive.md -------------------------------------------------------------------------------- /clients/algo/docs/rest_api/key-pair-authentication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/algo/docs/rest_api/key-pair-authentication.md -------------------------------------------------------------------------------- /clients/algo/docs/rest_api/proxy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/algo/docs/rest_api/proxy.md -------------------------------------------------------------------------------- /clients/algo/docs/rest_api/retries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/algo/docs/rest_api/retries.md -------------------------------------------------------------------------------- /clients/algo/docs/rest_api/timeout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/algo/docs/rest_api/timeout.md -------------------------------------------------------------------------------- /clients/algo/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/algo/pyproject.toml -------------------------------------------------------------------------------- /clients/algo/src/binance_sdk_algo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/algo/src/binance_sdk_algo/__init__.py -------------------------------------------------------------------------------- /clients/algo/src/binance_sdk_algo/algo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/algo/src/binance_sdk_algo/algo.py -------------------------------------------------------------------------------- /clients/algo/src/binance_sdk_algo/metadata.py: -------------------------------------------------------------------------------- 1 | NAME = "binance-sdk-algo" 2 | -------------------------------------------------------------------------------- /clients/algo/src/binance_sdk_algo/rest_api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/algo/src/binance_sdk_algo/rest_api/__init__.py -------------------------------------------------------------------------------- /clients/algo/src/binance_sdk_algo/rest_api/api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/algo/src/binance_sdk_algo/rest_api/api/__init__.py -------------------------------------------------------------------------------- /clients/algo/src/binance_sdk_algo/rest_api/api/future_algo_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/algo/src/binance_sdk_algo/rest_api/api/future_algo_api.py -------------------------------------------------------------------------------- /clients/algo/src/binance_sdk_algo/rest_api/api/spot_algo_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/algo/src/binance_sdk_algo/rest_api/api/spot_algo_api.py -------------------------------------------------------------------------------- /clients/algo/src/binance_sdk_algo/rest_api/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/algo/src/binance_sdk_algo/rest_api/models/__init__.py -------------------------------------------------------------------------------- /clients/algo/src/binance_sdk_algo/rest_api/models/enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/algo/src/binance_sdk_algo/rest_api/models/enums.py -------------------------------------------------------------------------------- /clients/algo/src/binance_sdk_algo/rest_api/rest_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/algo/src/binance_sdk_algo/rest_api/rest_api.py -------------------------------------------------------------------------------- /clients/algo/tests/unit/rest_api/test_future_algo_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/algo/tests/unit/rest_api/test_future_algo_api.py -------------------------------------------------------------------------------- /clients/algo/tests/unit/rest_api/test_spot_algo_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/algo/tests/unit/rest_api/test_spot_algo_api.py -------------------------------------------------------------------------------- /clients/algo/tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/algo/tox.ini -------------------------------------------------------------------------------- /clients/c2c/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/c2c/.gitignore -------------------------------------------------------------------------------- /clients/c2c/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/c2c/CHANGELOG.md -------------------------------------------------------------------------------- /clients/c2c/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/c2c/LICENCE -------------------------------------------------------------------------------- /clients/c2c/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/c2c/README.md -------------------------------------------------------------------------------- /clients/c2c/docs/migration_guide_c2c_sdk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/c2c/docs/migration_guide_c2c_sdk.md -------------------------------------------------------------------------------- /clients/c2c/docs/rest_api/certificate-pinning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/c2c/docs/rest_api/certificate-pinning.md -------------------------------------------------------------------------------- /clients/c2c/docs/rest_api/compression.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/c2c/docs/rest_api/compression.md -------------------------------------------------------------------------------- /clients/c2c/docs/rest_api/error-handling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/c2c/docs/rest_api/error-handling.md -------------------------------------------------------------------------------- /clients/c2c/docs/rest_api/httpsAgent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/c2c/docs/rest_api/httpsAgent.md -------------------------------------------------------------------------------- /clients/c2c/docs/rest_api/keepAlive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/c2c/docs/rest_api/keepAlive.md -------------------------------------------------------------------------------- /clients/c2c/docs/rest_api/key-pair-authentication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/c2c/docs/rest_api/key-pair-authentication.md -------------------------------------------------------------------------------- /clients/c2c/docs/rest_api/proxy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/c2c/docs/rest_api/proxy.md -------------------------------------------------------------------------------- /clients/c2c/docs/rest_api/retries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/c2c/docs/rest_api/retries.md -------------------------------------------------------------------------------- /clients/c2c/docs/rest_api/timeout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/c2c/docs/rest_api/timeout.md -------------------------------------------------------------------------------- /clients/c2c/examples/rest_api/C2C/get_c2_c_trade_history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/c2c/examples/rest_api/C2C/get_c2_c_trade_history.py -------------------------------------------------------------------------------- /clients/c2c/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/c2c/pyproject.toml -------------------------------------------------------------------------------- /clients/c2c/src/binance_sdk_c2c/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/c2c/src/binance_sdk_c2c/__init__.py -------------------------------------------------------------------------------- /clients/c2c/src/binance_sdk_c2c/c2c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/c2c/src/binance_sdk_c2c/c2c.py -------------------------------------------------------------------------------- /clients/c2c/src/binance_sdk_c2c/metadata.py: -------------------------------------------------------------------------------- 1 | NAME = "binance-sdk-c2c" 2 | -------------------------------------------------------------------------------- /clients/c2c/src/binance_sdk_c2c/rest_api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/c2c/src/binance_sdk_c2c/rest_api/__init__.py -------------------------------------------------------------------------------- /clients/c2c/src/binance_sdk_c2c/rest_api/api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/c2c/src/binance_sdk_c2c/rest_api/api/__init__.py -------------------------------------------------------------------------------- /clients/c2c/src/binance_sdk_c2c/rest_api/api/c2_c_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/c2c/src/binance_sdk_c2c/rest_api/api/c2_c_api.py -------------------------------------------------------------------------------- /clients/c2c/src/binance_sdk_c2c/rest_api/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/c2c/src/binance_sdk_c2c/rest_api/models/__init__.py -------------------------------------------------------------------------------- /clients/c2c/src/binance_sdk_c2c/rest_api/models/enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/c2c/src/binance_sdk_c2c/rest_api/models/enums.py -------------------------------------------------------------------------------- /clients/c2c/src/binance_sdk_c2c/rest_api/rest_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/c2c/src/binance_sdk_c2c/rest_api/rest_api.py -------------------------------------------------------------------------------- /clients/c2c/tests/unit/rest_api/test_c2_c_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/c2c/tests/unit/rest_api/test_c2_c_api.py -------------------------------------------------------------------------------- /clients/c2c/tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/c2c/tox.ini -------------------------------------------------------------------------------- /clients/convert/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/convert/.gitignore -------------------------------------------------------------------------------- /clients/convert/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/convert/CHANGELOG.md -------------------------------------------------------------------------------- /clients/convert/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/convert/LICENCE -------------------------------------------------------------------------------- /clients/convert/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/convert/README.md -------------------------------------------------------------------------------- /clients/convert/docs/migration_guide_convert_sdk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/convert/docs/migration_guide_convert_sdk.md -------------------------------------------------------------------------------- /clients/convert/docs/rest_api/certificate-pinning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/convert/docs/rest_api/certificate-pinning.md -------------------------------------------------------------------------------- /clients/convert/docs/rest_api/compression.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/convert/docs/rest_api/compression.md -------------------------------------------------------------------------------- /clients/convert/docs/rest_api/error-handling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/convert/docs/rest_api/error-handling.md -------------------------------------------------------------------------------- /clients/convert/docs/rest_api/httpsAgent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/convert/docs/rest_api/httpsAgent.md -------------------------------------------------------------------------------- /clients/convert/docs/rest_api/keepAlive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/convert/docs/rest_api/keepAlive.md -------------------------------------------------------------------------------- /clients/convert/docs/rest_api/key-pair-authentication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/convert/docs/rest_api/key-pair-authentication.md -------------------------------------------------------------------------------- /clients/convert/docs/rest_api/proxy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/convert/docs/rest_api/proxy.md -------------------------------------------------------------------------------- /clients/convert/docs/rest_api/retries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/convert/docs/rest_api/retries.md -------------------------------------------------------------------------------- /clients/convert/docs/rest_api/timeout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/convert/docs/rest_api/timeout.md -------------------------------------------------------------------------------- /clients/convert/examples/rest_api/Trade/accept_quote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/convert/examples/rest_api/Trade/accept_quote.py -------------------------------------------------------------------------------- /clients/convert/examples/rest_api/Trade/cancel_limit_order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/convert/examples/rest_api/Trade/cancel_limit_order.py -------------------------------------------------------------------------------- /clients/convert/examples/rest_api/Trade/order_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/convert/examples/rest_api/Trade/order_status.py -------------------------------------------------------------------------------- /clients/convert/examples/rest_api/Trade/place_limit_order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/convert/examples/rest_api/Trade/place_limit_order.py -------------------------------------------------------------------------------- /clients/convert/examples/rest_api/Trade/query_limit_open_orders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/convert/examples/rest_api/Trade/query_limit_open_orders.py -------------------------------------------------------------------------------- /clients/convert/examples/rest_api/Trade/send_quote_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/convert/examples/rest_api/Trade/send_quote_request.py -------------------------------------------------------------------------------- /clients/convert/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/convert/pyproject.toml -------------------------------------------------------------------------------- /clients/convert/src/binance_sdk_convert/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/convert/src/binance_sdk_convert/__init__.py -------------------------------------------------------------------------------- /clients/convert/src/binance_sdk_convert/convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/convert/src/binance_sdk_convert/convert.py -------------------------------------------------------------------------------- /clients/convert/src/binance_sdk_convert/metadata.py: -------------------------------------------------------------------------------- 1 | NAME = "binance-sdk-convert" 2 | -------------------------------------------------------------------------------- /clients/convert/src/binance_sdk_convert/rest_api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/convert/src/binance_sdk_convert/rest_api/__init__.py -------------------------------------------------------------------------------- /clients/convert/src/binance_sdk_convert/rest_api/api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/convert/src/binance_sdk_convert/rest_api/api/__init__.py -------------------------------------------------------------------------------- /clients/convert/src/binance_sdk_convert/rest_api/api/trade_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/convert/src/binance_sdk_convert/rest_api/api/trade_api.py -------------------------------------------------------------------------------- /clients/convert/src/binance_sdk_convert/rest_api/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/convert/src/binance_sdk_convert/rest_api/models/__init__.py -------------------------------------------------------------------------------- /clients/convert/src/binance_sdk_convert/rest_api/models/enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/convert/src/binance_sdk_convert/rest_api/models/enums.py -------------------------------------------------------------------------------- /clients/convert/src/binance_sdk_convert/rest_api/rest_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/convert/src/binance_sdk_convert/rest_api/rest_api.py -------------------------------------------------------------------------------- /clients/convert/tests/unit/rest_api/test_market_data_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/convert/tests/unit/rest_api/test_market_data_api.py -------------------------------------------------------------------------------- /clients/convert/tests/unit/rest_api/test_trade_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/convert/tests/unit/rest_api/test_trade_api.py -------------------------------------------------------------------------------- /clients/convert/tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/convert/tox.ini -------------------------------------------------------------------------------- /clients/copy_trading/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/copy_trading/.gitignore -------------------------------------------------------------------------------- /clients/copy_trading/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/copy_trading/CHANGELOG.md -------------------------------------------------------------------------------- /clients/copy_trading/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/copy_trading/LICENCE -------------------------------------------------------------------------------- /clients/copy_trading/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/copy_trading/README.md -------------------------------------------------------------------------------- /clients/copy_trading/docs/rest_api/certificate-pinning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/copy_trading/docs/rest_api/certificate-pinning.md -------------------------------------------------------------------------------- /clients/copy_trading/docs/rest_api/compression.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/copy_trading/docs/rest_api/compression.md -------------------------------------------------------------------------------- /clients/copy_trading/docs/rest_api/error-handling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/copy_trading/docs/rest_api/error-handling.md -------------------------------------------------------------------------------- /clients/copy_trading/docs/rest_api/httpsAgent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/copy_trading/docs/rest_api/httpsAgent.md -------------------------------------------------------------------------------- /clients/copy_trading/docs/rest_api/keepAlive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/copy_trading/docs/rest_api/keepAlive.md -------------------------------------------------------------------------------- /clients/copy_trading/docs/rest_api/key-pair-authentication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/copy_trading/docs/rest_api/key-pair-authentication.md -------------------------------------------------------------------------------- /clients/copy_trading/docs/rest_api/proxy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/copy_trading/docs/rest_api/proxy.md -------------------------------------------------------------------------------- /clients/copy_trading/docs/rest_api/retries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/copy_trading/docs/rest_api/retries.md -------------------------------------------------------------------------------- /clients/copy_trading/docs/rest_api/timeout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/copy_trading/docs/rest_api/timeout.md -------------------------------------------------------------------------------- /clients/copy_trading/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/copy_trading/pyproject.toml -------------------------------------------------------------------------------- /clients/copy_trading/src/binance_sdk_copy_trading/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/copy_trading/src/binance_sdk_copy_trading/__init__.py -------------------------------------------------------------------------------- /clients/copy_trading/src/binance_sdk_copy_trading/copy_trading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/copy_trading/src/binance_sdk_copy_trading/copy_trading.py -------------------------------------------------------------------------------- /clients/copy_trading/src/binance_sdk_copy_trading/metadata.py: -------------------------------------------------------------------------------- 1 | NAME = "binance-sdk-copy-trading" 2 | -------------------------------------------------------------------------------- /clients/copy_trading/tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/copy_trading/tox.ini -------------------------------------------------------------------------------- /clients/crypto_loan/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/crypto_loan/.gitignore -------------------------------------------------------------------------------- /clients/crypto_loan/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/crypto_loan/CHANGELOG.md -------------------------------------------------------------------------------- /clients/crypto_loan/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/crypto_loan/LICENCE -------------------------------------------------------------------------------- /clients/crypto_loan/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/crypto_loan/README.md -------------------------------------------------------------------------------- /clients/crypto_loan/docs/migration_guide_crypto_loan_sdk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/crypto_loan/docs/migration_guide_crypto_loan_sdk.md -------------------------------------------------------------------------------- /clients/crypto_loan/docs/rest_api/certificate-pinning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/crypto_loan/docs/rest_api/certificate-pinning.md -------------------------------------------------------------------------------- /clients/crypto_loan/docs/rest_api/compression.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/crypto_loan/docs/rest_api/compression.md -------------------------------------------------------------------------------- /clients/crypto_loan/docs/rest_api/error-handling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/crypto_loan/docs/rest_api/error-handling.md -------------------------------------------------------------------------------- /clients/crypto_loan/docs/rest_api/httpsAgent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/crypto_loan/docs/rest_api/httpsAgent.md -------------------------------------------------------------------------------- /clients/crypto_loan/docs/rest_api/keepAlive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/crypto_loan/docs/rest_api/keepAlive.md -------------------------------------------------------------------------------- /clients/crypto_loan/docs/rest_api/key-pair-authentication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/crypto_loan/docs/rest_api/key-pair-authentication.md -------------------------------------------------------------------------------- /clients/crypto_loan/docs/rest_api/proxy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/crypto_loan/docs/rest_api/proxy.md -------------------------------------------------------------------------------- /clients/crypto_loan/docs/rest_api/retries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/crypto_loan/docs/rest_api/retries.md -------------------------------------------------------------------------------- /clients/crypto_loan/docs/rest_api/timeout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/crypto_loan/docs/rest_api/timeout.md -------------------------------------------------------------------------------- /clients/crypto_loan/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/crypto_loan/pyproject.toml -------------------------------------------------------------------------------- /clients/crypto_loan/src/binance_sdk_crypto_loan/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/crypto_loan/src/binance_sdk_crypto_loan/__init__.py -------------------------------------------------------------------------------- /clients/crypto_loan/src/binance_sdk_crypto_loan/crypto_loan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/crypto_loan/src/binance_sdk_crypto_loan/crypto_loan.py -------------------------------------------------------------------------------- /clients/crypto_loan/src/binance_sdk_crypto_loan/metadata.py: -------------------------------------------------------------------------------- 1 | NAME = "binance-sdk-crypto-loan" 2 | -------------------------------------------------------------------------------- /clients/crypto_loan/tests/unit/rest_api/test_flexible_rate_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/crypto_loan/tests/unit/rest_api/test_flexible_rate_api.py -------------------------------------------------------------------------------- /clients/crypto_loan/tests/unit/rest_api/test_stable_rate_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/crypto_loan/tests/unit/rest_api/test_stable_rate_api.py -------------------------------------------------------------------------------- /clients/crypto_loan/tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/crypto_loan/tox.ini -------------------------------------------------------------------------------- /clients/derivatives_trading_coin_futures/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/derivatives_trading_coin_futures/.gitignore -------------------------------------------------------------------------------- /clients/derivatives_trading_coin_futures/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/derivatives_trading_coin_futures/CHANGELOG.md -------------------------------------------------------------------------------- /clients/derivatives_trading_coin_futures/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/derivatives_trading_coin_futures/LICENCE -------------------------------------------------------------------------------- /clients/derivatives_trading_coin_futures/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/derivatives_trading_coin_futures/README.md -------------------------------------------------------------------------------- /clients/derivatives_trading_coin_futures/docs/rest_api/keepAlive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/derivatives_trading_coin_futures/docs/rest_api/keepAlive.md -------------------------------------------------------------------------------- /clients/derivatives_trading_coin_futures/docs/rest_api/proxy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/derivatives_trading_coin_futures/docs/rest_api/proxy.md -------------------------------------------------------------------------------- /clients/derivatives_trading_coin_futures/docs/rest_api/retries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/derivatives_trading_coin_futures/docs/rest_api/retries.md -------------------------------------------------------------------------------- /clients/derivatives_trading_coin_futures/docs/rest_api/timeout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/derivatives_trading_coin_futures/docs/rest_api/timeout.md -------------------------------------------------------------------------------- /clients/derivatives_trading_coin_futures/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/derivatives_trading_coin_futures/pyproject.toml -------------------------------------------------------------------------------- /clients/derivatives_trading_coin_futures/src/binance_sdk_derivatives_trading_coin_futures/metadata.py: -------------------------------------------------------------------------------- 1 | NAME = "binance-sdk-derivatives-trading-coin-futures" 2 | -------------------------------------------------------------------------------- /clients/derivatives_trading_coin_futures/tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/derivatives_trading_coin_futures/tox.ini -------------------------------------------------------------------------------- /clients/derivatives_trading_options/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/derivatives_trading_options/.gitignore -------------------------------------------------------------------------------- /clients/derivatives_trading_options/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/derivatives_trading_options/CHANGELOG.md -------------------------------------------------------------------------------- /clients/derivatives_trading_options/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/derivatives_trading_options/LICENCE -------------------------------------------------------------------------------- /clients/derivatives_trading_options/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/derivatives_trading_options/README.md -------------------------------------------------------------------------------- /clients/derivatives_trading_options/docs/rest_api/compression.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/derivatives_trading_options/docs/rest_api/compression.md -------------------------------------------------------------------------------- /clients/derivatives_trading_options/docs/rest_api/error-handling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/derivatives_trading_options/docs/rest_api/error-handling.md -------------------------------------------------------------------------------- /clients/derivatives_trading_options/docs/rest_api/httpsAgent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/derivatives_trading_options/docs/rest_api/httpsAgent.md -------------------------------------------------------------------------------- /clients/derivatives_trading_options/docs/rest_api/keepAlive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/derivatives_trading_options/docs/rest_api/keepAlive.md -------------------------------------------------------------------------------- /clients/derivatives_trading_options/docs/rest_api/proxy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/derivatives_trading_options/docs/rest_api/proxy.md -------------------------------------------------------------------------------- /clients/derivatives_trading_options/docs/rest_api/retries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/derivatives_trading_options/docs/rest_api/retries.md -------------------------------------------------------------------------------- /clients/derivatives_trading_options/docs/rest_api/timeout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/derivatives_trading_options/docs/rest_api/timeout.md -------------------------------------------------------------------------------- /clients/derivatives_trading_options/docs/websocket_streams/agent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/derivatives_trading_options/docs/websocket_streams/agent.md -------------------------------------------------------------------------------- /clients/derivatives_trading_options/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/derivatives_trading_options/pyproject.toml -------------------------------------------------------------------------------- /clients/derivatives_trading_options/src/binance_sdk_derivatives_trading_options/metadata.py: -------------------------------------------------------------------------------- 1 | NAME = "binance-sdk-derivatives-trading-options" 2 | -------------------------------------------------------------------------------- /clients/derivatives_trading_options/tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/derivatives_trading_options/tox.ini -------------------------------------------------------------------------------- /clients/derivatives_trading_portfolio_margin/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/derivatives_trading_portfolio_margin/.gitignore -------------------------------------------------------------------------------- /clients/derivatives_trading_portfolio_margin/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/derivatives_trading_portfolio_margin/CHANGELOG.md -------------------------------------------------------------------------------- /clients/derivatives_trading_portfolio_margin/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/derivatives_trading_portfolio_margin/LICENCE -------------------------------------------------------------------------------- /clients/derivatives_trading_portfolio_margin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/derivatives_trading_portfolio_margin/README.md -------------------------------------------------------------------------------- /clients/derivatives_trading_portfolio_margin/docs/rest_api/proxy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/derivatives_trading_portfolio_margin/docs/rest_api/proxy.md -------------------------------------------------------------------------------- /clients/derivatives_trading_portfolio_margin/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/derivatives_trading_portfolio_margin/pyproject.toml -------------------------------------------------------------------------------- /clients/derivatives_trading_portfolio_margin/src/binance_sdk_derivatives_trading_portfolio_margin/metadata.py: -------------------------------------------------------------------------------- 1 | NAME = "binance-sdk-derivatives-trading-portfolio-margin" 2 | -------------------------------------------------------------------------------- /clients/derivatives_trading_portfolio_margin/tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/derivatives_trading_portfolio_margin/tox.ini -------------------------------------------------------------------------------- /clients/derivatives_trading_portfolio_margin_pro/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/derivatives_trading_portfolio_margin_pro/.gitignore -------------------------------------------------------------------------------- /clients/derivatives_trading_portfolio_margin_pro/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/derivatives_trading_portfolio_margin_pro/CHANGELOG.md -------------------------------------------------------------------------------- /clients/derivatives_trading_portfolio_margin_pro/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/derivatives_trading_portfolio_margin_pro/LICENCE -------------------------------------------------------------------------------- /clients/derivatives_trading_portfolio_margin_pro/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/derivatives_trading_portfolio_margin_pro/README.md -------------------------------------------------------------------------------- /clients/derivatives_trading_portfolio_margin_pro/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/derivatives_trading_portfolio_margin_pro/pyproject.toml -------------------------------------------------------------------------------- /clients/derivatives_trading_portfolio_margin_pro/src/binance_sdk_derivatives_trading_portfolio_margin_pro/metadata.py: -------------------------------------------------------------------------------- 1 | NAME = "binance-sdk-derivatives-trading-portfolio-margin-pro" 2 | -------------------------------------------------------------------------------- /clients/derivatives_trading_portfolio_margin_pro/tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/derivatives_trading_portfolio_margin_pro/tox.ini -------------------------------------------------------------------------------- /clients/derivatives_trading_usds_futures/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/derivatives_trading_usds_futures/.gitignore -------------------------------------------------------------------------------- /clients/derivatives_trading_usds_futures/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/derivatives_trading_usds_futures/CHANGELOG.md -------------------------------------------------------------------------------- /clients/derivatives_trading_usds_futures/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/derivatives_trading_usds_futures/LICENCE -------------------------------------------------------------------------------- /clients/derivatives_trading_usds_futures/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/derivatives_trading_usds_futures/README.md -------------------------------------------------------------------------------- /clients/derivatives_trading_usds_futures/docs/rest_api/keepAlive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/derivatives_trading_usds_futures/docs/rest_api/keepAlive.md -------------------------------------------------------------------------------- /clients/derivatives_trading_usds_futures/docs/rest_api/proxy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/derivatives_trading_usds_futures/docs/rest_api/proxy.md -------------------------------------------------------------------------------- /clients/derivatives_trading_usds_futures/docs/rest_api/retries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/derivatives_trading_usds_futures/docs/rest_api/retries.md -------------------------------------------------------------------------------- /clients/derivatives_trading_usds_futures/docs/rest_api/timeout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/derivatives_trading_usds_futures/docs/rest_api/timeout.md -------------------------------------------------------------------------------- /clients/derivatives_trading_usds_futures/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/derivatives_trading_usds_futures/pyproject.toml -------------------------------------------------------------------------------- /clients/derivatives_trading_usds_futures/src/binance_sdk_derivatives_trading_usds_futures/metadata.py: -------------------------------------------------------------------------------- 1 | NAME = "binance-sdk-derivatives-trading-usds-futures" 2 | -------------------------------------------------------------------------------- /clients/derivatives_trading_usds_futures/tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/derivatives_trading_usds_futures/tox.ini -------------------------------------------------------------------------------- /clients/dual_investment/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/dual_investment/.gitignore -------------------------------------------------------------------------------- /clients/dual_investment/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/dual_investment/CHANGELOG.md -------------------------------------------------------------------------------- /clients/dual_investment/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/dual_investment/LICENCE -------------------------------------------------------------------------------- /clients/dual_investment/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/dual_investment/README.md -------------------------------------------------------------------------------- /clients/dual_investment/docs/rest_api/certificate-pinning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/dual_investment/docs/rest_api/certificate-pinning.md -------------------------------------------------------------------------------- /clients/dual_investment/docs/rest_api/compression.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/dual_investment/docs/rest_api/compression.md -------------------------------------------------------------------------------- /clients/dual_investment/docs/rest_api/error-handling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/dual_investment/docs/rest_api/error-handling.md -------------------------------------------------------------------------------- /clients/dual_investment/docs/rest_api/httpsAgent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/dual_investment/docs/rest_api/httpsAgent.md -------------------------------------------------------------------------------- /clients/dual_investment/docs/rest_api/keepAlive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/dual_investment/docs/rest_api/keepAlive.md -------------------------------------------------------------------------------- /clients/dual_investment/docs/rest_api/key-pair-authentication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/dual_investment/docs/rest_api/key-pair-authentication.md -------------------------------------------------------------------------------- /clients/dual_investment/docs/rest_api/proxy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/dual_investment/docs/rest_api/proxy.md -------------------------------------------------------------------------------- /clients/dual_investment/docs/rest_api/retries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/dual_investment/docs/rest_api/retries.md -------------------------------------------------------------------------------- /clients/dual_investment/docs/rest_api/timeout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/dual_investment/docs/rest_api/timeout.md -------------------------------------------------------------------------------- /clients/dual_investment/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/dual_investment/pyproject.toml -------------------------------------------------------------------------------- /clients/dual_investment/src/binance_sdk_dual_investment/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/dual_investment/src/binance_sdk_dual_investment/__init__.py -------------------------------------------------------------------------------- /clients/dual_investment/src/binance_sdk_dual_investment/metadata.py: -------------------------------------------------------------------------------- 1 | NAME = "binance-sdk-dual-investment" 2 | -------------------------------------------------------------------------------- /clients/dual_investment/tests/unit/rest_api/test_market_data_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/dual_investment/tests/unit/rest_api/test_market_data_api.py -------------------------------------------------------------------------------- /clients/dual_investment/tests/unit/rest_api/test_trade_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/dual_investment/tests/unit/rest_api/test_trade_api.py -------------------------------------------------------------------------------- /clients/dual_investment/tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/dual_investment/tox.ini -------------------------------------------------------------------------------- /clients/fiat/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/fiat/.gitignore -------------------------------------------------------------------------------- /clients/fiat/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/fiat/CHANGELOG.md -------------------------------------------------------------------------------- /clients/fiat/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/fiat/LICENCE -------------------------------------------------------------------------------- /clients/fiat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/fiat/README.md -------------------------------------------------------------------------------- /clients/fiat/docs/migration_guide_fiat_sdk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/fiat/docs/migration_guide_fiat_sdk.md -------------------------------------------------------------------------------- /clients/fiat/docs/rest_api/certificate-pinning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/fiat/docs/rest_api/certificate-pinning.md -------------------------------------------------------------------------------- /clients/fiat/docs/rest_api/compression.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/fiat/docs/rest_api/compression.md -------------------------------------------------------------------------------- /clients/fiat/docs/rest_api/error-handling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/fiat/docs/rest_api/error-handling.md -------------------------------------------------------------------------------- /clients/fiat/docs/rest_api/httpsAgent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/fiat/docs/rest_api/httpsAgent.md -------------------------------------------------------------------------------- /clients/fiat/docs/rest_api/keepAlive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/fiat/docs/rest_api/keepAlive.md -------------------------------------------------------------------------------- /clients/fiat/docs/rest_api/key-pair-authentication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/fiat/docs/rest_api/key-pair-authentication.md -------------------------------------------------------------------------------- /clients/fiat/docs/rest_api/proxy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/fiat/docs/rest_api/proxy.md -------------------------------------------------------------------------------- /clients/fiat/docs/rest_api/retries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/fiat/docs/rest_api/retries.md -------------------------------------------------------------------------------- /clients/fiat/docs/rest_api/timeout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/fiat/docs/rest_api/timeout.md -------------------------------------------------------------------------------- /clients/fiat/examples/rest_api/Fiat/get_fiat_payments_history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/fiat/examples/rest_api/Fiat/get_fiat_payments_history.py -------------------------------------------------------------------------------- /clients/fiat/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/fiat/pyproject.toml -------------------------------------------------------------------------------- /clients/fiat/src/binance_sdk_fiat/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/fiat/src/binance_sdk_fiat/__init__.py -------------------------------------------------------------------------------- /clients/fiat/src/binance_sdk_fiat/fiat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/fiat/src/binance_sdk_fiat/fiat.py -------------------------------------------------------------------------------- /clients/fiat/src/binance_sdk_fiat/metadata.py: -------------------------------------------------------------------------------- 1 | NAME = "binance-sdk-fiat" 2 | -------------------------------------------------------------------------------- /clients/fiat/src/binance_sdk_fiat/rest_api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/fiat/src/binance_sdk_fiat/rest_api/__init__.py -------------------------------------------------------------------------------- /clients/fiat/src/binance_sdk_fiat/rest_api/api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/fiat/src/binance_sdk_fiat/rest_api/api/__init__.py -------------------------------------------------------------------------------- /clients/fiat/src/binance_sdk_fiat/rest_api/api/fiat_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/fiat/src/binance_sdk_fiat/rest_api/api/fiat_api.py -------------------------------------------------------------------------------- /clients/fiat/src/binance_sdk_fiat/rest_api/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/fiat/src/binance_sdk_fiat/rest_api/models/__init__.py -------------------------------------------------------------------------------- /clients/fiat/src/binance_sdk_fiat/rest_api/models/enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/fiat/src/binance_sdk_fiat/rest_api/models/enums.py -------------------------------------------------------------------------------- /clients/fiat/src/binance_sdk_fiat/rest_api/rest_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/fiat/src/binance_sdk_fiat/rest_api/rest_api.py -------------------------------------------------------------------------------- /clients/fiat/tests/unit/rest_api/test_fiat_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/fiat/tests/unit/rest_api/test_fiat_api.py -------------------------------------------------------------------------------- /clients/fiat/tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/fiat/tox.ini -------------------------------------------------------------------------------- /clients/gift_card/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/gift_card/.gitignore -------------------------------------------------------------------------------- /clients/gift_card/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/gift_card/CHANGELOG.md -------------------------------------------------------------------------------- /clients/gift_card/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/gift_card/LICENCE -------------------------------------------------------------------------------- /clients/gift_card/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/gift_card/README.md -------------------------------------------------------------------------------- /clients/gift_card/docs/migration_guide_gift_card_sdk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/gift_card/docs/migration_guide_gift_card_sdk.md -------------------------------------------------------------------------------- /clients/gift_card/docs/rest_api/certificate-pinning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/gift_card/docs/rest_api/certificate-pinning.md -------------------------------------------------------------------------------- /clients/gift_card/docs/rest_api/compression.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/gift_card/docs/rest_api/compression.md -------------------------------------------------------------------------------- /clients/gift_card/docs/rest_api/error-handling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/gift_card/docs/rest_api/error-handling.md -------------------------------------------------------------------------------- /clients/gift_card/docs/rest_api/httpsAgent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/gift_card/docs/rest_api/httpsAgent.md -------------------------------------------------------------------------------- /clients/gift_card/docs/rest_api/keepAlive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/gift_card/docs/rest_api/keepAlive.md -------------------------------------------------------------------------------- /clients/gift_card/docs/rest_api/key-pair-authentication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/gift_card/docs/rest_api/key-pair-authentication.md -------------------------------------------------------------------------------- /clients/gift_card/docs/rest_api/proxy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/gift_card/docs/rest_api/proxy.md -------------------------------------------------------------------------------- /clients/gift_card/docs/rest_api/retries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/gift_card/docs/rest_api/retries.md -------------------------------------------------------------------------------- /clients/gift_card/docs/rest_api/timeout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/gift_card/docs/rest_api/timeout.md -------------------------------------------------------------------------------- /clients/gift_card/examples/rest_api/MarketData/fetch_token_limit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/gift_card/examples/rest_api/MarketData/fetch_token_limit.py -------------------------------------------------------------------------------- /clients/gift_card/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/gift_card/pyproject.toml -------------------------------------------------------------------------------- /clients/gift_card/src/binance_sdk_gift_card/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/gift_card/src/binance_sdk_gift_card/__init__.py -------------------------------------------------------------------------------- /clients/gift_card/src/binance_sdk_gift_card/gift_card.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/gift_card/src/binance_sdk_gift_card/gift_card.py -------------------------------------------------------------------------------- /clients/gift_card/src/binance_sdk_gift_card/metadata.py: -------------------------------------------------------------------------------- 1 | NAME = "binance-sdk-gift-card" 2 | -------------------------------------------------------------------------------- /clients/gift_card/src/binance_sdk_gift_card/rest_api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/gift_card/src/binance_sdk_gift_card/rest_api/__init__.py -------------------------------------------------------------------------------- /clients/gift_card/src/binance_sdk_gift_card/rest_api/rest_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/gift_card/src/binance_sdk_gift_card/rest_api/rest_api.py -------------------------------------------------------------------------------- /clients/gift_card/tests/unit/rest_api/test_market_data_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/gift_card/tests/unit/rest_api/test_market_data_api.py -------------------------------------------------------------------------------- /clients/gift_card/tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/gift_card/tox.ini -------------------------------------------------------------------------------- /clients/margin_trading/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/margin_trading/.gitignore -------------------------------------------------------------------------------- /clients/margin_trading/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/margin_trading/CHANGELOG.md -------------------------------------------------------------------------------- /clients/margin_trading/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/margin_trading/LICENCE -------------------------------------------------------------------------------- /clients/margin_trading/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/margin_trading/README.md -------------------------------------------------------------------------------- /clients/margin_trading/docs/migration_guide_margin_trading_sdk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/margin_trading/docs/migration_guide_margin_trading_sdk.md -------------------------------------------------------------------------------- /clients/margin_trading/docs/rest_api/certificate-pinning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/margin_trading/docs/rest_api/certificate-pinning.md -------------------------------------------------------------------------------- /clients/margin_trading/docs/rest_api/compression.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/margin_trading/docs/rest_api/compression.md -------------------------------------------------------------------------------- /clients/margin_trading/docs/rest_api/error-handling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/margin_trading/docs/rest_api/error-handling.md -------------------------------------------------------------------------------- /clients/margin_trading/docs/rest_api/httpsAgent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/margin_trading/docs/rest_api/httpsAgent.md -------------------------------------------------------------------------------- /clients/margin_trading/docs/rest_api/keepAlive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/margin_trading/docs/rest_api/keepAlive.md -------------------------------------------------------------------------------- /clients/margin_trading/docs/rest_api/key-pair-authentication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/margin_trading/docs/rest_api/key-pair-authentication.md -------------------------------------------------------------------------------- /clients/margin_trading/docs/rest_api/retries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/margin_trading/docs/rest_api/retries.md -------------------------------------------------------------------------------- /clients/margin_trading/docs/rest_api/timeout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/margin_trading/docs/rest_api/timeout.md -------------------------------------------------------------------------------- /clients/margin_trading/examples/rest_api/Trade/query_special_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/margin_trading/examples/rest_api/Trade/query_special_key.py -------------------------------------------------------------------------------- /clients/margin_trading/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/margin_trading/pyproject.toml -------------------------------------------------------------------------------- /clients/margin_trading/src/binance_sdk_margin_trading/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/margin_trading/src/binance_sdk_margin_trading/__init__.py -------------------------------------------------------------------------------- /clients/margin_trading/src/binance_sdk_margin_trading/metadata.py: -------------------------------------------------------------------------------- 1 | NAME = "binance-sdk-margin-trading" 2 | -------------------------------------------------------------------------------- /clients/margin_trading/tests/unit/rest_api/test_account_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/margin_trading/tests/unit/rest_api/test_account_api.py -------------------------------------------------------------------------------- /clients/margin_trading/tests/unit/rest_api/test_borrow_repay_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/margin_trading/tests/unit/rest_api/test_borrow_repay_api.py -------------------------------------------------------------------------------- /clients/margin_trading/tests/unit/rest_api/test_market_data_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/margin_trading/tests/unit/rest_api/test_market_data_api.py -------------------------------------------------------------------------------- /clients/margin_trading/tests/unit/rest_api/test_trade_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/margin_trading/tests/unit/rest_api/test_trade_api.py -------------------------------------------------------------------------------- /clients/margin_trading/tests/unit/rest_api/test_transfer_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/margin_trading/tests/unit/rest_api/test_transfer_api.py -------------------------------------------------------------------------------- /clients/margin_trading/tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/margin_trading/tox.ini -------------------------------------------------------------------------------- /clients/mining/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/mining/.gitignore -------------------------------------------------------------------------------- /clients/mining/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/mining/CHANGELOG.md -------------------------------------------------------------------------------- /clients/mining/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/mining/LICENCE -------------------------------------------------------------------------------- /clients/mining/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/mining/README.md -------------------------------------------------------------------------------- /clients/mining/docs/migration_guide_mining_sdk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/mining/docs/migration_guide_mining_sdk.md -------------------------------------------------------------------------------- /clients/mining/docs/rest_api/certificate-pinning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/mining/docs/rest_api/certificate-pinning.md -------------------------------------------------------------------------------- /clients/mining/docs/rest_api/compression.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/mining/docs/rest_api/compression.md -------------------------------------------------------------------------------- /clients/mining/docs/rest_api/error-handling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/mining/docs/rest_api/error-handling.md -------------------------------------------------------------------------------- /clients/mining/docs/rest_api/httpsAgent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/mining/docs/rest_api/httpsAgent.md -------------------------------------------------------------------------------- /clients/mining/docs/rest_api/keepAlive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/mining/docs/rest_api/keepAlive.md -------------------------------------------------------------------------------- /clients/mining/docs/rest_api/key-pair-authentication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/mining/docs/rest_api/key-pair-authentication.md -------------------------------------------------------------------------------- /clients/mining/docs/rest_api/proxy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/mining/docs/rest_api/proxy.md -------------------------------------------------------------------------------- /clients/mining/docs/rest_api/retries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/mining/docs/rest_api/retries.md -------------------------------------------------------------------------------- /clients/mining/docs/rest_api/timeout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/mining/docs/rest_api/timeout.md -------------------------------------------------------------------------------- /clients/mining/examples/rest_api/Mining/account_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/mining/examples/rest_api/Mining/account_list.py -------------------------------------------------------------------------------- /clients/mining/examples/rest_api/Mining/acquiring_algorithm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/mining/examples/rest_api/Mining/acquiring_algorithm.py -------------------------------------------------------------------------------- /clients/mining/examples/rest_api/Mining/acquiring_coinname.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/mining/examples/rest_api/Mining/acquiring_coinname.py -------------------------------------------------------------------------------- /clients/mining/examples/rest_api/Mining/earnings_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/mining/examples/rest_api/Mining/earnings_list.py -------------------------------------------------------------------------------- /clients/mining/examples/rest_api/Mining/extra_bonus_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/mining/examples/rest_api/Mining/extra_bonus_list.py -------------------------------------------------------------------------------- /clients/mining/examples/rest_api/Mining/hashrate_resale_detail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/mining/examples/rest_api/Mining/hashrate_resale_detail.py -------------------------------------------------------------------------------- /clients/mining/examples/rest_api/Mining/hashrate_resale_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/mining/examples/rest_api/Mining/hashrate_resale_list.py -------------------------------------------------------------------------------- /clients/mining/examples/rest_api/Mining/hashrate_resale_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/mining/examples/rest_api/Mining/hashrate_resale_request.py -------------------------------------------------------------------------------- /clients/mining/examples/rest_api/Mining/mining_account_earning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/mining/examples/rest_api/Mining/mining_account_earning.py -------------------------------------------------------------------------------- /clients/mining/examples/rest_api/Mining/request_for_miner_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/mining/examples/rest_api/Mining/request_for_miner_list.py -------------------------------------------------------------------------------- /clients/mining/examples/rest_api/Mining/statistic_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/mining/examples/rest_api/Mining/statistic_list.py -------------------------------------------------------------------------------- /clients/mining/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/mining/pyproject.toml -------------------------------------------------------------------------------- /clients/mining/src/binance_sdk_mining/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/mining/src/binance_sdk_mining/__init__.py -------------------------------------------------------------------------------- /clients/mining/src/binance_sdk_mining/metadata.py: -------------------------------------------------------------------------------- 1 | NAME = "binance-sdk-mining" 2 | -------------------------------------------------------------------------------- /clients/mining/src/binance_sdk_mining/mining.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/mining/src/binance_sdk_mining/mining.py -------------------------------------------------------------------------------- /clients/mining/src/binance_sdk_mining/rest_api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/mining/src/binance_sdk_mining/rest_api/__init__.py -------------------------------------------------------------------------------- /clients/mining/src/binance_sdk_mining/rest_api/api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/mining/src/binance_sdk_mining/rest_api/api/__init__.py -------------------------------------------------------------------------------- /clients/mining/src/binance_sdk_mining/rest_api/api/mining_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/mining/src/binance_sdk_mining/rest_api/api/mining_api.py -------------------------------------------------------------------------------- /clients/mining/src/binance_sdk_mining/rest_api/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/mining/src/binance_sdk_mining/rest_api/models/__init__.py -------------------------------------------------------------------------------- /clients/mining/src/binance_sdk_mining/rest_api/models/enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/mining/src/binance_sdk_mining/rest_api/models/enums.py -------------------------------------------------------------------------------- /clients/mining/src/binance_sdk_mining/rest_api/rest_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/mining/src/binance_sdk_mining/rest_api/rest_api.py -------------------------------------------------------------------------------- /clients/mining/tests/unit/rest_api/test_mining_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/mining/tests/unit/rest_api/test_mining_api.py -------------------------------------------------------------------------------- /clients/mining/tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/mining/tox.ini -------------------------------------------------------------------------------- /clients/nft/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/nft/.gitignore -------------------------------------------------------------------------------- /clients/nft/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/nft/CHANGELOG.md -------------------------------------------------------------------------------- /clients/nft/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/nft/LICENCE -------------------------------------------------------------------------------- /clients/nft/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/nft/README.md -------------------------------------------------------------------------------- /clients/nft/docs/migration_guide_nft_sdk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/nft/docs/migration_guide_nft_sdk.md -------------------------------------------------------------------------------- /clients/nft/docs/rest_api/certificate-pinning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/nft/docs/rest_api/certificate-pinning.md -------------------------------------------------------------------------------- /clients/nft/docs/rest_api/compression.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/nft/docs/rest_api/compression.md -------------------------------------------------------------------------------- /clients/nft/docs/rest_api/error-handling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/nft/docs/rest_api/error-handling.md -------------------------------------------------------------------------------- /clients/nft/docs/rest_api/httpsAgent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/nft/docs/rest_api/httpsAgent.md -------------------------------------------------------------------------------- /clients/nft/docs/rest_api/keepAlive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/nft/docs/rest_api/keepAlive.md -------------------------------------------------------------------------------- /clients/nft/docs/rest_api/key-pair-authentication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/nft/docs/rest_api/key-pair-authentication.md -------------------------------------------------------------------------------- /clients/nft/docs/rest_api/proxy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/nft/docs/rest_api/proxy.md -------------------------------------------------------------------------------- /clients/nft/docs/rest_api/retries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/nft/docs/rest_api/retries.md -------------------------------------------------------------------------------- /clients/nft/docs/rest_api/timeout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/nft/docs/rest_api/timeout.md -------------------------------------------------------------------------------- /clients/nft/examples/rest_api/NFT/get_nft_asset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/nft/examples/rest_api/NFT/get_nft_asset.py -------------------------------------------------------------------------------- /clients/nft/examples/rest_api/NFT/get_nft_deposit_history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/nft/examples/rest_api/NFT/get_nft_deposit_history.py -------------------------------------------------------------------------------- /clients/nft/examples/rest_api/NFT/get_nft_transaction_history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/nft/examples/rest_api/NFT/get_nft_transaction_history.py -------------------------------------------------------------------------------- /clients/nft/examples/rest_api/NFT/get_nft_withdraw_history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/nft/examples/rest_api/NFT/get_nft_withdraw_history.py -------------------------------------------------------------------------------- /clients/nft/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/nft/pyproject.toml -------------------------------------------------------------------------------- /clients/nft/src/binance_sdk_nft/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/nft/src/binance_sdk_nft/__init__.py -------------------------------------------------------------------------------- /clients/nft/src/binance_sdk_nft/metadata.py: -------------------------------------------------------------------------------- 1 | NAME = "binance-sdk-nft" 2 | -------------------------------------------------------------------------------- /clients/nft/src/binance_sdk_nft/nft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/nft/src/binance_sdk_nft/nft.py -------------------------------------------------------------------------------- /clients/nft/src/binance_sdk_nft/rest_api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/nft/src/binance_sdk_nft/rest_api/__init__.py -------------------------------------------------------------------------------- /clients/nft/src/binance_sdk_nft/rest_api/api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/nft/src/binance_sdk_nft/rest_api/api/__init__.py -------------------------------------------------------------------------------- /clients/nft/src/binance_sdk_nft/rest_api/api/nft_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/nft/src/binance_sdk_nft/rest_api/api/nft_api.py -------------------------------------------------------------------------------- /clients/nft/src/binance_sdk_nft/rest_api/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/nft/src/binance_sdk_nft/rest_api/models/__init__.py -------------------------------------------------------------------------------- /clients/nft/src/binance_sdk_nft/rest_api/models/enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/nft/src/binance_sdk_nft/rest_api/models/enums.py -------------------------------------------------------------------------------- /clients/nft/src/binance_sdk_nft/rest_api/rest_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/nft/src/binance_sdk_nft/rest_api/rest_api.py -------------------------------------------------------------------------------- /clients/nft/tests/unit/rest_api/test_nft_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/nft/tests/unit/rest_api/test_nft_api.py -------------------------------------------------------------------------------- /clients/nft/tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/nft/tox.ini -------------------------------------------------------------------------------- /clients/pay/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/pay/.gitignore -------------------------------------------------------------------------------- /clients/pay/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/pay/CHANGELOG.md -------------------------------------------------------------------------------- /clients/pay/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/pay/LICENCE -------------------------------------------------------------------------------- /clients/pay/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/pay/README.md -------------------------------------------------------------------------------- /clients/pay/docs/migration_guide_pay_sdk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/pay/docs/migration_guide_pay_sdk.md -------------------------------------------------------------------------------- /clients/pay/docs/rest_api/certificate-pinning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/pay/docs/rest_api/certificate-pinning.md -------------------------------------------------------------------------------- /clients/pay/docs/rest_api/compression.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/pay/docs/rest_api/compression.md -------------------------------------------------------------------------------- /clients/pay/docs/rest_api/error-handling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/pay/docs/rest_api/error-handling.md -------------------------------------------------------------------------------- /clients/pay/docs/rest_api/httpsAgent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/pay/docs/rest_api/httpsAgent.md -------------------------------------------------------------------------------- /clients/pay/docs/rest_api/keepAlive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/pay/docs/rest_api/keepAlive.md -------------------------------------------------------------------------------- /clients/pay/docs/rest_api/key-pair-authentication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/pay/docs/rest_api/key-pair-authentication.md -------------------------------------------------------------------------------- /clients/pay/docs/rest_api/proxy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/pay/docs/rest_api/proxy.md -------------------------------------------------------------------------------- /clients/pay/docs/rest_api/retries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/pay/docs/rest_api/retries.md -------------------------------------------------------------------------------- /clients/pay/docs/rest_api/timeout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/pay/docs/rest_api/timeout.md -------------------------------------------------------------------------------- /clients/pay/examples/rest_api/Pay/get_pay_trade_history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/pay/examples/rest_api/Pay/get_pay_trade_history.py -------------------------------------------------------------------------------- /clients/pay/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/pay/pyproject.toml -------------------------------------------------------------------------------- /clients/pay/src/binance_sdk_pay/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/pay/src/binance_sdk_pay/__init__.py -------------------------------------------------------------------------------- /clients/pay/src/binance_sdk_pay/metadata.py: -------------------------------------------------------------------------------- 1 | NAME = "binance-sdk-pay" 2 | -------------------------------------------------------------------------------- /clients/pay/src/binance_sdk_pay/pay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/pay/src/binance_sdk_pay/pay.py -------------------------------------------------------------------------------- /clients/pay/src/binance_sdk_pay/rest_api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/pay/src/binance_sdk_pay/rest_api/__init__.py -------------------------------------------------------------------------------- /clients/pay/src/binance_sdk_pay/rest_api/api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/pay/src/binance_sdk_pay/rest_api/api/__init__.py -------------------------------------------------------------------------------- /clients/pay/src/binance_sdk_pay/rest_api/api/pay_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/pay/src/binance_sdk_pay/rest_api/api/pay_api.py -------------------------------------------------------------------------------- /clients/pay/src/binance_sdk_pay/rest_api/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/pay/src/binance_sdk_pay/rest_api/models/__init__.py -------------------------------------------------------------------------------- /clients/pay/src/binance_sdk_pay/rest_api/models/enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/pay/src/binance_sdk_pay/rest_api/models/enums.py -------------------------------------------------------------------------------- /clients/pay/src/binance_sdk_pay/rest_api/rest_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/pay/src/binance_sdk_pay/rest_api/rest_api.py -------------------------------------------------------------------------------- /clients/pay/tests/unit/rest_api/test_pay_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/pay/tests/unit/rest_api/test_pay_api.py -------------------------------------------------------------------------------- /clients/pay/tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/pay/tox.ini -------------------------------------------------------------------------------- /clients/rebate/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/rebate/.gitignore -------------------------------------------------------------------------------- /clients/rebate/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/rebate/CHANGELOG.md -------------------------------------------------------------------------------- /clients/rebate/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/rebate/LICENCE -------------------------------------------------------------------------------- /clients/rebate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/rebate/README.md -------------------------------------------------------------------------------- /clients/rebate/docs/migration_guide_rebate_sdk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/rebate/docs/migration_guide_rebate_sdk.md -------------------------------------------------------------------------------- /clients/rebate/docs/rest_api/certificate-pinning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/rebate/docs/rest_api/certificate-pinning.md -------------------------------------------------------------------------------- /clients/rebate/docs/rest_api/compression.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/rebate/docs/rest_api/compression.md -------------------------------------------------------------------------------- /clients/rebate/docs/rest_api/error-handling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/rebate/docs/rest_api/error-handling.md -------------------------------------------------------------------------------- /clients/rebate/docs/rest_api/httpsAgent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/rebate/docs/rest_api/httpsAgent.md -------------------------------------------------------------------------------- /clients/rebate/docs/rest_api/keepAlive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/rebate/docs/rest_api/keepAlive.md -------------------------------------------------------------------------------- /clients/rebate/docs/rest_api/key-pair-authentication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/rebate/docs/rest_api/key-pair-authentication.md -------------------------------------------------------------------------------- /clients/rebate/docs/rest_api/proxy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/rebate/docs/rest_api/proxy.md -------------------------------------------------------------------------------- /clients/rebate/docs/rest_api/retries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/rebate/docs/rest_api/retries.md -------------------------------------------------------------------------------- /clients/rebate/docs/rest_api/timeout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/rebate/docs/rest_api/timeout.md -------------------------------------------------------------------------------- /clients/rebate/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/rebate/pyproject.toml -------------------------------------------------------------------------------- /clients/rebate/src/binance_sdk_rebate/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/rebate/src/binance_sdk_rebate/__init__.py -------------------------------------------------------------------------------- /clients/rebate/src/binance_sdk_rebate/metadata.py: -------------------------------------------------------------------------------- 1 | NAME = "binance-sdk-rebate" 2 | -------------------------------------------------------------------------------- /clients/rebate/src/binance_sdk_rebate/rebate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/rebate/src/binance_sdk_rebate/rebate.py -------------------------------------------------------------------------------- /clients/rebate/src/binance_sdk_rebate/rest_api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/rebate/src/binance_sdk_rebate/rest_api/__init__.py -------------------------------------------------------------------------------- /clients/rebate/src/binance_sdk_rebate/rest_api/api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/rebate/src/binance_sdk_rebate/rest_api/api/__init__.py -------------------------------------------------------------------------------- /clients/rebate/src/binance_sdk_rebate/rest_api/api/rebate_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/rebate/src/binance_sdk_rebate/rest_api/api/rebate_api.py -------------------------------------------------------------------------------- /clients/rebate/src/binance_sdk_rebate/rest_api/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/rebate/src/binance_sdk_rebate/rest_api/models/__init__.py -------------------------------------------------------------------------------- /clients/rebate/src/binance_sdk_rebate/rest_api/models/enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/rebate/src/binance_sdk_rebate/rest_api/models/enums.py -------------------------------------------------------------------------------- /clients/rebate/src/binance_sdk_rebate/rest_api/rest_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/rebate/src/binance_sdk_rebate/rest_api/rest_api.py -------------------------------------------------------------------------------- /clients/rebate/tests/unit/rest_api/test_rebate_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/rebate/tests/unit/rest_api/test_rebate_api.py -------------------------------------------------------------------------------- /clients/rebate/tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/rebate/tox.ini -------------------------------------------------------------------------------- /clients/simple_earn/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/simple_earn/.gitignore -------------------------------------------------------------------------------- /clients/simple_earn/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/simple_earn/CHANGELOG.md -------------------------------------------------------------------------------- /clients/simple_earn/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/simple_earn/LICENCE -------------------------------------------------------------------------------- /clients/simple_earn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/simple_earn/README.md -------------------------------------------------------------------------------- /clients/simple_earn/docs/migration_guide_simple_earn_sdk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/simple_earn/docs/migration_guide_simple_earn_sdk.md -------------------------------------------------------------------------------- /clients/simple_earn/docs/rest_api/certificate-pinning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/simple_earn/docs/rest_api/certificate-pinning.md -------------------------------------------------------------------------------- /clients/simple_earn/docs/rest_api/compression.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/simple_earn/docs/rest_api/compression.md -------------------------------------------------------------------------------- /clients/simple_earn/docs/rest_api/error-handling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/simple_earn/docs/rest_api/error-handling.md -------------------------------------------------------------------------------- /clients/simple_earn/docs/rest_api/httpsAgent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/simple_earn/docs/rest_api/httpsAgent.md -------------------------------------------------------------------------------- /clients/simple_earn/docs/rest_api/keepAlive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/simple_earn/docs/rest_api/keepAlive.md -------------------------------------------------------------------------------- /clients/simple_earn/docs/rest_api/key-pair-authentication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/simple_earn/docs/rest_api/key-pair-authentication.md -------------------------------------------------------------------------------- /clients/simple_earn/docs/rest_api/proxy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/simple_earn/docs/rest_api/proxy.md -------------------------------------------------------------------------------- /clients/simple_earn/docs/rest_api/retries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/simple_earn/docs/rest_api/retries.md -------------------------------------------------------------------------------- /clients/simple_earn/docs/rest_api/timeout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/simple_earn/docs/rest_api/timeout.md -------------------------------------------------------------------------------- /clients/simple_earn/examples/rest_api/Bfusd/get_bfusd_account.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/simple_earn/examples/rest_api/Bfusd/get_bfusd_account.py -------------------------------------------------------------------------------- /clients/simple_earn/examples/rest_api/Bfusd/redeem_bfusd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/simple_earn/examples/rest_api/Bfusd/redeem_bfusd.py -------------------------------------------------------------------------------- /clients/simple_earn/examples/rest_api/Bfusd/subscribe_bfusd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/simple_earn/examples/rest_api/Bfusd/subscribe_bfusd.py -------------------------------------------------------------------------------- /clients/simple_earn/examples/rest_api/Rwusd/get_rwusd_account.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/simple_earn/examples/rest_api/Rwusd/get_rwusd_account.py -------------------------------------------------------------------------------- /clients/simple_earn/examples/rest_api/Rwusd/redeem_rwusd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/simple_earn/examples/rest_api/Rwusd/redeem_rwusd.py -------------------------------------------------------------------------------- /clients/simple_earn/examples/rest_api/Rwusd/subscribe_rwusd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/simple_earn/examples/rest_api/Rwusd/subscribe_rwusd.py -------------------------------------------------------------------------------- /clients/simple_earn/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/simple_earn/pyproject.toml -------------------------------------------------------------------------------- /clients/simple_earn/src/binance_sdk_simple_earn/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/simple_earn/src/binance_sdk_simple_earn/__init__.py -------------------------------------------------------------------------------- /clients/simple_earn/src/binance_sdk_simple_earn/metadata.py: -------------------------------------------------------------------------------- 1 | NAME = "binance-sdk-simple-earn" 2 | -------------------------------------------------------------------------------- /clients/simple_earn/src/binance_sdk_simple_earn/simple_earn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/simple_earn/src/binance_sdk_simple_earn/simple_earn.py -------------------------------------------------------------------------------- /clients/simple_earn/tests/unit/rest_api/test_bfusd_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/simple_earn/tests/unit/rest_api/test_bfusd_api.py -------------------------------------------------------------------------------- /clients/simple_earn/tests/unit/rest_api/test_flexible_locked_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/simple_earn/tests/unit/rest_api/test_flexible_locked_api.py -------------------------------------------------------------------------------- /clients/simple_earn/tests/unit/rest_api/test_rwusd_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/simple_earn/tests/unit/rest_api/test_rwusd_api.py -------------------------------------------------------------------------------- /clients/simple_earn/tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/simple_earn/tox.ini -------------------------------------------------------------------------------- /clients/spot/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/.gitignore -------------------------------------------------------------------------------- /clients/spot/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/CHANGELOG.md -------------------------------------------------------------------------------- /clients/spot/LICENCE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /clients/spot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/README.md -------------------------------------------------------------------------------- /clients/spot/docs/migration_guide_spot_sdk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/docs/migration_guide_spot_sdk.md -------------------------------------------------------------------------------- /clients/spot/docs/rest_api/certificate-pinning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/docs/rest_api/certificate-pinning.md -------------------------------------------------------------------------------- /clients/spot/docs/rest_api/compression.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/docs/rest_api/compression.md -------------------------------------------------------------------------------- /clients/spot/docs/rest_api/error-handling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/docs/rest_api/error-handling.md -------------------------------------------------------------------------------- /clients/spot/docs/rest_api/httpsAgent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/docs/rest_api/httpsAgent.md -------------------------------------------------------------------------------- /clients/spot/docs/rest_api/keepAlive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/docs/rest_api/keepAlive.md -------------------------------------------------------------------------------- /clients/spot/docs/rest_api/key-pair-authentication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/docs/rest_api/key-pair-authentication.md -------------------------------------------------------------------------------- /clients/spot/docs/rest_api/proxy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/docs/rest_api/proxy.md -------------------------------------------------------------------------------- /clients/spot/docs/rest_api/retries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/docs/rest_api/retries.md -------------------------------------------------------------------------------- /clients/spot/docs/rest_api/time-unit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/docs/rest_api/time-unit.md -------------------------------------------------------------------------------- /clients/spot/docs/rest_api/timeout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/docs/rest_api/timeout.md -------------------------------------------------------------------------------- /clients/spot/docs/websocket_api/agent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/docs/websocket_api/agent.md -------------------------------------------------------------------------------- /clients/spot/docs/websocket_api/compression.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/docs/websocket_api/compression.md -------------------------------------------------------------------------------- /clients/spot/docs/websocket_api/connection-mode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/docs/websocket_api/connection-mode.md -------------------------------------------------------------------------------- /clients/spot/docs/websocket_api/key-pair-authentication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/docs/websocket_api/key-pair-authentication.md -------------------------------------------------------------------------------- /clients/spot/docs/websocket_api/proxy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/docs/websocket_api/proxy.md -------------------------------------------------------------------------------- /clients/spot/docs/websocket_api/reconnect-delay.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/docs/websocket_api/reconnect-delay.md -------------------------------------------------------------------------------- /clients/spot/docs/websocket_api/time-unit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/docs/websocket_api/time-unit.md -------------------------------------------------------------------------------- /clients/spot/docs/websocket_api/timeout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/docs/websocket_api/timeout.md -------------------------------------------------------------------------------- /clients/spot/docs/websocket_api/user-data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/docs/websocket_api/user-data.md -------------------------------------------------------------------------------- /clients/spot/docs/websocket_streams/agent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/docs/websocket_streams/agent.md -------------------------------------------------------------------------------- /clients/spot/docs/websocket_streams/compression.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/docs/websocket_streams/compression.md -------------------------------------------------------------------------------- /clients/spot/docs/websocket_streams/connection-mode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/docs/websocket_streams/connection-mode.md -------------------------------------------------------------------------------- /clients/spot/docs/websocket_streams/proxy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/docs/websocket_streams/proxy.md -------------------------------------------------------------------------------- /clients/spot/docs/websocket_streams/reconnect-delay.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/docs/websocket_streams/reconnect-delay.md -------------------------------------------------------------------------------- /clients/spot/docs/websocket_streams/time-unit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/docs/websocket_streams/time-unit.md -------------------------------------------------------------------------------- /clients/spot/examples/rest_api/Account/account_commission.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/examples/rest_api/Account/account_commission.py -------------------------------------------------------------------------------- /clients/spot/examples/rest_api/Account/all_order_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/examples/rest_api/Account/all_order_list.py -------------------------------------------------------------------------------- /clients/spot/examples/rest_api/Account/all_orders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/examples/rest_api/Account/all_orders.py -------------------------------------------------------------------------------- /clients/spot/examples/rest_api/Account/get_account.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/examples/rest_api/Account/get_account.py -------------------------------------------------------------------------------- /clients/spot/examples/rest_api/Account/get_open_orders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/examples/rest_api/Account/get_open_orders.py -------------------------------------------------------------------------------- /clients/spot/examples/rest_api/Account/get_order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/examples/rest_api/Account/get_order.py -------------------------------------------------------------------------------- /clients/spot/examples/rest_api/Account/get_order_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/examples/rest_api/Account/get_order_list.py -------------------------------------------------------------------------------- /clients/spot/examples/rest_api/Account/my_allocations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/examples/rest_api/Account/my_allocations.py -------------------------------------------------------------------------------- /clients/spot/examples/rest_api/Account/my_filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/examples/rest_api/Account/my_filters.py -------------------------------------------------------------------------------- /clients/spot/examples/rest_api/Account/my_prevented_matches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/examples/rest_api/Account/my_prevented_matches.py -------------------------------------------------------------------------------- /clients/spot/examples/rest_api/Account/my_trades.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/examples/rest_api/Account/my_trades.py -------------------------------------------------------------------------------- /clients/spot/examples/rest_api/Account/open_order_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/examples/rest_api/Account/open_order_list.py -------------------------------------------------------------------------------- /clients/spot/examples/rest_api/Account/order_amendments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/examples/rest_api/Account/order_amendments.py -------------------------------------------------------------------------------- /clients/spot/examples/rest_api/Account/rate_limit_order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/examples/rest_api/Account/rate_limit_order.py -------------------------------------------------------------------------------- /clients/spot/examples/rest_api/General/exchange_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/examples/rest_api/General/exchange_info.py -------------------------------------------------------------------------------- /clients/spot/examples/rest_api/General/ping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/examples/rest_api/General/ping.py -------------------------------------------------------------------------------- /clients/spot/examples/rest_api/General/time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/examples/rest_api/General/time.py -------------------------------------------------------------------------------- /clients/spot/examples/rest_api/Market/agg_trades.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/examples/rest_api/Market/agg_trades.py -------------------------------------------------------------------------------- /clients/spot/examples/rest_api/Market/avg_price.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/examples/rest_api/Market/avg_price.py -------------------------------------------------------------------------------- /clients/spot/examples/rest_api/Market/depth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/examples/rest_api/Market/depth.py -------------------------------------------------------------------------------- /clients/spot/examples/rest_api/Market/get_trades.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/examples/rest_api/Market/get_trades.py -------------------------------------------------------------------------------- /clients/spot/examples/rest_api/Market/historical_trades.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/examples/rest_api/Market/historical_trades.py -------------------------------------------------------------------------------- /clients/spot/examples/rest_api/Market/klines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/examples/rest_api/Market/klines.py -------------------------------------------------------------------------------- /clients/spot/examples/rest_api/Market/ticker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/examples/rest_api/Market/ticker.py -------------------------------------------------------------------------------- /clients/spot/examples/rest_api/Market/ticker24hr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/examples/rest_api/Market/ticker24hr.py -------------------------------------------------------------------------------- /clients/spot/examples/rest_api/Market/ticker_book_ticker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/examples/rest_api/Market/ticker_book_ticker.py -------------------------------------------------------------------------------- /clients/spot/examples/rest_api/Market/ticker_price.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/examples/rest_api/Market/ticker_price.py -------------------------------------------------------------------------------- /clients/spot/examples/rest_api/Market/ticker_trading_day.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/examples/rest_api/Market/ticker_trading_day.py -------------------------------------------------------------------------------- /clients/spot/examples/rest_api/Market/ui_klines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/examples/rest_api/Market/ui_klines.py -------------------------------------------------------------------------------- /clients/spot/examples/rest_api/Trade/delete_open_orders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/examples/rest_api/Trade/delete_open_orders.py -------------------------------------------------------------------------------- /clients/spot/examples/rest_api/Trade/delete_order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/examples/rest_api/Trade/delete_order.py -------------------------------------------------------------------------------- /clients/spot/examples/rest_api/Trade/delete_order_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/examples/rest_api/Trade/delete_order_list.py -------------------------------------------------------------------------------- /clients/spot/examples/rest_api/Trade/new_order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/examples/rest_api/Trade/new_order.py -------------------------------------------------------------------------------- /clients/spot/examples/rest_api/Trade/order_amend_keep_priority.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/examples/rest_api/Trade/order_amend_keep_priority.py -------------------------------------------------------------------------------- /clients/spot/examples/rest_api/Trade/order_cancel_replace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/examples/rest_api/Trade/order_cancel_replace.py -------------------------------------------------------------------------------- /clients/spot/examples/rest_api/Trade/order_list_oco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/examples/rest_api/Trade/order_list_oco.py -------------------------------------------------------------------------------- /clients/spot/examples/rest_api/Trade/order_list_oto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/examples/rest_api/Trade/order_list_oto.py -------------------------------------------------------------------------------- /clients/spot/examples/rest_api/Trade/order_list_otoco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/examples/rest_api/Trade/order_list_otoco.py -------------------------------------------------------------------------------- /clients/spot/examples/rest_api/Trade/order_oco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/examples/rest_api/Trade/order_oco.py -------------------------------------------------------------------------------- /clients/spot/examples/rest_api/Trade/order_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/examples/rest_api/Trade/order_test.py -------------------------------------------------------------------------------- /clients/spot/examples/rest_api/Trade/sor_order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/examples/rest_api/Trade/sor_order.py -------------------------------------------------------------------------------- /clients/spot/examples/rest_api/Trade/sor_order_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/examples/rest_api/Trade/sor_order_test.py -------------------------------------------------------------------------------- /clients/spot/examples/websocket_api/Account/account_commission.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/examples/websocket_api/Account/account_commission.py -------------------------------------------------------------------------------- /clients/spot/examples/websocket_api/Account/account_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/examples/websocket_api/Account/account_status.py -------------------------------------------------------------------------------- /clients/spot/examples/websocket_api/Account/all_order_lists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/examples/websocket_api/Account/all_order_lists.py -------------------------------------------------------------------------------- /clients/spot/examples/websocket_api/Account/all_orders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/examples/websocket_api/Account/all_orders.py -------------------------------------------------------------------------------- /clients/spot/examples/websocket_api/Account/my_allocations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/examples/websocket_api/Account/my_allocations.py -------------------------------------------------------------------------------- /clients/spot/examples/websocket_api/Account/my_filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/examples/websocket_api/Account/my_filters.py -------------------------------------------------------------------------------- /clients/spot/examples/websocket_api/Account/my_prevented_matches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/examples/websocket_api/Account/my_prevented_matches.py -------------------------------------------------------------------------------- /clients/spot/examples/websocket_api/Account/my_trades.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/examples/websocket_api/Account/my_trades.py -------------------------------------------------------------------------------- /clients/spot/examples/websocket_api/Account/open_orders_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/examples/websocket_api/Account/open_orders_status.py -------------------------------------------------------------------------------- /clients/spot/examples/websocket_api/Account/order_amendments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/examples/websocket_api/Account/order_amendments.py -------------------------------------------------------------------------------- /clients/spot/examples/websocket_api/Account/order_list_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/examples/websocket_api/Account/order_list_status.py -------------------------------------------------------------------------------- /clients/spot/examples/websocket_api/Account/order_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/examples/websocket_api/Account/order_status.py -------------------------------------------------------------------------------- /clients/spot/examples/websocket_api/Auth/session_logon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/examples/websocket_api/Auth/session_logon.py -------------------------------------------------------------------------------- /clients/spot/examples/websocket_api/Auth/session_logout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/examples/websocket_api/Auth/session_logout.py -------------------------------------------------------------------------------- /clients/spot/examples/websocket_api/Auth/session_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/examples/websocket_api/Auth/session_status.py -------------------------------------------------------------------------------- /clients/spot/examples/websocket_api/General/exchange_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/examples/websocket_api/General/exchange_info.py -------------------------------------------------------------------------------- /clients/spot/examples/websocket_api/General/ping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/examples/websocket_api/General/ping.py -------------------------------------------------------------------------------- /clients/spot/examples/websocket_api/General/time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/examples/websocket_api/General/time.py -------------------------------------------------------------------------------- /clients/spot/examples/websocket_api/Market/avg_price.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/examples/websocket_api/Market/avg_price.py -------------------------------------------------------------------------------- /clients/spot/examples/websocket_api/Market/depth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/examples/websocket_api/Market/depth.py -------------------------------------------------------------------------------- /clients/spot/examples/websocket_api/Market/klines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/examples/websocket_api/Market/klines.py -------------------------------------------------------------------------------- /clients/spot/examples/websocket_api/Market/ticker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/examples/websocket_api/Market/ticker.py -------------------------------------------------------------------------------- /clients/spot/examples/websocket_api/Market/ticker24hr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/examples/websocket_api/Market/ticker24hr.py -------------------------------------------------------------------------------- /clients/spot/examples/websocket_api/Market/ticker_book.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/examples/websocket_api/Market/ticker_book.py -------------------------------------------------------------------------------- /clients/spot/examples/websocket_api/Market/ticker_price.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/examples/websocket_api/Market/ticker_price.py -------------------------------------------------------------------------------- /clients/spot/examples/websocket_api/Market/ticker_trading_day.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/examples/websocket_api/Market/ticker_trading_day.py -------------------------------------------------------------------------------- /clients/spot/examples/websocket_api/Market/trades_aggregate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/examples/websocket_api/Market/trades_aggregate.py -------------------------------------------------------------------------------- /clients/spot/examples/websocket_api/Market/trades_historical.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/examples/websocket_api/Market/trades_historical.py -------------------------------------------------------------------------------- /clients/spot/examples/websocket_api/Market/trades_recent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/examples/websocket_api/Market/trades_recent.py -------------------------------------------------------------------------------- /clients/spot/examples/websocket_api/Market/ui_klines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/examples/websocket_api/Market/ui_klines.py -------------------------------------------------------------------------------- /clients/spot/examples/websocket_api/Trade/open_orders_cancel_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/examples/websocket_api/Trade/open_orders_cancel_all.py -------------------------------------------------------------------------------- /clients/spot/examples/websocket_api/Trade/order_cancel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/examples/websocket_api/Trade/order_cancel.py -------------------------------------------------------------------------------- /clients/spot/examples/websocket_api/Trade/order_cancel_replace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/examples/websocket_api/Trade/order_cancel_replace.py -------------------------------------------------------------------------------- /clients/spot/examples/websocket_api/Trade/order_list_cancel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/examples/websocket_api/Trade/order_list_cancel.py -------------------------------------------------------------------------------- /clients/spot/examples/websocket_api/Trade/order_list_place.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/examples/websocket_api/Trade/order_list_place.py -------------------------------------------------------------------------------- /clients/spot/examples/websocket_api/Trade/order_list_place_oco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/examples/websocket_api/Trade/order_list_place_oco.py -------------------------------------------------------------------------------- /clients/spot/examples/websocket_api/Trade/order_list_place_oto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/examples/websocket_api/Trade/order_list_place_oto.py -------------------------------------------------------------------------------- /clients/spot/examples/websocket_api/Trade/order_list_place_otoco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/examples/websocket_api/Trade/order_list_place_otoco.py -------------------------------------------------------------------------------- /clients/spot/examples/websocket_api/Trade/order_place.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/examples/websocket_api/Trade/order_place.py -------------------------------------------------------------------------------- /clients/spot/examples/websocket_api/Trade/order_test_ws_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/examples/websocket_api/Trade/order_test_ws_api.py -------------------------------------------------------------------------------- /clients/spot/examples/websocket_api/Trade/sor_order_place.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/examples/websocket_api/Trade/sor_order_place.py -------------------------------------------------------------------------------- /clients/spot/examples/websocket_api/Trade/sor_order_test_ws_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/examples/websocket_api/Trade/sor_order_test_ws_api.py -------------------------------------------------------------------------------- /clients/spot/examples/websocket_streams/agg_trade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/examples/websocket_streams/agg_trade.py -------------------------------------------------------------------------------- /clients/spot/examples/websocket_streams/all_mini_ticker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/examples/websocket_streams/all_mini_ticker.py -------------------------------------------------------------------------------- /clients/spot/examples/websocket_streams/all_ticker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/examples/websocket_streams/all_ticker.py -------------------------------------------------------------------------------- /clients/spot/examples/websocket_streams/avg_price.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/examples/websocket_streams/avg_price.py -------------------------------------------------------------------------------- /clients/spot/examples/websocket_streams/book_ticker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/examples/websocket_streams/book_ticker.py -------------------------------------------------------------------------------- /clients/spot/examples/websocket_streams/diff_book_depth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/examples/websocket_streams/diff_book_depth.py -------------------------------------------------------------------------------- /clients/spot/examples/websocket_streams/kline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/examples/websocket_streams/kline.py -------------------------------------------------------------------------------- /clients/spot/examples/websocket_streams/kline_offset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/examples/websocket_streams/kline_offset.py -------------------------------------------------------------------------------- /clients/spot/examples/websocket_streams/mini_ticker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/examples/websocket_streams/mini_ticker.py -------------------------------------------------------------------------------- /clients/spot/examples/websocket_streams/partial_book_depth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/examples/websocket_streams/partial_book_depth.py -------------------------------------------------------------------------------- /clients/spot/examples/websocket_streams/rolling_window_ticker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/examples/websocket_streams/rolling_window_ticker.py -------------------------------------------------------------------------------- /clients/spot/examples/websocket_streams/ticker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/examples/websocket_streams/ticker.py -------------------------------------------------------------------------------- /clients/spot/examples/websocket_streams/trade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/examples/websocket_streams/trade.py -------------------------------------------------------------------------------- /clients/spot/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/pyproject.toml -------------------------------------------------------------------------------- /clients/spot/src/binance_sdk_spot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/src/binance_sdk_spot/__init__.py -------------------------------------------------------------------------------- /clients/spot/src/binance_sdk_spot/metadata.py: -------------------------------------------------------------------------------- 1 | NAME = "binance-sdk-spot" 2 | -------------------------------------------------------------------------------- /clients/spot/src/binance_sdk_spot/rest_api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/src/binance_sdk_spot/rest_api/__init__.py -------------------------------------------------------------------------------- /clients/spot/src/binance_sdk_spot/rest_api/api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/src/binance_sdk_spot/rest_api/api/__init__.py -------------------------------------------------------------------------------- /clients/spot/src/binance_sdk_spot/rest_api/api/account_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/src/binance_sdk_spot/rest_api/api/account_api.py -------------------------------------------------------------------------------- /clients/spot/src/binance_sdk_spot/rest_api/api/general_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/src/binance_sdk_spot/rest_api/api/general_api.py -------------------------------------------------------------------------------- /clients/spot/src/binance_sdk_spot/rest_api/api/market_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/src/binance_sdk_spot/rest_api/api/market_api.py -------------------------------------------------------------------------------- /clients/spot/src/binance_sdk_spot/rest_api/api/trade_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/src/binance_sdk_spot/rest_api/api/trade_api.py -------------------------------------------------------------------------------- /clients/spot/src/binance_sdk_spot/rest_api/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/src/binance_sdk_spot/rest_api/models/__init__.py -------------------------------------------------------------------------------- /clients/spot/src/binance_sdk_spot/rest_api/models/asset_filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/src/binance_sdk_spot/rest_api/models/asset_filters.py -------------------------------------------------------------------------------- /clients/spot/src/binance_sdk_spot/rest_api/models/depth_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/src/binance_sdk_spot/rest_api/models/depth_response.py -------------------------------------------------------------------------------- /clients/spot/src/binance_sdk_spot/rest_api/models/enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/src/binance_sdk_spot/rest_api/models/enums.py -------------------------------------------------------------------------------- /clients/spot/src/binance_sdk_spot/rest_api/models/klines_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/src/binance_sdk_spot/rest_api/models/klines_item.py -------------------------------------------------------------------------------- /clients/spot/src/binance_sdk_spot/rest_api/models/price_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/src/binance_sdk_spot/rest_api/models/price_filter.py -------------------------------------------------------------------------------- /clients/spot/src/binance_sdk_spot/rest_api/models/rate_limits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/src/binance_sdk_spot/rest_api/models/rate_limits.py -------------------------------------------------------------------------------- /clients/spot/src/binance_sdk_spot/rest_api/models/symbol_filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/src/binance_sdk_spot/rest_api/models/symbol_filters.py -------------------------------------------------------------------------------- /clients/spot/src/binance_sdk_spot/rest_api/models/time_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/src/binance_sdk_spot/rest_api/models/time_response.py -------------------------------------------------------------------------------- /clients/spot/src/binance_sdk_spot/rest_api/models/ui_klines_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/src/binance_sdk_spot/rest_api/models/ui_klines_item.py -------------------------------------------------------------------------------- /clients/spot/src/binance_sdk_spot/rest_api/rest_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/src/binance_sdk_spot/rest_api/rest_api.py -------------------------------------------------------------------------------- /clients/spot/src/binance_sdk_spot/spot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/src/binance_sdk_spot/spot.py -------------------------------------------------------------------------------- /clients/spot/src/binance_sdk_spot/websocket_api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/src/binance_sdk_spot/websocket_api/__init__.py -------------------------------------------------------------------------------- /clients/spot/src/binance_sdk_spot/websocket_api/api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/src/binance_sdk_spot/websocket_api/api/__init__.py -------------------------------------------------------------------------------- /clients/spot/src/binance_sdk_spot/websocket_api/api/account_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/src/binance_sdk_spot/websocket_api/api/account_api.py -------------------------------------------------------------------------------- /clients/spot/src/binance_sdk_spot/websocket_api/api/auth_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/src/binance_sdk_spot/websocket_api/api/auth_api.py -------------------------------------------------------------------------------- /clients/spot/src/binance_sdk_spot/websocket_api/api/general_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/src/binance_sdk_spot/websocket_api/api/general_api.py -------------------------------------------------------------------------------- /clients/spot/src/binance_sdk_spot/websocket_api/api/market_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/src/binance_sdk_spot/websocket_api/api/market_api.py -------------------------------------------------------------------------------- /clients/spot/src/binance_sdk_spot/websocket_api/api/trade_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/src/binance_sdk_spot/websocket_api/api/trade_api.py -------------------------------------------------------------------------------- /clients/spot/src/binance_sdk_spot/websocket_api/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/src/binance_sdk_spot/websocket_api/models/__init__.py -------------------------------------------------------------------------------- /clients/spot/src/binance_sdk_spot/websocket_api/models/enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/src/binance_sdk_spot/websocket_api/models/enums.py -------------------------------------------------------------------------------- /clients/spot/src/binance_sdk_spot/websocket_api/websocket_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/src/binance_sdk_spot/websocket_api/websocket_api.py -------------------------------------------------------------------------------- /clients/spot/src/binance_sdk_spot/websocket_streams/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/src/binance_sdk_spot/websocket_streams/__init__.py -------------------------------------------------------------------------------- /clients/spot/src/binance_sdk_spot/websocket_streams/models/enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/src/binance_sdk_spot/websocket_streams/models/enums.py -------------------------------------------------------------------------------- /clients/spot/tests/unit/rest_api/test_account_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/tests/unit/rest_api/test_account_api.py -------------------------------------------------------------------------------- /clients/spot/tests/unit/rest_api/test_general_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/tests/unit/rest_api/test_general_api.py -------------------------------------------------------------------------------- /clients/spot/tests/unit/rest_api/test_market_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/tests/unit/rest_api/test_market_api.py -------------------------------------------------------------------------------- /clients/spot/tests/unit/rest_api/test_trade_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/tests/unit/rest_api/test_trade_api.py -------------------------------------------------------------------------------- /clients/spot/tests/unit/websocket_api/test_account_api_ws_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/tests/unit/websocket_api/test_account_api_ws_api.py -------------------------------------------------------------------------------- /clients/spot/tests/unit/websocket_api/test_auth_api_ws_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/tests/unit/websocket_api/test_auth_api_ws_api.py -------------------------------------------------------------------------------- /clients/spot/tests/unit/websocket_api/test_general_api_ws_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/tests/unit/websocket_api/test_general_api_ws_api.py -------------------------------------------------------------------------------- /clients/spot/tests/unit/websocket_api/test_market_api_ws_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/tests/unit/websocket_api/test_market_api_ws_api.py -------------------------------------------------------------------------------- /clients/spot/tests/unit/websocket_api/test_trade_api_ws_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/tests/unit/websocket_api/test_trade_api_ws_api.py -------------------------------------------------------------------------------- /clients/spot/tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/spot/tox.ini -------------------------------------------------------------------------------- /clients/staking/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/staking/.gitignore -------------------------------------------------------------------------------- /clients/staking/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/staking/CHANGELOG.md -------------------------------------------------------------------------------- /clients/staking/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/staking/LICENCE -------------------------------------------------------------------------------- /clients/staking/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/staking/README.md -------------------------------------------------------------------------------- /clients/staking/docs/migration_guide_staking_sdk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/staking/docs/migration_guide_staking_sdk.md -------------------------------------------------------------------------------- /clients/staking/docs/rest_api/certificate-pinning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/staking/docs/rest_api/certificate-pinning.md -------------------------------------------------------------------------------- /clients/staking/docs/rest_api/compression.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/staking/docs/rest_api/compression.md -------------------------------------------------------------------------------- /clients/staking/docs/rest_api/error-handling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/staking/docs/rest_api/error-handling.md -------------------------------------------------------------------------------- /clients/staking/docs/rest_api/httpsAgent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/staking/docs/rest_api/httpsAgent.md -------------------------------------------------------------------------------- /clients/staking/docs/rest_api/keepAlive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/staking/docs/rest_api/keepAlive.md -------------------------------------------------------------------------------- /clients/staking/docs/rest_api/key-pair-authentication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/staking/docs/rest_api/key-pair-authentication.md -------------------------------------------------------------------------------- /clients/staking/docs/rest_api/proxy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/staking/docs/rest_api/proxy.md -------------------------------------------------------------------------------- /clients/staking/docs/rest_api/retries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/staking/docs/rest_api/retries.md -------------------------------------------------------------------------------- /clients/staking/docs/rest_api/timeout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/staking/docs/rest_api/timeout.md -------------------------------------------------------------------------------- /clients/staking/examples/rest_api/EthStaking/redeem_eth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/staking/examples/rest_api/EthStaking/redeem_eth.py -------------------------------------------------------------------------------- /clients/staking/examples/rest_api/EthStaking/wrap_beth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/staking/examples/rest_api/EthStaking/wrap_beth.py -------------------------------------------------------------------------------- /clients/staking/examples/rest_api/SoftStaking/set_soft_staking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/staking/examples/rest_api/SoftStaking/set_soft_staking.py -------------------------------------------------------------------------------- /clients/staking/examples/rest_api/SolStaking/redeem_sol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/staking/examples/rest_api/SolStaking/redeem_sol.py -------------------------------------------------------------------------------- /clients/staking/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/staking/pyproject.toml -------------------------------------------------------------------------------- /clients/staking/src/binance_sdk_staking/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/staking/src/binance_sdk_staking/__init__.py -------------------------------------------------------------------------------- /clients/staking/src/binance_sdk_staking/metadata.py: -------------------------------------------------------------------------------- 1 | NAME = "binance-sdk-staking" 2 | -------------------------------------------------------------------------------- /clients/staking/src/binance_sdk_staking/rest_api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/staking/src/binance_sdk_staking/rest_api/__init__.py -------------------------------------------------------------------------------- /clients/staking/src/binance_sdk_staking/rest_api/api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/staking/src/binance_sdk_staking/rest_api/api/__init__.py -------------------------------------------------------------------------------- /clients/staking/src/binance_sdk_staking/rest_api/models/enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/staking/src/binance_sdk_staking/rest_api/models/enums.py -------------------------------------------------------------------------------- /clients/staking/src/binance_sdk_staking/rest_api/rest_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/staking/src/binance_sdk_staking/rest_api/rest_api.py -------------------------------------------------------------------------------- /clients/staking/src/binance_sdk_staking/staking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/staking/src/binance_sdk_staking/staking.py -------------------------------------------------------------------------------- /clients/staking/tests/unit/rest_api/test_eth_staking_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/staking/tests/unit/rest_api/test_eth_staking_api.py -------------------------------------------------------------------------------- /clients/staking/tests/unit/rest_api/test_on_chain_yields_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/staking/tests/unit/rest_api/test_on_chain_yields_api.py -------------------------------------------------------------------------------- /clients/staking/tests/unit/rest_api/test_soft_staking_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/staking/tests/unit/rest_api/test_soft_staking_api.py -------------------------------------------------------------------------------- /clients/staking/tests/unit/rest_api/test_sol_staking_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/staking/tests/unit/rest_api/test_sol_staking_api.py -------------------------------------------------------------------------------- /clients/staking/tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/staking/tox.ini -------------------------------------------------------------------------------- /clients/sub_account/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/sub_account/.gitignore -------------------------------------------------------------------------------- /clients/sub_account/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/sub_account/CHANGELOG.md -------------------------------------------------------------------------------- /clients/sub_account/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/sub_account/LICENCE -------------------------------------------------------------------------------- /clients/sub_account/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/sub_account/README.md -------------------------------------------------------------------------------- /clients/sub_account/docs/migration_guide_sub_account_sdk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/sub_account/docs/migration_guide_sub_account_sdk.md -------------------------------------------------------------------------------- /clients/sub_account/docs/rest_api/certificate-pinning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/sub_account/docs/rest_api/certificate-pinning.md -------------------------------------------------------------------------------- /clients/sub_account/docs/rest_api/compression.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/sub_account/docs/rest_api/compression.md -------------------------------------------------------------------------------- /clients/sub_account/docs/rest_api/error-handling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/sub_account/docs/rest_api/error-handling.md -------------------------------------------------------------------------------- /clients/sub_account/docs/rest_api/httpsAgent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/sub_account/docs/rest_api/httpsAgent.md -------------------------------------------------------------------------------- /clients/sub_account/docs/rest_api/keepAlive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/sub_account/docs/rest_api/keepAlive.md -------------------------------------------------------------------------------- /clients/sub_account/docs/rest_api/key-pair-authentication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/sub_account/docs/rest_api/key-pair-authentication.md -------------------------------------------------------------------------------- /clients/sub_account/docs/rest_api/proxy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/sub_account/docs/rest_api/proxy.md -------------------------------------------------------------------------------- /clients/sub_account/docs/rest_api/retries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/sub_account/docs/rest_api/retries.md -------------------------------------------------------------------------------- /clients/sub_account/docs/rest_api/timeout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/sub_account/docs/rest_api/timeout.md -------------------------------------------------------------------------------- /clients/sub_account/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/sub_account/pyproject.toml -------------------------------------------------------------------------------- /clients/sub_account/src/binance_sdk_sub_account/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/sub_account/src/binance_sdk_sub_account/__init__.py -------------------------------------------------------------------------------- /clients/sub_account/src/binance_sdk_sub_account/metadata.py: -------------------------------------------------------------------------------- 1 | NAME = "binance-sdk-sub-account" 2 | -------------------------------------------------------------------------------- /clients/sub_account/src/binance_sdk_sub_account/sub_account.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/sub_account/src/binance_sdk_sub_account/sub_account.py -------------------------------------------------------------------------------- /clients/sub_account/tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/sub_account/tox.ini -------------------------------------------------------------------------------- /clients/vip_loan/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/vip_loan/.gitignore -------------------------------------------------------------------------------- /clients/vip_loan/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/vip_loan/CHANGELOG.md -------------------------------------------------------------------------------- /clients/vip_loan/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/vip_loan/LICENCE -------------------------------------------------------------------------------- /clients/vip_loan/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/vip_loan/README.md -------------------------------------------------------------------------------- /clients/vip_loan/docs/rest_api/certificate-pinning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/vip_loan/docs/rest_api/certificate-pinning.md -------------------------------------------------------------------------------- /clients/vip_loan/docs/rest_api/compression.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/vip_loan/docs/rest_api/compression.md -------------------------------------------------------------------------------- /clients/vip_loan/docs/rest_api/error-handling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/vip_loan/docs/rest_api/error-handling.md -------------------------------------------------------------------------------- /clients/vip_loan/docs/rest_api/httpsAgent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/vip_loan/docs/rest_api/httpsAgent.md -------------------------------------------------------------------------------- /clients/vip_loan/docs/rest_api/keepAlive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/vip_loan/docs/rest_api/keepAlive.md -------------------------------------------------------------------------------- /clients/vip_loan/docs/rest_api/key-pair-authentication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/vip_loan/docs/rest_api/key-pair-authentication.md -------------------------------------------------------------------------------- /clients/vip_loan/docs/rest_api/proxy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/vip_loan/docs/rest_api/proxy.md -------------------------------------------------------------------------------- /clients/vip_loan/docs/rest_api/retries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/vip_loan/docs/rest_api/retries.md -------------------------------------------------------------------------------- /clients/vip_loan/docs/rest_api/timeout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/vip_loan/docs/rest_api/timeout.md -------------------------------------------------------------------------------- /clients/vip_loan/examples/rest_api/Trade/vip_loan_borrow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/vip_loan/examples/rest_api/Trade/vip_loan_borrow.py -------------------------------------------------------------------------------- /clients/vip_loan/examples/rest_api/Trade/vip_loan_renew.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/vip_loan/examples/rest_api/Trade/vip_loan_renew.py -------------------------------------------------------------------------------- /clients/vip_loan/examples/rest_api/Trade/vip_loan_repay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/vip_loan/examples/rest_api/Trade/vip_loan_repay.py -------------------------------------------------------------------------------- /clients/vip_loan/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/vip_loan/pyproject.toml -------------------------------------------------------------------------------- /clients/vip_loan/src/binance_sdk_vip_loan/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/vip_loan/src/binance_sdk_vip_loan/__init__.py -------------------------------------------------------------------------------- /clients/vip_loan/src/binance_sdk_vip_loan/metadata.py: -------------------------------------------------------------------------------- 1 | NAME = "binance-sdk-vip-loan" 2 | -------------------------------------------------------------------------------- /clients/vip_loan/src/binance_sdk_vip_loan/rest_api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/vip_loan/src/binance_sdk_vip_loan/rest_api/__init__.py -------------------------------------------------------------------------------- /clients/vip_loan/src/binance_sdk_vip_loan/rest_api/rest_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/vip_loan/src/binance_sdk_vip_loan/rest_api/rest_api.py -------------------------------------------------------------------------------- /clients/vip_loan/src/binance_sdk_vip_loan/vip_loan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/vip_loan/src/binance_sdk_vip_loan/vip_loan.py -------------------------------------------------------------------------------- /clients/vip_loan/tests/unit/rest_api/test_market_data_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/vip_loan/tests/unit/rest_api/test_market_data_api.py -------------------------------------------------------------------------------- /clients/vip_loan/tests/unit/rest_api/test_trade_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/vip_loan/tests/unit/rest_api/test_trade_api.py -------------------------------------------------------------------------------- /clients/vip_loan/tests/unit/rest_api/test_user_information_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/vip_loan/tests/unit/rest_api/test_user_information_api.py -------------------------------------------------------------------------------- /clients/vip_loan/tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/vip_loan/tox.ini -------------------------------------------------------------------------------- /clients/wallet/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/wallet/.gitignore -------------------------------------------------------------------------------- /clients/wallet/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/wallet/CHANGELOG.md -------------------------------------------------------------------------------- /clients/wallet/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/wallet/LICENCE -------------------------------------------------------------------------------- /clients/wallet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/wallet/README.md -------------------------------------------------------------------------------- /clients/wallet/docs/migration_guide_wallet_sdk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/wallet/docs/migration_guide_wallet_sdk.md -------------------------------------------------------------------------------- /clients/wallet/docs/rest_api/certificate-pinning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/wallet/docs/rest_api/certificate-pinning.md -------------------------------------------------------------------------------- /clients/wallet/docs/rest_api/compression.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/wallet/docs/rest_api/compression.md -------------------------------------------------------------------------------- /clients/wallet/docs/rest_api/error-handling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/wallet/docs/rest_api/error-handling.md -------------------------------------------------------------------------------- /clients/wallet/docs/rest_api/httpsAgent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/wallet/docs/rest_api/httpsAgent.md -------------------------------------------------------------------------------- /clients/wallet/docs/rest_api/keepAlive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/wallet/docs/rest_api/keepAlive.md -------------------------------------------------------------------------------- /clients/wallet/docs/rest_api/key-pair-authentication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/wallet/docs/rest_api/key-pair-authentication.md -------------------------------------------------------------------------------- /clients/wallet/docs/rest_api/proxy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/wallet/docs/rest_api/proxy.md -------------------------------------------------------------------------------- /clients/wallet/docs/rest_api/retries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/wallet/docs/rest_api/retries.md -------------------------------------------------------------------------------- /clients/wallet/docs/rest_api/timeout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/wallet/docs/rest_api/timeout.md -------------------------------------------------------------------------------- /clients/wallet/examples/rest_api/Account/account_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/wallet/examples/rest_api/Account/account_info.py -------------------------------------------------------------------------------- /clients/wallet/examples/rest_api/Account/account_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/wallet/examples/rest_api/Account/account_status.py -------------------------------------------------------------------------------- /clients/wallet/examples/rest_api/Asset/asset_detail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/wallet/examples/rest_api/Asset/asset_detail.py -------------------------------------------------------------------------------- /clients/wallet/examples/rest_api/Asset/asset_dividend_record.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/wallet/examples/rest_api/Asset/asset_dividend_record.py -------------------------------------------------------------------------------- /clients/wallet/examples/rest_api/Asset/dust_transfer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/wallet/examples/rest_api/Asset/dust_transfer.py -------------------------------------------------------------------------------- /clients/wallet/examples/rest_api/Asset/dustlog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/wallet/examples/rest_api/Asset/dustlog.py -------------------------------------------------------------------------------- /clients/wallet/examples/rest_api/Asset/funding_wallet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/wallet/examples/rest_api/Asset/funding_wallet.py -------------------------------------------------------------------------------- /clients/wallet/examples/rest_api/Asset/get_open_symbol_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/wallet/examples/rest_api/Asset/get_open_symbol_list.py -------------------------------------------------------------------------------- /clients/wallet/examples/rest_api/Asset/trade_fee.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/wallet/examples/rest_api/Asset/trade_fee.py -------------------------------------------------------------------------------- /clients/wallet/examples/rest_api/Asset/user_asset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/wallet/examples/rest_api/Asset/user_asset.py -------------------------------------------------------------------------------- /clients/wallet/examples/rest_api/Asset/user_universal_transfer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/wallet/examples/rest_api/Asset/user_universal_transfer.py -------------------------------------------------------------------------------- /clients/wallet/examples/rest_api/Capital/all_coins_information.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/wallet/examples/rest_api/Capital/all_coins_information.py -------------------------------------------------------------------------------- /clients/wallet/examples/rest_api/Capital/deposit_address.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/wallet/examples/rest_api/Capital/deposit_address.py -------------------------------------------------------------------------------- /clients/wallet/examples/rest_api/Capital/deposit_history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/wallet/examples/rest_api/Capital/deposit_history.py -------------------------------------------------------------------------------- /clients/wallet/examples/rest_api/Capital/fetch_withdraw_quota.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/wallet/examples/rest_api/Capital/fetch_withdraw_quota.py -------------------------------------------------------------------------------- /clients/wallet/examples/rest_api/Capital/withdraw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/wallet/examples/rest_api/Capital/withdraw.py -------------------------------------------------------------------------------- /clients/wallet/examples/rest_api/Capital/withdraw_history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/wallet/examples/rest_api/Capital/withdraw_history.py -------------------------------------------------------------------------------- /clients/wallet/examples/rest_api/Others/system_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/wallet/examples/rest_api/Others/system_status.py -------------------------------------------------------------------------------- /clients/wallet/examples/rest_api/TravelRule/broker_withdraw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/wallet/examples/rest_api/TravelRule/broker_withdraw.py -------------------------------------------------------------------------------- /clients/wallet/examples/rest_api/TravelRule/deposit_history_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/wallet/examples/rest_api/TravelRule/deposit_history_v2.py -------------------------------------------------------------------------------- /clients/wallet/examples/rest_api/TravelRule/vasp_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/wallet/examples/rest_api/TravelRule/vasp_list.py -------------------------------------------------------------------------------- /clients/wallet/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/wallet/pyproject.toml -------------------------------------------------------------------------------- /clients/wallet/src/binance_sdk_wallet/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/wallet/src/binance_sdk_wallet/__init__.py -------------------------------------------------------------------------------- /clients/wallet/src/binance_sdk_wallet/metadata.py: -------------------------------------------------------------------------------- 1 | NAME = "binance-sdk-wallet" 2 | -------------------------------------------------------------------------------- /clients/wallet/src/binance_sdk_wallet/rest_api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/wallet/src/binance_sdk_wallet/rest_api/__init__.py -------------------------------------------------------------------------------- /clients/wallet/src/binance_sdk_wallet/rest_api/api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/wallet/src/binance_sdk_wallet/rest_api/api/__init__.py -------------------------------------------------------------------------------- /clients/wallet/src/binance_sdk_wallet/rest_api/api/account_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/wallet/src/binance_sdk_wallet/rest_api/api/account_api.py -------------------------------------------------------------------------------- /clients/wallet/src/binance_sdk_wallet/rest_api/api/asset_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/wallet/src/binance_sdk_wallet/rest_api/api/asset_api.py -------------------------------------------------------------------------------- /clients/wallet/src/binance_sdk_wallet/rest_api/api/capital_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/wallet/src/binance_sdk_wallet/rest_api/api/capital_api.py -------------------------------------------------------------------------------- /clients/wallet/src/binance_sdk_wallet/rest_api/api/others_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/wallet/src/binance_sdk_wallet/rest_api/api/others_api.py -------------------------------------------------------------------------------- /clients/wallet/src/binance_sdk_wallet/rest_api/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/wallet/src/binance_sdk_wallet/rest_api/models/__init__.py -------------------------------------------------------------------------------- /clients/wallet/src/binance_sdk_wallet/rest_api/models/enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/wallet/src/binance_sdk_wallet/rest_api/models/enums.py -------------------------------------------------------------------------------- /clients/wallet/src/binance_sdk_wallet/rest_api/rest_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/wallet/src/binance_sdk_wallet/rest_api/rest_api.py -------------------------------------------------------------------------------- /clients/wallet/src/binance_sdk_wallet/wallet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/wallet/src/binance_sdk_wallet/wallet.py -------------------------------------------------------------------------------- /clients/wallet/tests/unit/rest_api/test_account_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/wallet/tests/unit/rest_api/test_account_api.py -------------------------------------------------------------------------------- /clients/wallet/tests/unit/rest_api/test_asset_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/wallet/tests/unit/rest_api/test_asset_api.py -------------------------------------------------------------------------------- /clients/wallet/tests/unit/rest_api/test_capital_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/wallet/tests/unit/rest_api/test_capital_api.py -------------------------------------------------------------------------------- /clients/wallet/tests/unit/rest_api/test_others_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/wallet/tests/unit/rest_api/test_others_api.py -------------------------------------------------------------------------------- /clients/wallet/tests/unit/rest_api/test_travel_rule_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/wallet/tests/unit/rest_api/test_travel_rule_api.py -------------------------------------------------------------------------------- /clients/wallet/tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/clients/wallet/tox.ini -------------------------------------------------------------------------------- /common/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/common/.gitignore -------------------------------------------------------------------------------- /common/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/common/CHANGELOG.md -------------------------------------------------------------------------------- /common/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/common/LICENCE -------------------------------------------------------------------------------- /common/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/common/README.md -------------------------------------------------------------------------------- /common/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/common/pyproject.toml -------------------------------------------------------------------------------- /common/src/binance_common/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /common/src/binance_common/configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/common/src/binance_common/configuration.py -------------------------------------------------------------------------------- /common/src/binance_common/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/common/src/binance_common/constants.py -------------------------------------------------------------------------------- /common/src/binance_common/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/common/src/binance_common/errors.py -------------------------------------------------------------------------------- /common/src/binance_common/headers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/common/src/binance_common/headers.py -------------------------------------------------------------------------------- /common/src/binance_common/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/common/src/binance_common/logger.py -------------------------------------------------------------------------------- /common/src/binance_common/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/common/src/binance_common/models.py -------------------------------------------------------------------------------- /common/src/binance_common/signature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/common/src/binance_common/signature.py -------------------------------------------------------------------------------- /common/src/binance_common/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/common/src/binance_common/utils.py -------------------------------------------------------------------------------- /common/src/binance_common/websocket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/common/src/binance_common/websocket.py -------------------------------------------------------------------------------- /common/tests/unit/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/common/tests/unit/test_utils.py -------------------------------------------------------------------------------- /common/tests/unit/test_websocket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/common/tests/unit/test_websocket.py -------------------------------------------------------------------------------- /common/tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-connector-python/HEAD/common/tox.ini --------------------------------------------------------------------------------