ccxt 4.3.56__py2.py3-none-any.whl → 4.3.57__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.
Potentially problematic release.
This version of ccxt might be problematic. Click here for more details.
- ccxt/__init__.py +1 -1
- ccxt/async_support/__init__.py +1 -1
- ccxt/async_support/base/exchange.py +1 -1
- ccxt/async_support/base/ws/client.py +25 -5
- ccxt/async_support/bingx.py +45 -7
- ccxt/async_support/bitget.py +56 -47
- ccxt/async_support/coinone.py +15 -19
- ccxt/async_support/gate.py +96 -2
- ccxt/async_support/htx.py +84 -25
- ccxt/async_support/huobijp.py +61 -2
- ccxt/base/exchange.py +1 -1
- ccxt/bingx.py +45 -7
- ccxt/bitget.py +56 -47
- ccxt/coinone.py +15 -19
- ccxt/gate.py +96 -2
- ccxt/htx.py +84 -25
- ccxt/huobijp.py +61 -2
- ccxt/pro/__init__.py +1 -1
- {ccxt-4.3.56.dist-info → ccxt-4.3.57.dist-info}/METADATA +4 -4
- {ccxt-4.3.56.dist-info → ccxt-4.3.57.dist-info}/RECORD +23 -23
- {ccxt-4.3.56.dist-info → ccxt-4.3.57.dist-info}/LICENSE.txt +0 -0
- {ccxt-4.3.56.dist-info → ccxt-4.3.57.dist-info}/WHEEL +0 -0
- {ccxt-4.3.56.dist-info → ccxt-4.3.57.dist-info}/top_level.txt +0 -0
ccxt/huobijp.py
CHANGED
@@ -1468,7 +1468,61 @@ class huobijp(Exchange, ImplicitAPI):
|
|
1468
1468
|
# }
|
1469
1469
|
# }
|
1470
1470
|
#
|
1471
|
-
return response
|
1471
|
+
return self.parse_cancel_orders(response)
|
1472
|
+
|
1473
|
+
def parse_cancel_orders(self, orders):
|
1474
|
+
#
|
1475
|
+
# {
|
1476
|
+
# "success": [
|
1477
|
+
# "5983466"
|
1478
|
+
# ],
|
1479
|
+
# "failed": [
|
1480
|
+
# {
|
1481
|
+
# "err-msg": "Incorrect order state",
|
1482
|
+
# "order-state": 7,
|
1483
|
+
# "order-id": "",
|
1484
|
+
# "err-code": "order-orderstate-error",
|
1485
|
+
# "client-order-id": "first"
|
1486
|
+
# },
|
1487
|
+
# ...
|
1488
|
+
# ]
|
1489
|
+
# }
|
1490
|
+
#
|
1491
|
+
# {
|
1492
|
+
# "errors": [
|
1493
|
+
# {
|
1494
|
+
# "order_id": "769206471845261312",
|
1495
|
+
# "err_code": 1061,
|
1496
|
+
# "err_msg": "This order doesnt exist."
|
1497
|
+
# }
|
1498
|
+
# ],
|
1499
|
+
# "successes": "1258075374411399168,1258075393254871040"
|
1500
|
+
# }
|
1501
|
+
#
|
1502
|
+
successes = self.safe_string(orders, 'successes')
|
1503
|
+
success = None
|
1504
|
+
if successes is not None:
|
1505
|
+
success = successes.split(',')
|
1506
|
+
else:
|
1507
|
+
success = self.safe_list(orders, 'success', [])
|
1508
|
+
failed = self.safe_list_2(orders, 'errors', 'failed', [])
|
1509
|
+
result = []
|
1510
|
+
for i in range(0, len(success)):
|
1511
|
+
order = success[i]
|
1512
|
+
result.append(self.safe_order({
|
1513
|
+
'info': order,
|
1514
|
+
'id': order,
|
1515
|
+
'status': 'canceled',
|
1516
|
+
}))
|
1517
|
+
for i in range(0, len(failed)):
|
1518
|
+
order = failed[i]
|
1519
|
+
result.append(self.safe_order({
|
1520
|
+
'info': order,
|
1521
|
+
'id': self.safe_string_2(order, 'order-id', 'order_id'),
|
1522
|
+
'status': 'failed',
|
1523
|
+
'clientOrderId': self.safe_string(order, 'client-order-id'),
|
1524
|
+
}))
|
1525
|
+
return result
|
1472
1526
|
|
1473
1527
|
def cancel_all_orders(self, symbol: Str = None, params={}):
|
1474
1528
|
"""
|
@@ -1500,7 +1554,12 @@ class huobijp(Exchange, ImplicitAPI):
|
|
1500
1554
|
# }
|
1501
1555
|
# }
|
1502
1556
|
#
|
1503
|
-
|
1557
|
+
data = self.safe_dict(response, 'data', {})
|
1558
|
+
return [
|
1559
|
+
self.safe_order({
|
1560
|
+
'info': data,
|
1561
|
+
}),
|
1562
|
+
]
|
1504
1563
|
|
1505
1564
|
def currency_to_precision(self, code, fee, networkCode=None):
|
1506
1565
|
return self.decimal_to_precision(fee, 0, self.currencies[code]['precision'], self.precisionMode)
|
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.57
|
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
|
@@ -268,13 +268,13 @@ console.log(version, Object.keys(exchanges));
|
|
268
268
|
|
269
269
|
All-in-one browser bundle (dependencies included), served from a CDN of your choice:
|
270
270
|
|
271
|
-
* jsDelivr: https://cdn.jsdelivr.net/npm/ccxt@4.3.
|
272
|
-
* unpkg: https://unpkg.com/ccxt@4.3.
|
271
|
+
* jsDelivr: https://cdn.jsdelivr.net/npm/ccxt@4.3.57/dist/ccxt.browser.min.js
|
272
|
+
* unpkg: https://unpkg.com/ccxt@4.3.57/dist/ccxt.browser.min.js
|
273
273
|
|
274
274
|
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.
|
275
275
|
|
276
276
|
```HTML
|
277
|
-
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/ccxt@4.3.
|
277
|
+
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/ccxt@4.3.57/dist/ccxt.browser.min.js"></script>
|
278
278
|
```
|
279
279
|
|
280
280
|
Creates a global `ccxt` object:
|
@@ -1,4 +1,4 @@
|
|
1
|
-
ccxt/__init__.py,sha256=
|
1
|
+
ccxt/__init__.py,sha256=9r_LS-87przyNAaxl1gyVgLYfUF0ow7jhIC7Jo7OZZU,16236
|
2
2
|
ccxt/ace.py,sha256=as3MdzaTeU3DZU9AdCJMb6m7oOlwPThoCcaGezMA2oA,41674
|
3
3
|
ccxt/alpaca.py,sha256=0a7EdCZHvyRapkoI6obaUJBkFxDQJ5Vet5M6A1QmFGU,47325
|
4
4
|
ccxt/ascendex.py,sha256=4aEwibO_me6khr66z8JFqDBxe2gtFOWIFBE7ulBEJPs,151933
|
@@ -8,7 +8,7 @@ ccxt/binance.py,sha256=vuamBl7h8Gs4CVudPnf88RmX-elVG9BG5g3SBvEaa9Q,629421
|
|
8
8
|
ccxt/binancecoinm.py,sha256=arFnEh8mErSyi23eVPWE4iwoT7PWQyxGGVJCKCy6UJY,1702
|
9
9
|
ccxt/binanceus.py,sha256=hdcT4OnadcdFFFjF3GtM0nWv90jqojqwdVS3xWGuW40,9163
|
10
10
|
ccxt/binanceusdm.py,sha256=bAPcJj5HLxoCdPolriM8sJpoTBwbV78vBTbKRmWhNP4,2632
|
11
|
-
ccxt/bingx.py,sha256=
|
11
|
+
ccxt/bingx.py,sha256=huRN4Wuyp7xspQs5M-DLTt5XOAjiIRYNtsEUdbl7AMM,191731
|
12
12
|
ccxt/bit2c.py,sha256=KwHefm2dfgcSR5LeGbHpFQlSI3LNot8tmDEgRJc2gBc,37061
|
13
13
|
ccxt/bitbank.py,sha256=bHLOW6EAbNsjK2nXCtmxj23f2geW_-E_xfHXAvARMtw,43534
|
14
14
|
ccxt/bitbay.py,sha256=xAIjzGRDVGwoy-Gygd99H0YN4wiaz_0lR0Z14oxaaxc,478
|
@@ -17,7 +17,7 @@ ccxt/bitcoincom.py,sha256=PyWIl4nC4jp5Uba2lI1At0N_hhNyWD0DoZC_MSyL_s4,502
|
|
17
17
|
ccxt/bitfinex.py,sha256=kCRsPTyeQrerA0EGp445B3LQR0U_ScthuuGa2sAYIW0,72449
|
18
18
|
ccxt/bitfinex2.py,sha256=xljaXYKVS0vzWIeaWH8g5h-4-NkQnYMUB0Iu9SD2F1s,160640
|
19
19
|
ccxt/bitflyer.py,sha256=biQ8-J_HSb9_S6HE1LBDd6BGpIZSMxK5JyTZ3Xg1SdI,41683
|
20
|
-
ccxt/bitget.py,sha256=
|
20
|
+
ccxt/bitget.py,sha256=z4TWmsbmWwUBrhBnRJaICuY3VR_l_tdS8BF5nspAzd8,424555
|
21
21
|
ccxt/bithumb.py,sha256=Fo9NyJKahYfn-_05-zIzSXb9-CxOMw-M1Vb9mSUjS0A,45847
|
22
22
|
ccxt/bitmart.py,sha256=TtLl4zpmxvMRu9tu_BE0zsQFNFVpyR6PLUHoeaSfbek,208411
|
23
23
|
ccxt/bitmex.py,sha256=oOFatIOxvXIPOdOeeVau-IdryOeYpdCtTPGxX05HA9A,126861
|
@@ -46,7 +46,7 @@ ccxt/coinex.py,sha256=gJpDTDu_Qy-L8I7FsXbkc6HhCbUJPoX3M8cIFHS2iPc,257434
|
|
46
46
|
ccxt/coinlist.py,sha256=VYvX0vm7VvZQUm2QiXTqfZzfiCMln1fJDQnVIbXrwr8,104136
|
47
47
|
ccxt/coinmate.py,sha256=BXAq0FoDFuFxroC0DkR1H6Eas_sKv-rUaFzyBKZ5H50,46532
|
48
48
|
ccxt/coinmetro.py,sha256=1HqUu4ScH4oZbloodvn0l25y7DaUMl_5MjBf5v8z_cA,80591
|
49
|
-
ccxt/coinone.py,sha256=
|
49
|
+
ccxt/coinone.py,sha256=HovgigYComtmLTn-pCiXOdYfgd-EnCIOOASMgoXWzgQ,46682
|
50
50
|
ccxt/coinsph.py,sha256=kyTXZGOtQ-8uz52LqzN4Gt89S-qL91JfyA68htNLJr0,90858
|
51
51
|
ccxt/coinspot.py,sha256=-9oRdHdc6iWrkxXxcVF9zBashNcRJSoFORwHRa9scMc,23876
|
52
52
|
ccxt/cryptocom.py,sha256=On1dv9dS1_0cyEmyQIDBip-bLiTeQlsjmGVy_RV2qtE,130043
|
@@ -56,15 +56,15 @@ ccxt/deribit.py,sha256=n6Folkmf6Z47XL7RBII8665NWilgDqsaBm46FDaIhcY,161016
|
|
56
56
|
ccxt/digifinex.py,sha256=2fnkjz1eWP_Wjj0FOSPRcJ_hoQOy7zgLWZjFuCNOCUw,168477
|
57
57
|
ccxt/exmo.py,sha256=KlQqGZey31br-SVwhQg6mWIESyeM_wiIKRDOzIekuSs,114638
|
58
58
|
ccxt/fmfwio.py,sha256=RbVLvzPwnqfDsE7Ea-N13ISCC82eJVPsXYjrleASmew,1236
|
59
|
-
ccxt/gate.py,sha256=
|
59
|
+
ccxt/gate.py,sha256=IjZBugVhjgawvHa1rIApRbGk0kZxgEV_K9_Anvq9ogg,327258
|
60
60
|
ccxt/gateio.py,sha256=86AETJWODl_vA5VNeQRHZprmpNIY1HAxCddKZcnKSi8,445
|
61
61
|
ccxt/gemini.py,sha256=6dMbdLFa4GFjhvXprqj8kugg2Bclh5EuZ8FxZSK-zpQ,80837
|
62
62
|
ccxt/hitbtc.py,sha256=iqyd0otbWmIHUJiJ6gzIfe34IOa8PCEeS8nG6s6Ogc0,153398
|
63
63
|
ccxt/hitbtc3.py,sha256=qRAr4Zvaju9IQWRZUohdoN7xRnzIMPq8AyYb3gPv-Is,455
|
64
64
|
ccxt/hollaex.py,sha256=2KIbenZ3vcBDN_rs2CxG5_foKLaYxJd73vVV7M8n_8E,76140
|
65
|
-
ccxt/htx.py,sha256=
|
65
|
+
ccxt/htx.py,sha256=zX-0A_A7N8Zz2WP3HoXN53PsEeIcMfWzUzvkhFAyst8,427379
|
66
66
|
ccxt/huobi.py,sha256=4vaG7IRN7fyjaJ_ac6S-njlHOfSEN5de7aq0noznxYw,438
|
67
|
-
ccxt/huobijp.py,sha256=
|
67
|
+
ccxt/huobijp.py,sha256=DPg9DkSTrsFZt8bCnGcodfPPCWMKRAFyh6ti9iNU3VE,90183
|
68
68
|
ccxt/hyperliquid.py,sha256=hphleFSojYaz0raCABmnos5GAhvfBJpcJl5GPLQZRbY,102673
|
69
69
|
ccxt/idex.py,sha256=P2jNsxiwIlMgrfPKbtmjLJQrzFcWp_TjgJaLq793oco,73255
|
70
70
|
ccxt/independentreserve.py,sha256=aGmNqAGhAKThkMOT-CW6M97JME-7oSar-G2eBZ9QGZE,33489
|
@@ -216,7 +216,7 @@ ccxt/abstract/xt.py,sha256=xHHv2viFGK0_iPZ4gu6Wb0aOrpcKhr9zoY-BIPWh5bs,27028
|
|
216
216
|
ccxt/abstract/yobit.py,sha256=8ycfCO8ORFly9hc0Aa47sZyX4_ZKPXS9h9yJzI-uQ7Q,1339
|
217
217
|
ccxt/abstract/zaif.py,sha256=m15WHdl3gYy0GOXNZ8NEH8eE7sVh8c0T_ITNuU8vXeU,3935
|
218
218
|
ccxt/abstract/zonda.py,sha256=X-hCW0SdX3YKZWixDyW-O2211M58Rno8kKJ6quY7rw4,7183
|
219
|
-
ccxt/async_support/__init__.py,sha256=
|
219
|
+
ccxt/async_support/__init__.py,sha256=yVvlFXQyw5WDUPNnFH1vz18Ol62ppd4p_viwtDmXSio,16039
|
220
220
|
ccxt/async_support/ace.py,sha256=DkgKo6nZy3tv6j92mIkzhy9uDXQZt-jZ5iyEeeYoLwo,41898
|
221
221
|
ccxt/async_support/alpaca.py,sha256=a_OZIimQ-RblwXK_auxRrA1sZZhPl2UMLk3_CoEvDkA,47537
|
222
222
|
ccxt/async_support/ascendex.py,sha256=LK259BdUqU0_STGRH6DmTgaR-7lXqFpZHFVACf2um5c,152721
|
@@ -226,7 +226,7 @@ ccxt/async_support/binance.py,sha256=Vop1XLBoCTy_-7YwfFH4R4hV8m2CiNMRxzAXwYPPgYk
|
|
226
226
|
ccxt/async_support/binancecoinm.py,sha256=yeE73xG5UXD_X3VPul6DMGnV_mgJfWYskpas1BUDdCU,1740
|
227
227
|
ccxt/async_support/binanceus.py,sha256=c-K3Tk7LaRJjmYdCx8vBOqsx01uXrtvt0PC2ekBiD0g,9177
|
228
228
|
ccxt/async_support/binanceusdm.py,sha256=8ugRkx7vyYmn67wdkEEf2f-DFMGAoC4t09usKlPVNyw,2670
|
229
|
-
ccxt/async_support/bingx.py,sha256=
|
229
|
+
ccxt/async_support/bingx.py,sha256=B5AMRPWWdhcAz5LQL4bIvHWjnSCs1PT9-rCgdL6w_Zo,192779
|
230
230
|
ccxt/async_support/bit2c.py,sha256=1s8GGFqdk9FHfG6-fCmJGePppIpHDHZkjN7u6gPekP8,37273
|
231
231
|
ccxt/async_support/bitbank.py,sha256=To1wSMT8i2bVRZABSXIuB2pyeLhmKkE6CHP4i9LMQQU,43794
|
232
232
|
ccxt/async_support/bitbay.py,sha256=jcaEXi2IhYTva8ezO_SfJhwxEZk7HST4J3NaxD16BQA,492
|
@@ -235,7 +235,7 @@ ccxt/async_support/bitcoincom.py,sha256=RiqwhK3RfxQ_PXTa860fphDCvwA8dalL-_rXlK85
|
|
235
235
|
ccxt/async_support/bitfinex.py,sha256=B8nxACqMxUcmuekpMWtbrOA01lqoc9jneZO_mNLkizI,72889
|
236
236
|
ccxt/async_support/bitfinex2.py,sha256=r_hyChSP4OVNjoqQkjtZSZ-BNT7Cup7Mj1ICwvajrEc,161374
|
237
237
|
ccxt/async_support/bitflyer.py,sha256=hIrGMxaM78V1i-gHN2FRFAhI2aaLR21mPAoIE33fW70,41991
|
238
|
-
ccxt/async_support/bitget.py,sha256
|
238
|
+
ccxt/async_support/bitget.py,sha256=ys-XR9V7wSj4rMv89JYu7nEnO_RPO5x3UGdnXJTncEo,426179
|
239
239
|
ccxt/async_support/bithumb.py,sha256=oBk763YnXA9hsF1TCXAqWmIpd3hNGHuvFLk9HeNn10E,46077
|
240
240
|
ccxt/async_support/bitmart.py,sha256=P7s4Obn75lcb-cUOJZkpq6rDcDZVZvKjTT5w_qe5Sfg,209367
|
241
241
|
ccxt/async_support/bitmex.py,sha256=qSKH_dXDtpY5BUrLUbESI3a3WQhBFrc1ucv1N5GDuIU,127439
|
@@ -264,7 +264,7 @@ ccxt/async_support/coinex.py,sha256=FsZZzLbP3cPtK9fANiucM1uondii2GF6sw9OzZPKXKM,
|
|
264
264
|
ccxt/async_support/coinlist.py,sha256=ZPIsKAW5A4vtTGM6dhWLct5sh-vw3K2sl7-MtXYdLvM,104624
|
265
265
|
ccxt/async_support/coinmate.py,sha256=r9aFH4smKVmGAOv_3EFnzhb-BvD-bDf8BKKWKUKtxvs,46798
|
266
266
|
ccxt/async_support/coinmetro.py,sha256=BloSsFuLoLTt_lnaZL051g75Yn1M2LIf7kMCZLOiYTc,80911
|
267
|
-
ccxt/async_support/coinone.py,sha256=
|
267
|
+
ccxt/async_support/coinone.py,sha256=6ipxZkO1kP1AM1zLJc0erUze-PzsFsTQXYv4UfY1mH4,46924
|
268
268
|
ccxt/async_support/coinsph.py,sha256=8BKDibWuUgmbA589V3co-RsabjCq4T7sYV6_p0w39_0,91292
|
269
269
|
ccxt/async_support/coinspot.py,sha256=54ogK4qq8RNEnUIR17lpbGPIR9Ed1SXlDtxSKoxi1uQ,24034
|
270
270
|
ccxt/async_support/cryptocom.py,sha256=QhxHap0FFVDIRjPed2SFFOmFP2XbqLjctjK6MU11nCc,130615
|
@@ -274,15 +274,15 @@ ccxt/async_support/deribit.py,sha256=_Q2LcEW01ktuz2BKeFQRlsP5GDjC1XJFCjWKoqTdM5Y
|
|
274
274
|
ccxt/async_support/digifinex.py,sha256=YHL4lB4a07Kic2MRljzTiG5Oth0g1n4h0lfGn9qKvhk,169447
|
275
275
|
ccxt/async_support/exmo.py,sha256=uVJsy3mfNLpfbY0ndl2EF9hipUylEw8J58J3wCGyyA0,115270
|
276
276
|
ccxt/async_support/fmfwio.py,sha256=lzfSnPrB2ARcC3EIqAuBM4vyg6LJ6n8RE71Zvt3ez1s,1250
|
277
|
-
ccxt/async_support/gate.py,sha256=
|
277
|
+
ccxt/async_support/gate.py,sha256=SOU4qOkFUtO3m0GoqbtLncGLLEL1yx28cv2r8C_0HAk,328978
|
278
278
|
ccxt/async_support/gateio.py,sha256=6_t032F9p9x5KGTjtSuqGXITzFOx-XAQBYLpsuQjzxw,459
|
279
279
|
ccxt/async_support/gemini.py,sha256=197OkPq1ndBA27J3fKqFY3iMJ_8W-Iu6Af0wNGqvO7I,81350
|
280
280
|
ccxt/async_support/hitbtc.py,sha256=jWmyRAy_wkpEidgjCxU0gWur99YJjYHPjD9CN4vJbUE,154444
|
281
281
|
ccxt/async_support/hitbtc3.py,sha256=dmSYoD2o4av_zzbZI8HNIoj8BWxA7QozsVpy8JaOXzU,469
|
282
282
|
ccxt/async_support/hollaex.py,sha256=msUnnbWLNeCxFW77BnfLoFWBdvQIDwV7Rtbi9TA4TYY,76574
|
283
|
-
ccxt/async_support/htx.py,sha256=
|
283
|
+
ccxt/async_support/htx.py,sha256=VlGAn4sqvmLO7u4tJHb4ZhNkFm8OdUyLOyy57w6siDY,429771
|
284
284
|
ccxt/async_support/huobi.py,sha256=fup0j6wQ1khAtfbb1H4CSyJAOzhxuoHMmrM6sgTuhr8,452
|
285
|
-
ccxt/async_support/huobijp.py,sha256=
|
285
|
+
ccxt/async_support/huobijp.py,sha256=e4vfgX8c9eTLZk6bOrB8_Upq13PLDjTLiR109Pj4phM,90683
|
286
286
|
ccxt/async_support/hyperliquid.py,sha256=78zRnwQ4ct5tT0mGppWVy6K1eKlxWU_6bsPU__iz2ao,103193
|
287
287
|
ccxt/async_support/idex.py,sha256=UcAvdMc2CP_6E8lET4rmQiIP-RaUfZHSo6pQeA17v-g,73731
|
288
288
|
ccxt/async_support/independentreserve.py,sha256=6da0B8N4rNrd1CjxjtYU-mHpmemIBexXrKAB2r4SVPc,33749
|
@@ -326,12 +326,12 @@ ccxt/async_support/yobit.py,sha256=4Wwy8piYAfsxnldU2LRXk986I4kY5mlzhxxeuIJg0fc,5
|
|
326
326
|
ccxt/async_support/zaif.py,sha256=-ZTr8M2JaIRCL90VrbCDXBMAsZwbiwsFChSQ2rWODuQ,29044
|
327
327
|
ccxt/async_support/zonda.py,sha256=ef9Ch_ESnBldY8zHlqsff6hzU_pU8bdvUbWNLpFvUBM,81720
|
328
328
|
ccxt/async_support/base/__init__.py,sha256=aVYSsFi--b4InRs9zDN_wtCpj8odosAB726JdUHavrk,67
|
329
|
-
ccxt/async_support/base/exchange.py,sha256=
|
329
|
+
ccxt/async_support/base/exchange.py,sha256=95B7f67BtickgtA03ZgWiwV-_5-oNpgg0kr382GQMS0,110787
|
330
330
|
ccxt/async_support/base/throttler.py,sha256=tvDVcdRUVYi8fZRlEcnqtgzcgB_KMUMRs5Pu8tuU-tU,1847
|
331
331
|
ccxt/async_support/base/ws/__init__.py,sha256=uockzpLuwntKGZbs5EOWFe-Zg-k6Cj7GhNJLc_RX0so,1791
|
332
332
|
ccxt/async_support/base/ws/aiohttp_client.py,sha256=5IEiT0elWI9a7Vr-KV0jgmlbpLJWBzIlrLaCkTKGaqY,5752
|
333
333
|
ccxt/async_support/base/ws/cache.py,sha256=jK1nzPIijhBZz9eXItbFULfZRv4uV2HGOmVwhHEyahg,8134
|
334
|
-
ccxt/async_support/base/ws/client.py,sha256=
|
334
|
+
ccxt/async_support/base/ws/client.py,sha256=SejMRUpvAt-N7RCZZTCJd_wiNtTQRPD0q3wVEwumunE,8140
|
335
335
|
ccxt/async_support/base/ws/fast_client.py,sha256=r5Ej3hjCY5k-e4D2gXbo5TE2EXCItVg8fJ8i3O3djsQ,3864
|
336
336
|
ccxt/async_support/base/ws/functions.py,sha256=qwvEnjtINWL5ZU-dbbeIunjyBxzFqbGWHfVhxqAcKug,1499
|
337
337
|
ccxt/async_support/base/ws/future.py,sha256=poJororPTavN1YT4whp9VXDd_rwqkn-3EDeiBoGmKLs,1984
|
@@ -340,10 +340,10 @@ ccxt/async_support/base/ws/order_book_side.py,sha256=GhnGUt78pJ-AYL_Dq9produGjmB
|
|
340
340
|
ccxt/base/__init__.py,sha256=eTx1OE3HJjspFUQjGm6LBhaQiMKJnXjkdP-JUXknyQ0,1320
|
341
341
|
ccxt/base/decimal_to_precision.py,sha256=fgWRBzRTtsf3r2INyS4f7WHlzgjB5YM1ekiwqD21aac,6634
|
342
342
|
ccxt/base/errors.py,sha256=FGdyULeNCNcl52gA_CNhe2dZmat9GJGkTdlIyDXAF_A,4213
|
343
|
-
ccxt/base/exchange.py,sha256=
|
343
|
+
ccxt/base/exchange.py,sha256=BCK0Cxk3QA8QrNLmVhzjWChbeaqKY8K3xsRCBidE6-s,281804
|
344
344
|
ccxt/base/precise.py,sha256=koce64Yrp6vFbGijJtUt-QQ6XhJgeGTCksZ871FPp_A,8886
|
345
345
|
ccxt/base/types.py,sha256=JfD1eNzfKS06XwwLUobK9d2SfVGRqbVfMY0ApU-Hn9A,9349
|
346
|
-
ccxt/pro/__init__.py,sha256
|
346
|
+
ccxt/pro/__init__.py,sha256=lzt86lnUjX_b1Fn8e-4JAU6Tm4WZohFxW2HEgscUmQU,7308
|
347
347
|
ccxt/pro/alpaca.py,sha256=QA_Dmxu1ockCSYJMbOodbNke3t1tAl0hFL-q56UMQWE,27224
|
348
348
|
ccxt/pro/ascendex.py,sha256=181FIeztchLqGmgecRJEN8F8xEM45D5aMKhC-5nuNfU,35467
|
349
349
|
ccxt/pro/bequant.py,sha256=5zbsP8BHQTUZ8ZNL6uaACxDbUClgkOV4SYfXT_LfQVg,1351
|
@@ -513,8 +513,8 @@ ccxt/test/tests_async.py,sha256=A7x_JRK--w7Yin1laqoKmfdrAxu9ebjPVNzMRUFau-Y,8091
|
|
513
513
|
ccxt/test/tests_helpers.py,sha256=V0cdMs_YOgSJ-oKTemutiTAG6y_0pdMasnuF7_xHsBg,9688
|
514
514
|
ccxt/test/tests_init.py,sha256=gH_brb5irCCBXOIL09xjoQIRV2852lhV_PxnZpIhPUc,992
|
515
515
|
ccxt/test/tests_sync.py,sha256=bNkfdsbLylzSQITtJ_j0qw_aItx218c95bK35tr1qpM,80018
|
516
|
-
ccxt-4.3.
|
517
|
-
ccxt-4.3.
|
518
|
-
ccxt-4.3.
|
519
|
-
ccxt-4.3.
|
520
|
-
ccxt-4.3.
|
516
|
+
ccxt-4.3.57.dist-info/LICENSE.txt,sha256=EIb9221AhMHV7xF1_55STFdKTFsnJVJYkRpY2Lnvo5w,1068
|
517
|
+
ccxt-4.3.57.dist-info/METADATA,sha256=EW8ccN7yJK3_WUo7n9oUPANs1cKV4LK92KXY5bCld5Q,115795
|
518
|
+
ccxt-4.3.57.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
519
|
+
ccxt-4.3.57.dist-info/top_level.txt,sha256=CkQDuCTDKNcImPV60t36G6MdYfxsAPNiSaEwifVoVMo,5
|
520
|
+
ccxt-4.3.57.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|