ccxt 4.4.14__py2.py3-none-any.whl → 4.4.15__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/htx.py +1 -1
- ccxt/async_support/onetrading.py +2 -2
- ccxt/async_support/vertex.py +8 -0
- ccxt/base/exchange.py +1 -1
- ccxt/htx.py +1 -1
- ccxt/onetrading.py +2 -2
- ccxt/pro/__init__.py +1 -1
- ccxt/pro/binance.py +1 -1
- ccxt/pro/upbit.py +42 -1
- ccxt/pro/vertex.py +11 -0
- ccxt/vertex.py +8 -0
- {ccxt-4.4.14.dist-info → ccxt-4.4.15.dist-info}/METADATA +4 -4
- {ccxt-4.4.14.dist-info → ccxt-4.4.15.dist-info}/RECORD +19 -19
- {ccxt-4.4.14.dist-info → ccxt-4.4.15.dist-info}/LICENSE.txt +0 -0
- {ccxt-4.4.14.dist-info → ccxt-4.4.15.dist-info}/WHEEL +0 -0
- {ccxt-4.4.14.dist-info → ccxt-4.4.15.dist-info}/top_level.txt +0 -0
ccxt/__init__.py
CHANGED
ccxt/async_support/__init__.py
CHANGED
ccxt/async_support/htx.py
CHANGED
@@ -1249,7 +1249,7 @@ class htx(Exchange, ImplicitAPI):
|
|
1249
1249
|
'SBTC': 'SUPERBITCOIN',
|
1250
1250
|
'SOUL': 'SOULSAVER',
|
1251
1251
|
'BIFI': 'BITCOINFILE', # conflict with Beefy.Finance https://github.com/ccxt/ccxt/issues/8706
|
1252
|
-
'FUD': 'FTX Users
|
1252
|
+
'FUD': 'FTX Users Debt',
|
1253
1253
|
},
|
1254
1254
|
})
|
1255
1255
|
|
ccxt/async_support/onetrading.py
CHANGED
@@ -128,8 +128,8 @@ class onetrading(Exchange, ImplicitAPI):
|
|
128
128
|
'urls': {
|
129
129
|
'logo': 'https://github.com/ccxt/ccxt/assets/43336371/bdbc26fd-02f2-4ca7-9f1e-17333690bb1c',
|
130
130
|
'api': {
|
131
|
-
'public': 'https://api.onetrading.com/
|
132
|
-
'private': 'https://api.onetrading.com/
|
131
|
+
'public': 'https://api.onetrading.com/fast',
|
132
|
+
'private': 'https://api.onetrading.com/fast',
|
133
133
|
},
|
134
134
|
'www': 'https://onetrading.com/',
|
135
135
|
'doc': [
|
ccxt/async_support/vertex.py
CHANGED
@@ -2821,4 +2821,12 @@ class vertex(Exchange, ImplicitAPI):
|
|
2821
2821
|
else:
|
2822
2822
|
if params:
|
2823
2823
|
url += '?' + self.urlencode(params)
|
2824
|
+
if path != 'execute':
|
2825
|
+
# required encoding for public methods
|
2826
|
+
if headers is not None:
|
2827
|
+
headers['Accept-Encoding'] = 'gzip'
|
2828
|
+
else:
|
2829
|
+
headers = {
|
2830
|
+
'Accept-Encoding': 'gzip',
|
2831
|
+
}
|
2824
2832
|
return {'url': url, 'method': method, 'body': body, 'headers': headers}
|
ccxt/base/exchange.py
CHANGED
ccxt/htx.py
CHANGED
@@ -1248,7 +1248,7 @@ class htx(Exchange, ImplicitAPI):
|
|
1248
1248
|
'SBTC': 'SUPERBITCOIN',
|
1249
1249
|
'SOUL': 'SOULSAVER',
|
1250
1250
|
'BIFI': 'BITCOINFILE', # conflict with Beefy.Finance https://github.com/ccxt/ccxt/issues/8706
|
1251
|
-
'FUD': 'FTX Users
|
1251
|
+
'FUD': 'FTX Users Debt',
|
1252
1252
|
},
|
1253
1253
|
})
|
1254
1254
|
|
ccxt/onetrading.py
CHANGED
@@ -128,8 +128,8 @@ class onetrading(Exchange, ImplicitAPI):
|
|
128
128
|
'urls': {
|
129
129
|
'logo': 'https://github.com/ccxt/ccxt/assets/43336371/bdbc26fd-02f2-4ca7-9f1e-17333690bb1c',
|
130
130
|
'api': {
|
131
|
-
'public': 'https://api.onetrading.com/
|
132
|
-
'private': 'https://api.onetrading.com/
|
131
|
+
'public': 'https://api.onetrading.com/fast',
|
132
|
+
'private': 'https://api.onetrading.com/fast',
|
133
133
|
},
|
134
134
|
'www': 'https://onetrading.com/',
|
135
135
|
'doc': [
|
ccxt/pro/__init__.py
CHANGED
ccxt/pro/binance.py
CHANGED
@@ -243,7 +243,7 @@ class binance(ccxt.async_support.binance):
|
|
243
243
|
type = None
|
244
244
|
type, params = self.handle_market_type_and_params('watchLiquidationsForSymbols', firstMarket, params)
|
245
245
|
if type == 'spot':
|
246
|
-
raise BadRequest(self.id + 'watchLiquidationsForSymbols is not supported for
|
246
|
+
raise BadRequest(self.id + 'watchLiquidationsForSymbols is not supported for spot symbols')
|
247
247
|
subType = None
|
248
248
|
subType, params = self.handle_sub_type_and_params('watchLiquidationsForSymbols', firstMarket, params)
|
249
249
|
if self.isLinear(type, subType):
|
ccxt/pro/upbit.py
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
|
6
6
|
import ccxt.async_support
|
7
7
|
from ccxt.async_support.base.ws.cache import ArrayCache, ArrayCacheBySymbolById
|
8
|
-
from ccxt.base.types import Balances, Int, Order, OrderBook, Str, Ticker, Trade
|
8
|
+
from ccxt.base.types import Balances, Int, Order, OrderBook, Str, Strings, Ticker, Tickers, Trade
|
9
9
|
from ccxt.async_support.base.ws.client import Client
|
10
10
|
from typing import List
|
11
11
|
|
@@ -18,6 +18,7 @@ class upbit(ccxt.async_support.upbit):
|
|
18
18
|
'ws': True,
|
19
19
|
'watchOrderBook': True,
|
20
20
|
'watchTicker': True,
|
21
|
+
'watchTickers': True,
|
21
22
|
'watchTrades': True,
|
22
23
|
'watchTradesForSymbols': True,
|
23
24
|
'watchOrders': True,
|
@@ -60,6 +61,31 @@ class upbit(ccxt.async_support.upbit):
|
|
60
61
|
messageHash = channel + ':' + marketId
|
61
62
|
return await self.watch(url, messageHash, request, messageHash)
|
62
63
|
|
64
|
+
async def watch_public_multiple(self, symbols: Strings, channel, params={}):
|
65
|
+
await self.load_markets()
|
66
|
+
if symbols is None:
|
67
|
+
symbols = self.symbols
|
68
|
+
symbols = self.market_symbols(symbols)
|
69
|
+
marketIds = self.market_ids(symbols)
|
70
|
+
url = self.implode_params(self.urls['api']['ws'], {
|
71
|
+
'hostname': self.hostname,
|
72
|
+
})
|
73
|
+
messageHashes = []
|
74
|
+
for i in range(0, len(marketIds)):
|
75
|
+
messageHashes.append(channel + ':' + marketIds[i])
|
76
|
+
request = [
|
77
|
+
{
|
78
|
+
'ticket': self.uuid(),
|
79
|
+
},
|
80
|
+
{
|
81
|
+
'type': channel,
|
82
|
+
'codes': marketIds,
|
83
|
+
# 'isOnlySnapshot': False,
|
84
|
+
# 'isOnlyRealtime': False,
|
85
|
+
},
|
86
|
+
]
|
87
|
+
return await self.watch_multiple(url, messageHashes, request, messageHashes)
|
88
|
+
|
63
89
|
async def watch_ticker(self, symbol: str, params={}) -> Ticker:
|
64
90
|
"""
|
65
91
|
watches a price ticker, a statistical calculation with the information calculated over the past 24 hours for a specific market
|
@@ -70,6 +96,21 @@ class upbit(ccxt.async_support.upbit):
|
|
70
96
|
"""
|
71
97
|
return await self.watch_public(symbol, 'ticker')
|
72
98
|
|
99
|
+
async def watch_tickers(self, symbols: Strings = None, params={}) -> Tickers:
|
100
|
+
"""
|
101
|
+
watches a price ticker, a statistical calculation with the information calculated over the past 24 hours for a specific market
|
102
|
+
:see: https://global-docs.upbit.com/reference/websocket-ticker
|
103
|
+
:param str symbol: unified symbol of the market to fetch the ticker for
|
104
|
+
:param dict [params]: extra parameters specific to the exchange API endpoint
|
105
|
+
:returns dict: a `ticker structure <https://docs.ccxt.com/#/?id=ticker-structure>`
|
106
|
+
"""
|
107
|
+
newTickers = await self.watch_public_multiple(symbols, 'ticker')
|
108
|
+
if self.newUpdates:
|
109
|
+
tickers: dict = {}
|
110
|
+
tickers[newTickers['symbol']] = newTickers
|
111
|
+
return tickers
|
112
|
+
return self.filter_by_array(self.tickers, 'symbol', symbols)
|
113
|
+
|
73
114
|
async def watch_trades(self, symbol: str, since: Int = None, limit: Int = None, params={}) -> List[Trade]:
|
74
115
|
"""
|
75
116
|
get the list of most recent trades for a particular symbol
|
ccxt/pro/vertex.py
CHANGED
@@ -53,6 +53,9 @@ class vertex(ccxt.async_support.vertex):
|
|
53
53
|
'fetchPositionsSnapshot': True, # or False
|
54
54
|
'awaitPositionsSnapshot': True, # whether to wait for the positions snapshot before providing updates
|
55
55
|
},
|
56
|
+
'ws': {
|
57
|
+
'inflate': True,
|
58
|
+
},
|
56
59
|
},
|
57
60
|
'streaming': {
|
58
61
|
# 'ping': self.ping,
|
@@ -81,6 +84,14 @@ class vertex(ccxt.async_support.vertex):
|
|
81
84
|
'id': requestId,
|
82
85
|
}
|
83
86
|
request = self.extend(subscribe, message)
|
87
|
+
wsOptions = {
|
88
|
+
'headers': {
|
89
|
+
'Sec-WebSocket-Extensions': 'permessage-deflate',
|
90
|
+
},
|
91
|
+
}
|
92
|
+
self.options['ws'] = {
|
93
|
+
'options': wsOptions,
|
94
|
+
}
|
84
95
|
return await self.watch(url, messageHash, request, messageHash, subscribe)
|
85
96
|
|
86
97
|
async def watch_trades(self, symbol: str, since: Int = None, limit: Int = None, params={}) -> List[Trade]:
|
ccxt/vertex.py
CHANGED
@@ -2821,4 +2821,12 @@ class vertex(Exchange, ImplicitAPI):
|
|
2821
2821
|
else:
|
2822
2822
|
if params:
|
2823
2823
|
url += '?' + self.urlencode(params)
|
2824
|
+
if path != 'execute':
|
2825
|
+
# required encoding for public methods
|
2826
|
+
if headers is not None:
|
2827
|
+
headers['Accept-Encoding'] = 'gzip'
|
2828
|
+
else:
|
2829
|
+
headers = {
|
2830
|
+
'Accept-Encoding': 'gzip',
|
2831
|
+
}
|
2824
2832
|
return {'url': url, 'method': method, 'body': body, 'headers': headers}
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: ccxt
|
3
|
-
Version: 4.4.
|
3
|
+
Version: 4.4.15
|
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
|
@@ -271,13 +271,13 @@ console.log(version, Object.keys(exchanges));
|
|
271
271
|
|
272
272
|
All-in-one browser bundle (dependencies included), served from a CDN of your choice:
|
273
273
|
|
274
|
-
* jsDelivr: https://cdn.jsdelivr.net/npm/ccxt@4.4.
|
275
|
-
* unpkg: https://unpkg.com/ccxt@4.4.
|
274
|
+
* jsDelivr: https://cdn.jsdelivr.net/npm/ccxt@4.4.15/dist/ccxt.browser.min.js
|
275
|
+
* unpkg: https://unpkg.com/ccxt@4.4.15/dist/ccxt.browser.min.js
|
276
276
|
|
277
277
|
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.
|
278
278
|
|
279
279
|
```HTML
|
280
|
-
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/ccxt@4.4.
|
280
|
+
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/ccxt@4.4.15/dist/ccxt.browser.min.js"></script>
|
281
281
|
```
|
282
282
|
|
283
283
|
Creates a global `ccxt` object:
|
@@ -1,4 +1,4 @@
|
|
1
|
-
ccxt/__init__.py,sha256=
|
1
|
+
ccxt/__init__.py,sha256=yblxZt15nBTME01nd81Bp_8BEkrVIAoQksDAqda_6PI,16486
|
2
2
|
ccxt/ace.py,sha256=3KFlbRm6N9hXsKUsgZbQCFPZT5WGLm4HOjR19Q3uPts,42419
|
3
3
|
ccxt/alpaca.py,sha256=nVQJ8vG4JrjEvMlu_nPoyR2lBq41j9Z2smPq95nDhng,47504
|
4
4
|
ccxt/ascendex.py,sha256=LIC9mnNkXzkxUWJDsgyDkL4gQUkzMHq5peHlD8EBKPw,151624
|
@@ -63,7 +63,7 @@ ccxt/hashkey.py,sha256=bJAXP1YkNOB92oT0WUVpygn0eKREvW43wu7ntdN9yhI,191991
|
|
63
63
|
ccxt/hitbtc.py,sha256=dY9ghNwp76I9_xhoCIH2W1jMahq7FYn5rWRDPbPnU88,153572
|
64
64
|
ccxt/hitbtc3.py,sha256=qRAr4Zvaju9IQWRZUohdoN7xRnzIMPq8AyYb3gPv-Is,455
|
65
65
|
ccxt/hollaex.py,sha256=2KIbenZ3vcBDN_rs2CxG5_foKLaYxJd73vVV7M8n_8E,76140
|
66
|
-
ccxt/htx.py,sha256=
|
66
|
+
ccxt/htx.py,sha256=QIfmAICSxdLPdlUw_-w2l1-XGpm-8S5FAHHqHqUsUKQ,431550
|
67
67
|
ccxt/huobi.py,sha256=4vaG7IRN7fyjaJ_ac6S-njlHOfSEN5de7aq0noznxYw,438
|
68
68
|
ccxt/huobijp.py,sha256=Kw1HQhoox1qp-bEiGpCcJSg1UAhPVLRRi-BRbQLMljI,89741
|
69
69
|
ccxt/hyperliquid.py,sha256=QTly1QFJoFse-ioADxf7KRQWCvK-Ksiopemg0D9y59k,122981
|
@@ -86,7 +86,7 @@ ccxt/novadax.py,sha256=_xFkuZ72vHhpJb1N9h_MQHRD05GDWlqUeLQQcOp43BM,64436
|
|
86
86
|
ccxt/oceanex.py,sha256=jBXRD1hZk_wa9PXVp9feistAO_jK7UvzG5zznhPQgH4,41120
|
87
87
|
ccxt/okcoin.py,sha256=nKWsJTRprIODYHUTIoXRz6eANM2zdRPF7BHY86ExEyQ,151126
|
88
88
|
ccxt/okx.py,sha256=gR2QE1sP5EaLUxBvocTdGlsIoHn0UmoFn7c_rB-II5s,382760
|
89
|
-
ccxt/onetrading.py,sha256=
|
89
|
+
ccxt/onetrading.py,sha256=Q7EypjKpnUwCqgPAfR0z6QJ3dkrpEL5BvRZWmfXpb7o,88371
|
90
90
|
ccxt/oxfun.py,sha256=fJs9UO_rd6wtC9i6kcyu4CnRfg6pcF4zRoylUyO8JiY,124824
|
91
91
|
ccxt/p2b.py,sha256=iPzHv663K8F1F0uTWEYpfQBcaqowY8MQ5tZt2ZNpoQE,54290
|
92
92
|
ccxt/paradex.py,sha256=srDConLWOPbnIi6k8_3g232vyhfnVOn5hAE_A7Z6scE,85667
|
@@ -99,7 +99,7 @@ ccxt/timex.py,sha256=Un10iGNwAHPifpQftyXdUwoqS-10ho6ZIesz2Ts_Iqg,72068
|
|
99
99
|
ccxt/tokocrypto.py,sha256=aV-98hzr75iQO3GEmiUyTNufDqHfoze04Z2Fk195B3Q,123192
|
100
100
|
ccxt/tradeogre.py,sha256=YoSQQl4jHI2JJShR0k_liI0dCntDdnHDqZmc5a-y7-w,24168
|
101
101
|
ccxt/upbit.py,sha256=d03xZjLdhtMrqTVm3VYmvQoT7inmq05bjrUNrJLi_7U,85413
|
102
|
-
ccxt/vertex.py,sha256=
|
102
|
+
ccxt/vertex.py,sha256=Noyl-spEMawfHqjAboVhDTAya4wrYvDxArY9PU8JKcM,122182
|
103
103
|
ccxt/wavesexchange.py,sha256=vmzv9h1QjthvpKUGajQn_tdCJ5tWmzEA6r7ow_y6ASY,114980
|
104
104
|
ccxt/wazirx.py,sha256=LVHNdononi8FrZpT0pYiJoS-NrNi7_uIZ6Qbu8dJRPc,52405
|
105
105
|
ccxt/whitebit.py,sha256=cSlRm2LmlbAjpoElUOQFAaEVZaxkTWsg2XnPYYTnY5A,119437
|
@@ -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=BGzGrWjsLlXPaPqmrcX0osLAP-PEcOOTv1V2iBOxaB8,16289
|
222
222
|
ccxt/async_support/ace.py,sha256=ucCkKaWRkILAIK9g4iEi1Q_-zmn0V89-rX8Al4WdK8s,42643
|
223
223
|
ccxt/async_support/alpaca.py,sha256=HxonsP_MzbE7Z9r6hZ1rgmf_jPcP4H7H3z1YQgCv4qc,47716
|
224
224
|
ccxt/async_support/ascendex.py,sha256=rSsbtR8BKtun-QFKduQ4rHr_h4rKqU0eB_-jYdWeWuM,152437
|
@@ -283,7 +283,7 @@ ccxt/async_support/hashkey.py,sha256=xiS8FXemxDKVKQNJBtyOYG5-QaizyyGR8-I1CusmFcY
|
|
283
283
|
ccxt/async_support/hitbtc.py,sha256=_CPsYQhE-1wDAOFGi4Xq9OxTqMuZ4ABwXbpSuOvMuNg,154618
|
284
284
|
ccxt/async_support/hitbtc3.py,sha256=dmSYoD2o4av_zzbZI8HNIoj8BWxA7QozsVpy8JaOXzU,469
|
285
285
|
ccxt/async_support/hollaex.py,sha256=msUnnbWLNeCxFW77BnfLoFWBdvQIDwV7Rtbi9TA4TYY,76574
|
286
|
-
ccxt/async_support/htx.py,sha256=
|
286
|
+
ccxt/async_support/htx.py,sha256=olxOUPrUxXuxH83GJ0sbIwujB_AYdX0ET9mRd0tNB1U,433942
|
287
287
|
ccxt/async_support/huobi.py,sha256=fup0j6wQ1khAtfbb1H4CSyJAOzhxuoHMmrM6sgTuhr8,452
|
288
288
|
ccxt/async_support/huobijp.py,sha256=4Pj8qPn2xzzyvdsy08gnbiF-eSKXQNT0p6VIOVkpisM,90241
|
289
289
|
ccxt/async_support/hyperliquid.py,sha256=sjt1Z2dv2YCWdhSfOmjYLmxYhcp2zd7M-_3Wh1S4lWE,123645
|
@@ -306,7 +306,7 @@ ccxt/async_support/novadax.py,sha256=YNKUM1CGFK7lpBwbxSSL1IAEJCRVsNxeITkwtw6VWCM
|
|
306
306
|
ccxt/async_support/oceanex.py,sha256=nU_3t_nXz4WP0k3m5cHL3i67REZMpFSgtboeKPrwY-c,41458
|
307
307
|
ccxt/async_support/okcoin.py,sha256=TV0xooV4DIw1M8DrMNQBsDv4fhSTEp7Xtb5WK-F9bvc,151650
|
308
308
|
ccxt/async_support/okx.py,sha256=45Ct8hUkMWxv7eiUuOodutOuVqldd_6ShEWRMxeeuh0,384383
|
309
|
-
ccxt/async_support/onetrading.py,sha256=
|
309
|
+
ccxt/async_support/onetrading.py,sha256=8rzPvMyb1FeeAgg3n6re3_nVKZuMBhek0W2WyOcakjA,88823
|
310
310
|
ccxt/async_support/oxfun.py,sha256=Tx6_o3oWTnqIhBfUyJ1KwdxlYeAsAdZwAkk-q0ifjbY,125368
|
311
311
|
ccxt/async_support/p2b.py,sha256=VKUX8u7gtHkKDwBjAyskScm2FEs6xxDuKLXE-jSHXwY,54532
|
312
312
|
ccxt/async_support/paradex.py,sha256=e46UVIJU0WlwE1sPb6rvs0f60S6vjcdnNXhG2locNUY,86275
|
@@ -319,7 +319,7 @@ ccxt/async_support/timex.py,sha256=vRHjqc-6uMgZTY-sFTBApU_QBnrUri8gaHPNw_Na3Jo,7
|
|
319
319
|
ccxt/async_support/tokocrypto.py,sha256=nzJhrGTCTWMbbjI4P_IKfO1O84td8pSssCgZhTqQ7o4,123554
|
320
320
|
ccxt/async_support/tradeogre.py,sha256=2WdZ9y6osj4usU2aF0Go7LzHyVb6MPRMk6p9uJoyjE0,24362
|
321
321
|
ccxt/async_support/upbit.py,sha256=r-7J61DYPXfCOa2-iks16MIiqF4IjfuIWQURyximwZ4,85895
|
322
|
-
ccxt/async_support/vertex.py,sha256=
|
322
|
+
ccxt/async_support/vertex.py,sha256=L3SmnNn1YErT00VE--AWbLUjm7ZobPxgUmrO1dMViwU,122682
|
323
323
|
ccxt/async_support/wavesexchange.py,sha256=wHxvsBQydDEYRgeAZKI9WO4TLBKmmSPTLm0eT0pKB5g,115530
|
324
324
|
ccxt/async_support/wazirx.py,sha256=bnUpw9be3o4l2Hxm3jcfNXn5bMyZlgqoG8BGPusuIzs,52707
|
325
325
|
ccxt/async_support/whitebit.py,sha256=nprWBN-VHBhKJn1cr3BK9h328WG0ctvpXo5ruQf9818,120087
|
@@ -330,7 +330,7 @@ ccxt/async_support/yobit.py,sha256=GQhvYrsGHQrVdTrNHQxx9isEGqUABexlllzao9HL3f8,5
|
|
330
330
|
ccxt/async_support/zaif.py,sha256=-ZTr8M2JaIRCL90VrbCDXBMAsZwbiwsFChSQ2rWODuQ,29044
|
331
331
|
ccxt/async_support/zonda.py,sha256=njWK4t42n7BowCvc3j5WKwCxEDc2Y8vi0d-yp296-q0,81883
|
332
332
|
ccxt/async_support/base/__init__.py,sha256=aVYSsFi--b4InRs9zDN_wtCpj8odosAB726JdUHavrk,67
|
333
|
-
ccxt/async_support/base/exchange.py,sha256=
|
333
|
+
ccxt/async_support/base/exchange.py,sha256=MqLauuis114A35bQfTaLpPZY5KlSf0O3GWPi8cMv0lU,113443
|
334
334
|
ccxt/async_support/base/throttler.py,sha256=tvDVcdRUVYi8fZRlEcnqtgzcgB_KMUMRs5Pu8tuU-tU,1847
|
335
335
|
ccxt/async_support/base/ws/__init__.py,sha256=uockzpLuwntKGZbs5EOWFe-Zg-k6Cj7GhNJLc_RX0so,1791
|
336
336
|
ccxt/async_support/base/ws/aiohttp_client.py,sha256=5IEiT0elWI9a7Vr-KV0jgmlbpLJWBzIlrLaCkTKGaqY,5752
|
@@ -344,14 +344,14 @@ ccxt/async_support/base/ws/order_book_side.py,sha256=GhnGUt78pJ-AYL_Dq9produGjmB
|
|
344
344
|
ccxt/base/__init__.py,sha256=eTx1OE3HJjspFUQjGm6LBhaQiMKJnXjkdP-JUXknyQ0,1320
|
345
345
|
ccxt/base/decimal_to_precision.py,sha256=fgWRBzRTtsf3r2INyS4f7WHlzgjB5YM1ekiwqD21aac,6634
|
346
346
|
ccxt/base/errors.py,sha256=Pad-6ugvGUwhoYuKUliX-N7FTrcnKCQGFjsaq2tMn0I,4610
|
347
|
-
ccxt/base/exchange.py,sha256=
|
347
|
+
ccxt/base/exchange.py,sha256=8P6h_14-W8eTmYLJpMftblk-G4V3TExZVqnWe6Ta3gU,301065
|
348
348
|
ccxt/base/precise.py,sha256=koce64Yrp6vFbGijJtUt-QQ6XhJgeGTCksZ871FPp_A,8886
|
349
349
|
ccxt/base/types.py,sha256=sI5Z0rP_QKGvvukEDEyNZFmpw0FWKld1Km3KC6wRTlU,9673
|
350
|
-
ccxt/pro/__init__.py,sha256=
|
350
|
+
ccxt/pro/__init__.py,sha256=qwkxry1kI9aluj8iUJyoBDlG78mahS22svldQQNCqo4,7710
|
351
351
|
ccxt/pro/alpaca.py,sha256=xh1yg1Ok-Zh_Mfx-MBjNrfJDs6MUU0exFfEj3GuQPC4,27631
|
352
352
|
ccxt/pro/ascendex.py,sha256=QueLgISoIxgGSOta2W7En4pwAsEXbTP5q5ef4UjpTQQ,37524
|
353
353
|
ccxt/pro/bequant.py,sha256=33OEUWBi4D9-2w8CmkwN3aF1qS-AlLqX3pxrWwNbXPY,1552
|
354
|
-
ccxt/pro/binance.py,sha256=
|
354
|
+
ccxt/pro/binance.py,sha256=oiT058GJMGN5_Zqqyk18AFGp5KyLUeqcjbarV4go-ck,200367
|
355
355
|
ccxt/pro/binancecoinm.py,sha256=LlgF4rXHHrsQMaklhTEzSiE6U9V25AjHHg_DRat7Mf0,1036
|
356
356
|
ccxt/pro/binanceus.py,sha256=lcRxvQSJ5sJCx1FqzDI9PVOg_vvpFwwlZs4_8QkoPJ0,1995
|
357
357
|
ccxt/pro/binanceusdm.py,sha256=lLdOv0d-lM-1wfCc_y_POb6GdmVIiX7PFzmKTWsVyNw,1512
|
@@ -412,8 +412,8 @@ ccxt/pro/phemex.py,sha256=lj6sE6XWtB95I3EVcdR70Dfw2mvLJGisulibwgojSLU,63433
|
|
412
412
|
ccxt/pro/poloniex.py,sha256=QKpKOTW73iUQxaFXFZ_0KbyPFJhXtMWNNsfgP-CBeXU,53574
|
413
413
|
ccxt/pro/poloniexfutures.py,sha256=a3u8CIc7CuK04jU4PTLPVtGsw7omJ80KRopshziShYU,42020
|
414
414
|
ccxt/pro/probit.py,sha256=_oX1OHOd9M5D_fT2w3-zqACXouoUOFsbKxb6Ew3sNOk,23223
|
415
|
-
ccxt/pro/upbit.py,sha256=
|
416
|
-
ccxt/pro/vertex.py,sha256=
|
415
|
+
ccxt/pro/upbit.py,sha256=GLVNi8iDXkvzat7SaoziqYWbOMsq6Jml9fdwT4uCb3g,25844
|
416
|
+
ccxt/pro/vertex.py,sha256=3AMWLHAD72DtTbWQazDd11wNpgHidxhI7e8L1yKpFYM,40873
|
417
417
|
ccxt/pro/wazirx.py,sha256=St9GkOg3vFZ4o3NySL_izzbrs4Kes2-1iS7iznDxZ6o,30247
|
418
418
|
ccxt/pro/whitebit.py,sha256=eZ35sh_VGAzOkCbu8wh-Dw1FWU7XiEb76ID3MdOqH4Y,37046
|
419
419
|
ccxt/pro/woo.py,sha256=UWRqDIGv5A-pfF-_DZg7lLRfl94EACC1fz9BDUDWu30,51563
|
@@ -650,8 +650,8 @@ ccxt/test/tests_async.py,sha256=Rdif2h9mDyyLlx2hSSHjjQh72fzjFJjfgV8_EsIl3Uw,8494
|
|
650
650
|
ccxt/test/tests_helpers.py,sha256=z5TiaK0WyUCmM_uGTFz7cgMNqNwG_SMI9qk7yec5ces,9693
|
651
651
|
ccxt/test/tests_init.py,sha256=GodMIrJue4KBHHqD4vSPZxokPWpxbZIuEp19UdxlFAg,1166
|
652
652
|
ccxt/test/tests_sync.py,sha256=pG75QzGnyOwiZ7M-RDnTgNe_keIoPmiT5jZhIjR11NI,84005
|
653
|
-
ccxt-4.4.
|
654
|
-
ccxt-4.4.
|
655
|
-
ccxt-4.4.
|
656
|
-
ccxt-4.4.
|
657
|
-
ccxt-4.4.
|
653
|
+
ccxt-4.4.15.dist-info/LICENSE.txt,sha256=EIb9221AhMHV7xF1_55STFdKTFsnJVJYkRpY2Lnvo5w,1068
|
654
|
+
ccxt-4.4.15.dist-info/METADATA,sha256=dIHG6TLvVuCUoItcdaZ4qEa97pv1BNJlAW9R5IErrHM,114487
|
655
|
+
ccxt-4.4.15.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
656
|
+
ccxt-4.4.15.dist-info/top_level.txt,sha256=CkQDuCTDKNcImPV60t36G6MdYfxsAPNiSaEwifVoVMo,5
|
657
|
+
ccxt-4.4.15.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|