ccxt 4.4.42__py2.py3-none-any.whl → 4.4.43__py2.py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- ccxt/__init__.py +3 -1
- ccxt/abstract/bingx.py +4 -0
- ccxt/abstract/bitstamp.py +1 -0
- ccxt/abstract/myokx.py +340 -0
- ccxt/async_support/__init__.py +3 -1
- ccxt/async_support/base/exchange.py +1 -1
- ccxt/async_support/bingx.py +25 -7
- ccxt/async_support/bitstamp.py +54 -0
- ccxt/async_support/gemini.py +60 -2
- ccxt/async_support/hyperliquid.py +1 -1
- ccxt/async_support/myokx.py +35 -0
- ccxt/async_support/phemex.py +6 -4
- ccxt/async_support/vertex.py +63 -4
- ccxt/async_support/woo.py +3 -3
- ccxt/base/exchange.py +1 -1
- ccxt/bingx.py +25 -7
- ccxt/bitstamp.py +54 -0
- ccxt/gemini.py +60 -2
- ccxt/hyperliquid.py +1 -1
- ccxt/myokx.py +35 -0
- ccxt/phemex.py +6 -4
- ccxt/pro/__init__.py +3 -1
- ccxt/pro/myokx.py +23 -0
- ccxt/vertex.py +63 -4
- ccxt/woo.py +3 -3
- {ccxt-4.4.42.dist-info → ccxt-4.4.43.dist-info}/METADATA +36 -34
- {ccxt-4.4.42.dist-info → ccxt-4.4.43.dist-info}/RECORD +30 -29
- ccxt/async_support/bitbay.py +0 -17
- ccxt/async_support/bitfinex2.py +0 -3625
- ccxt/async_support/hitbtc3.py +0 -16
- {ccxt-4.4.42.dist-info → ccxt-4.4.43.dist-info}/LICENSE.txt +0 -0
- {ccxt-4.4.42.dist-info → ccxt-4.4.43.dist-info}/WHEEL +0 -0
- {ccxt-4.4.42.dist-info → ccxt-4.4.43.dist-info}/top_level.txt +0 -0
ccxt/async_support/hitbtc3.py
DELETED
@@ -1,16 +0,0 @@
|
|
1
|
-
# -*- coding: utf-8 -*-
|
2
|
-
|
3
|
-
# PLEASE DO NOT EDIT THIS FILE, IT IS GENERATED AND WILL BE OVERWRITTEN:
|
4
|
-
# https://github.com/ccxt/ccxt/blob/master/CONTRIBUTING.md#how-to-contribute-code
|
5
|
-
|
6
|
-
from ccxt.async_support.hitbtc import hitbtc
|
7
|
-
from ccxt.abstract.hitbtc3 import ImplicitAPI
|
8
|
-
|
9
|
-
|
10
|
-
class hitbtc3(hitbtc, ImplicitAPI):
|
11
|
-
|
12
|
-
def describe(self):
|
13
|
-
return self.deep_extend(super(hitbtc3, self).describe(), {
|
14
|
-
'id': 'hitbtc3',
|
15
|
-
'alias': True,
|
16
|
-
})
|
File without changes
|
File without changes
|
File without changes
|