├── .github ├── dependabot.yml └── workflows │ └── codeql-analysis.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── cryptoxlib ├── CryptoXLib.py ├── CryptoXLibClient.py ├── Pair.py ├── PeriodicChecker.py ├── Timer.py ├── WebsocketMgr.py ├── __init__.py ├── clients │ ├── __init__.py │ ├── aax │ │ ├── AAXClient.py │ │ ├── AAXWebsocket.py │ │ ├── __init__.py │ │ ├── enums.py │ │ ├── exceptions.py │ │ └── functions.py │ ├── bibox │ │ ├── BiboxClient.py │ │ ├── BiboxWebsocket.py │ │ ├── __init__.py │ │ ├── enums.py │ │ ├── exceptions.py │ │ └── functions.py │ ├── bibox_europe │ │ ├── BiboxEuropeClient.py │ │ ├── BiboxEuropeWebsocket.py │ │ ├── __init__.py │ │ ├── enums.py │ │ ├── exceptions.py │ │ └── functions.py │ ├── binance │ │ ├── BinanceClient.py │ │ ├── BinanceCommonClient.py │ │ ├── BinanceCommonWebsocket.py │ │ ├── BinanceFuturesClient.py │ │ ├── BinanceFuturesWebsocket.py │ │ ├── BinanceWebsocket.py │ │ ├── __init__.py │ │ ├── enums.py │ │ ├── exceptions.py │ │ ├── functions.py │ │ └── types.py │ ├── bitforex │ │ ├── BitforexClient.py │ │ ├── BitforexWebsocket.py │ │ ├── __init__.py │ │ ├── enums.py │ │ ├── exceptions.py │ │ └── functions.py │ ├── bitvavo │ │ ├── BitvavoClient.py │ │ ├── BitvavoWebsocket.py │ │ ├── __init__.py │ │ ├── enums.py │ │ ├── exceptions.py │ │ └── functions.py │ ├── btse │ │ ├── BtseClient.py │ │ ├── BtseWebsocket.py │ │ ├── __init__.py │ │ ├── enums.py │ │ ├── exceptions.py │ │ └── functions.py │ ├── coinmate │ │ ├── CoinmateClient.py │ │ ├── CoinmateWebsocket.py │ │ ├── __init__.py │ │ ├── enums.py │ │ ├── exceptions.py │ │ └── functions.py │ ├── eterbase │ │ ├── EterbaseClient.py │ │ ├── EterbaseWebsocket.py │ │ ├── __init__.py │ │ ├── enums.py │ │ ├── exceptions.py │ │ └── functions.py │ ├── hitbtc │ │ ├── HitbtcClient.py │ │ ├── HitbtcWebsocket.py │ │ ├── __init__.py │ │ ├── enums.py │ │ ├── exceptions.py │ │ └── functions.py │ ├── liquid │ │ ├── LiquidClient.py │ │ ├── LiquidWebsocket.py │ │ ├── __init__.py │ │ ├── enums.py │ │ ├── exceptions.py │ │ └── functions.py │ └── onetrading │ │ ├── OneTradingClient.py │ │ ├── OneTradingWebsocket.py │ │ ├── __init__.py │ │ ├── enums.py │ │ ├── exceptions.py │ │ └── functions.py ├── exceptions.py └── version_conversions.py ├── deploy_pypi.sh ├── examples ├── aax_rest_api.py ├── aax_ws.py ├── bibox_europe_rest_api.py ├── bibox_europe_ws.py ├── bibox_rest_api.py ├── bibox_ws.py ├── binance_blvt_rest_api.py ├── binance_bswap_rest_api.py ├── binance_coin_m_futures_rest_api.py ├── binance_coin_m_futures_ws.py ├── binance_margin_rest_api.py ├── binance_margin_ws.py ├── binance_rest_api.py ├── binance_testnet_rest_api.py ├── binance_testnet_ws.py ├── binance_usds_m_futures_rest_api.py ├── binance_usds_m_futures_ws.py ├── binance_ws.py ├── bitforex_rest_api.py ├── bitforex_ws.py ├── bitpanda_rest_api.py ├── bitpanda_ws.py ├── bitvavo_rest_api.py ├── bitvavo_ws.py ├── btse_rest_api.py ├── btse_ws.py ├── coinmate_rest_api.py ├── coinmate_ws.py ├── eterbase_rest_api.py ├── eterbase_ws.py ├── hitbtc_rest_apy.py ├── hitbtc_ws.py ├── liquid_rest_api.py ├── liquid_ws.py └── ws_subscriptions.py ├── images ├── aax.png ├── bibox_europe.png ├── bitpanda.png ├── bitvavo.png └── btse.png ├── requirements.txt ├── requirements_test.txt ├── setup.py └── tests └── e2e ├── CryptoXLibTest.py ├── aax.py ├── binance.py ├── binance_blvt.py ├── binance_bswap.py ├── binance_coin_m_futures.py ├── binance_margin.py ├── binance_usds_m_futures.py ├── bitforex.py ├── btse.py ├── coinmate.py ├── eterbase.py ├── hitbtc.py └── onetrading.py /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/README.md -------------------------------------------------------------------------------- /cryptoxlib/CryptoXLib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/cryptoxlib/CryptoXLib.py -------------------------------------------------------------------------------- /cryptoxlib/CryptoXLibClient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/cryptoxlib/CryptoXLibClient.py -------------------------------------------------------------------------------- /cryptoxlib/Pair.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/cryptoxlib/Pair.py -------------------------------------------------------------------------------- /cryptoxlib/PeriodicChecker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/cryptoxlib/PeriodicChecker.py -------------------------------------------------------------------------------- /cryptoxlib/Timer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/cryptoxlib/Timer.py -------------------------------------------------------------------------------- /cryptoxlib/WebsocketMgr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/cryptoxlib/WebsocketMgr.py -------------------------------------------------------------------------------- /cryptoxlib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cryptoxlib/clients/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cryptoxlib/clients/aax/AAXClient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/cryptoxlib/clients/aax/AAXClient.py -------------------------------------------------------------------------------- /cryptoxlib/clients/aax/AAXWebsocket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/cryptoxlib/clients/aax/AAXWebsocket.py -------------------------------------------------------------------------------- /cryptoxlib/clients/aax/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cryptoxlib/clients/aax/enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/cryptoxlib/clients/aax/enums.py -------------------------------------------------------------------------------- /cryptoxlib/clients/aax/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/cryptoxlib/clients/aax/exceptions.py -------------------------------------------------------------------------------- /cryptoxlib/clients/aax/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/cryptoxlib/clients/aax/functions.py -------------------------------------------------------------------------------- /cryptoxlib/clients/bibox/BiboxClient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/cryptoxlib/clients/bibox/BiboxClient.py -------------------------------------------------------------------------------- /cryptoxlib/clients/bibox/BiboxWebsocket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/cryptoxlib/clients/bibox/BiboxWebsocket.py -------------------------------------------------------------------------------- /cryptoxlib/clients/bibox/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cryptoxlib/clients/bibox/enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/cryptoxlib/clients/bibox/enums.py -------------------------------------------------------------------------------- /cryptoxlib/clients/bibox/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/cryptoxlib/clients/bibox/exceptions.py -------------------------------------------------------------------------------- /cryptoxlib/clients/bibox/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/cryptoxlib/clients/bibox/functions.py -------------------------------------------------------------------------------- /cryptoxlib/clients/bibox_europe/BiboxEuropeClient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/cryptoxlib/clients/bibox_europe/BiboxEuropeClient.py -------------------------------------------------------------------------------- /cryptoxlib/clients/bibox_europe/BiboxEuropeWebsocket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/cryptoxlib/clients/bibox_europe/BiboxEuropeWebsocket.py -------------------------------------------------------------------------------- /cryptoxlib/clients/bibox_europe/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cryptoxlib/clients/bibox_europe/enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/cryptoxlib/clients/bibox_europe/enums.py -------------------------------------------------------------------------------- /cryptoxlib/clients/bibox_europe/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/cryptoxlib/clients/bibox_europe/exceptions.py -------------------------------------------------------------------------------- /cryptoxlib/clients/bibox_europe/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/cryptoxlib/clients/bibox_europe/functions.py -------------------------------------------------------------------------------- /cryptoxlib/clients/binance/BinanceClient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/cryptoxlib/clients/binance/BinanceClient.py -------------------------------------------------------------------------------- /cryptoxlib/clients/binance/BinanceCommonClient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/cryptoxlib/clients/binance/BinanceCommonClient.py -------------------------------------------------------------------------------- /cryptoxlib/clients/binance/BinanceCommonWebsocket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/cryptoxlib/clients/binance/BinanceCommonWebsocket.py -------------------------------------------------------------------------------- /cryptoxlib/clients/binance/BinanceFuturesClient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/cryptoxlib/clients/binance/BinanceFuturesClient.py -------------------------------------------------------------------------------- /cryptoxlib/clients/binance/BinanceFuturesWebsocket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/cryptoxlib/clients/binance/BinanceFuturesWebsocket.py -------------------------------------------------------------------------------- /cryptoxlib/clients/binance/BinanceWebsocket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/cryptoxlib/clients/binance/BinanceWebsocket.py -------------------------------------------------------------------------------- /cryptoxlib/clients/binance/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cryptoxlib/clients/binance/enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/cryptoxlib/clients/binance/enums.py -------------------------------------------------------------------------------- /cryptoxlib/clients/binance/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/cryptoxlib/clients/binance/exceptions.py -------------------------------------------------------------------------------- /cryptoxlib/clients/binance/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/cryptoxlib/clients/binance/functions.py -------------------------------------------------------------------------------- /cryptoxlib/clients/binance/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/cryptoxlib/clients/binance/types.py -------------------------------------------------------------------------------- /cryptoxlib/clients/bitforex/BitforexClient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/cryptoxlib/clients/bitforex/BitforexClient.py -------------------------------------------------------------------------------- /cryptoxlib/clients/bitforex/BitforexWebsocket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/cryptoxlib/clients/bitforex/BitforexWebsocket.py -------------------------------------------------------------------------------- /cryptoxlib/clients/bitforex/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cryptoxlib/clients/bitforex/enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/cryptoxlib/clients/bitforex/enums.py -------------------------------------------------------------------------------- /cryptoxlib/clients/bitforex/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/cryptoxlib/clients/bitforex/exceptions.py -------------------------------------------------------------------------------- /cryptoxlib/clients/bitforex/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/cryptoxlib/clients/bitforex/functions.py -------------------------------------------------------------------------------- /cryptoxlib/clients/bitvavo/BitvavoClient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/cryptoxlib/clients/bitvavo/BitvavoClient.py -------------------------------------------------------------------------------- /cryptoxlib/clients/bitvavo/BitvavoWebsocket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/cryptoxlib/clients/bitvavo/BitvavoWebsocket.py -------------------------------------------------------------------------------- /cryptoxlib/clients/bitvavo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cryptoxlib/clients/bitvavo/enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/cryptoxlib/clients/bitvavo/enums.py -------------------------------------------------------------------------------- /cryptoxlib/clients/bitvavo/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/cryptoxlib/clients/bitvavo/exceptions.py -------------------------------------------------------------------------------- /cryptoxlib/clients/bitvavo/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/cryptoxlib/clients/bitvavo/functions.py -------------------------------------------------------------------------------- /cryptoxlib/clients/btse/BtseClient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/cryptoxlib/clients/btse/BtseClient.py -------------------------------------------------------------------------------- /cryptoxlib/clients/btse/BtseWebsocket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/cryptoxlib/clients/btse/BtseWebsocket.py -------------------------------------------------------------------------------- /cryptoxlib/clients/btse/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cryptoxlib/clients/btse/enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/cryptoxlib/clients/btse/enums.py -------------------------------------------------------------------------------- /cryptoxlib/clients/btse/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/cryptoxlib/clients/btse/exceptions.py -------------------------------------------------------------------------------- /cryptoxlib/clients/btse/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/cryptoxlib/clients/btse/functions.py -------------------------------------------------------------------------------- /cryptoxlib/clients/coinmate/CoinmateClient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/cryptoxlib/clients/coinmate/CoinmateClient.py -------------------------------------------------------------------------------- /cryptoxlib/clients/coinmate/CoinmateWebsocket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/cryptoxlib/clients/coinmate/CoinmateWebsocket.py -------------------------------------------------------------------------------- /cryptoxlib/clients/coinmate/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cryptoxlib/clients/coinmate/enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/cryptoxlib/clients/coinmate/enums.py -------------------------------------------------------------------------------- /cryptoxlib/clients/coinmate/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/cryptoxlib/clients/coinmate/exceptions.py -------------------------------------------------------------------------------- /cryptoxlib/clients/coinmate/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/cryptoxlib/clients/coinmate/functions.py -------------------------------------------------------------------------------- /cryptoxlib/clients/eterbase/EterbaseClient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/cryptoxlib/clients/eterbase/EterbaseClient.py -------------------------------------------------------------------------------- /cryptoxlib/clients/eterbase/EterbaseWebsocket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/cryptoxlib/clients/eterbase/EterbaseWebsocket.py -------------------------------------------------------------------------------- /cryptoxlib/clients/eterbase/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cryptoxlib/clients/eterbase/enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/cryptoxlib/clients/eterbase/enums.py -------------------------------------------------------------------------------- /cryptoxlib/clients/eterbase/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/cryptoxlib/clients/eterbase/exceptions.py -------------------------------------------------------------------------------- /cryptoxlib/clients/eterbase/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/cryptoxlib/clients/eterbase/functions.py -------------------------------------------------------------------------------- /cryptoxlib/clients/hitbtc/HitbtcClient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/cryptoxlib/clients/hitbtc/HitbtcClient.py -------------------------------------------------------------------------------- /cryptoxlib/clients/hitbtc/HitbtcWebsocket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/cryptoxlib/clients/hitbtc/HitbtcWebsocket.py -------------------------------------------------------------------------------- /cryptoxlib/clients/hitbtc/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cryptoxlib/clients/hitbtc/enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/cryptoxlib/clients/hitbtc/enums.py -------------------------------------------------------------------------------- /cryptoxlib/clients/hitbtc/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/cryptoxlib/clients/hitbtc/exceptions.py -------------------------------------------------------------------------------- /cryptoxlib/clients/hitbtc/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/cryptoxlib/clients/hitbtc/functions.py -------------------------------------------------------------------------------- /cryptoxlib/clients/liquid/LiquidClient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/cryptoxlib/clients/liquid/LiquidClient.py -------------------------------------------------------------------------------- /cryptoxlib/clients/liquid/LiquidWebsocket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/cryptoxlib/clients/liquid/LiquidWebsocket.py -------------------------------------------------------------------------------- /cryptoxlib/clients/liquid/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cryptoxlib/clients/liquid/enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/cryptoxlib/clients/liquid/enums.py -------------------------------------------------------------------------------- /cryptoxlib/clients/liquid/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/cryptoxlib/clients/liquid/exceptions.py -------------------------------------------------------------------------------- /cryptoxlib/clients/liquid/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/cryptoxlib/clients/liquid/functions.py -------------------------------------------------------------------------------- /cryptoxlib/clients/onetrading/OneTradingClient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/cryptoxlib/clients/onetrading/OneTradingClient.py -------------------------------------------------------------------------------- /cryptoxlib/clients/onetrading/OneTradingWebsocket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/cryptoxlib/clients/onetrading/OneTradingWebsocket.py -------------------------------------------------------------------------------- /cryptoxlib/clients/onetrading/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cryptoxlib/clients/onetrading/enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/cryptoxlib/clients/onetrading/enums.py -------------------------------------------------------------------------------- /cryptoxlib/clients/onetrading/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/cryptoxlib/clients/onetrading/exceptions.py -------------------------------------------------------------------------------- /cryptoxlib/clients/onetrading/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/cryptoxlib/clients/onetrading/functions.py -------------------------------------------------------------------------------- /cryptoxlib/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/cryptoxlib/exceptions.py -------------------------------------------------------------------------------- /cryptoxlib/version_conversions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/cryptoxlib/version_conversions.py -------------------------------------------------------------------------------- /deploy_pypi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/deploy_pypi.sh -------------------------------------------------------------------------------- /examples/aax_rest_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/examples/aax_rest_api.py -------------------------------------------------------------------------------- /examples/aax_ws.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/examples/aax_ws.py -------------------------------------------------------------------------------- /examples/bibox_europe_rest_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/examples/bibox_europe_rest_api.py -------------------------------------------------------------------------------- /examples/bibox_europe_ws.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/examples/bibox_europe_ws.py -------------------------------------------------------------------------------- /examples/bibox_rest_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/examples/bibox_rest_api.py -------------------------------------------------------------------------------- /examples/bibox_ws.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/examples/bibox_ws.py -------------------------------------------------------------------------------- /examples/binance_blvt_rest_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/examples/binance_blvt_rest_api.py -------------------------------------------------------------------------------- /examples/binance_bswap_rest_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/examples/binance_bswap_rest_api.py -------------------------------------------------------------------------------- /examples/binance_coin_m_futures_rest_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/examples/binance_coin_m_futures_rest_api.py -------------------------------------------------------------------------------- /examples/binance_coin_m_futures_ws.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/examples/binance_coin_m_futures_ws.py -------------------------------------------------------------------------------- /examples/binance_margin_rest_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/examples/binance_margin_rest_api.py -------------------------------------------------------------------------------- /examples/binance_margin_ws.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/examples/binance_margin_ws.py -------------------------------------------------------------------------------- /examples/binance_rest_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/examples/binance_rest_api.py -------------------------------------------------------------------------------- /examples/binance_testnet_rest_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/examples/binance_testnet_rest_api.py -------------------------------------------------------------------------------- /examples/binance_testnet_ws.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/examples/binance_testnet_ws.py -------------------------------------------------------------------------------- /examples/binance_usds_m_futures_rest_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/examples/binance_usds_m_futures_rest_api.py -------------------------------------------------------------------------------- /examples/binance_usds_m_futures_ws.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/examples/binance_usds_m_futures_ws.py -------------------------------------------------------------------------------- /examples/binance_ws.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/examples/binance_ws.py -------------------------------------------------------------------------------- /examples/bitforex_rest_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/examples/bitforex_rest_api.py -------------------------------------------------------------------------------- /examples/bitforex_ws.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/examples/bitforex_ws.py -------------------------------------------------------------------------------- /examples/bitpanda_rest_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/examples/bitpanda_rest_api.py -------------------------------------------------------------------------------- /examples/bitpanda_ws.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/examples/bitpanda_ws.py -------------------------------------------------------------------------------- /examples/bitvavo_rest_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/examples/bitvavo_rest_api.py -------------------------------------------------------------------------------- /examples/bitvavo_ws.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/examples/bitvavo_ws.py -------------------------------------------------------------------------------- /examples/btse_rest_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/examples/btse_rest_api.py -------------------------------------------------------------------------------- /examples/btse_ws.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/examples/btse_ws.py -------------------------------------------------------------------------------- /examples/coinmate_rest_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/examples/coinmate_rest_api.py -------------------------------------------------------------------------------- /examples/coinmate_ws.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/examples/coinmate_ws.py -------------------------------------------------------------------------------- /examples/eterbase_rest_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/examples/eterbase_rest_api.py -------------------------------------------------------------------------------- /examples/eterbase_ws.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/examples/eterbase_ws.py -------------------------------------------------------------------------------- /examples/hitbtc_rest_apy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/examples/hitbtc_rest_apy.py -------------------------------------------------------------------------------- /examples/hitbtc_ws.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/examples/hitbtc_ws.py -------------------------------------------------------------------------------- /examples/liquid_rest_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/examples/liquid_rest_api.py -------------------------------------------------------------------------------- /examples/liquid_ws.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/examples/liquid_ws.py -------------------------------------------------------------------------------- /examples/ws_subscriptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/examples/ws_subscriptions.py -------------------------------------------------------------------------------- /images/aax.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/images/aax.png -------------------------------------------------------------------------------- /images/bibox_europe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/images/bibox_europe.png -------------------------------------------------------------------------------- /images/bitpanda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/images/bitpanda.png -------------------------------------------------------------------------------- /images/bitvavo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/images/bitvavo.png -------------------------------------------------------------------------------- /images/btse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/images/btse.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/requirements.txt -------------------------------------------------------------------------------- /requirements_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/requirements_test.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/setup.py -------------------------------------------------------------------------------- /tests/e2e/CryptoXLibTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/tests/e2e/CryptoXLibTest.py -------------------------------------------------------------------------------- /tests/e2e/aax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/tests/e2e/aax.py -------------------------------------------------------------------------------- /tests/e2e/binance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/tests/e2e/binance.py -------------------------------------------------------------------------------- /tests/e2e/binance_blvt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/tests/e2e/binance_blvt.py -------------------------------------------------------------------------------- /tests/e2e/binance_bswap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/tests/e2e/binance_bswap.py -------------------------------------------------------------------------------- /tests/e2e/binance_coin_m_futures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/tests/e2e/binance_coin_m_futures.py -------------------------------------------------------------------------------- /tests/e2e/binance_margin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/tests/e2e/binance_margin.py -------------------------------------------------------------------------------- /tests/e2e/binance_usds_m_futures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/tests/e2e/binance_usds_m_futures.py -------------------------------------------------------------------------------- /tests/e2e/bitforex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/tests/e2e/bitforex.py -------------------------------------------------------------------------------- /tests/e2e/btse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/tests/e2e/btse.py -------------------------------------------------------------------------------- /tests/e2e/coinmate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/tests/e2e/coinmate.py -------------------------------------------------------------------------------- /tests/e2e/eterbase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/tests/e2e/eterbase.py -------------------------------------------------------------------------------- /tests/e2e/hitbtc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/tests/e2e/hitbtc.py -------------------------------------------------------------------------------- /tests/e2e/onetrading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nardew/cryptoxlib-aio/HEAD/tests/e2e/onetrading.py --------------------------------------------------------------------------------