├── .gitignore ├── .isort.cfg ├── .pre-commit-config.yaml ├── CHANGELOG.md ├── README.md ├── examples └── websocket │ ├── market_order_book.py │ └── user_data.py ├── pyproject.toml ├── requirements ├── base.txt ├── requirements-dev.txt └── requirements-test.txt ├── setup.cfg ├── setup.py └── tabdeal ├── __init__.py ├── __version__.py ├── client.py ├── enums.py ├── exceptions.py ├── isolated_margin.py ├── spot.py ├── utils.py └── websocket_client.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tabdeal-Exchange/tabdeal-python/HEAD/.gitignore -------------------------------------------------------------------------------- /.isort.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tabdeal-Exchange/tabdeal-python/HEAD/.isort.cfg -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tabdeal-Exchange/tabdeal-python/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tabdeal-Exchange/tabdeal-python/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tabdeal-Exchange/tabdeal-python/HEAD/README.md -------------------------------------------------------------------------------- /examples/websocket/market_order_book.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tabdeal-Exchange/tabdeal-python/HEAD/examples/websocket/market_order_book.py -------------------------------------------------------------------------------- /examples/websocket/user_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tabdeal-Exchange/tabdeal-python/HEAD/examples/websocket/user_data.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tabdeal-Exchange/tabdeal-python/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements/base.txt: -------------------------------------------------------------------------------- 1 | requests==2.27.1 2 | websocket-client==1.3.3 3 | -------------------------------------------------------------------------------- /requirements/requirements-dev.txt: -------------------------------------------------------------------------------- 1 | -r base.txt 2 | pre-commit==2.17.0 3 | -------------------------------------------------------------------------------- /requirements/requirements-test.txt: -------------------------------------------------------------------------------- 1 | -r base.txt 2 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [options.data_files] 2 | . = requirements/base.txt 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tabdeal-Exchange/tabdeal-python/HEAD/setup.py -------------------------------------------------------------------------------- /tabdeal/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tabdeal/__version__.py: -------------------------------------------------------------------------------- 1 | __version__ = "0.4.6" 2 | -------------------------------------------------------------------------------- /tabdeal/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tabdeal-Exchange/tabdeal-python/HEAD/tabdeal/client.py -------------------------------------------------------------------------------- /tabdeal/enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tabdeal-Exchange/tabdeal-python/HEAD/tabdeal/enums.py -------------------------------------------------------------------------------- /tabdeal/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tabdeal-Exchange/tabdeal-python/HEAD/tabdeal/exceptions.py -------------------------------------------------------------------------------- /tabdeal/isolated_margin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tabdeal-Exchange/tabdeal-python/HEAD/tabdeal/isolated_margin.py -------------------------------------------------------------------------------- /tabdeal/spot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tabdeal-Exchange/tabdeal-python/HEAD/tabdeal/spot.py -------------------------------------------------------------------------------- /tabdeal/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tabdeal-Exchange/tabdeal-python/HEAD/tabdeal/utils.py -------------------------------------------------------------------------------- /tabdeal/websocket_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tabdeal-Exchange/tabdeal-python/HEAD/tabdeal/websocket_client.py --------------------------------------------------------------------------------