gitextract_kozbdaqs/ ├── .coverage ├── .github/ │ ├── CODEOWNERS │ ├── ISSUE_TEMPLATE/ │ │ └── bug_report.md │ └── workflows/ │ └── python-app.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .readthedocs.yaml ├── .travis.yml ├── Endpoints.md ├── LICENSE ├── PYPIREADME.rst ├── README.rst ├── binance/ │ ├── __init__.py │ ├── async_client.py │ ├── base_client.py │ ├── client.py │ ├── enums.py │ ├── exceptions.py │ ├── helpers.py │ └── ws/ │ ├── __init__.py │ ├── constants.py │ ├── depthcache.py │ ├── keepalive_websocket.py │ ├── reconnecting_websocket.py │ ├── streams.py │ ├── threaded_stream.py │ └── websocket_api.py ├── code-generator.py ├── docs/ │ ├── Makefile │ ├── account.rst │ ├── binance.rst │ ├── changelog.rst │ ├── conf.py │ ├── constants.rst │ ├── depth_cache.rst │ ├── exceptions.rst │ ├── faqs.rst │ ├── general.rst │ ├── helpers.rst │ ├── index.rst │ ├── margin.rst │ ├── market_data.rst │ ├── overview.rst │ ├── requirements.txt │ ├── sub_accounts.rst │ ├── websockets.rst │ └── withdraw.rst ├── examples/ │ ├── binace_socket_manager.py │ ├── create_oco_order.py │ ├── create_order.py │ ├── create_order_async.py │ ├── depth_cache_example.py │ ├── depth_cache_threaded_example.py │ ├── futures_algo_order_examples.py │ ├── save_historical_data.py │ ├── verbose_example.py │ ├── websocket.py │ ├── ws_create_order.py │ └── ws_create_order_async.py ├── pyproject.toml ├── pyrightconfig.json ├── pytest.ini ├── requirements.txt ├── setup.cfg ├── setup.py ├── test-requirements.txt ├── tests/ │ ├── __init__.py │ ├── conftest.py │ ├── test_api_request.py │ ├── test_async_client.py │ ├── test_async_client_futures.py │ ├── test_async_client_gift_card copy.py │ ├── test_async_client_margin.py │ ├── test_async_client_options.py │ ├── test_async_client_portfolio.py │ ├── test_async_client_ws_api.py │ ├── test_async_client_ws_futures_requests.py │ ├── test_client.py │ ├── test_client_futures.py │ ├── test_client_gift_card.py │ ├── test_client_margin.py │ ├── test_client_options.py │ ├── test_client_portfolio.py │ ├── test_client_ws_api.py │ ├── test_client_ws_futures_requests.py │ ├── test_cryptography.py │ ├── test_depth_cache.py │ ├── test_futures.py │ ├── test_get_order_book.py │ ├── test_headers.py │ ├── test_historical_klines.py │ ├── test_ids.py │ ├── test_init.py │ ├── test_keepalive_reconnect.py │ ├── test_order.py │ ├── test_ping.py │ ├── test_reconnecting_websocket.py │ ├── test_region_exception.py │ ├── test_socket_manager.py │ ├── test_streams.py │ ├── test_streams_options.py │ ├── test_threaded_socket_manager.py │ ├── test_threaded_stream.py │ ├── test_user_socket_integration.py │ ├── test_verbose_mode.py │ ├── test_websocket_verbose.py │ ├── test_ws_api.py │ └── utils.py └── tox.ini