ccxt 4.3.51__py2.py3-none-any.whl → 4.3.52__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/abstract/okx.py +1 -0
- ccxt/async_support/__init__.py +1 -1
- ccxt/async_support/base/exchange.py +1 -1
- ccxt/async_support/binance.py +2 -2
- ccxt/async_support/bybit.py +5 -0
- ccxt/async_support/krakenfutures.py +1 -0
- ccxt/async_support/okx.py +1 -0
- ccxt/base/exchange.py +1 -1
- ccxt/binance.py +2 -2
- ccxt/bybit.py +5 -0
- ccxt/krakenfutures.py +1 -0
- ccxt/okx.py +1 -0
- ccxt/pro/__init__.py +1 -1
- ccxt/pro/okx.py +1 -1
- ccxt-4.3.52.dist-info/LICENSE.txt +21 -0
- {ccxt-4.3.51.dist-info → ccxt-4.3.52.dist-info}/METADATA +16 -15
- {ccxt-4.3.51.dist-info → ccxt-4.3.52.dist-info}/RECORD +20 -19
- {ccxt-4.3.51.dist-info → ccxt-4.3.52.dist-info}/WHEEL +1 -1
- {ccxt-4.3.51.dist-info → ccxt-4.3.52.dist-info}/top_level.txt +0 -0
ccxt/__init__.py
CHANGED
ccxt/abstract/okx.py
CHANGED
@@ -223,6 +223,7 @@ class ImplicitAPI:
|
|
223
223
|
private_post_sprd_cancel_order = privatePostSprdCancelOrder = Entry('sprd/cancel-order', 'private', 'POST', {'cost': 1})
|
224
224
|
private_post_sprd_mass_cancel = privatePostSprdMassCancel = Entry('sprd/mass-cancel', 'private', 'POST', {'cost': 1})
|
225
225
|
private_post_sprd_amend_order = privatePostSprdAmendOrder = Entry('sprd/amend-order', 'private', 'POST', {'cost': 1})
|
226
|
+
private_post_sprd_cancel_all_after = privatePostSprdCancelAllAfter = Entry('sprd/cancel-all-after', 'private', 'POST', {'cost': 10})
|
226
227
|
private_post_trade_order = privatePostTradeOrder = Entry('trade/order', 'private', 'POST', {'cost': 0.3333333333333333})
|
227
228
|
private_post_trade_batch_orders = privatePostTradeBatchOrders = Entry('trade/batch-orders', 'private', 'POST', {'cost': 0.06666666666666667})
|
228
229
|
private_post_trade_cancel_order = privatePostTradeCancelOrder = Entry('trade/cancel-order', 'private', 'POST', {'cost': 0.3333333333333333})
|
ccxt/async_support/__init__.py
CHANGED
ccxt/async_support/binance.py
CHANGED
@@ -10283,9 +10283,9 @@ class binance(Exchange, ImplicitAPI):
|
|
10283
10283
|
orderidlistLength = len(orderidlist)
|
10284
10284
|
origclientorderidlistLength = len(origclientorderidlist)
|
10285
10285
|
if orderidlistLength > 0:
|
10286
|
-
query = query + '&' + 'orderidlist
|
10286
|
+
query = query + '&' + 'orderidlist=%5B' + '%2C'.join(orderidlist) + '%5D'
|
10287
10287
|
if origclientorderidlistLength > 0:
|
10288
|
-
query = query + '&' + 'origclientorderidlist
|
10288
|
+
query = query + '&' + 'origclientorderidlist=%5B' + '%2C'.join(origclientorderidlist) + '%5D'
|
10289
10289
|
else:
|
10290
10290
|
query = self.rawencode(extendedParams)
|
10291
10291
|
else:
|
ccxt/async_support/bybit.py
CHANGED
@@ -4839,9 +4839,14 @@ class bybit(Exchange, ImplicitAPI):
|
|
4839
4839
|
:param str [params.baseCoin]: Base coin. Supports linear, inverse & option
|
4840
4840
|
:param str [params.settleCoin]: Settle coin. Supports linear, inverse & option
|
4841
4841
|
:param str [params.orderFilter]: 'Order' or 'StopOrder' or 'tpslOrder'
|
4842
|
+
:param boolean [params.paginate]: default False, when True will automatically paginate by calling self endpoint multiple times. See in the docs all the [availble parameters](https://github.com/ccxt/ccxt/wiki/Manual#pagination-params)
|
4842
4843
|
:returns Order[]: a list of `order structures <https://docs.ccxt.com/#/?id=order-structure>`
|
4843
4844
|
"""
|
4844
4845
|
await self.load_markets()
|
4846
|
+
paginate = False
|
4847
|
+
paginate, params = self.handle_option_and_params(params, 'fetchOpenOrders', 'paginate')
|
4848
|
+
if paginate:
|
4849
|
+
return await self.fetch_paginated_call_cursor('fetchOpenOrders', symbol, since, limit, params, 'nextPageCursor', 'cursor', None, 50)
|
4845
4850
|
enableUnifiedMargin, enableUnifiedAccount = await self.is_unified_enabled()
|
4846
4851
|
isUnifiedAccount = (enableUnifiedMargin or enableUnifiedAccount)
|
4847
4852
|
request: dict = {}
|
@@ -96,6 +96,7 @@ class krakenfutures(Exchange, ImplicitAPI):
|
|
96
96
|
'public': 'https://demo-futures.kraken.com/derivatives/api/',
|
97
97
|
'private': 'https://demo-futures.kraken.com/derivatives/api/',
|
98
98
|
'charts': 'https://demo-futures.kraken.com/api/charts/',
|
99
|
+
'history': 'https://demo-futures.kraken.com/api/history/',
|
99
100
|
'www': 'https://demo-futures.kraken.com',
|
100
101
|
},
|
101
102
|
'logo': 'https://user-images.githubusercontent.com/24300605/81436764-b22fd580-9172-11ea-9703-742783e6376d.jpg',
|
ccxt/async_support/okx.py
CHANGED
ccxt/base/exchange.py
CHANGED
ccxt/binance.py
CHANGED
@@ -10282,9 +10282,9 @@ class binance(Exchange, ImplicitAPI):
|
|
10282
10282
|
orderidlistLength = len(orderidlist)
|
10283
10283
|
origclientorderidlistLength = len(origclientorderidlist)
|
10284
10284
|
if orderidlistLength > 0:
|
10285
|
-
query = query + '&' + 'orderidlist
|
10285
|
+
query = query + '&' + 'orderidlist=%5B' + '%2C'.join(orderidlist) + '%5D'
|
10286
10286
|
if origclientorderidlistLength > 0:
|
10287
|
-
query = query + '&' + 'origclientorderidlist
|
10287
|
+
query = query + '&' + 'origclientorderidlist=%5B' + '%2C'.join(origclientorderidlist) + '%5D'
|
10288
10288
|
else:
|
10289
10289
|
query = self.rawencode(extendedParams)
|
10290
10290
|
else:
|
ccxt/bybit.py
CHANGED
@@ -4838,9 +4838,14 @@ class bybit(Exchange, ImplicitAPI):
|
|
4838
4838
|
:param str [params.baseCoin]: Base coin. Supports linear, inverse & option
|
4839
4839
|
:param str [params.settleCoin]: Settle coin. Supports linear, inverse & option
|
4840
4840
|
:param str [params.orderFilter]: 'Order' or 'StopOrder' or 'tpslOrder'
|
4841
|
+
:param boolean [params.paginate]: default False, when True will automatically paginate by calling self endpoint multiple times. See in the docs all the [availble parameters](https://github.com/ccxt/ccxt/wiki/Manual#pagination-params)
|
4841
4842
|
:returns Order[]: a list of `order structures <https://docs.ccxt.com/#/?id=order-structure>`
|
4842
4843
|
"""
|
4843
4844
|
self.load_markets()
|
4845
|
+
paginate = False
|
4846
|
+
paginate, params = self.handle_option_and_params(params, 'fetchOpenOrders', 'paginate')
|
4847
|
+
if paginate:
|
4848
|
+
return self.fetch_paginated_call_cursor('fetchOpenOrders', symbol, since, limit, params, 'nextPageCursor', 'cursor', None, 50)
|
4844
4849
|
enableUnifiedMargin, enableUnifiedAccount = self.is_unified_enabled()
|
4845
4850
|
isUnifiedAccount = (enableUnifiedMargin or enableUnifiedAccount)
|
4846
4851
|
request: dict = {}
|
ccxt/krakenfutures.py
CHANGED
@@ -96,6 +96,7 @@ class krakenfutures(Exchange, ImplicitAPI):
|
|
96
96
|
'public': 'https://demo-futures.kraken.com/derivatives/api/',
|
97
97
|
'private': 'https://demo-futures.kraken.com/derivatives/api/',
|
98
98
|
'charts': 'https://demo-futures.kraken.com/api/charts/',
|
99
|
+
'history': 'https://demo-futures.kraken.com/api/history/',
|
99
100
|
'www': 'https://demo-futures.kraken.com',
|
100
101
|
},
|
101
102
|
'logo': 'https://user-images.githubusercontent.com/24300605/81436764-b22fd580-9172-11ea-9703-742783e6376d.jpg',
|
ccxt/okx.py
CHANGED
ccxt/pro/__init__.py
CHANGED
ccxt/pro/okx.py
CHANGED
@@ -0,0 +1,21 @@
|
|
1
|
+
MIT License
|
2
|
+
|
3
|
+
Copyright © 2024 Igor Kroitor
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
13
|
+
copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
21
|
+
SOFTWARE.
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: ccxt
|
3
|
-
Version: 4.3.
|
3
|
+
Version: 4.3.52
|
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
|
@@ -33,19 +33,20 @@ Classifier: Programming Language :: PHP
|
|
33
33
|
Classifier: Operating System :: OS Independent
|
34
34
|
Classifier: Environment :: Console
|
35
35
|
Description-Content-Type: text/markdown
|
36
|
-
|
37
|
-
Requires-Dist:
|
38
|
-
Requires-Dist:
|
39
|
-
Requires-Dist:
|
40
|
-
Requires-Dist:
|
41
|
-
Requires-Dist:
|
42
|
-
Requires-Dist:
|
43
|
-
Requires-Dist:
|
36
|
+
License-File: LICENSE.txt
|
37
|
+
Requires-Dist: setuptools (>=60.9.0)
|
38
|
+
Requires-Dist: certifi (>=2018.1.18)
|
39
|
+
Requires-Dist: requests (>=2.18.4)
|
40
|
+
Requires-Dist: cryptography (>=2.6.1)
|
41
|
+
Requires-Dist: typing-extensions (>=4.4.0)
|
42
|
+
Requires-Dist: aiohttp (>=3.8) ; python_version>="3.5.2"
|
43
|
+
Requires-Dist: aiodns (>=1.1.1) ; python_version>="3.5.2"
|
44
|
+
Requires-Dist: yarl (>=1.7.2) ; python_version>="3.5.2"
|
44
45
|
Provides-Extra: qa
|
45
|
-
Requires-Dist: ruff ==0.0.292 ; extra == 'qa'
|
46
|
-
Requires-Dist: tox >=4.8.0 ; extra == 'qa'
|
46
|
+
Requires-Dist: ruff (==0.0.292) ; extra == 'qa'
|
47
|
+
Requires-Dist: tox (>=4.8.0) ; extra == 'qa'
|
47
48
|
Provides-Extra: type
|
48
|
-
Requires-Dist: mypy ==1.6.1 ; extra == 'type'
|
49
|
+
Requires-Dist: mypy (==1.6.1) ; extra == 'type'
|
49
50
|
|
50
51
|
# CCXT – CryptoCurrency eXchange Trading Library
|
51
52
|
|
@@ -268,13 +269,13 @@ console.log(version, Object.keys(exchanges));
|
|
268
269
|
|
269
270
|
All-in-one browser bundle (dependencies included), served from a CDN of your choice:
|
270
271
|
|
271
|
-
* jsDelivr: https://cdn.jsdelivr.net/npm/ccxt@4.3.
|
272
|
-
* unpkg: https://unpkg.com/ccxt@4.3.
|
272
|
+
* jsDelivr: https://cdn.jsdelivr.net/npm/ccxt@4.3.52/dist/ccxt.browser.min.js
|
273
|
+
* unpkg: https://unpkg.com/ccxt@4.3.52/dist/ccxt.browser.min.js
|
273
274
|
|
274
275
|
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
276
|
|
276
277
|
```HTML
|
277
|
-
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/ccxt@4.3.
|
278
|
+
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/ccxt@4.3.52/dist/ccxt.browser.min.js"></script>
|
278
279
|
```
|
279
280
|
|
280
281
|
Creates a global `ccxt` object:
|
@@ -1,10 +1,10 @@
|
|
1
|
-
ccxt/__init__.py,sha256=
|
1
|
+
ccxt/__init__.py,sha256=ewqeWlOySgdh03DNdpSjA867qPcsAR7qPxyhwI1Vq30,16139
|
2
2
|
ccxt/ace.py,sha256=RC6jY5dSbiE4cI_MS0thZbDArWn3Drl8Vm1NFzTTQaI,41675
|
3
3
|
ccxt/alpaca.py,sha256=EZ7uF3XI8EXXIsCZ-UVpruBXS96Kps6WOOukmdcgCn0,47326
|
4
4
|
ccxt/ascendex.py,sha256=rUUU3n4j8QrMrJCk4pVwVastIYzS3eDTUAL9R2ePErk,151832
|
5
5
|
ccxt/bequant.py,sha256=RBiAmaTbL35DgiV3Hl6uchLUd78V0z1T9riTlNsrpdc,1174
|
6
6
|
ccxt/bigone.py,sha256=5GC1EYr5JbS9utI01_tzFvr41zcf3Q6zxECqV7LbaJE,92435
|
7
|
-
ccxt/binance.py,sha256=
|
7
|
+
ccxt/binance.py,sha256=a8HM3ciSxx8CM3iM27XjE5liBcyNZoPGovoY9R4Ajws,629382
|
8
8
|
ccxt/binancecoinm.py,sha256=arFnEh8mErSyi23eVPWE4iwoT7PWQyxGGVJCKCy6UJY,1702
|
9
9
|
ccxt/binanceus.py,sha256=hdcT4OnadcdFFFjF3GtM0nWv90jqojqwdVS3xWGuW40,9163
|
10
10
|
ccxt/binanceusdm.py,sha256=bAPcJj5HLxoCdPolriM8sJpoTBwbV78vBTbKRmWhNP4,2632
|
@@ -35,7 +35,7 @@ ccxt/btcalpha.py,sha256=LyqEmXi-h6pz6MaVcBLWGBDGMuDiu2cXbwk35jXb1_k,36967
|
|
35
35
|
ccxt/btcbox.py,sha256=1Vs2A4jOe5Wc4qgOblDBrIyRmp0m_aQZCk9-R7DvSqs,23588
|
36
36
|
ccxt/btcmarkets.py,sha256=hHxrZSgrjdgvaXEJkDGPQbKxlwT8Dz1XN3UwhvYqmys,52632
|
37
37
|
ccxt/btcturk.py,sha256=IqUB3IL4pJlIWEMfD50FNH7gcycC6Q9rLdRe7RZaUro,36993
|
38
|
-
ccxt/bybit.py,sha256=
|
38
|
+
ccxt/bybit.py,sha256=bu-CVliRpm13oiKgtaCa1DwRWPM6463Lobfelhqks_A,414954
|
39
39
|
ccxt/cex.py,sha256=IUb295DSS6H3SsPbCjvBKPzzNpQYvBXaRqFF-T450wM,70086
|
40
40
|
ccxt/coinbase.py,sha256=jTQ91In82SqxfgMJ7kyHD2b8NqW_vOWchmTm825ADac,217233
|
41
41
|
ccxt/coinbaseadvanced.py,sha256=d5g6nRx-NCcCwZDdtp8FsI2D-pRjSvnAP9ISSKY_nCQ,538
|
@@ -70,7 +70,7 @@ ccxt/idex.py,sha256=wbxMuH-D06NblL5gZj5--P6MLm2lMF2PObYhDNcE78U,73256
|
|
70
70
|
ccxt/independentreserve.py,sha256=JKXu3cYYAe7XW_wANllTYAQa3uH_xsNFdT2a-Y1rI98,33490
|
71
71
|
ccxt/indodax.py,sha256=nNQuN0EKOppv9KtpkyrWAXAHFY6k5a0wnxNZ55h_dXs,53432
|
72
72
|
ccxt/kraken.py,sha256=nWFjVkMF6MwXmr5PbCOVcvQScOSM67LZPuLU_tgV2q0,129156
|
73
|
-
ccxt/krakenfutures.py,sha256=
|
73
|
+
ccxt/krakenfutures.py,sha256=2K40RYEqHB2kgo9715eXc8O2SKcZpAb26iRdC70ftts,119521
|
74
74
|
ccxt/kucoin.py,sha256=Uo7k07ytA-UZ241kcN-tcJ4388NcHDpBFQO4Jr86Udc,221593
|
75
75
|
ccxt/kucoinfutures.py,sha256=lhfjKUQcSRPDltONm0t_PVnewWlwrvP97RnzTD1oSh4,124564
|
76
76
|
ccxt/kuna.py,sha256=C0TwihuJzJ1qHOC7TEiwmcLi40ohMU7SjnDucyMur0k,96188
|
@@ -84,7 +84,7 @@ ccxt/ndax.py,sha256=mLQTCivf3KcSy2UPQq0ah7W6lkZlTR_Dl1LiTxNYHbc,108948
|
|
84
84
|
ccxt/novadax.py,sha256=wbDaAYYvn3Xo4MG7uOIzkzc9hOjeymZbFzmdacup-SA,64437
|
85
85
|
ccxt/oceanex.py,sha256=FqoJb_yUOwMqS2wJLZsSy-SOtlKgZhW5xn6ZYMBvs0U,38022
|
86
86
|
ccxt/okcoin.py,sha256=ZgcUzRfL5UnquTqze3WOkQttZF-Fcq-9p13YiNHYixg,151402
|
87
|
-
ccxt/okx.py,sha256=
|
87
|
+
ccxt/okx.py,sha256=7y_FbFqUpB3d6rAQn0b6YiZiF7ihnAu1qwWYb598bUI,378487
|
88
88
|
ccxt/onetrading.py,sha256=2nSe_Z_Jy7O4rPggwbY17M6oimu-t0PkeTejTu26XcA,88340
|
89
89
|
ccxt/oxfun.py,sha256=k_0Wixo0hQt6MVHR4g61IgWG5qJazAoYoZ3ux2EtD4Y,124653
|
90
90
|
ccxt/p2b.py,sha256=_kQjmJ1O9sgb5HnNsefD0Jy-DejW4chndqraV5jV3ak,54334
|
@@ -192,7 +192,7 @@ ccxt/abstract/ndax.py,sha256=M98Ys406KT6T19Y98dXriD6YjzfglHHbnfQw-PDYWtM,11878
|
|
192
192
|
ccxt/abstract/novadax.py,sha256=IvQFP_v2Q-Sx0tK2bXx4oY81rtNwC7gkc75p_E2jhKw,3093
|
193
193
|
ccxt/abstract/oceanex.py,sha256=a0xAelMYDY_J3QwwLyIX2tGQcv4z2gmX_yJyC6FqoFg,1721
|
194
194
|
ccxt/abstract/okcoin.py,sha256=3NmYh-68W_4AXmkqjkf9dRaJcPgNYQG5mKZssJKT4gs,9414
|
195
|
-
ccxt/abstract/okx.py,sha256=
|
195
|
+
ccxt/abstract/okx.py,sha256=wc6HcjsIZNH9fn5xDt-u1kW2VXO16GiWsUyTRjsdvSo,48438
|
196
196
|
ccxt/abstract/onetrading.py,sha256=TtJq4d44lrutV8wcK0lX4v0EfQ72ly6fxR-zB7-FSuI,3859
|
197
197
|
ccxt/abstract/oxfun.py,sha256=bv4FJPe1H5ouMT_gRHVQtvV0MrMZhc3US-DMwnDM4Js,3457
|
198
198
|
ccxt/abstract/p2b.py,sha256=XwaH1hLIi2T6RHltUwFj28Y5fbo6dc0jbjI01sVeOJw,2054
|
@@ -214,13 +214,13 @@ ccxt/abstract/xt.py,sha256=xHHv2viFGK0_iPZ4gu6Wb0aOrpcKhr9zoY-BIPWh5bs,27028
|
|
214
214
|
ccxt/abstract/yobit.py,sha256=8ycfCO8ORFly9hc0Aa47sZyX4_ZKPXS9h9yJzI-uQ7Q,1339
|
215
215
|
ccxt/abstract/zaif.py,sha256=m15WHdl3gYy0GOXNZ8NEH8eE7sVh8c0T_ITNuU8vXeU,3935
|
216
216
|
ccxt/abstract/zonda.py,sha256=X-hCW0SdX3YKZWixDyW-O2211M58Rno8kKJ6quY7rw4,7183
|
217
|
-
ccxt/async_support/__init__.py,sha256=
|
217
|
+
ccxt/async_support/__init__.py,sha256=mDjnp4FqQOP_NuT_YIhVgk3-S4yBc277Wj6_di6xoEU,15932
|
218
218
|
ccxt/async_support/ace.py,sha256=ffpHbADxBOtT3QliUmoex2pTS7sSWB7CwO_SAPKJqDs,41899
|
219
219
|
ccxt/async_support/alpaca.py,sha256=3845DgojoA1p0pxrqnDIqHbbRcEwZhZIkE4aygD5ics,47538
|
220
220
|
ccxt/async_support/ascendex.py,sha256=7tZ4C7FfzmuB_ADYjl6IkyQQ5JG0Vt1AD_B3fTeY6V0,152620
|
221
221
|
ccxt/async_support/bequant.py,sha256=1hTwHovo1bW1XTIc8ZKjvJ-Xg6LfmpGdzT7TepykaVM,1188
|
222
222
|
ccxt/async_support/bigone.py,sha256=sjHT2w4iVYyNCELOhrgIxn3kDQsSfnl8l9HK73-RQrA,92889
|
223
|
-
ccxt/async_support/binance.py,sha256=
|
223
|
+
ccxt/async_support/binance.py,sha256=mEfPh9zKmHUB3zrcF2BlEmkyge2oLqwhqh13x4fXp00,632098
|
224
224
|
ccxt/async_support/binancecoinm.py,sha256=yeE73xG5UXD_X3VPul6DMGnV_mgJfWYskpas1BUDdCU,1740
|
225
225
|
ccxt/async_support/binanceus.py,sha256=c-K3Tk7LaRJjmYdCx8vBOqsx01uXrtvt0PC2ekBiD0g,9177
|
226
226
|
ccxt/async_support/binanceusdm.py,sha256=8ugRkx7vyYmn67wdkEEf2f-DFMGAoC4t09usKlPVNyw,2670
|
@@ -251,7 +251,7 @@ ccxt/async_support/btcalpha.py,sha256=SYmpEot6Knp0B0FAZ5-0r_w5SuQqEhQYFwLnTekyiA
|
|
251
251
|
ccxt/async_support/btcbox.py,sha256=ML57vDSZC7UJfl5MvNKytPtvyR_rOnIoBOZRhGPxWwE,23782
|
252
252
|
ccxt/async_support/btcmarkets.py,sha256=KX4Vwn4LCAJqx2TgsevAAdF9gFTpUPRrEqp3CYizsnw,52982
|
253
253
|
ccxt/async_support/btcturk.py,sha256=wWelnADTNhrGGVH0qjuDaOPZ5xkMblggHUDFGQBMG20,37211
|
254
|
-
ccxt/async_support/bybit.py,sha256=
|
254
|
+
ccxt/async_support/bybit.py,sha256=js_KXjP6svEuAY8vtpx8qDh3yPhaZrK2NNu0AGz9iwE,416782
|
255
255
|
ccxt/async_support/cex.py,sha256=8XcqkxF2fSzLnenfkyvXxHmnWgUvrifaBAI-HiJLIZY,70436
|
256
256
|
ccxt/async_support/coinbase.py,sha256=oZCypjcCiAPf5dIZqbmu_ZcGjunkkPg4wLtqw1KUHfs,218387
|
257
257
|
ccxt/async_support/coinbaseadvanced.py,sha256=Kupwnuxiu_qTjwCNV2asacoDUNFQvcaHNAznUJPhdQs,552
|
@@ -286,7 +286,7 @@ ccxt/async_support/idex.py,sha256=UrSCUFhd5xmjHWs2zmTe-M_A7d1Pvt3QVDga9dKGcsM,73
|
|
286
286
|
ccxt/async_support/independentreserve.py,sha256=DxoBIoijcViZGfOgItukkWvL2pKv-03ZsQQVG6dGFW0,33750
|
287
287
|
ccxt/async_support/indodax.py,sha256=GY3-cmbfhihBOgCtnJ_wqBCnk-mqQ64zDoNJ-3qy8tM,53740
|
288
288
|
ccxt/async_support/kraken.py,sha256=0sXD-eK2QOwWFSHkM0M5RY_XJhMMaGEtI0noLNzqwAo,129794
|
289
|
-
ccxt/async_support/krakenfutures.py,sha256=
|
289
|
+
ccxt/async_support/krakenfutures.py,sha256=2r88_rC1cY7t4s8dgeqRUlwNC2NVaagS9wPAEonLAQs,120009
|
290
290
|
ccxt/async_support/kucoin.py,sha256=PHzGCCpUcEAtm1DZvB7nx9V4Tw9M6wH2ZUhfg31sdW8,222665
|
291
291
|
ccxt/async_support/kucoinfutures.py,sha256=aMyOm5zghYkt8KbQMXeMjQDOC9K5hXcQ95ACeKMolPw,125202
|
292
292
|
ccxt/async_support/kuna.py,sha256=4a1hsvp1wzvpbFJun2qkqSNXwKiyXpskjNwuHhw0jeE,96604
|
@@ -300,7 +300,7 @@ ccxt/async_support/ndax.py,sha256=Zpn8MHDZhYl9yg193AxbSt-yI8uGFRizQ8PoiEXnPpI,10
|
|
300
300
|
ccxt/async_support/novadax.py,sha256=7hgBWCcuZRDRSD79-Wel4cesQuyQjo_CP-MK2S7IKOw,64805
|
301
301
|
ccxt/async_support/oceanex.py,sha256=GdudBIC9hCuwI7vE3Mmrw8qvlQmuKclCGTyhuFjorOU,38342
|
302
302
|
ccxt/async_support/okcoin.py,sha256=3l0dRwsxG9u5hyFYxlHRFfKJ4gzvcXOQ3FTTAkHHwx4,151926
|
303
|
-
ccxt/async_support/okx.py,sha256=
|
303
|
+
ccxt/async_support/okx.py,sha256=wygEFiUZONtEsvpoUAZqyy_f8YQ1yQeW9_95xs70qzw,380074
|
304
304
|
ccxt/async_support/onetrading.py,sha256=u6Y7zWjfVBVBl9RLIUfwAneZzE4fOENx7Y11zE7MChM,88792
|
305
305
|
ccxt/async_support/oxfun.py,sha256=a_xP9hsjcsooDGO7fLmZPvW-Rlyfis6JRKmsnF0w-hk,125197
|
306
306
|
ccxt/async_support/p2b.py,sha256=vwavNnMyU7tJF1FIIBhZe4az58clzptk0bEuIDPmOAA,54576
|
@@ -323,7 +323,7 @@ ccxt/async_support/yobit.py,sha256=KQcu9nXJPDlAodZyxOXKIn6eTSLmlvUlgRFE6EBLfug,5
|
|
323
323
|
ccxt/async_support/zaif.py,sha256=jTK5pLZSpKL1Pt0qAJTjN09TDS5AfhptGgGAqw7sNwE,29045
|
324
324
|
ccxt/async_support/zonda.py,sha256=skMMmUUjXJmnQpzlFrJfmg4-vEIOsTGz2zSW9nI4C90,81721
|
325
325
|
ccxt/async_support/base/__init__.py,sha256=aVYSsFi--b4InRs9zDN_wtCpj8odosAB726JdUHavrk,67
|
326
|
-
ccxt/async_support/base/exchange.py,sha256=
|
326
|
+
ccxt/async_support/base/exchange.py,sha256=cKPWoOHR40g0DuizWzDLEEoaC9dqVhg-CKfV0DscDUk,109872
|
327
327
|
ccxt/async_support/base/throttler.py,sha256=tvDVcdRUVYi8fZRlEcnqtgzcgB_KMUMRs5Pu8tuU-tU,1847
|
328
328
|
ccxt/async_support/base/ws/__init__.py,sha256=uockzpLuwntKGZbs5EOWFe-Zg-k6Cj7GhNJLc_RX0so,1791
|
329
329
|
ccxt/async_support/base/ws/aiohttp_client.py,sha256=5IEiT0elWI9a7Vr-KV0jgmlbpLJWBzIlrLaCkTKGaqY,5752
|
@@ -337,10 +337,10 @@ ccxt/async_support/base/ws/order_book_side.py,sha256=GhnGUt78pJ-AYL_Dq9produGjmB
|
|
337
337
|
ccxt/base/__init__.py,sha256=eTx1OE3HJjspFUQjGm6LBhaQiMKJnXjkdP-JUXknyQ0,1320
|
338
338
|
ccxt/base/decimal_to_precision.py,sha256=fgWRBzRTtsf3r2INyS4f7WHlzgjB5YM1ekiwqD21aac,6634
|
339
339
|
ccxt/base/errors.py,sha256=FGdyULeNCNcl52gA_CNhe2dZmat9GJGkTdlIyDXAF_A,4213
|
340
|
-
ccxt/base/exchange.py,sha256=
|
340
|
+
ccxt/base/exchange.py,sha256=KWMWU_iFU03eywGsN-xMkjxRpMvSNwHT2oHyebDrpGA,280894
|
341
341
|
ccxt/base/precise.py,sha256=_xfu54sV0vWNnOfGTKRFykeuWP8mn4K1m9lk1tcllX4,8565
|
342
342
|
ccxt/base/types.py,sha256=RGGcbz86cVtrmU602zoFO5gSWrv_J7IHxQkPnzmNirs,9247
|
343
|
-
ccxt/pro/__init__.py,sha256=
|
343
|
+
ccxt/pro/__init__.py,sha256=cNBTfNs3DsKyoNUn14zoa2WyNqJfgGREVwKqfMkUhyI,7207
|
344
344
|
ccxt/pro/alpaca.py,sha256=QA_Dmxu1ockCSYJMbOodbNke3t1tAl0hFL-q56UMQWE,27224
|
345
345
|
ccxt/pro/ascendex.py,sha256=181FIeztchLqGmgecRJEN8F8xEM45D5aMKhC-5nuNfU,35467
|
346
346
|
ccxt/pro/bequant.py,sha256=5zbsP8BHQTUZ8ZNL6uaACxDbUClgkOV4SYfXT_LfQVg,1351
|
@@ -394,7 +394,7 @@ ccxt/pro/luno.py,sha256=AzLK0_C0Hu25ukMNkMLP_sY3D4UG9FT38oawpo4jzTg,12336
|
|
394
394
|
ccxt/pro/mexc.py,sha256=yWXvZX0fbsAUPmQS48skPOSDcqGBlYofzgANTutrP4g,43266
|
395
395
|
ccxt/pro/ndax.py,sha256=fQsoYtrTEsCZB3hl-pavQytwQAaiMAiTyaCiOy1sVTg,22715
|
396
396
|
ccxt/pro/okcoin.py,sha256=M9x9p9umvIdP13uw_Wyx-TCg7QLMI7ov5DnukCXTBNE,30421
|
397
|
-
ccxt/pro/okx.py,sha256=
|
397
|
+
ccxt/pro/okx.py,sha256=K1f0t31BC7FB5qUnNE1x2Z6_--hLfavcP9OIjXF3I34,83790
|
398
398
|
ccxt/pro/onetrading.py,sha256=lovj_9_bhEASahK2bREMHEjRNUjgl8G51ciuxFIsALM,54712
|
399
399
|
ccxt/pro/oxfun.py,sha256=4jXAlyrMboAqWgA5AeIPaay4QHMpz-hT2IQzjRE3x2c,43933
|
400
400
|
ccxt/pro/p2b.py,sha256=Vdm2wc4RF3IDMKivSlNyWjrh9IR0c-Zm5lDjY4AIass,17889
|
@@ -542,7 +542,8 @@ ccxt/test/base/test_ticker.py,sha256=cMTIMb1oySNORUCmqI5ZzMswlEyCF6gJMah3vfvo8wQ
|
|
542
542
|
ccxt/test/base/test_trade.py,sha256=PMtmB8V38dpaP-eb8h488xYMlR6D69yCOhsA1RuWrUA,2336
|
543
543
|
ccxt/test/base/test_trading_fee.py,sha256=2aDCNJtqBkTC_AieO0l1HYGq5hz5qkWlkWb9Nv_fcwk,1066
|
544
544
|
ccxt/test/base/test_transaction.py,sha256=BTbB4UHHXkrvYgwbrhh867nVRlevmIkIrz1W_odlQJI,1434
|
545
|
-
ccxt-4.3.
|
546
|
-
ccxt-4.3.
|
547
|
-
ccxt-4.3.
|
548
|
-
ccxt-4.3.
|
545
|
+
ccxt-4.3.52.dist-info/LICENSE.txt,sha256=EIb9221AhMHV7xF1_55STFdKTFsnJVJYkRpY2Lnvo5w,1068
|
546
|
+
ccxt-4.3.52.dist-info/METADATA,sha256=h9JkgZdVfV2wwz7NpXRViQi_84XCkRXQ0iuACAUdUWk,115274
|
547
|
+
ccxt-4.3.52.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
548
|
+
ccxt-4.3.52.dist-info/top_level.txt,sha256=CkQDuCTDKNcImPV60t36G6MdYfxsAPNiSaEwifVoVMo,5
|
549
|
+
ccxt-4.3.52.dist-info/RECORD,,
|
File without changes
|