kucoin-api 0.0.87__py3-none-any.whl → 0.0.89__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 kucoin-api might be problematic. Click here for more details.
- kucoin/ccxt/__init__.py +1 -1
- kucoin/ccxt/async_support/__init__.py +1 -1
- kucoin/ccxt/async_support/base/exchange.py +10 -7
- kucoin/ccxt/base/exchange.py +15 -7
- kucoin/ccxt/pro/__init__.py +1 -1
- kucoin/ccxt/pro/kucoin.py +64 -0
- {kucoin_api-0.0.87.dist-info → kucoin_api-0.0.89.dist-info}/METADATA +4 -1
- {kucoin_api-0.0.87.dist-info → kucoin_api-0.0.89.dist-info}/RECORD +9 -9
- {kucoin_api-0.0.87.dist-info → kucoin_api-0.0.89.dist-info}/WHEEL +0 -0
kucoin/ccxt/__init__.py
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
# -----------------------------------------------------------------------------
|
|
4
4
|
|
|
5
|
-
__version__ = '4.5.
|
|
5
|
+
__version__ = '4.5.3'
|
|
6
6
|
|
|
7
7
|
# -----------------------------------------------------------------------------
|
|
8
8
|
|
|
@@ -708,6 +708,9 @@ class Exchange(BaseExchange):
|
|
|
708
708
|
async def un_watch_positions(self, symbols: Strings = None, params={}):
|
|
709
709
|
raise NotSupported(self.id + ' unWatchPositions() is not supported yet')
|
|
710
710
|
|
|
711
|
+
async def un_watch_ticker(self, symbol: str, params={}):
|
|
712
|
+
raise NotSupported(self.id + ' unWatchTicker() is not supported yet')
|
|
713
|
+
|
|
711
714
|
async def fetch_deposit_addresses(self, codes: Strings = None, params={}):
|
|
712
715
|
raise NotSupported(self.id + ' fetchDepositAddresses() is not supported yet')
|
|
713
716
|
|
|
@@ -868,19 +871,19 @@ class Exchange(BaseExchange):
|
|
|
868
871
|
async def repay_margin(self, code: str, amount: float, symbol: Str = None, params={}):
|
|
869
872
|
raise NotSupported(self.id + ' repayMargin is deprecated, please use repayCrossMargin or repayIsolatedMargin instead')
|
|
870
873
|
|
|
871
|
-
async def fetch_ohlcv(self, symbol: str, timeframe='1m', since: Int = None, limit: Int = None, params={}):
|
|
874
|
+
async def fetch_ohlcv(self, symbol: str, timeframe: str = '1m', since: Int = None, limit: Int = None, params={}):
|
|
872
875
|
message = ''
|
|
873
876
|
if self.has['fetchTrades']:
|
|
874
877
|
message = '. If you want to build OHLCV candles from trade executions data, visit https://github.com/ccxt/ccxt/tree/master/examples/ and see "build-ohlcv-bars" file'
|
|
875
878
|
raise NotSupported(self.id + ' fetchOHLCV() is not supported yet' + message)
|
|
876
879
|
|
|
877
|
-
async def fetch_ohlcv_ws(self, symbol: str, timeframe='1m', since: Int = None, limit: Int = None, params={}):
|
|
880
|
+
async def fetch_ohlcv_ws(self, symbol: str, timeframe: str = '1m', since: Int = None, limit: Int = None, params={}):
|
|
878
881
|
message = ''
|
|
879
882
|
if self.has['fetchTradesWs']:
|
|
880
883
|
message = '. If you want to build OHLCV candles from trade executions data, visit https://github.com/ccxt/ccxt/tree/master/examples/ and see "build-ohlcv-bars" file'
|
|
881
884
|
raise NotSupported(self.id + ' fetchOHLCVWs() is not supported yet. Try using fetchOHLCV instead.' + message)
|
|
882
885
|
|
|
883
|
-
async def watch_ohlcv(self, symbol: str, timeframe='1m', since: Int = None, limit: Int = None, params={}):
|
|
886
|
+
async def watch_ohlcv(self, symbol: str, timeframe: str = '1m', since: Int = None, limit: Int = None, params={}):
|
|
884
887
|
raise NotSupported(self.id + ' watchOHLCV() is not supported yet')
|
|
885
888
|
|
|
886
889
|
async def fetch_web_endpoint(self, method, endpointMethod, returnAsJson, startRegex=None, endRegex=None):
|
|
@@ -1850,7 +1853,7 @@ class Exchange(BaseExchange):
|
|
|
1850
1853
|
else:
|
|
1851
1854
|
raise NotSupported(self.id + ' fetchFundingInterval() is not supported yet')
|
|
1852
1855
|
|
|
1853
|
-
async def fetch_mark_ohlcv(self, symbol: str, timeframe='1m', since: Int = None, limit: Int = None, params={}):
|
|
1856
|
+
async def fetch_mark_ohlcv(self, symbol: str, timeframe: str = '1m', since: Int = None, limit: Int = None, params={}):
|
|
1854
1857
|
"""
|
|
1855
1858
|
fetches historical mark price candlestick data containing the open, high, low, and close price of a market
|
|
1856
1859
|
:param str symbol: unified symbol of the market to fetch OHLCV data for
|
|
@@ -1868,7 +1871,7 @@ class Exchange(BaseExchange):
|
|
|
1868
1871
|
else:
|
|
1869
1872
|
raise NotSupported(self.id + ' fetchMarkOHLCV() is not supported yet')
|
|
1870
1873
|
|
|
1871
|
-
async def fetch_index_ohlcv(self, symbol: str, timeframe='1m', since: Int = None, limit: Int = None, params={}):
|
|
1874
|
+
async def fetch_index_ohlcv(self, symbol: str, timeframe: str = '1m', since: Int = None, limit: Int = None, params={}):
|
|
1872
1875
|
"""
|
|
1873
1876
|
fetches historical index price candlestick data containing the open, high, low, and close price of a market
|
|
1874
1877
|
:param str symbol: unified symbol of the market to fetch OHLCV data for
|
|
@@ -1886,7 +1889,7 @@ class Exchange(BaseExchange):
|
|
|
1886
1889
|
else:
|
|
1887
1890
|
raise NotSupported(self.id + ' fetchIndexOHLCV() is not supported yet')
|
|
1888
1891
|
|
|
1889
|
-
async def fetch_premium_index_ohlcv(self, symbol: str, timeframe='1m', since: Int = None, limit: Int = None, params={}):
|
|
1892
|
+
async def fetch_premium_index_ohlcv(self, symbol: str, timeframe: str = '1m', since: Int = None, limit: Int = None, params={}):
|
|
1890
1893
|
"""
|
|
1891
1894
|
fetches historical premium index price candlestick data containing the open, high, low, and close price of a market
|
|
1892
1895
|
:param str symbol: unified symbol of the market to fetch OHLCV data for
|
kucoin/ccxt/base/exchange.py
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
# -----------------------------------------------------------------------------
|
|
6
6
|
|
|
7
|
-
__version__ = '4.5.
|
|
7
|
+
__version__ = '4.5.3'
|
|
8
8
|
|
|
9
9
|
# -----------------------------------------------------------------------------
|
|
10
10
|
|
|
@@ -2641,6 +2641,9 @@ class Exchange(object):
|
|
|
2641
2641
|
def un_watch_positions(self, symbols: Strings = None, params={}):
|
|
2642
2642
|
raise NotSupported(self.id + ' unWatchPositions() is not supported yet')
|
|
2643
2643
|
|
|
2644
|
+
def un_watch_ticker(self, symbol: str, params={}):
|
|
2645
|
+
raise NotSupported(self.id + ' unWatchTicker() is not supported yet')
|
|
2646
|
+
|
|
2644
2647
|
def fetch_deposit_addresses(self, codes: Strings = None, params={}):
|
|
2645
2648
|
raise NotSupported(self.id + ' fetchDepositAddresses() is not supported yet')
|
|
2646
2649
|
|
|
@@ -3948,19 +3951,19 @@ class Exchange(object):
|
|
|
3948
3951
|
def repay_margin(self, code: str, amount: float, symbol: Str = None, params={}):
|
|
3949
3952
|
raise NotSupported(self.id + ' repayMargin is deprecated, please use repayCrossMargin or repayIsolatedMargin instead')
|
|
3950
3953
|
|
|
3951
|
-
def fetch_ohlcv(self, symbol: str, timeframe='1m', since: Int = None, limit: Int = None, params={}):
|
|
3954
|
+
def fetch_ohlcv(self, symbol: str, timeframe: str = '1m', since: Int = None, limit: Int = None, params={}):
|
|
3952
3955
|
message = ''
|
|
3953
3956
|
if self.has['fetchTrades']:
|
|
3954
3957
|
message = '. If you want to build OHLCV candles from trade executions data, visit https://github.com/ccxt/ccxt/tree/master/examples/ and see "build-ohlcv-bars" file'
|
|
3955
3958
|
raise NotSupported(self.id + ' fetchOHLCV() is not supported yet' + message)
|
|
3956
3959
|
|
|
3957
|
-
def fetch_ohlcv_ws(self, symbol: str, timeframe='1m', since: Int = None, limit: Int = None, params={}):
|
|
3960
|
+
def fetch_ohlcv_ws(self, symbol: str, timeframe: str = '1m', since: Int = None, limit: Int = None, params={}):
|
|
3958
3961
|
message = ''
|
|
3959
3962
|
if self.has['fetchTradesWs']:
|
|
3960
3963
|
message = '. If you want to build OHLCV candles from trade executions data, visit https://github.com/ccxt/ccxt/tree/master/examples/ and see "build-ohlcv-bars" file'
|
|
3961
3964
|
raise NotSupported(self.id + ' fetchOHLCVWs() is not supported yet. Try using fetchOHLCV instead.' + message)
|
|
3962
3965
|
|
|
3963
|
-
def watch_ohlcv(self, symbol: str, timeframe='1m', since: Int = None, limit: Int = None, params={}):
|
|
3966
|
+
def watch_ohlcv(self, symbol: str, timeframe: str = '1m', since: Int = None, limit: Int = None, params={}):
|
|
3964
3967
|
raise NotSupported(self.id + ' watchOHLCV() is not supported yet')
|
|
3965
3968
|
|
|
3966
3969
|
def convert_trading_view_to_ohlcv(self, ohlcvs: List[List[float]], timestamp='t', open='o', high='h', low='l', close='c', volume='v', ms=False):
|
|
@@ -4763,6 +4766,11 @@ class Exchange(object):
|
|
|
4763
4766
|
return market
|
|
4764
4767
|
return result
|
|
4765
4768
|
|
|
4769
|
+
def market_or_null(self, symbol: str):
|
|
4770
|
+
if symbol is None:
|
|
4771
|
+
return None
|
|
4772
|
+
return self.market(symbol)
|
|
4773
|
+
|
|
4766
4774
|
def check_required_credentials(self, error=True):
|
|
4767
4775
|
"""
|
|
4768
4776
|
@ignore
|
|
@@ -6201,7 +6209,7 @@ class Exchange(object):
|
|
|
6201
6209
|
else:
|
|
6202
6210
|
raise NotSupported(self.id + ' fetchFundingInterval() is not supported yet')
|
|
6203
6211
|
|
|
6204
|
-
def fetch_mark_ohlcv(self, symbol: str, timeframe='1m', since: Int = None, limit: Int = None, params={}):
|
|
6212
|
+
def fetch_mark_ohlcv(self, symbol: str, timeframe: str = '1m', since: Int = None, limit: Int = None, params={}):
|
|
6205
6213
|
"""
|
|
6206
6214
|
fetches historical mark price candlestick data containing the open, high, low, and close price of a market
|
|
6207
6215
|
:param str symbol: unified symbol of the market to fetch OHLCV data for
|
|
@@ -6219,7 +6227,7 @@ class Exchange(object):
|
|
|
6219
6227
|
else:
|
|
6220
6228
|
raise NotSupported(self.id + ' fetchMarkOHLCV() is not supported yet')
|
|
6221
6229
|
|
|
6222
|
-
def fetch_index_ohlcv(self, symbol: str, timeframe='1m', since: Int = None, limit: Int = None, params={}):
|
|
6230
|
+
def fetch_index_ohlcv(self, symbol: str, timeframe: str = '1m', since: Int = None, limit: Int = None, params={}):
|
|
6223
6231
|
"""
|
|
6224
6232
|
fetches historical index price candlestick data containing the open, high, low, and close price of a market
|
|
6225
6233
|
:param str symbol: unified symbol of the market to fetch OHLCV data for
|
|
@@ -6237,7 +6245,7 @@ class Exchange(object):
|
|
|
6237
6245
|
else:
|
|
6238
6246
|
raise NotSupported(self.id + ' fetchIndexOHLCV() is not supported yet')
|
|
6239
6247
|
|
|
6240
|
-
def fetch_premium_index_ohlcv(self, symbol: str, timeframe='1m', since: Int = None, limit: Int = None, params={}):
|
|
6248
|
+
def fetch_premium_index_ohlcv(self, symbol: str, timeframe: str = '1m', since: Int = None, limit: Int = None, params={}):
|
|
6241
6249
|
"""
|
|
6242
6250
|
fetches historical premium index price candlestick data containing the open, high, low, and close price of a market
|
|
6243
6251
|
:param str symbol: unified symbol of the market to fetch OHLCV data for
|
kucoin/ccxt/pro/__init__.py
CHANGED
kucoin/ccxt/pro/kucoin.py
CHANGED
|
@@ -39,6 +39,11 @@ class kucoin(kucoinAsync):
|
|
|
39
39
|
'watchOrderBookForSymbols': True,
|
|
40
40
|
'watchBalance': True,
|
|
41
41
|
'watchOHLCV': True,
|
|
42
|
+
'unWatchTicker': True,
|
|
43
|
+
'unWatchOHLCV': True,
|
|
44
|
+
'unWatchOrderBook': True,
|
|
45
|
+
'unWatchTrades': True,
|
|
46
|
+
'unWatchhTradesForSymbols': True,
|
|
42
47
|
},
|
|
43
48
|
'options': {
|
|
44
49
|
'tradesLimit': 1000,
|
|
@@ -140,6 +145,9 @@ class kucoin(kucoinAsync):
|
|
|
140
145
|
client.subscriptions[requestId] = subscriptionHash
|
|
141
146
|
return await self.watch(url, messageHash, message, subscriptionHash, subscription)
|
|
142
147
|
|
|
148
|
+
async def un_subscribe(self, url, messageHash, topic, subscriptionHash, params={}, subscription: dict = None):
|
|
149
|
+
return await self.un_subscribe_multiple(url, [messageHash], topic, [subscriptionHash], params, subscription)
|
|
150
|
+
|
|
143
151
|
async def subscribe_multiple(self, url, messageHashes, topic, subscriptionHashes, params={}, subscription=None):
|
|
144
152
|
requestId = str(self.request_id())
|
|
145
153
|
request: dict = {
|
|
@@ -193,6 +201,34 @@ class kucoin(kucoinAsync):
|
|
|
193
201
|
messageHash = 'ticker:' + symbol
|
|
194
202
|
return await self.subscribe(url, messageHash, topic, query)
|
|
195
203
|
|
|
204
|
+
async def un_watch_ticker(self, symbol: str, params={}) -> Ticker:
|
|
205
|
+
"""
|
|
206
|
+
unWatches a price ticker, a statistical calculation with the information calculated over the past 24 hours for a specific market
|
|
207
|
+
|
|
208
|
+
https://www.kucoin.com/docs/websocket/spot-trading/public-channels/market-snapshot
|
|
209
|
+
|
|
210
|
+
:param str symbol: unified symbol of the market to fetch the ticker for
|
|
211
|
+
:param dict [params]: extra parameters specific to the exchange API endpoint
|
|
212
|
+
:returns dict: a `ticker structure <https://docs.ccxt.com/#/?id=ticker-structure>`
|
|
213
|
+
"""
|
|
214
|
+
await self.load_markets()
|
|
215
|
+
market = self.market(symbol)
|
|
216
|
+
symbol = market['symbol']
|
|
217
|
+
url = await self.negotiate(False)
|
|
218
|
+
method = None
|
|
219
|
+
method, params = self.handle_option_and_params(params, 'watchTicker', 'method', '/market/snapshot')
|
|
220
|
+
topic = method + ':' + market['id']
|
|
221
|
+
messageHash = 'unsubscribe:ticker:' + symbol
|
|
222
|
+
subMessageHash = 'ticker:' + symbol
|
|
223
|
+
subscription = {
|
|
224
|
+
'messageHashes': [messageHash],
|
|
225
|
+
'subMessageHashes': [subMessageHash],
|
|
226
|
+
'topic': 'trades',
|
|
227
|
+
'unsubscribe': True,
|
|
228
|
+
'symbols': [symbol],
|
|
229
|
+
}
|
|
230
|
+
return await self.un_subscribe(url, messageHash, topic, subMessageHash, params, subscription)
|
|
231
|
+
|
|
196
232
|
async def watch_tickers(self, symbols: Strings = None, params={}) -> Tickers:
|
|
197
233
|
"""
|
|
198
234
|
|
|
@@ -420,6 +456,34 @@ class kucoin(kucoinAsync):
|
|
|
420
456
|
limit = ohlcv.getLimit(symbol, limit)
|
|
421
457
|
return self.filter_by_since_limit(ohlcv, since, limit, 0, True)
|
|
422
458
|
|
|
459
|
+
async def un_watch_ohlcv(self, symbol: str, timeframe='1m', params={}) -> List[list]:
|
|
460
|
+
"""
|
|
461
|
+
unWatches historical candlestick data containing the open, high, low, and close price, and the volume of a market
|
|
462
|
+
|
|
463
|
+
https://www.kucoin.com/docs/websocket/spot-trading/public-channels/klines
|
|
464
|
+
|
|
465
|
+
:param str symbol: unified symbol of the market to fetch OHLCV data for
|
|
466
|
+
:param str timeframe: the length of time each candle represents
|
|
467
|
+
:param dict [params]: extra parameters specific to the exchange API endpoint
|
|
468
|
+
:returns int[][]: A list of candles ordered, open, high, low, close, volume
|
|
469
|
+
"""
|
|
470
|
+
await self.load_markets()
|
|
471
|
+
url = await self.negotiate(False)
|
|
472
|
+
market = self.market(symbol)
|
|
473
|
+
symbol = market['symbol']
|
|
474
|
+
period = self.safe_string(self.timeframes, timeframe, timeframe)
|
|
475
|
+
topic = '/market/candles:' + market['id'] + '_' + period
|
|
476
|
+
messageHash = 'unsubscribe:candles:' + symbol + ':' + timeframe
|
|
477
|
+
subMessageHash = 'candles:' + symbol + ':' + timeframe
|
|
478
|
+
subscription = {
|
|
479
|
+
'messageHashes': [messageHash],
|
|
480
|
+
'subMessageHashes': [subMessageHash],
|
|
481
|
+
'topic': 'ohlcv',
|
|
482
|
+
'unsubscribe': True,
|
|
483
|
+
'symbols': [symbol],
|
|
484
|
+
}
|
|
485
|
+
return await self.un_subscribe(url, messageHash, topic, messageHash, params, subscription)
|
|
486
|
+
|
|
423
487
|
def handle_ohlcv(self, client: Client, message):
|
|
424
488
|
#
|
|
425
489
|
# {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: kucoin-api
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.89
|
|
4
4
|
Summary: kucoin crypto exchange api client
|
|
5
5
|
Project-URL: Homepage, https://github.com/ccxt/ccxt
|
|
6
6
|
Project-URL: Issues, https://github.com/ccxt/ccxt
|
|
@@ -409,13 +409,16 @@ You can also construct custom requests to available "implicit" endpoints
|
|
|
409
409
|
- `negotiate(self, privateChannel, params={})`
|
|
410
410
|
- `negotiate_helper(self, privateChannel, params={})`
|
|
411
411
|
- `subscribe(self, url, messageHash, subscriptionHash, params={}, subscription=None)`
|
|
412
|
+
- `un_subscribe(self, url, messageHash, topic, subscriptionHash, params={}, subscription: dict = None)`
|
|
412
413
|
- `subscribe_multiple(self, url, messageHashes, topic, subscriptionHashes, params={}, subscription=None)`
|
|
413
414
|
- `un_subscribe_multiple(self, url, messageHashes, topic, subscriptionHashes, params={}, subscription: dict = None)`
|
|
414
415
|
- `watch_ticker(self, symbol: str, params={})`
|
|
416
|
+
- `un_watch_ticker(self, symbol: str, params={})`
|
|
415
417
|
- `watch_tickers(self, symbols: Strings = None, params={})`
|
|
416
418
|
- `watch_bids_asks(self, symbols: Strings = None, params={})`
|
|
417
419
|
- `watch_multi_helper(self, methodName, channelName: str, symbols: Strings = None, params={})`
|
|
418
420
|
- `watch_ohlcv(self, symbol: str, timeframe='1m', since: Int = None, limit: Int = None, params={})`
|
|
421
|
+
- `un_watch_ohlcv(self, symbol: str, timeframe='1m', params={})`
|
|
419
422
|
- `watch_trades(self, symbol: str, since: Int = None, limit: Int = None, params={})`
|
|
420
423
|
- `watch_trades_for_symbols(self, symbols: List[str], since: Int = None, limit: Int = None, params={})`
|
|
421
424
|
- `un_watch_trades_for_symbols(self, symbols: List[str], params={})`
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
kucoin/__init__.py,sha256=J1NNMLktlkCZKV82j8CFTVES3O3TCVk3so0ROi4E52o,246
|
|
2
|
-
kucoin/ccxt/__init__.py,sha256=
|
|
2
|
+
kucoin/ccxt/__init__.py,sha256=sQ_jgp-Tb1g8vNV3HOdTuhIfSfl0bRB5qsAtW_zVvHM,6130
|
|
3
3
|
kucoin/ccxt/kucoin.py,sha256=B0lAhQ5v49yhDJyD117FiLBJOX0XKhL2C9zz9YrrIUU,232486
|
|
4
4
|
kucoin/ccxt/abstract/kucoin.py,sha256=kVrVEXiigc36arfbSS8lDUMnG7uFdKgUKHIhVb0Am_8,28626
|
|
5
|
-
kucoin/ccxt/async_support/__init__.py,sha256=
|
|
5
|
+
kucoin/ccxt/async_support/__init__.py,sha256=WJPCanXqKvDOfRq81Md5-tWKUJzm8OEuPmeLU8WRlJ0,4863
|
|
6
6
|
kucoin/ccxt/async_support/kucoin.py,sha256=1g5zjnf_ad1TiIpaRfc86m6ieBTvrp9V_UcUv3oIHHE,233636
|
|
7
7
|
kucoin/ccxt/async_support/base/__init__.py,sha256=aVYSsFi--b4InRs9zDN_wtCpj8odosAB726JdUHavrk,67
|
|
8
|
-
kucoin/ccxt/async_support/base/exchange.py,sha256=
|
|
8
|
+
kucoin/ccxt/async_support/base/exchange.py,sha256=nMqvBDsBpGe7mSUA1j8xK4_CvHvGtrlkeFfjdcnUfPQ,121450
|
|
9
9
|
kucoin/ccxt/async_support/base/throttler.py,sha256=tvDVcdRUVYi8fZRlEcnqtgzcgB_KMUMRs5Pu8tuU-tU,1847
|
|
10
10
|
kucoin/ccxt/async_support/base/ws/__init__.py,sha256=uockzpLuwntKGZbs5EOWFe-Zg-k6Cj7GhNJLc_RX0so,1791
|
|
11
11
|
kucoin/ccxt/async_support/base/ws/cache.py,sha256=xf2VOtfUwloxSlIQ39M1RGZHWQzyS9IGhB5NX6cDcAc,8370
|
|
@@ -17,11 +17,11 @@ kucoin/ccxt/async_support/base/ws/order_book_side.py,sha256=GhnGUt78pJ-AYL_Dq9pr
|
|
|
17
17
|
kucoin/ccxt/base/__init__.py,sha256=eTx1OE3HJjspFUQjGm6LBhaQiMKJnXjkdP-JUXknyQ0,1320
|
|
18
18
|
kucoin/ccxt/base/decimal_to_precision.py,sha256=3XI30u9YudHbTA438397u5rkdlXa3atxwZEfUus3C4k,6803
|
|
19
19
|
kucoin/ccxt/base/errors.py,sha256=OGhWNvNtRlJOzFx-n1x3ZjTnaPpfWH0Vc0xACS-MeDw,5012
|
|
20
|
-
kucoin/ccxt/base/exchange.py,sha256=
|
|
20
|
+
kucoin/ccxt/base/exchange.py,sha256=K-wfT2MGTJMLuqR7ytj7xYunUdJOm3Ve3XRikY_3UKk,334643
|
|
21
21
|
kucoin/ccxt/base/precise.py,sha256=koce64Yrp6vFbGijJtUt-QQ6XhJgeGTCksZ871FPp_A,8886
|
|
22
22
|
kucoin/ccxt/base/types.py,sha256=Gvbogh9i7pPH7Z18xesYeDPribqqwq8uKpOv-YODFBs,11505
|
|
23
|
-
kucoin/ccxt/pro/__init__.py,sha256=
|
|
24
|
-
kucoin/ccxt/pro/kucoin.py,sha256=
|
|
23
|
+
kucoin/ccxt/pro/__init__.py,sha256=Je6cHtjaj4i0Atpk6Tg4ofjslwTbzE-lIqq0NIPSlsM,4177
|
|
24
|
+
kucoin/ccxt/pro/kucoin.py,sha256=mTVpGOorIGDGl-iKw0SL0EBTj6Abr0cjcPATI5LcXak,63971
|
|
25
25
|
kucoin/ccxt/static_dependencies/README.md,sha256=3TCvhhn09_Cqf9BDDpao1V7EfKHDpQ6k9oWRsLFixpU,18
|
|
26
26
|
kucoin/ccxt/static_dependencies/__init__.py,sha256=tzFje8cloqmiIE6kola3EaYC0SnD1izWnri69hzHsSw,168
|
|
27
27
|
kucoin/ccxt/static_dependencies/ecdsa/__init__.py,sha256=Xaj0G79BLtBt2YZcOOMV8qOlQZ7fIJznNiHhiEEZfQA,594
|
|
@@ -281,6 +281,6 @@ kucoin/ccxt/static_dependencies/toolz/curried/exceptions.py,sha256=gKFOHDIayAWnX
|
|
|
281
281
|
kucoin/ccxt/static_dependencies/toolz/curried/operator.py,sha256=ML92mknkAwzBl2NCm-4werSUmJEtSHNY9NSzhseNM9s,525
|
|
282
282
|
kucoin/ccxt/static_dependencies/typing_inspect/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
283
283
|
kucoin/ccxt/static_dependencies/typing_inspect/typing_inspect.py,sha256=5gIWomLPfuDpgd3gX1GlnX0MuXM3VorR4j2W2qXORiQ,28269
|
|
284
|
-
kucoin_api-0.0.
|
|
285
|
-
kucoin_api-0.0.
|
|
286
|
-
kucoin_api-0.0.
|
|
284
|
+
kucoin_api-0.0.89.dist-info/METADATA,sha256=6LCvnFRka0OoM96b9exOEh1JoqBh6i7Wr2PDAVOKWGs,18797
|
|
285
|
+
kucoin_api-0.0.89.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
286
|
+
kucoin_api-0.0.89.dist-info/RECORD,,
|
|
File without changes
|