gate-io-api 0.0.23__py3-none-any.whl → 0.0.24__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.
Potentially problematic release.
This version of gate-io-api might be problematic. Click here for more details.
- gate/ccxt/__init__.py +2 -3
- gate/ccxt/async_support/__init__.py +2 -3
- gate/ccxt/async_support/base/exchange.py +1 -1
- gate/ccxt/async_support/gate.py +11 -7
- gate/ccxt/base/exchange.py +34 -21
- gate/ccxt/gate.py +11 -7
- gate/ccxt/pro/__init__.py +2 -3
- {gate_io_api-0.0.23.dist-info → gate_io_api-0.0.24.dist-info}/METADATA +9 -3
- {gate_io_api-0.0.23.dist-info → gate_io_api-0.0.24.dist-info}/RECORD +10 -10
- {gate_io_api-0.0.23.dist-info → gate_io_api-0.0.24.dist-info}/WHEEL +0 -0
gate/ccxt/__init__.py
CHANGED
|
@@ -26,7 +26,7 @@ sys.modules['ccxt'] = ccxt_module
|
|
|
26
26
|
|
|
27
27
|
# ----------------------------------------------------------------------------
|
|
28
28
|
|
|
29
|
-
__version__ = '4.4.
|
|
29
|
+
__version__ = '4.4.75'
|
|
30
30
|
|
|
31
31
|
# ----------------------------------------------------------------------------
|
|
32
32
|
|
|
@@ -87,10 +87,9 @@ from ccxt.base.errors import CancelPending # noqa: F4
|
|
|
87
87
|
from ccxt.base.errors import UnsubscribeError # noqa: F401
|
|
88
88
|
from ccxt.base.errors import error_hierarchy # noqa: F401
|
|
89
89
|
|
|
90
|
-
from ccxt.bitfinex1 import bitfinex1 # noqa: F401
|
|
91
90
|
from ccxt.gate import gate # noqa: F401
|
|
92
91
|
|
|
93
|
-
exchanges = [ '
|
|
92
|
+
exchanges = [ 'gate',]
|
|
94
93
|
|
|
95
94
|
base = [
|
|
96
95
|
'Exchange',
|
|
@@ -8,7 +8,7 @@ sys.modules['ccxt'] = ccxt_module
|
|
|
8
8
|
|
|
9
9
|
# -----------------------------------------------------------------------------
|
|
10
10
|
|
|
11
|
-
__version__ = '4.4.
|
|
11
|
+
__version__ = '4.4.75'
|
|
12
12
|
|
|
13
13
|
# -----------------------------------------------------------------------------
|
|
14
14
|
|
|
@@ -67,10 +67,9 @@ from ccxt.base.errors import UnsubscribeError # noqa: F4
|
|
|
67
67
|
from ccxt.base.errors import error_hierarchy # noqa: F401
|
|
68
68
|
|
|
69
69
|
|
|
70
|
-
from ccxt.async_support.bitfinex1 import bitfinex1 # noqa: F401
|
|
71
70
|
from ccxt.async_support.gate import gate # noqa: F401
|
|
72
71
|
|
|
73
|
-
exchanges = [ '
|
|
72
|
+
exchanges = [ 'gate',]
|
|
74
73
|
|
|
75
74
|
base = [
|
|
76
75
|
'Exchange',
|
gate/ccxt/async_support/gate.py
CHANGED
|
@@ -1485,6 +1485,10 @@ class gate(Exchange, ImplicitAPI):
|
|
|
1485
1485
|
takerPercent = self.safe_string(market, 'taker_fee_rate')
|
|
1486
1486
|
makerPercent = self.safe_string(market, 'maker_fee_rate', takerPercent)
|
|
1487
1487
|
isLinear = quote == settle
|
|
1488
|
+
contractSize = self.safe_string(market, 'quanto_multiplier')
|
|
1489
|
+
# exception only for one market: https://api.gateio.ws/api/v4/futures/btc/contracts
|
|
1490
|
+
if contractSize == '0':
|
|
1491
|
+
contractSize = '1' # 1 USD in WEB: https://i.imgur.com/MBBUI04.png
|
|
1488
1492
|
return {
|
|
1489
1493
|
'id': id,
|
|
1490
1494
|
'symbol': symbol,
|
|
@@ -1506,7 +1510,7 @@ class gate(Exchange, ImplicitAPI):
|
|
|
1506
1510
|
'inverse': not isLinear,
|
|
1507
1511
|
'taker': self.parse_number(Precise.string_div(takerPercent, '100')), # Fee is in %, so divide by 100
|
|
1508
1512
|
'maker': self.parse_number(Precise.string_div(makerPercent, '100')),
|
|
1509
|
-
'contractSize': self.
|
|
1513
|
+
'contractSize': self.parse_number(contractSize),
|
|
1510
1514
|
'expiry': expiry,
|
|
1511
1515
|
'expiryDatetime': self.iso8601(expiry),
|
|
1512
1516
|
'strike': None,
|
|
@@ -1819,9 +1823,9 @@ class gate(Exchange, ImplicitAPI):
|
|
|
1819
1823
|
partFirst = self.safe_string(parts, 0)
|
|
1820
1824
|
# if there's an underscore then the second part is always the chain name(except the _OLD suffix)
|
|
1821
1825
|
currencyName = currencyId if currencyId.endswith('_OLD') else partFirst
|
|
1822
|
-
|
|
1823
|
-
|
|
1824
|
-
tradeDisabled =
|
|
1826
|
+
withdrawDisabled = self.safe_bool(entry, 'withdraw_disabled', False)
|
|
1827
|
+
depositDisabled = self.safe_bool(entry, 'deposit_disabled', False)
|
|
1828
|
+
tradeDisabled = self.safe_bool(entry, 'trade_disabled', False)
|
|
1825
1829
|
precision = self.parse_number('0.0001') # temporary safe default, because no value provided from API
|
|
1826
1830
|
code = self.safe_currency_code(currencyName)
|
|
1827
1831
|
# check leveraged tokens(e.g. BTC3S, ETH5L)
|
|
@@ -1849,8 +1853,8 @@ class gate(Exchange, ImplicitAPI):
|
|
|
1849
1853
|
},
|
|
1850
1854
|
},
|
|
1851
1855
|
'active': not tradeDisabled,
|
|
1852
|
-
'deposit':
|
|
1853
|
-
'withdraw':
|
|
1856
|
+
'deposit': not depositDisabled,
|
|
1857
|
+
'withdraw': not withdrawDisabled,
|
|
1854
1858
|
'fee': None,
|
|
1855
1859
|
'precision': precision,
|
|
1856
1860
|
}
|
|
@@ -6366,7 +6370,7 @@ class gate(Exchange, ImplicitAPI):
|
|
|
6366
6370
|
queryString = self.urlencode(query)
|
|
6367
6371
|
# https://github.com/ccxt/ccxt/issues/25570
|
|
6368
6372
|
if queryString.find('currencies=') >= 0 and queryString.find('%2C') >= 0:
|
|
6369
|
-
queryString = queryString.replace('%
|
|
6373
|
+
queryString = queryString.replace('%2C', ',')
|
|
6370
6374
|
url += '?' + queryString
|
|
6371
6375
|
if method == 'PATCH':
|
|
6372
6376
|
body = self.json(query)
|
gate/ccxt/base/exchange.py
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
# -----------------------------------------------------------------------------
|
|
6
6
|
|
|
7
|
-
__version__ = '4.4.
|
|
7
|
+
__version__ = '4.4.75'
|
|
8
8
|
|
|
9
9
|
# -----------------------------------------------------------------------------
|
|
10
10
|
|
|
@@ -2913,9 +2913,6 @@ class Exchange(object):
|
|
|
2913
2913
|
|
|
2914
2914
|
def safe_currency_structure(self, currency: object):
|
|
2915
2915
|
# derive data from networks: deposit, withdraw, active, fee, limits, precision
|
|
2916
|
-
currencyDeposit = self.safe_bool(currency, 'deposit')
|
|
2917
|
-
currencyWithdraw = self.safe_bool(currency, 'withdraw')
|
|
2918
|
-
currencyActive = self.safe_bool(currency, 'active')
|
|
2919
2916
|
networks = self.safe_dict(currency, 'networks', {})
|
|
2920
2917
|
keys = list(networks.keys())
|
|
2921
2918
|
length = len(keys)
|
|
@@ -2924,20 +2921,24 @@ class Exchange(object):
|
|
|
2924
2921
|
key = keys[i]
|
|
2925
2922
|
network = networks[key]
|
|
2926
2923
|
deposit = self.safe_bool(network, 'deposit')
|
|
2924
|
+
currencyDeposit = self.safe_bool(currency, 'deposit')
|
|
2927
2925
|
if currencyDeposit is None or deposit:
|
|
2928
2926
|
currency['deposit'] = deposit
|
|
2929
2927
|
withdraw = self.safe_bool(network, 'withdraw')
|
|
2928
|
+
currencyWithdraw = self.safe_bool(currency, 'withdraw')
|
|
2930
2929
|
if currencyWithdraw is None or withdraw:
|
|
2931
2930
|
currency['withdraw'] = withdraw
|
|
2932
|
-
active = self.safe_bool(network, 'active')
|
|
2933
|
-
if currencyActive is None or active:
|
|
2934
|
-
currency['active'] = active
|
|
2935
2931
|
# set network 'active' to False if D or W is disabled
|
|
2936
|
-
|
|
2932
|
+
active = self.safe_bool(network, 'active')
|
|
2933
|
+
if active is None:
|
|
2937
2934
|
if deposit and withdraw:
|
|
2938
2935
|
currency['networks'][key]['active'] = True
|
|
2939
2936
|
elif deposit is not None and withdraw is not None:
|
|
2940
2937
|
currency['networks'][key]['active'] = False
|
|
2938
|
+
active = self.safe_bool(network, 'active')
|
|
2939
|
+
currencyActive = self.safe_bool(currency, 'active')
|
|
2940
|
+
if currencyActive is None or active:
|
|
2941
|
+
currency['active'] = active
|
|
2941
2942
|
# find lowest fee(which is more desired)
|
|
2942
2943
|
fee = self.safe_string(network, 'fee')
|
|
2943
2944
|
feeMain = self.safe_string(currency, 'fee')
|
|
@@ -6471,24 +6472,36 @@ class Exchange(object):
|
|
|
6471
6472
|
return self.sort_by(result, 'id', True)
|
|
6472
6473
|
return result
|
|
6473
6474
|
|
|
6474
|
-
def remove_repeated_elements_from_array(self, input):
|
|
6475
|
+
def remove_repeated_elements_from_array(self, input, fallbackToTimestamp: bool = True):
|
|
6476
|
+
uniqueDic = {}
|
|
6477
|
+
uniqueResult = []
|
|
6478
|
+
for i in range(0, len(input)):
|
|
6479
|
+
entry = input[i]
|
|
6480
|
+
uniqValue = self.safe_string_n(entry, ['id', 'timestamp', 0]) if fallbackToTimestamp else self.safe_string(entry, 'id')
|
|
6481
|
+
if uniqValue is not None and not (uniqValue in uniqueDic):
|
|
6482
|
+
uniqueDic[uniqValue] = 1
|
|
6483
|
+
uniqueResult.append(entry)
|
|
6484
|
+
valuesLength = len(uniqueResult)
|
|
6485
|
+
if valuesLength > 0:
|
|
6486
|
+
return uniqueResult
|
|
6487
|
+
return input
|
|
6488
|
+
|
|
6489
|
+
def remove_repeated_trades_from_array(self, input):
|
|
6475
6490
|
uniqueResult = {}
|
|
6476
6491
|
for i in range(0, len(input)):
|
|
6477
6492
|
entry = input[i]
|
|
6478
6493
|
id = self.safe_string(entry, 'id')
|
|
6479
|
-
if id is
|
|
6480
|
-
|
|
6481
|
-
|
|
6482
|
-
|
|
6483
|
-
|
|
6484
|
-
|
|
6485
|
-
|
|
6486
|
-
|
|
6494
|
+
if id is None:
|
|
6495
|
+
price = self.safe_string(entry, 'price')
|
|
6496
|
+
amount = self.safe_string(entry, 'amount')
|
|
6497
|
+
timestamp = self.safe_string(entry, 'timestamp')
|
|
6498
|
+
side = self.safe_string(entry, 'side')
|
|
6499
|
+
# unique trade identifier
|
|
6500
|
+
id = 't_' + str(timestamp) + '_' + side + '_' + price + '_' + amount
|
|
6501
|
+
if id is not None and not (id in uniqueResult):
|
|
6502
|
+
uniqueResult[id] = entry
|
|
6487
6503
|
values = list(uniqueResult.values())
|
|
6488
|
-
|
|
6489
|
-
if valuesLength > 0:
|
|
6490
|
-
return values
|
|
6491
|
-
return input
|
|
6504
|
+
return values
|
|
6492
6505
|
|
|
6493
6506
|
def handle_until_option(self, key: str, request, params, multiplier=1):
|
|
6494
6507
|
until = self.safe_integer_2(params, 'until', 'till')
|
gate/ccxt/gate.py
CHANGED
|
@@ -1484,6 +1484,10 @@ class gate(Exchange, ImplicitAPI):
|
|
|
1484
1484
|
takerPercent = self.safe_string(market, 'taker_fee_rate')
|
|
1485
1485
|
makerPercent = self.safe_string(market, 'maker_fee_rate', takerPercent)
|
|
1486
1486
|
isLinear = quote == settle
|
|
1487
|
+
contractSize = self.safe_string(market, 'quanto_multiplier')
|
|
1488
|
+
# exception only for one market: https://api.gateio.ws/api/v4/futures/btc/contracts
|
|
1489
|
+
if contractSize == '0':
|
|
1490
|
+
contractSize = '1' # 1 USD in WEB: https://i.imgur.com/MBBUI04.png
|
|
1487
1491
|
return {
|
|
1488
1492
|
'id': id,
|
|
1489
1493
|
'symbol': symbol,
|
|
@@ -1505,7 +1509,7 @@ class gate(Exchange, ImplicitAPI):
|
|
|
1505
1509
|
'inverse': not isLinear,
|
|
1506
1510
|
'taker': self.parse_number(Precise.string_div(takerPercent, '100')), # Fee is in %, so divide by 100
|
|
1507
1511
|
'maker': self.parse_number(Precise.string_div(makerPercent, '100')),
|
|
1508
|
-
'contractSize': self.
|
|
1512
|
+
'contractSize': self.parse_number(contractSize),
|
|
1509
1513
|
'expiry': expiry,
|
|
1510
1514
|
'expiryDatetime': self.iso8601(expiry),
|
|
1511
1515
|
'strike': None,
|
|
@@ -1818,9 +1822,9 @@ class gate(Exchange, ImplicitAPI):
|
|
|
1818
1822
|
partFirst = self.safe_string(parts, 0)
|
|
1819
1823
|
# if there's an underscore then the second part is always the chain name(except the _OLD suffix)
|
|
1820
1824
|
currencyName = currencyId if currencyId.endswith('_OLD') else partFirst
|
|
1821
|
-
|
|
1822
|
-
|
|
1823
|
-
tradeDisabled =
|
|
1825
|
+
withdrawDisabled = self.safe_bool(entry, 'withdraw_disabled', False)
|
|
1826
|
+
depositDisabled = self.safe_bool(entry, 'deposit_disabled', False)
|
|
1827
|
+
tradeDisabled = self.safe_bool(entry, 'trade_disabled', False)
|
|
1824
1828
|
precision = self.parse_number('0.0001') # temporary safe default, because no value provided from API
|
|
1825
1829
|
code = self.safe_currency_code(currencyName)
|
|
1826
1830
|
# check leveraged tokens(e.g. BTC3S, ETH5L)
|
|
@@ -1848,8 +1852,8 @@ class gate(Exchange, ImplicitAPI):
|
|
|
1848
1852
|
},
|
|
1849
1853
|
},
|
|
1850
1854
|
'active': not tradeDisabled,
|
|
1851
|
-
'deposit':
|
|
1852
|
-
'withdraw':
|
|
1855
|
+
'deposit': not depositDisabled,
|
|
1856
|
+
'withdraw': not withdrawDisabled,
|
|
1853
1857
|
'fee': None,
|
|
1854
1858
|
'precision': precision,
|
|
1855
1859
|
}
|
|
@@ -6365,7 +6369,7 @@ class gate(Exchange, ImplicitAPI):
|
|
|
6365
6369
|
queryString = self.urlencode(query)
|
|
6366
6370
|
# https://github.com/ccxt/ccxt/issues/25570
|
|
6367
6371
|
if queryString.find('currencies=') >= 0 and queryString.find('%2C') >= 0:
|
|
6368
|
-
queryString = queryString.replace('%
|
|
6372
|
+
queryString = queryString.replace('%2C', ',')
|
|
6369
6373
|
url += '?' + queryString
|
|
6370
6374
|
if method == 'PATCH':
|
|
6371
6375
|
body = self.json(query)
|
gate/ccxt/pro/__init__.py
CHANGED
|
@@ -8,7 +8,7 @@ sys.modules['ccxt'] = ccxt_module
|
|
|
8
8
|
|
|
9
9
|
# ----------------------------------------------------------------------------
|
|
10
10
|
|
|
11
|
-
__version__ = '4.4.
|
|
11
|
+
__version__ = '4.4.75'
|
|
12
12
|
|
|
13
13
|
# ----------------------------------------------------------------------------
|
|
14
14
|
|
|
@@ -16,7 +16,6 @@ from ccxt.async_support.base.exchange import Exchange # noqa: F401
|
|
|
16
16
|
|
|
17
17
|
# CCXT Pro exchanges (now this is mainly used for importing exchanges in WS tests)
|
|
18
18
|
|
|
19
|
-
from ccxt.pro.bitfinex1 import bitfinex1 # noqa: F401
|
|
20
19
|
from ccxt.pro.gate import gate # noqa: F401
|
|
21
20
|
|
|
22
|
-
exchanges = [ '
|
|
21
|
+
exchanges = [ 'gate',]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: gate-io-api
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.24
|
|
4
4
|
Summary: gate crypto exchange api client
|
|
5
5
|
Project-URL: Homepage, https://github.com/ccxt/ccxt
|
|
6
6
|
Project-URL: Issues, https://github.com/ccxt/ccxt
|
|
@@ -20,8 +20,10 @@ Description-Content-Type: text/markdown
|
|
|
20
20
|
# gate-python
|
|
21
21
|
Python SDK (sync and async) for Gate cryptocurrency exchange with Rest and WS capabilities.
|
|
22
22
|
|
|
23
|
-
You can check the SDK docs here: [SDK](https://docs.ccxt.com/#/exchanges/gate)
|
|
24
|
-
You can check Gate's docs here: [Docs](https://www.google.com/search?q=google+gate+cryptocurrency+exchange+api+docs)
|
|
23
|
+
- You can check the SDK docs here: [SDK](https://docs.ccxt.com/#/exchanges/gate)
|
|
24
|
+
- You can check Gate's docs here: [Docs](https://www.google.com/search?q=google+gate+cryptocurrency+exchange+api+docs)
|
|
25
|
+
- Github repo: https://github.com/ccxt/gate-python
|
|
26
|
+
- Pypi package: https://pypi.org/project/gate-io-api
|
|
25
27
|
|
|
26
28
|
|
|
27
29
|
## Installation
|
|
@@ -44,6 +46,8 @@ def main():
|
|
|
44
46
|
#
|
|
45
47
|
# balance = instance.fetch_balance()
|
|
46
48
|
# order = instance.create_order("BTC/USDC", "limit", "buy", 1, 100000)
|
|
49
|
+
|
|
50
|
+
main()
|
|
47
51
|
```
|
|
48
52
|
|
|
49
53
|
### Async
|
|
@@ -92,6 +96,8 @@ async def main():
|
|
|
92
96
|
|
|
93
97
|
# once you are done with the exchange
|
|
94
98
|
await instance.close()
|
|
99
|
+
|
|
100
|
+
asyncio.run(main())
|
|
95
101
|
```
|
|
96
102
|
|
|
97
103
|
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
gate/__init__.py,sha256=rmRavmagjlyk7Z5zGWWJiY8tfYIPsk04hRzC4SYJOzA,222
|
|
2
|
-
gate/ccxt/__init__.py,sha256=
|
|
3
|
-
gate/ccxt/gate.py,sha256=
|
|
2
|
+
gate/ccxt/__init__.py,sha256=WiXNlyIJxu6hTJIGZnN3KYx_9Qytly7SBwL7wRNBFxw,6044
|
|
3
|
+
gate/ccxt/gate.py,sha256=ZxQ41kj6pUzdE5ZVItIBEhcpt8vhjYYa1TStZeW85dw,351132
|
|
4
4
|
gate/ccxt/abstract/gate.py,sha256=MrRMycFEpZKJ6yC7qi0p_qcwZtU9WJi5bBbVllskGoA,45044
|
|
5
|
-
gate/ccxt/async_support/__init__.py,sha256=
|
|
6
|
-
gate/ccxt/async_support/gate.py,sha256=
|
|
5
|
+
gate/ccxt/async_support/__init__.py,sha256=lLSsESXbm2FdU5gWIJ8FQOrFjJ2g4JwTj9CONKdd77k,4777
|
|
6
|
+
gate/ccxt/async_support/gate.py,sha256=np6lAr9DztlNuRiaWSLeIcjHj49Y5oP7u_jB8OmuiQU,353091
|
|
7
7
|
gate/ccxt/async_support/base/__init__.py,sha256=aVYSsFi--b4InRs9zDN_wtCpj8odosAB726JdUHavrk,67
|
|
8
|
-
gate/ccxt/async_support/base/exchange.py,sha256=
|
|
8
|
+
gate/ccxt/async_support/base/exchange.py,sha256=X4BrbR9Oo-33uUotlodYrIW7ucESwmoHYnUmWAkS8ck,117223
|
|
9
9
|
gate/ccxt/async_support/base/throttler.py,sha256=tvDVcdRUVYi8fZRlEcnqtgzcgB_KMUMRs5Pu8tuU-tU,1847
|
|
10
10
|
gate/ccxt/async_support/base/ws/__init__.py,sha256=uockzpLuwntKGZbs5EOWFe-Zg-k6Cj7GhNJLc_RX0so,1791
|
|
11
11
|
gate/ccxt/async_support/base/ws/aiohttp_client.py,sha256=Y5HxAVXyyYduj6b6SbbUZETlq3GrVMzrkW1r-TMgpb8,6329
|
|
@@ -19,10 +19,10 @@ gate/ccxt/async_support/base/ws/order_book_side.py,sha256=GhnGUt78pJ-AYL_Dq9prod
|
|
|
19
19
|
gate/ccxt/base/__init__.py,sha256=eTx1OE3HJjspFUQjGm6LBhaQiMKJnXjkdP-JUXknyQ0,1320
|
|
20
20
|
gate/ccxt/base/decimal_to_precision.py,sha256=fgWRBzRTtsf3r2INyS4f7WHlzgjB5YM1ekiwqD21aac,6634
|
|
21
21
|
gate/ccxt/base/errors.py,sha256=MvCrL_sAM3de616T6RE0PSxiF2xV6Qqz5b1y1ghidbk,4888
|
|
22
|
-
gate/ccxt/base/exchange.py,sha256=
|
|
22
|
+
gate/ccxt/base/exchange.py,sha256=ZvK4GMhsYIvcZ7KloZD22dcBDOWtroMR88T5mu7zQ7E,322633
|
|
23
23
|
gate/ccxt/base/precise.py,sha256=koce64Yrp6vFbGijJtUt-QQ6XhJgeGTCksZ871FPp_A,8886
|
|
24
24
|
gate/ccxt/base/types.py,sha256=SfxIKDSsxP7MPHWiOVI965Nr5NSEPpAno5fuveTRi3w,11423
|
|
25
|
-
gate/ccxt/pro/__init__.py,sha256=
|
|
25
|
+
gate/ccxt/pro/__init__.py,sha256=pMZe-G0hgNCkOSwINA6ghppN_LRcqOZ0yN1nkpTNing,615
|
|
26
26
|
gate/ccxt/pro/gate.py,sha256=mC3bL0fuYXz7yzVOU450Y8STI1O3vF2EnpV_w_XwDBE,88324
|
|
27
27
|
gate/ccxt/static_dependencies/README.md,sha256=3TCvhhn09_Cqf9BDDpao1V7EfKHDpQ6k9oWRsLFixpU,18
|
|
28
28
|
gate/ccxt/static_dependencies/__init__.py,sha256=tzFje8cloqmiIE6kola3EaYC0SnD1izWnri69hzHsSw,168
|
|
@@ -283,6 +283,6 @@ gate/ccxt/static_dependencies/toolz/curried/exceptions.py,sha256=gKFOHDIayAWnX2u
|
|
|
283
283
|
gate/ccxt/static_dependencies/toolz/curried/operator.py,sha256=ML92mknkAwzBl2NCm-4werSUmJEtSHNY9NSzhseNM9s,525
|
|
284
284
|
gate/ccxt/static_dependencies/typing_inspect/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
285
285
|
gate/ccxt/static_dependencies/typing_inspect/typing_inspect.py,sha256=5gIWomLPfuDpgd3gX1GlnX0MuXM3VorR4j2W2qXORiQ,28269
|
|
286
|
-
gate_io_api-0.0.
|
|
287
|
-
gate_io_api-0.0.
|
|
288
|
-
gate_io_api-0.0.
|
|
286
|
+
gate_io_api-0.0.24.dist-info/METADATA,sha256=DYh4WQdxSsPiPnmmMg_ZlHJ17VpY2tGiOObbKujNLt8,26789
|
|
287
|
+
gate_io_api-0.0.24.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
288
|
+
gate_io_api-0.0.24.dist-info/RECORD,,
|
|
File without changes
|