ccxt 4.3.79__py2.py3-none-any.whl → 4.3.80__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 +1 -1
- ccxt/async_support/__init__.py +1 -1
- ccxt/async_support/base/exchange.py +1 -1
- ccxt/async_support/binance.py +1 -1
- ccxt/async_support/bitmart.py +3 -3
- ccxt/async_support/bybit.py +8 -1
- ccxt/async_support/poloniex.py +3 -2
- ccxt/base/exchange.py +25 -31
- ccxt/binance.py +1 -1
- ccxt/bitmart.py +3 -3
- ccxt/bybit.py +8 -1
- ccxt/poloniex.py +3 -2
- ccxt/pro/__init__.py +1 -1
- {ccxt-4.3.79.dist-info → ccxt-4.3.80.dist-info}/METADATA +4 -4
- {ccxt-4.3.79.dist-info → ccxt-4.3.80.dist-info}/RECORD +18 -18
- {ccxt-4.3.79.dist-info → ccxt-4.3.80.dist-info}/LICENSE.txt +0 -0
- {ccxt-4.3.79.dist-info → ccxt-4.3.80.dist-info}/WHEEL +0 -0
- {ccxt-4.3.79.dist-info → ccxt-4.3.80.dist-info}/top_level.txt +0 -0
ccxt/__init__.py
CHANGED
ccxt/async_support/__init__.py
CHANGED
ccxt/async_support/binance.py
CHANGED
@@ -75,7 +75,7 @@ class binance(Exchange, ImplicitAPI):
|
|
75
75
|
'createMarketSellOrderWithCost': True,
|
76
76
|
'createOrder': True,
|
77
77
|
'createOrders': True,
|
78
|
-
'createOrderWithTakeProfitAndStopLoss':
|
78
|
+
'createOrderWithTakeProfitAndStopLoss': False,
|
79
79
|
'createPostOnlyOrder': True,
|
80
80
|
'createReduceOnlyOrder': True,
|
81
81
|
'createStopLimitOrder': True,
|
ccxt/async_support/bitmart.py
CHANGED
@@ -2364,8 +2364,6 @@ class bitmart(Exchange, ImplicitAPI):
|
|
2364
2364
|
:see: https://developer-pro.bitmart.com/en/spot/#place-margin-order
|
2365
2365
|
:see: https://developer-pro.bitmart.com/en/futures/#submit-order-signed
|
2366
2366
|
:see: https://developer-pro.bitmart.com/en/futures/#submit-plan-order-signed
|
2367
|
-
:see: https://developer-pro.bitmart.com/en/futures/#submit-order-signed
|
2368
|
-
:see: https://developer-pro.bitmart.com/en/futures/#submit-plan-order-signed
|
2369
2367
|
:see: https://developer-pro.bitmart.com/en/futuresv2/#submit-plan-order-signed
|
2370
2368
|
:param str symbol: unified symbol of the market to create an order in
|
2371
2369
|
:param str type: 'market', 'limit' or 'trailing' for swap markets only
|
@@ -2496,6 +2494,7 @@ class bitmart(Exchange, ImplicitAPI):
|
|
2496
2494
|
create a trade order
|
2497
2495
|
:see: https://developer-pro.bitmart.com/en/futures/#submit-order-signed
|
2498
2496
|
:see: https://developer-pro.bitmart.com/en/futures/#submit-plan-order-signed
|
2497
|
+
:see: https://developer-pro.bitmart.com/en/futuresv2/#submit-plan-order-signed
|
2499
2498
|
:param str symbol: unified symbol of the market to create an order in
|
2500
2499
|
:param str type: 'market', 'limit' or 'trailing'
|
2501
2500
|
:param str side: 'buy' or 'sell'
|
@@ -2549,7 +2548,8 @@ class bitmart(Exchange, ImplicitAPI):
|
|
2549
2548
|
request['activation_price'] = self.price_to_precision(symbol, trailingTriggerPrice)
|
2550
2549
|
request['activation_price_type'] = self.safe_integer(params, 'activation_price_type', 1)
|
2551
2550
|
if isTriggerOrder:
|
2552
|
-
|
2551
|
+
if isLimitOrder or price is not None:
|
2552
|
+
request['executive_price'] = self.price_to_precision(symbol, price)
|
2553
2553
|
request['trigger_price'] = self.price_to_precision(symbol, triggerPrice)
|
2554
2554
|
request['price_type'] = self.safe_integer(params, 'price_type', 1)
|
2555
2555
|
if side == 'buy':
|
ccxt/async_support/bybit.py
CHANGED
@@ -5466,10 +5466,12 @@ class bybit(Exchange, ImplicitAPI):
|
|
5466
5466
|
"""
|
5467
5467
|
fetch the history of changes, actions done by the user or operations that altered balance of the user
|
5468
5468
|
:see: https://bybit-exchange.github.io/docs/v5/account/transaction-log
|
5469
|
+
:see: https://bybit-exchange.github.io/docs/v5/account/contract-transaction-log
|
5469
5470
|
:param str code: unified currency code, default is None
|
5470
5471
|
:param int [since]: timestamp in ms of the earliest ledger entry, default is None
|
5471
5472
|
:param int [limit]: max number of ledger entrys to return, default is None
|
5472
5473
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
5474
|
+
:param str [params.subType]: if inverse will use v5/account/contract-transaction-log
|
5473
5475
|
:returns dict: a `ledger structure <https://docs.ccxt.com/#/?id=ledger-structure>`
|
5474
5476
|
"""
|
5475
5477
|
await self.load_markets()
|
@@ -5507,9 +5509,14 @@ class bybit(Exchange, ImplicitAPI):
|
|
5507
5509
|
request[currencyKey] = currency['id']
|
5508
5510
|
if limit is not None:
|
5509
5511
|
request['limit'] = limit
|
5512
|
+
subType = None
|
5513
|
+
subType, params = self.handle_sub_type_and_params('fetchLedger', None, params)
|
5510
5514
|
response = None
|
5511
5515
|
if enableUnified[1]:
|
5512
|
-
|
5516
|
+
if subType == 'inverse':
|
5517
|
+
response = await self.privateGetV5AccountContractTransactionLog(self.extend(request, params))
|
5518
|
+
else:
|
5519
|
+
response = await self.privateGetV5AccountTransactionLog(self.extend(request, params))
|
5513
5520
|
else:
|
5514
5521
|
response = await self.privateGetV2PrivateWalletFundRecords(self.extend(request, params))
|
5515
5522
|
#
|
ccxt/async_support/poloniex.py
CHANGED
@@ -1088,8 +1088,9 @@ class poloniex(Exchange, ImplicitAPI):
|
|
1088
1088
|
market = self.safe_market(marketId, market, '_')
|
1089
1089
|
symbol = market['symbol']
|
1090
1090
|
resultingTrades = self.safe_value(order, 'resultingTrades')
|
1091
|
-
if not
|
1092
|
-
|
1091
|
+
if resultingTrades is not None:
|
1092
|
+
if not isinstance(resultingTrades, list):
|
1093
|
+
resultingTrades = self.safe_value(resultingTrades, self.safe_string(market, 'id', marketId))
|
1093
1094
|
price = self.safe_string_2(order, 'price', 'rate')
|
1094
1095
|
amount = self.safe_string(order, 'quantity')
|
1095
1096
|
filled = self.safe_string(order, 'filledQuantity')
|
ccxt/base/exchange.py
CHANGED
@@ -4,7 +4,7 @@
|
|
4
4
|
|
5
5
|
# -----------------------------------------------------------------------------
|
6
6
|
|
7
|
-
__version__ = '4.3.
|
7
|
+
__version__ = '4.3.80'
|
8
8
|
|
9
9
|
# -----------------------------------------------------------------------------
|
10
10
|
|
@@ -2236,44 +2236,38 @@ class Exchange(object):
|
|
2236
2236
|
httpsProxy = None
|
2237
2237
|
socksProxy = None
|
2238
2238
|
# httpProxy
|
2239
|
-
|
2239
|
+
isHttpProxyDefined = self.value_is_defined(self.httpProxy)
|
2240
|
+
isHttp_proxy_defined = self.value_is_defined(self.http_proxy)
|
2241
|
+
if isHttpProxyDefined or isHttp_proxy_defined:
|
2240
2242
|
usedProxies.append('httpProxy')
|
2241
|
-
httpProxy = self.httpProxy
|
2242
|
-
|
2243
|
-
|
2244
|
-
|
2245
|
-
if self.httpProxyCallback is not None:
|
2243
|
+
httpProxy = self.httpProxy if isHttpProxyDefined else self.http_proxy
|
2244
|
+
ishttpProxyCallbackDefined = self.value_is_defined(self.httpProxyCallback)
|
2245
|
+
ishttp_proxy_callback_defined = self.value_is_defined(self.http_proxy_callback)
|
2246
|
+
if ishttpProxyCallbackDefined or ishttp_proxy_callback_defined:
|
2246
2247
|
usedProxies.append('httpProxyCallback')
|
2247
|
-
httpProxy = self.httpProxyCallback(url, method, headers, body)
|
2248
|
-
if self.http_proxy_callback is not None:
|
2249
|
-
usedProxies.append('http_proxy_callback')
|
2250
|
-
httpProxy = self.http_proxy_callback(url, method, headers, body)
|
2248
|
+
httpProxy = self.httpProxyCallback(url, method, headers, body) if ishttpProxyCallbackDefined else self.http_proxy_callback(url, method, headers, body)
|
2251
2249
|
# httpsProxy
|
2252
|
-
|
2250
|
+
isHttpsProxyDefined = self.value_is_defined(self.httpsProxy)
|
2251
|
+
isHttps_proxy_defined = self.value_is_defined(self.https_proxy)
|
2252
|
+
if isHttpsProxyDefined or isHttps_proxy_defined:
|
2253
2253
|
usedProxies.append('httpsProxy')
|
2254
|
-
httpsProxy = self.httpsProxy
|
2255
|
-
|
2256
|
-
|
2257
|
-
|
2258
|
-
if self.httpsProxyCallback is not None:
|
2254
|
+
httpsProxy = self.httpsProxy if isHttpsProxyDefined else self.https_proxy
|
2255
|
+
ishttpsProxyCallbackDefined = self.value_is_defined(self.httpsProxyCallback)
|
2256
|
+
ishttps_proxy_callback_defined = self.value_is_defined(self.https_proxy_callback)
|
2257
|
+
if ishttpsProxyCallbackDefined or ishttps_proxy_callback_defined:
|
2259
2258
|
usedProxies.append('httpsProxyCallback')
|
2260
|
-
httpsProxy = self.httpsProxyCallback(url, method, headers, body)
|
2261
|
-
if self.https_proxy_callback is not None:
|
2262
|
-
usedProxies.append('https_proxy_callback')
|
2263
|
-
httpsProxy = self.https_proxy_callback(url, method, headers, body)
|
2259
|
+
httpsProxy = self.httpsProxyCallback(url, method, headers, body) if ishttpsProxyCallbackDefined else self.https_proxy_callback(url, method, headers, body)
|
2264
2260
|
# socksProxy
|
2265
|
-
|
2261
|
+
isSocksProxyDefined = self.value_is_defined(self.socksProxy)
|
2262
|
+
isSocks_proxy_defined = self.value_is_defined(self.socks_proxy)
|
2263
|
+
if isSocksProxyDefined or isSocks_proxy_defined:
|
2266
2264
|
usedProxies.append('socksProxy')
|
2267
|
-
socksProxy = self.socksProxy
|
2268
|
-
|
2269
|
-
|
2270
|
-
|
2271
|
-
if self.socksProxyCallback is not None:
|
2265
|
+
socksProxy = self.socksProxy if isSocksProxyDefined else self.socks_proxy
|
2266
|
+
issocksProxyCallbackDefined = self.value_is_defined(self.socksProxyCallback)
|
2267
|
+
issocks_proxy_callback_defined = self.value_is_defined(self.socks_proxy_callback)
|
2268
|
+
if issocksProxyCallbackDefined or issocks_proxy_callback_defined:
|
2272
2269
|
usedProxies.append('socksProxyCallback')
|
2273
|
-
socksProxy = self.socksProxyCallback(url, method, headers, body)
|
2274
|
-
if self.socks_proxy_callback is not None:
|
2275
|
-
usedProxies.append('socks_proxy_callback')
|
2276
|
-
socksProxy = self.socks_proxy_callback(url, method, headers, body)
|
2270
|
+
socksProxy = self.socksProxyCallback(url, method, headers, body) if issocksProxyCallbackDefined else self.socks_proxy_callback(url, method, headers, body)
|
2277
2271
|
# check
|
2278
2272
|
length = len(usedProxies)
|
2279
2273
|
if length > 1:
|
ccxt/binance.py
CHANGED
@@ -74,7 +74,7 @@ class binance(Exchange, ImplicitAPI):
|
|
74
74
|
'createMarketSellOrderWithCost': True,
|
75
75
|
'createOrder': True,
|
76
76
|
'createOrders': True,
|
77
|
-
'createOrderWithTakeProfitAndStopLoss':
|
77
|
+
'createOrderWithTakeProfitAndStopLoss': False,
|
78
78
|
'createPostOnlyOrder': True,
|
79
79
|
'createReduceOnlyOrder': True,
|
80
80
|
'createStopLimitOrder': True,
|
ccxt/bitmart.py
CHANGED
@@ -2364,8 +2364,6 @@ class bitmart(Exchange, ImplicitAPI):
|
|
2364
2364
|
:see: https://developer-pro.bitmart.com/en/spot/#place-margin-order
|
2365
2365
|
:see: https://developer-pro.bitmart.com/en/futures/#submit-order-signed
|
2366
2366
|
:see: https://developer-pro.bitmart.com/en/futures/#submit-plan-order-signed
|
2367
|
-
:see: https://developer-pro.bitmart.com/en/futures/#submit-order-signed
|
2368
|
-
:see: https://developer-pro.bitmart.com/en/futures/#submit-plan-order-signed
|
2369
2367
|
:see: https://developer-pro.bitmart.com/en/futuresv2/#submit-plan-order-signed
|
2370
2368
|
:param str symbol: unified symbol of the market to create an order in
|
2371
2369
|
:param str type: 'market', 'limit' or 'trailing' for swap markets only
|
@@ -2496,6 +2494,7 @@ class bitmart(Exchange, ImplicitAPI):
|
|
2496
2494
|
create a trade order
|
2497
2495
|
:see: https://developer-pro.bitmart.com/en/futures/#submit-order-signed
|
2498
2496
|
:see: https://developer-pro.bitmart.com/en/futures/#submit-plan-order-signed
|
2497
|
+
:see: https://developer-pro.bitmart.com/en/futuresv2/#submit-plan-order-signed
|
2499
2498
|
:param str symbol: unified symbol of the market to create an order in
|
2500
2499
|
:param str type: 'market', 'limit' or 'trailing'
|
2501
2500
|
:param str side: 'buy' or 'sell'
|
@@ -2549,7 +2548,8 @@ class bitmart(Exchange, ImplicitAPI):
|
|
2549
2548
|
request['activation_price'] = self.price_to_precision(symbol, trailingTriggerPrice)
|
2550
2549
|
request['activation_price_type'] = self.safe_integer(params, 'activation_price_type', 1)
|
2551
2550
|
if isTriggerOrder:
|
2552
|
-
|
2551
|
+
if isLimitOrder or price is not None:
|
2552
|
+
request['executive_price'] = self.price_to_precision(symbol, price)
|
2553
2553
|
request['trigger_price'] = self.price_to_precision(symbol, triggerPrice)
|
2554
2554
|
request['price_type'] = self.safe_integer(params, 'price_type', 1)
|
2555
2555
|
if side == 'buy':
|
ccxt/bybit.py
CHANGED
@@ -5465,10 +5465,12 @@ class bybit(Exchange, ImplicitAPI):
|
|
5465
5465
|
"""
|
5466
5466
|
fetch the history of changes, actions done by the user or operations that altered balance of the user
|
5467
5467
|
:see: https://bybit-exchange.github.io/docs/v5/account/transaction-log
|
5468
|
+
:see: https://bybit-exchange.github.io/docs/v5/account/contract-transaction-log
|
5468
5469
|
:param str code: unified currency code, default is None
|
5469
5470
|
:param int [since]: timestamp in ms of the earliest ledger entry, default is None
|
5470
5471
|
:param int [limit]: max number of ledger entrys to return, default is None
|
5471
5472
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
5473
|
+
:param str [params.subType]: if inverse will use v5/account/contract-transaction-log
|
5472
5474
|
:returns dict: a `ledger structure <https://docs.ccxt.com/#/?id=ledger-structure>`
|
5473
5475
|
"""
|
5474
5476
|
self.load_markets()
|
@@ -5506,9 +5508,14 @@ class bybit(Exchange, ImplicitAPI):
|
|
5506
5508
|
request[currencyKey] = currency['id']
|
5507
5509
|
if limit is not None:
|
5508
5510
|
request['limit'] = limit
|
5511
|
+
subType = None
|
5512
|
+
subType, params = self.handle_sub_type_and_params('fetchLedger', None, params)
|
5509
5513
|
response = None
|
5510
5514
|
if enableUnified[1]:
|
5511
|
-
|
5515
|
+
if subType == 'inverse':
|
5516
|
+
response = self.privateGetV5AccountContractTransactionLog(self.extend(request, params))
|
5517
|
+
else:
|
5518
|
+
response = self.privateGetV5AccountTransactionLog(self.extend(request, params))
|
5512
5519
|
else:
|
5513
5520
|
response = self.privateGetV2PrivateWalletFundRecords(self.extend(request, params))
|
5514
5521
|
#
|
ccxt/poloniex.py
CHANGED
@@ -1088,8 +1088,9 @@ class poloniex(Exchange, ImplicitAPI):
|
|
1088
1088
|
market = self.safe_market(marketId, market, '_')
|
1089
1089
|
symbol = market['symbol']
|
1090
1090
|
resultingTrades = self.safe_value(order, 'resultingTrades')
|
1091
|
-
if not
|
1092
|
-
|
1091
|
+
if resultingTrades is not None:
|
1092
|
+
if not isinstance(resultingTrades, list):
|
1093
|
+
resultingTrades = self.safe_value(resultingTrades, self.safe_string(market, 'id', marketId))
|
1093
1094
|
price = self.safe_string_2(order, 'price', 'rate')
|
1094
1095
|
amount = self.safe_string(order, 'quantity')
|
1095
1096
|
filled = self.safe_string(order, 'filledQuantity')
|
ccxt/pro/__init__.py
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: ccxt
|
3
|
-
Version: 4.3.
|
3
|
+
Version: 4.3.80
|
4
4
|
Summary: A JavaScript / TypeScript / Python / C# / PHP cryptocurrency trading library with support for 100+ exchanges
|
5
5
|
Home-page: https://ccxt.com
|
6
6
|
Author: Igor Kroitor
|
@@ -270,13 +270,13 @@ console.log(version, Object.keys(exchanges));
|
|
270
270
|
|
271
271
|
All-in-one browser bundle (dependencies included), served from a CDN of your choice:
|
272
272
|
|
273
|
-
* jsDelivr: https://cdn.jsdelivr.net/npm/ccxt@4.3.
|
274
|
-
* unpkg: https://unpkg.com/ccxt@4.3.
|
273
|
+
* jsDelivr: https://cdn.jsdelivr.net/npm/ccxt@4.3.80/dist/ccxt.browser.min.js
|
274
|
+
* unpkg: https://unpkg.com/ccxt@4.3.80/dist/ccxt.browser.min.js
|
275
275
|
|
276
276
|
CDNs are not updated in real-time and may have delays. Defaulting to the most recent version without specifying the version number is not recommended. Please, keep in mind that we are not responsible for the correct operation of those CDN servers.
|
277
277
|
|
278
278
|
```HTML
|
279
|
-
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/ccxt@4.3.
|
279
|
+
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/ccxt@4.3.80/dist/ccxt.browser.min.js"></script>
|
280
280
|
```
|
281
281
|
|
282
282
|
Creates a global `ccxt` object:
|
@@ -1,10 +1,10 @@
|
|
1
|
-
ccxt/__init__.py,sha256=
|
1
|
+
ccxt/__init__.py,sha256=mXY0nDx2xo6TTvvOZOaLDW48wkmWcZ2nRKTRPgfneEY,16417
|
2
2
|
ccxt/ace.py,sha256=Gee4ymA83iAuBFm3J8NaTb7qmu9buV2trA676KCtSVg,42383
|
3
3
|
ccxt/alpaca.py,sha256=HQuhQZSFGRlT-BaCUSEZmxpzYp6tll2zn63qn3gTmoU,47470
|
4
4
|
ccxt/ascendex.py,sha256=4aEwibO_me6khr66z8JFqDBxe2gtFOWIFBE7ulBEJPs,151933
|
5
5
|
ccxt/bequant.py,sha256=RBiAmaTbL35DgiV3Hl6uchLUd78V0z1T9riTlNsrpdc,1174
|
6
6
|
ccxt/bigone.py,sha256=PBciIENMufQQ6cxukdze5hhQ5vFOqBtMHDfTwT4nUuY,93086
|
7
|
-
ccxt/binance.py,sha256=
|
7
|
+
ccxt/binance.py,sha256=bzrq8F5iCWbC1JnDkcmw63hJ3Toq4Mpv5V6bxMZGlC0,640182
|
8
8
|
ccxt/binancecoinm.py,sha256=arFnEh8mErSyi23eVPWE4iwoT7PWQyxGGVJCKCy6UJY,1702
|
9
9
|
ccxt/binanceus.py,sha256=hdcT4OnadcdFFFjF3GtM0nWv90jqojqwdVS3xWGuW40,9163
|
10
10
|
ccxt/binanceusdm.py,sha256=bAPcJj5HLxoCdPolriM8sJpoTBwbV78vBTbKRmWhNP4,2632
|
@@ -19,7 +19,7 @@ ccxt/bitfinex2.py,sha256=m1PXKkM7tDf-ud-dmyqqYMF942IO3U0Du7AS3iVx-GU,160641
|
|
19
19
|
ccxt/bitflyer.py,sha256=biQ8-J_HSb9_S6HE1LBDd6BGpIZSMxK5JyTZ3Xg1SdI,41683
|
20
20
|
ccxt/bitget.py,sha256=ZQvtdW3pnv-LVHG3a1UwR72b-K8Fq-BZ-tu_haz-v60,424620
|
21
21
|
ccxt/bithumb.py,sha256=8oTnFWi8Ai9fnm5FPXvNmaUAVJEOqYi-18VC23cWmXY,47935
|
22
|
-
ccxt/bitmart.py,sha256=
|
22
|
+
ccxt/bitmart.py,sha256=U-QuxcYA6rMGGuD6RiTo1Mx-39uWX1at4uCNkdJFaV0,211937
|
23
23
|
ccxt/bitmex.py,sha256=oOFatIOxvXIPOdOeeVau-IdryOeYpdCtTPGxX05HA9A,126861
|
24
24
|
ccxt/bitopro.py,sha256=0m104rrKQXuXa3dThHGgqq0leIIcdN_nQTR3a9YJLLM,69322
|
25
25
|
ccxt/bitpanda.py,sha256=aiwPkx9lKbVzt4ggoYdq_mIbMGtg5ZtGl2yRHO5xyz8,471
|
@@ -35,7 +35,7 @@ ccxt/btcalpha.py,sha256=UcCCDZ_7EM-Q2tHU1IQPEA2DErFsLhrSfX-Oy-Q2uL4,36715
|
|
35
35
|
ccxt/btcbox.py,sha256=9-P15L-OiZRzz0ZOtgO3bf73kuHro9u3NYf3QjeYv4k,27744
|
36
36
|
ccxt/btcmarkets.py,sha256=0gMC0vvmuDJwcnllHMUZsQRV6QWA1-Cbq1N1F9rIUW8,52697
|
37
37
|
ccxt/btcturk.py,sha256=bQ8sJq5iEj9oq2R17uDadPWKcnIQG8id5UmdlpHfFy8,36992
|
38
|
-
ccxt/bybit.py,sha256=
|
38
|
+
ccxt/bybit.py,sha256=eqP9ZKLYn9SfhZW8dYBdq0xagQRAKF7FJBLA73iuNi8,417795
|
39
39
|
ccxt/cex.py,sha256=YQtARIBP7cY3y-AqRarEH_mVh7_ftt18jLebhpL3hxQ,70084
|
40
40
|
ccxt/coinbase.py,sha256=3L5CDWhg4MQlDkdZnuJxxOjmsWEh-gnqcV4R6nCq7rg,217483
|
41
41
|
ccxt/coinbaseadvanced.py,sha256=d5g6nRx-NCcCwZDdtp8FsI2D-pRjSvnAP9ISSKY_nCQ,538
|
@@ -91,7 +91,7 @@ ccxt/p2b.py,sha256=V_P8GTdb6SkeaVptVtc-LbjwUKUinfYFtO4nzmKG0N0,54333
|
|
91
91
|
ccxt/paradex.py,sha256=-o0MAEgItYeo-juKgh2D-lnQIsjRKWMCupyMVPldsG8,85602
|
92
92
|
ccxt/paymium.py,sha256=Xz-H66MQWQcQ1KJbciSMeremCD9kl2up_-IQUvBt22Y,24419
|
93
93
|
ccxt/phemex.py,sha256=Xi0Cb6Zfe2_tZ0GZ_Iam_m2NEJ7fIDjHpOYc1vJ-VQk,223106
|
94
|
-
ccxt/poloniex.py,sha256=
|
94
|
+
ccxt/poloniex.py,sha256=vaLhyTpZpzBvrrM6dCA_TVypLwLICXotixqiM27q-MA,102301
|
95
95
|
ccxt/poloniexfutures.py,sha256=E0S38NKWPCKRM8RV-TJVxhhOj0vjF-9qR3cbtgmsIdk,78551
|
96
96
|
ccxt/probit.py,sha256=MFA0bFG-xEx3ZDQIWebUKaP83mCjYKVcztk3e61Zx8Y,76165
|
97
97
|
ccxt/timex.py,sha256=Un10iGNwAHPifpQftyXdUwoqS-10ho6ZIesz2Ts_Iqg,72068
|
@@ -218,13 +218,13 @@ ccxt/abstract/xt.py,sha256=JkWvsic3L2O968BCr9H5Wd5NIbRE9aTT2A-9WbAtl0c,27146
|
|
218
218
|
ccxt/abstract/yobit.py,sha256=8ycfCO8ORFly9hc0Aa47sZyX4_ZKPXS9h9yJzI-uQ7Q,1339
|
219
219
|
ccxt/abstract/zaif.py,sha256=m15WHdl3gYy0GOXNZ8NEH8eE7sVh8c0T_ITNuU8vXeU,3935
|
220
220
|
ccxt/abstract/zonda.py,sha256=X-hCW0SdX3YKZWixDyW-O2211M58Rno8kKJ6quY7rw4,7183
|
221
|
-
ccxt/async_support/__init__.py,sha256=
|
221
|
+
ccxt/async_support/__init__.py,sha256=gvxdFG_MnNGhdGsC4FNnvGj1CnQ9umhcakuCO50RDQc,16230
|
222
222
|
ccxt/async_support/ace.py,sha256=zBmLUKH691a2BH1sPzlJPg-uO7lD6Ys92Rv8WSzNtoo,42607
|
223
223
|
ccxt/async_support/alpaca.py,sha256=495vDvdF1IWlsh9QhUnMtkMuINdD0EzeFGlUVqCf8TE,47682
|
224
224
|
ccxt/async_support/ascendex.py,sha256=LK259BdUqU0_STGRH6DmTgaR-7lXqFpZHFVACf2um5c,152721
|
225
225
|
ccxt/async_support/bequant.py,sha256=1hTwHovo1bW1XTIc8ZKjvJ-Xg6LfmpGdzT7TepykaVM,1188
|
226
226
|
ccxt/async_support/bigone.py,sha256=PZcs9u6FI6uAyJKiiNGIGDA-uainz4aKEOrC1Q6KIk4,93540
|
227
|
-
ccxt/async_support/binance.py,sha256=
|
227
|
+
ccxt/async_support/binance.py,sha256=nYDNOInWD94OIpVhzb_JOmjh2zDYaBaPIi_YUJXxq7Q,642904
|
228
228
|
ccxt/async_support/binancecoinm.py,sha256=yeE73xG5UXD_X3VPul6DMGnV_mgJfWYskpas1BUDdCU,1740
|
229
229
|
ccxt/async_support/binanceus.py,sha256=c-K3Tk7LaRJjmYdCx8vBOqsx01uXrtvt0PC2ekBiD0g,9177
|
230
230
|
ccxt/async_support/binanceusdm.py,sha256=8ugRkx7vyYmn67wdkEEf2f-DFMGAoC4t09usKlPVNyw,2670
|
@@ -239,7 +239,7 @@ ccxt/async_support/bitfinex2.py,sha256=vTO61ELmw5d8A7xvmINff17pCWpoiIrVnc_RJzVic
|
|
239
239
|
ccxt/async_support/bitflyer.py,sha256=hIrGMxaM78V1i-gHN2FRFAhI2aaLR21mPAoIE33fW70,41991
|
240
240
|
ccxt/async_support/bitget.py,sha256=JloBQJwLONpLsNjzTxfabc-poDryi3xqwl66UNYi8DU,426244
|
241
241
|
ccxt/async_support/bithumb.py,sha256=Q0Cx_cRKZRfdpBAhQyINm63Qw3M6BRYQRiF0UqYzfis,48214
|
242
|
-
ccxt/async_support/bitmart.py,sha256=
|
242
|
+
ccxt/async_support/bitmart.py,sha256=zIkhlHwCfAXP7Uli6PKZaZmsJV-CI8qFsKXqYo1XUxY,212893
|
243
243
|
ccxt/async_support/bitmex.py,sha256=qSKH_dXDtpY5BUrLUbESI3a3WQhBFrc1ucv1N5GDuIU,127439
|
244
244
|
ccxt/async_support/bitopro.py,sha256=HHESL0hiE0Rc0GRhFeIKnTs-eBzHEtOqqECANTSp0e0,69726
|
245
245
|
ccxt/async_support/bitpanda.py,sha256=2k3URBWrpnh2xHa7JiYenI7_4MW5UeOPGzetlmRkR4U,485
|
@@ -255,7 +255,7 @@ ccxt/async_support/btcalpha.py,sha256=DgzrJ6cczUCDZr-QLUxMpazeudEFdQ_OzXiQiJM4Hb
|
|
255
255
|
ccxt/async_support/btcbox.py,sha256=FGIj8il6VZL56_dDYsAMwp4DpdKNt_vbMXV6VZ2boCI,27968
|
256
256
|
ccxt/async_support/btcmarkets.py,sha256=x1-s5uVioHyvNJoBxhxP8eUUslTDwQnZMU0FWfu1Fd4,53047
|
257
257
|
ccxt/async_support/btcturk.py,sha256=P3bg0XG0sAi-8ge9ZFzQqZHsoGOGfxBjkhIDo4VPSK4,37210
|
258
|
-
ccxt/async_support/bybit.py,sha256=
|
258
|
+
ccxt/async_support/bybit.py,sha256=Q2BXgxR57AmDMVI_83LTAph_aL-vEFdPK2IJMYOGnjw,419671
|
259
259
|
ccxt/async_support/cex.py,sha256=5KZ9qt4WsUAkH2rkHn7zW7SwlB9FumruLELdKF4LFoE,70434
|
260
260
|
ccxt/async_support/coinbase.py,sha256=Ch_hFo2zj0qp4kuDUnebGD16pUeKs6h3HJxs5Fdpkco,218637
|
261
261
|
ccxt/async_support/coinbaseadvanced.py,sha256=Kupwnuxiu_qTjwCNV2asacoDUNFQvcaHNAznUJPhdQs,552
|
@@ -311,7 +311,7 @@ ccxt/async_support/p2b.py,sha256=aU_69L8hyfZEQ_yFJb6UoR_l0EbaeCTRgNvdDtk4QPs,545
|
|
311
311
|
ccxt/async_support/paradex.py,sha256=iN1obpvPvLikj30KiE4I7BGlBVBRLHpHifEH8vn8JdY,86210
|
312
312
|
ccxt/async_support/paymium.py,sha256=GIAgyOjR11o1pfq8om4Pwr68jMkLoEwEz7sB8lIDMI0,24607
|
313
313
|
ccxt/async_support/phemex.py,sha256=Xfa8kxrN6mEr6BGLNDnquGhMq0sk42qJ7P5Ckmb-0BE,223924
|
314
|
-
ccxt/async_support/poloniex.py,sha256=
|
314
|
+
ccxt/async_support/poloniex.py,sha256=hYmiGQfwKyYcaPp1Q1Qa4gPP0TaqJrG2367y-q0WxXE,102849
|
315
315
|
ccxt/async_support/poloniexfutures.py,sha256=iXEtcjHZBTEhgwkp8xbIqxObZf-OhfUr2yVwq5WlsMg,78937
|
316
316
|
ccxt/async_support/probit.py,sha256=8XCtYbAIIQNjfdLfMVwjaJ9vM_7QWnEQ86yYZYPlS8M,76557
|
317
317
|
ccxt/async_support/timex.py,sha256=vRHjqc-6uMgZTY-sFTBApU_QBnrUri8gaHPNw_Na3Jo,72430
|
@@ -329,7 +329,7 @@ ccxt/async_support/yobit.py,sha256=JuH_yClCl_cd5L-BMTt3MPAvIF61Wpqc3W7H-fno6Hs,5
|
|
329
329
|
ccxt/async_support/zaif.py,sha256=-ZTr8M2JaIRCL90VrbCDXBMAsZwbiwsFChSQ2rWODuQ,29044
|
330
330
|
ccxt/async_support/zonda.py,sha256=jncr6Wg12S72CTpu6mCKCse1pm1f8oefVQurQSrFvP0,81733
|
331
331
|
ccxt/async_support/base/__init__.py,sha256=aVYSsFi--b4InRs9zDN_wtCpj8odosAB726JdUHavrk,67
|
332
|
-
ccxt/async_support/base/exchange.py,sha256=
|
332
|
+
ccxt/async_support/base/exchange.py,sha256=wmK5Ls6kXKaCJYNVXKVJQh1oZN7ljh7zGUg3E5JscUk,110799
|
333
333
|
ccxt/async_support/base/throttler.py,sha256=tvDVcdRUVYi8fZRlEcnqtgzcgB_KMUMRs5Pu8tuU-tU,1847
|
334
334
|
ccxt/async_support/base/ws/__init__.py,sha256=uockzpLuwntKGZbs5EOWFe-Zg-k6Cj7GhNJLc_RX0so,1791
|
335
335
|
ccxt/async_support/base/ws/aiohttp_client.py,sha256=5IEiT0elWI9a7Vr-KV0jgmlbpLJWBzIlrLaCkTKGaqY,5752
|
@@ -343,10 +343,10 @@ ccxt/async_support/base/ws/order_book_side.py,sha256=GhnGUt78pJ-AYL_Dq9produGjmB
|
|
343
343
|
ccxt/base/__init__.py,sha256=eTx1OE3HJjspFUQjGm6LBhaQiMKJnXjkdP-JUXknyQ0,1320
|
344
344
|
ccxt/base/decimal_to_precision.py,sha256=fgWRBzRTtsf3r2INyS4f7WHlzgjB5YM1ekiwqD21aac,6634
|
345
345
|
ccxt/base/errors.py,sha256=tosnf1tDaBn4YMCbWVNWyDYzqft-ImVtyjqJb6q83Y4,4369
|
346
|
-
ccxt/base/exchange.py,sha256=
|
346
|
+
ccxt/base/exchange.py,sha256=QDmTRgOgGrNdilQd7oFL3sOhy2efnwu40KNIBOawixc,295715
|
347
347
|
ccxt/base/precise.py,sha256=koce64Yrp6vFbGijJtUt-QQ6XhJgeGTCksZ871FPp_A,8886
|
348
348
|
ccxt/base/types.py,sha256=TaP_RElKjGEZWuzyp4o4u2YhREyTG3rUeVT6gDffY9A,9613
|
349
|
-
ccxt/pro/__init__.py,sha256=
|
349
|
+
ccxt/pro/__init__.py,sha256=dLg8Q9dPmtQU9OWcHNk7pfzsohkqpI0BjmVfCbusrOE,7608
|
350
350
|
ccxt/pro/alpaca.py,sha256=xh1yg1Ok-Zh_Mfx-MBjNrfJDs6MUU0exFfEj3GuQPC4,27631
|
351
351
|
ccxt/pro/ascendex.py,sha256=181FIeztchLqGmgecRJEN8F8xEM45D5aMKhC-5nuNfU,35467
|
352
352
|
ccxt/pro/bequant.py,sha256=33OEUWBi4D9-2w8CmkwN3aF1qS-AlLqX3pxrWwNbXPY,1552
|
@@ -648,8 +648,8 @@ ccxt/test/tests_async.py,sha256=NShOLO2-HzYsh07U7aiUGssiv-AZ_p88h-NuQub9OKU,8468
|
|
648
648
|
ccxt/test/tests_helpers.py,sha256=xhOILoZ_x3RSfQjtKt6AQlkp9DkOtpTQe8GAUUZoM6s,10069
|
649
649
|
ccxt/test/tests_init.py,sha256=eVwwUHujX9t4rjgo4TqEeg7DDhR1Hb_e2SJN8NVGyl0,998
|
650
650
|
ccxt/test/tests_sync.py,sha256=6Arr2TcJpNg9eEpH_JQeBbLzaMPlb94J1P11HGlbpPg,83761
|
651
|
-
ccxt-4.3.
|
652
|
-
ccxt-4.3.
|
653
|
-
ccxt-4.3.
|
654
|
-
ccxt-4.3.
|
655
|
-
ccxt-4.3.
|
651
|
+
ccxt-4.3.80.dist-info/LICENSE.txt,sha256=EIb9221AhMHV7xF1_55STFdKTFsnJVJYkRpY2Lnvo5w,1068
|
652
|
+
ccxt-4.3.80.dist-info/METADATA,sha256=Q2E5zZZ8R_FKimgd6FpdPpSotXT_Xk42kdfCWlOBMf0,116642
|
653
|
+
ccxt-4.3.80.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
654
|
+
ccxt-4.3.80.dist-info/top_level.txt,sha256=CkQDuCTDKNcImPV60t36G6MdYfxsAPNiSaEwifVoVMo,5
|
655
|
+
ccxt-4.3.80.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|