ccxt 4.3.71__py2.py3-none-any.whl → 4.3.72__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/paradex.py +1 -1
- ccxt/base/exchange.py +1 -1
- ccxt/paradex.py +1 -1
- ccxt/pro/__init__.py +1 -1
- ccxt/static_dependencies/starknet/models/__init__.py +0 -0
- ccxt/static_dependencies/starknet/models/typed_data.py +45 -0
- ccxt/static_dependencies/starkware/__init__.py +0 -0
- ccxt/static_dependencies/starkware/crypto/__init__.py +0 -0
- ccxt/static_dependencies/starkware/crypto/fast_pedersen_hash.py +50 -0
- ccxt/static_dependencies/starkware/crypto/math_utils.py +78 -0
- ccxt/static_dependencies/starkware/crypto/signature.py +2344 -0
- ccxt/static_dependencies/starkware/crypto/utils.py +58 -0
- ccxt/static_dependencies/sympy/core/__init__.py +0 -0
- ccxt/static_dependencies/sympy/core/intfunc.py +35 -0
- {ccxt-4.3.71.dist-info → ccxt-4.3.72.dist-info}/METADATA +5 -5
- {ccxt-4.3.71.dist-info → ccxt-4.3.72.dist-info}/RECORD +22 -12
- {ccxt-4.3.71.dist-info → ccxt-4.3.72.dist-info}/LICENSE.txt +0 -0
- {ccxt-4.3.71.dist-info → ccxt-4.3.72.dist-info}/WHEEL +0 -0
- {ccxt-4.3.71.dist-info → ccxt-4.3.72.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,58 @@
|
|
1
|
+
from typing import (
|
2
|
+
AsyncGenerator,
|
3
|
+
Optional,
|
4
|
+
TypeVar,
|
5
|
+
)
|
6
|
+
|
7
|
+
from ...typing_extensions.typing_extensions import Literal, ParamSpec
|
8
|
+
|
9
|
+
T = TypeVar("T")
|
10
|
+
P = ParamSpec("P")
|
11
|
+
K = TypeVar("K")
|
12
|
+
V = TypeVar("V")
|
13
|
+
TAsyncGenerator = TypeVar("TAsyncGenerator", bound=AsyncGenerator)
|
14
|
+
NumType = TypeVar("NumType", int, float)
|
15
|
+
HASH_BYTES = 32
|
16
|
+
|
17
|
+
# If more shared types start popping up here extract to types.py.
|
18
|
+
Endianness = Literal["big", "little"]
|
19
|
+
TComparable = TypeVar("TComparable", bound="Comparable")
|
20
|
+
|
21
|
+
def to_bytes(
|
22
|
+
value: int,
|
23
|
+
length: Optional[int] = None,
|
24
|
+
byte_order: Optional[Endianness] = None,
|
25
|
+
signed: Optional[bool] = None,
|
26
|
+
) -> bytes:
|
27
|
+
"""
|
28
|
+
Converts the given integer to a bytes object of given length and byte order.
|
29
|
+
The default values are 32B width (which is the hash result width) and 'big', respectively.
|
30
|
+
"""
|
31
|
+
if length is None:
|
32
|
+
length = HASH_BYTES
|
33
|
+
|
34
|
+
if byte_order is None:
|
35
|
+
byte_order = "big"
|
36
|
+
|
37
|
+
if signed is None:
|
38
|
+
signed = False
|
39
|
+
|
40
|
+
return int.to_bytes(value, length=length, byteorder=byte_order, signed=signed)
|
41
|
+
|
42
|
+
|
43
|
+
def from_bytes(
|
44
|
+
value: bytes,
|
45
|
+
byte_order: Optional[Endianness] = None,
|
46
|
+
signed: Optional[bool] = None,
|
47
|
+
) -> int:
|
48
|
+
"""
|
49
|
+
Converts the given bytes object (parsed according to the given byte order) to an integer.
|
50
|
+
Default byte order is 'big'.
|
51
|
+
"""
|
52
|
+
if byte_order is None:
|
53
|
+
byte_order = "big"
|
54
|
+
|
55
|
+
if signed is None:
|
56
|
+
signed = False
|
57
|
+
|
58
|
+
return int.from_bytes(value, byteorder=byte_order, signed=signed)
|
File without changes
|
@@ -0,0 +1,35 @@
|
|
1
|
+
"""
|
2
|
+
The routines here were removed from numbers.py, power.py,
|
3
|
+
digits.py and factor_.py so they could be imported into core
|
4
|
+
without raising circular import errors.
|
5
|
+
|
6
|
+
Although the name 'intfunc' was chosen to represent functions that
|
7
|
+
work with integers, it can also be thought of as containing
|
8
|
+
internal/core functions that are needed by the classes of the core.
|
9
|
+
"""
|
10
|
+
|
11
|
+
from ..external.gmpy import (gcdext)
|
12
|
+
|
13
|
+
def igcdex(a, b):
|
14
|
+
"""Returns x, y, g such that g = x*a + y*b = gcd(a, b).
|
15
|
+
|
16
|
+
Examples
|
17
|
+
========
|
18
|
+
|
19
|
+
>>> from sympy.core.intfunc import igcdex
|
20
|
+
>>> igcdex(2, 3)
|
21
|
+
(-1, 1, 1)
|
22
|
+
>>> igcdex(10, 12)
|
23
|
+
(-1, 1, 2)
|
24
|
+
|
25
|
+
>>> x, y, g = igcdex(100, 2004)
|
26
|
+
>>> x, y, g
|
27
|
+
(-20, 1, 4)
|
28
|
+
>>> x*100 + y*2004
|
29
|
+
4
|
30
|
+
|
31
|
+
"""
|
32
|
+
if (not a) and (not b):
|
33
|
+
return (0, 1, 0)
|
34
|
+
g, x, y = gcdext(int(a), int(b))
|
35
|
+
return x, y, g
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: ccxt
|
3
|
-
Version: 4.3.
|
3
|
+
Version: 4.3.72
|
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
|
@@ -193,7 +193,7 @@ The CCXT library currently supports the following 102 cryptocurrency exchange ma
|
|
193
193
|
| [](https://onetrading.com/) | onetrading | [One Trading](https://onetrading.com/) | [](https://docs.onetrading.com) | cex | | [](https://ccxt.pro) |
|
194
194
|
| [](https://ox.fun/register?shareAccountId=5ZUD4a7G) | oxfun | [OXFUN](https://ox.fun/register?shareAccountId=5ZUD4a7G) | [](https://docs.ox.fun/) | cex | | [](https://ccxt.pro) |
|
195
195
|
| [](https://p2pb2b.com?referral=ee784c53) | p2b | [p2b](https://p2pb2b.com?referral=ee784c53) | [](https://github.com/P2B-team/p2b-api-docs/blob/master/api-doc.md) | cex | | [](https://ccxt.pro) |
|
196
|
-
| [](https://app.paradex.trade/r/ccxt24) | paradex | [Paradex](https://app.paradex.trade/r/ccxt24) | [](https://docs.api.testnet.paradex.trade/) | dex | | [](https://ccxt.pro) |
|
197
197
|
| [](https://www.paymium.com/page/sign-up?referral=eDAzPoRQFMvaAB8sf-qj) | paymium | [Paymium](https://www.paymium.com/page/sign-up?referral=eDAzPoRQFMvaAB8sf-qj) | [](https://github.com/Paymium/api-documentation) | cex | | |
|
198
198
|
| [](https://phemex.com/register?referralCode=EDNVJ) | phemex | [Phemex](https://phemex.com/register?referralCode=EDNVJ) | [](https://github.com/phemex/phemex-api-docs) | cex | | [](https://ccxt.pro) |
|
199
199
|
| [](https://poloniex.com/signup?c=UBFZJRPJ) | poloniex | [Poloniex](https://poloniex.com/signup?c=UBFZJRPJ) | [](https://api-docs.poloniex.com/spot/) | cex | | [](https://ccxt.pro) |
|
@@ -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.72/dist/ccxt.browser.min.js
|
274
|
+
* unpkg: https://unpkg.com/ccxt@4.3.72/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.72/dist/ccxt.browser.min.js"></script>
|
280
280
|
```
|
281
281
|
|
282
282
|
Creates a global `ccxt` object:
|
@@ -1,4 +1,4 @@
|
|
1
|
-
ccxt/__init__.py,sha256=
|
1
|
+
ccxt/__init__.py,sha256=epmaD_xsNG-TFKgAxvBKF5SeaWmrOEdytQN-PRBEGkU,16417
|
2
2
|
ccxt/ace.py,sha256=5DwQ9rmdDCRh-l-65Mi2Ei_o1GqR0xqWZiiU7Lz-LvM,42379
|
3
3
|
ccxt/alpaca.py,sha256=HQuhQZSFGRlT-BaCUSEZmxpzYp6tll2zn63qn3gTmoU,47470
|
4
4
|
ccxt/ascendex.py,sha256=4aEwibO_me6khr66z8JFqDBxe2gtFOWIFBE7ulBEJPs,151933
|
@@ -88,7 +88,7 @@ ccxt/okx.py,sha256=JUayotui7OLoH43y4s8Lq2EcLQtF-ig3pixwxThUiDU,379391
|
|
88
88
|
ccxt/onetrading.py,sha256=qKVLKVuvCSYuSf64CFROnyqkhKhMhTEG9orEYy34x38,88339
|
89
89
|
ccxt/oxfun.py,sha256=2d8Tr3c5SC2okb7mEWi3Y1lq9UC-enln54ydtDClCnY,124657
|
90
90
|
ccxt/p2b.py,sha256=V_P8GTdb6SkeaVptVtc-LbjwUKUinfYFtO4nzmKG0N0,54333
|
91
|
-
ccxt/paradex.py,sha256
|
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
94
|
ccxt/poloniex.py,sha256=Pqmr-FAeN5phqDZi1eIIGfc43Djey8cTHI0FCNTG-yw,102253
|
@@ -218,7 +218,7 @@ 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=Ber5nzKUrBySAeudCf5xnk4b0Y-JRO_FgVB7uiVJuEs,16230
|
222
222
|
ccxt/async_support/ace.py,sha256=GxXMtM5Como1NVqXhOqJntxhLO1w9pNe1yYbQP_4ylQ,42603
|
223
223
|
ccxt/async_support/alpaca.py,sha256=495vDvdF1IWlsh9QhUnMtkMuINdD0EzeFGlUVqCf8TE,47682
|
224
224
|
ccxt/async_support/ascendex.py,sha256=LK259BdUqU0_STGRH6DmTgaR-7lXqFpZHFVACf2um5c,152721
|
@@ -308,7 +308,7 @@ ccxt/async_support/okx.py,sha256=u8mwZUCq20ar-HN2XU8OpcRQXSuG0Ic0n80PyLpLoqc,380
|
|
308
308
|
ccxt/async_support/onetrading.py,sha256=IPsjvlMMOz72uTbfMVo3BSkP0_7vQZ7DYwHFUQeH7vY,88791
|
309
309
|
ccxt/async_support/oxfun.py,sha256=_Pv8E4yIKS10iPOpPuCFQgBuqGDzxuwvxROdJjwrYvc,125201
|
310
310
|
ccxt/async_support/p2b.py,sha256=aU_69L8hyfZEQ_yFJb6UoR_l0EbaeCTRgNvdDtk4QPs,54575
|
311
|
-
ccxt/async_support/paradex.py,sha256=
|
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
314
|
ccxt/async_support/poloniex.py,sha256=m5zaJRKARuSmk05lKbaSlPOlcj4s9KsA5BX4aEmil8I,102801
|
@@ -329,7 +329,7 @@ ccxt/async_support/yobit.py,sha256=rndL_bMH17YAFCGX__ZPid-Rym1sKoikKO2At7Mbe2Y,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=2kJnkacqMJlK34qxtIQciKSTndVhe1ixM-QME7lUX6I,110793
|
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=rYti7YjhUhcUSrcfGAGxdQa4M2hWNcaEVUPY8q88X90,294200
|
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=7fBoGIdefNbdwdQTOIFD2xNporhByfhzsfRVSUTzYpg,7608
|
350
350
|
ccxt/pro/alpaca.py,sha256=TGfyNTaYawHIUWDzoVKXitCPMWO1wKn9VcgmdWMex58,27212
|
351
351
|
ccxt/pro/ascendex.py,sha256=181FIeztchLqGmgecRJEN8F8xEM45D5aMKhC-5nuNfU,35467
|
352
352
|
ccxt/pro/bequant.py,sha256=33OEUWBi4D9-2w8CmkwN3aF1qS-AlLqX3pxrWwNbXPY,1552
|
@@ -584,6 +584,8 @@ ccxt/static_dependencies/starknet/hash/compiled_class_hash_objects.py,sha256=w-T
|
|
584
584
|
ccxt/static_dependencies/starknet/hash/selector.py,sha256=y7PRHGePeCGkuzDZKlcR6JJ-PTgpfKVPW4Gl5sTvFN8,474
|
585
585
|
ccxt/static_dependencies/starknet/hash/storage.py,sha256=pQZdxL6Fac3HGR6Sfvhek-vjsT1reUhIqd2glIbySs8,402
|
586
586
|
ccxt/static_dependencies/starknet/hash/utils.py,sha256=DTFR7uFqksoOh5O4ZPHF5vzohmrA19dYrsPGSSYvhpI,2173
|
587
|
+
ccxt/static_dependencies/starknet/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
588
|
+
ccxt/static_dependencies/starknet/models/typed_data.py,sha256=nq6tuZuWbygx0oFa-fNIP2QB1bNTAQwosTuXyYxtD9A,815
|
587
589
|
ccxt/static_dependencies/starknet/serialization/__init__.py,sha256=B71RdRcil04hDiY7jNxo_PFGzEenQKXwm3rJuG79ukg,655
|
588
590
|
ccxt/static_dependencies/starknet/serialization/_calldata_reader.py,sha256=aPiWzMn8cAmjC_obUbNPRqqJ6sR4yOh0SKYGH-gK6ik,1135
|
589
591
|
ccxt/static_dependencies/starknet/serialization/_context.py,sha256=LOult4jWMDYLFKR4C16R9F9F3EJFK4ZoM_wnIAQHiJA,4821
|
@@ -613,7 +615,15 @@ ccxt/static_dependencies/starknet/utils/constructor_args_translator.py,sha256=kF
|
|
613
615
|
ccxt/static_dependencies/starknet/utils/iterable.py,sha256=m-A7qOnh6W5OvWpsIbSJdVPuWYjESkiVcZEY_S3XYas,302
|
614
616
|
ccxt/static_dependencies/starknet/utils/schema.py,sha256=OKVVk_BTTxGkPy0Lv0P1kL27g9-s5ln_YIiU-VVwBH4,361
|
615
617
|
ccxt/static_dependencies/starknet/utils/typed_data.py,sha256=Ln6JBGJp8C_wNjGI_nry7h7CBX8ImTzKjNbmFtp2kSQ,5561
|
618
|
+
ccxt/static_dependencies/starkware/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
619
|
+
ccxt/static_dependencies/starkware/crypto/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
620
|
+
ccxt/static_dependencies/starkware/crypto/fast_pedersen_hash.py,sha256=69IypXuwIbBnpGdsYbwU-t9U96V7SoHwissaPdo7fKA,2032
|
621
|
+
ccxt/static_dependencies/starkware/crypto/math_utils.py,sha256=Mx3R_UqUTmpeL7vRmNrN59CUdXGK2u_WEGXRRav1i50,3145
|
622
|
+
ccxt/static_dependencies/starkware/crypto/signature.py,sha256=Q4fnm-St_nyW_jeHBFEVBRQ7kWkQ_wvO3qt6xkHu65U,112683
|
623
|
+
ccxt/static_dependencies/starkware/crypto/utils.py,sha256=Ff9GA6uyJZ3STC6ria0arhvU_49c9Y36zdmgCOM1lm4,1524
|
616
624
|
ccxt/static_dependencies/sympy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
625
|
+
ccxt/static_dependencies/sympy/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
626
|
+
ccxt/static_dependencies/sympy/core/intfunc.py,sha256=dnMzhDBVtVOHeIHVNll-5Ek6si7c1uH-Gpdet86DrVE,844
|
617
627
|
ccxt/static_dependencies/sympy/external/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
618
628
|
ccxt/static_dependencies/sympy/external/gmpy.py,sha256=Kdh81lf0ll3mk1iur4KxSIHm88GLv-xNc3rT7i8-E2M,10283
|
619
629
|
ccxt/static_dependencies/sympy/external/importtools.py,sha256=Q7tS2cdGZ9a4NI_1sgGuoVcSDv_rIk-Av0BpFTa6EzA,7671
|
@@ -640,8 +650,8 @@ ccxt/test/tests_async.py,sha256=nZ-ElW1q1rcRat-z81x4mPERa9az9qbBVHo_RNioMMw,8461
|
|
640
650
|
ccxt/test/tests_helpers.py,sha256=GbWfSU-0E_CKLeFNinnEHYg1LOcEgNVJT3K9e2kjOeM,10011
|
641
651
|
ccxt/test/tests_init.py,sha256=eVwwUHujX9t4rjgo4TqEeg7DDhR1Hb_e2SJN8NVGyl0,998
|
642
652
|
ccxt/test/tests_sync.py,sha256=p2u81x4O2ocpFjSz_d6HXl2QFwj5P9kZZNimIEKtbO0,83697
|
643
|
-
ccxt-4.3.
|
644
|
-
ccxt-4.3.
|
645
|
-
ccxt-4.3.
|
646
|
-
ccxt-4.3.
|
647
|
-
ccxt-4.3.
|
653
|
+
ccxt-4.3.72.dist-info/LICENSE.txt,sha256=EIb9221AhMHV7xF1_55STFdKTFsnJVJYkRpY2Lnvo5w,1068
|
654
|
+
ccxt-4.3.72.dist-info/METADATA,sha256=kqPs2WU6mu5Gq0c1RdkGRH_D9SjS9BXcgpLxABhWai0,116642
|
655
|
+
ccxt-4.3.72.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
656
|
+
ccxt-4.3.72.dist-info/top_level.txt,sha256=CkQDuCTDKNcImPV60t36G6MdYfxsAPNiSaEwifVoVMo,5
|
657
|
+
ccxt-4.3.72.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|