mexc-exchange-api 0.0.85__py3-none-any.whl → 0.0.86__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 mexc-exchange-api might be problematic. Click here for more details.
- mexc/ccxt/__init__.py +1 -1
- mexc/ccxt/async_support/__init__.py +1 -1
- mexc/ccxt/async_support/base/exchange.py +10 -7
- mexc/ccxt/async_support/mexc.py +28 -1
- mexc/ccxt/base/exchange.py +15 -7
- mexc/ccxt/mexc.py +28 -1
- mexc/ccxt/pro/__init__.py +1 -1
- mexc/ccxt/pro/mexc.py +6 -3
- {mexc_exchange_api-0.0.85.dist-info → mexc_exchange_api-0.0.86.dist-info}/METADATA +1 -1
- {mexc_exchange_api-0.0.85.dist-info → mexc_exchange_api-0.0.86.dist-info}/RECORD +11 -11
- {mexc_exchange_api-0.0.85.dist-info → mexc_exchange_api-0.0.86.dist-info}/WHEEL +0 -0
mexc/ccxt/__init__.py
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
# -----------------------------------------------------------------------------
|
|
4
4
|
|
|
5
|
-
__version__ = '4.5.
|
|
5
|
+
__version__ = '4.5.3'
|
|
6
6
|
|
|
7
7
|
# -----------------------------------------------------------------------------
|
|
8
8
|
|
|
@@ -708,6 +708,9 @@ class Exchange(BaseExchange):
|
|
|
708
708
|
async def un_watch_positions(self, symbols: Strings = None, params={}):
|
|
709
709
|
raise NotSupported(self.id + ' unWatchPositions() is not supported yet')
|
|
710
710
|
|
|
711
|
+
async def un_watch_ticker(self, symbol: str, params={}):
|
|
712
|
+
raise NotSupported(self.id + ' unWatchTicker() is not supported yet')
|
|
713
|
+
|
|
711
714
|
async def fetch_deposit_addresses(self, codes: Strings = None, params={}):
|
|
712
715
|
raise NotSupported(self.id + ' fetchDepositAddresses() is not supported yet')
|
|
713
716
|
|
|
@@ -868,19 +871,19 @@ class Exchange(BaseExchange):
|
|
|
868
871
|
async def repay_margin(self, code: str, amount: float, symbol: Str = None, params={}):
|
|
869
872
|
raise NotSupported(self.id + ' repayMargin is deprecated, please use repayCrossMargin or repayIsolatedMargin instead')
|
|
870
873
|
|
|
871
|
-
async def fetch_ohlcv(self, symbol: str, timeframe='1m', since: Int = None, limit: Int = None, params={}):
|
|
874
|
+
async def fetch_ohlcv(self, symbol: str, timeframe: str = '1m', since: Int = None, limit: Int = None, params={}):
|
|
872
875
|
message = ''
|
|
873
876
|
if self.has['fetchTrades']:
|
|
874
877
|
message = '. If you want to build OHLCV candles from trade executions data, visit https://github.com/ccxt/ccxt/tree/master/examples/ and see "build-ohlcv-bars" file'
|
|
875
878
|
raise NotSupported(self.id + ' fetchOHLCV() is not supported yet' + message)
|
|
876
879
|
|
|
877
|
-
async def fetch_ohlcv_ws(self, symbol: str, timeframe='1m', since: Int = None, limit: Int = None, params={}):
|
|
880
|
+
async def fetch_ohlcv_ws(self, symbol: str, timeframe: str = '1m', since: Int = None, limit: Int = None, params={}):
|
|
878
881
|
message = ''
|
|
879
882
|
if self.has['fetchTradesWs']:
|
|
880
883
|
message = '. If you want to build OHLCV candles from trade executions data, visit https://github.com/ccxt/ccxt/tree/master/examples/ and see "build-ohlcv-bars" file'
|
|
881
884
|
raise NotSupported(self.id + ' fetchOHLCVWs() is not supported yet. Try using fetchOHLCV instead.' + message)
|
|
882
885
|
|
|
883
|
-
async def watch_ohlcv(self, symbol: str, timeframe='1m', since: Int = None, limit: Int = None, params={}):
|
|
886
|
+
async def watch_ohlcv(self, symbol: str, timeframe: str = '1m', since: Int = None, limit: Int = None, params={}):
|
|
884
887
|
raise NotSupported(self.id + ' watchOHLCV() is not supported yet')
|
|
885
888
|
|
|
886
889
|
async def fetch_web_endpoint(self, method, endpointMethod, returnAsJson, startRegex=None, endRegex=None):
|
|
@@ -1850,7 +1853,7 @@ class Exchange(BaseExchange):
|
|
|
1850
1853
|
else:
|
|
1851
1854
|
raise NotSupported(self.id + ' fetchFundingInterval() is not supported yet')
|
|
1852
1855
|
|
|
1853
|
-
async def fetch_mark_ohlcv(self, symbol: str, timeframe='1m', since: Int = None, limit: Int = None, params={}):
|
|
1856
|
+
async def fetch_mark_ohlcv(self, symbol: str, timeframe: str = '1m', since: Int = None, limit: Int = None, params={}):
|
|
1854
1857
|
"""
|
|
1855
1858
|
fetches historical mark price candlestick data containing the open, high, low, and close price of a market
|
|
1856
1859
|
:param str symbol: unified symbol of the market to fetch OHLCV data for
|
|
@@ -1868,7 +1871,7 @@ class Exchange(BaseExchange):
|
|
|
1868
1871
|
else:
|
|
1869
1872
|
raise NotSupported(self.id + ' fetchMarkOHLCV() is not supported yet')
|
|
1870
1873
|
|
|
1871
|
-
async def fetch_index_ohlcv(self, symbol: str, timeframe='1m', since: Int = None, limit: Int = None, params={}):
|
|
1874
|
+
async def fetch_index_ohlcv(self, symbol: str, timeframe: str = '1m', since: Int = None, limit: Int = None, params={}):
|
|
1872
1875
|
"""
|
|
1873
1876
|
fetches historical index price candlestick data containing the open, high, low, and close price of a market
|
|
1874
1877
|
:param str symbol: unified symbol of the market to fetch OHLCV data for
|
|
@@ -1886,7 +1889,7 @@ class Exchange(BaseExchange):
|
|
|
1886
1889
|
else:
|
|
1887
1890
|
raise NotSupported(self.id + ' fetchIndexOHLCV() is not supported yet')
|
|
1888
1891
|
|
|
1889
|
-
async def fetch_premium_index_ohlcv(self, symbol: str, timeframe='1m', since: Int = None, limit: Int = None, params={}):
|
|
1892
|
+
async def fetch_premium_index_ohlcv(self, symbol: str, timeframe: str = '1m', since: Int = None, limit: Int = None, params={}):
|
|
1890
1893
|
"""
|
|
1891
1894
|
fetches historical premium index price candlestick data containing the open, high, low, and close price of a market
|
|
1892
1895
|
:param str symbol: unified symbol of the market to fetch OHLCV data for
|
mexc/ccxt/async_support/mexc.py
CHANGED
|
@@ -4761,7 +4761,13 @@ class mexc(Exchange, ImplicitAPI):
|
|
|
4761
4761
|
# "id":"25fb2831fb6d4fc7aa4094612a26c81d"
|
|
4762
4762
|
# }
|
|
4763
4763
|
#
|
|
4764
|
-
|
|
4764
|
+
# internal withdraw(aka internal-transfer)
|
|
4765
|
+
#
|
|
4766
|
+
# {
|
|
4767
|
+
# "tranId":"ad36f0e9c9a24ae794b36fa4f152e471"
|
|
4768
|
+
# }
|
|
4769
|
+
#
|
|
4770
|
+
id = self.safe_string_2(transaction, 'id', 'tranId')
|
|
4765
4771
|
type = 'deposit' if (id is None) else 'withdrawal'
|
|
4766
4772
|
timestamp = self.safe_integer_2(transaction, 'insertTime', 'applyTime')
|
|
4767
4773
|
updated = self.safe_integer(transaction, 'updateTime')
|
|
@@ -5255,17 +5261,38 @@ class mexc(Exchange, ImplicitAPI):
|
|
|
5255
5261
|
make a withdrawal
|
|
5256
5262
|
|
|
5257
5263
|
https://mexcdevelop.github.io/apidocs/spot_v3_en/#withdraw-new
|
|
5264
|
+
https://www.mexc.com/api-docs/spot-v3/wallet-endpoints#internal-transfer
|
|
5258
5265
|
|
|
5259
5266
|
:param str code: unified currency code
|
|
5260
5267
|
:param float amount: the amount to withdraw
|
|
5261
5268
|
:param str address: the address to withdraw to
|
|
5262
5269
|
:param str tag:
|
|
5263
5270
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
|
5271
|
+
:param dict [params.internal]: False by default, set to True for an "internal transfer"
|
|
5272
|
+
:param dict [params.toAccountType]: skipped by default, set to 'EMAIL|UID|MOBILE' when making an "internal transfer"
|
|
5264
5273
|
:returns dict: a `transaction structure <https://docs.ccxt.com/#/?id=transaction-structure>`
|
|
5265
5274
|
"""
|
|
5266
5275
|
await self.load_markets()
|
|
5267
5276
|
currency = self.currency(code)
|
|
5268
5277
|
tag, params = self.handle_withdraw_tag_and_params(tag, params)
|
|
5278
|
+
internal = self.safe_bool(params, 'internal', False)
|
|
5279
|
+
if internal:
|
|
5280
|
+
params = self.omit(params, 'internal')
|
|
5281
|
+
requestForInternal = {
|
|
5282
|
+
'asset': currency['id'],
|
|
5283
|
+
'amount': amount,
|
|
5284
|
+
'toAccount': address,
|
|
5285
|
+
}
|
|
5286
|
+
toAccountType = self.safe_string(params, 'toAccountType')
|
|
5287
|
+
if toAccountType is None:
|
|
5288
|
+
raise ArgumentsRequired(self.id + ' withdraw() requires a toAccountType parameter for internal transfer to be of: EMAIL | UID | MOBILE')
|
|
5289
|
+
responseForInternal = await self.spotPrivatePostCapitalTransferInternal(self.extend(requestForInternal, params))
|
|
5290
|
+
#
|
|
5291
|
+
# {
|
|
5292
|
+
# "id":"7213fea8e94b4a5593d507237e5a555b"
|
|
5293
|
+
# }
|
|
5294
|
+
#
|
|
5295
|
+
return self.parse_transaction(responseForInternal, currency)
|
|
5269
5296
|
networks = self.safe_dict(self.options, 'networks', {})
|
|
5270
5297
|
network = self.safe_string_2(params, 'network', 'netWork') # self line allows the user to specify either ERC20 or ETH
|
|
5271
5298
|
network = self.safe_string(networks, network, network) # handle ETH > ERC-20 alias
|
mexc/ccxt/base/exchange.py
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
# -----------------------------------------------------------------------------
|
|
6
6
|
|
|
7
|
-
__version__ = '4.5.
|
|
7
|
+
__version__ = '4.5.3'
|
|
8
8
|
|
|
9
9
|
# -----------------------------------------------------------------------------
|
|
10
10
|
|
|
@@ -2641,6 +2641,9 @@ class Exchange(object):
|
|
|
2641
2641
|
def un_watch_positions(self, symbols: Strings = None, params={}):
|
|
2642
2642
|
raise NotSupported(self.id + ' unWatchPositions() is not supported yet')
|
|
2643
2643
|
|
|
2644
|
+
def un_watch_ticker(self, symbol: str, params={}):
|
|
2645
|
+
raise NotSupported(self.id + ' unWatchTicker() is not supported yet')
|
|
2646
|
+
|
|
2644
2647
|
def fetch_deposit_addresses(self, codes: Strings = None, params={}):
|
|
2645
2648
|
raise NotSupported(self.id + ' fetchDepositAddresses() is not supported yet')
|
|
2646
2649
|
|
|
@@ -3948,19 +3951,19 @@ class Exchange(object):
|
|
|
3948
3951
|
def repay_margin(self, code: str, amount: float, symbol: Str = None, params={}):
|
|
3949
3952
|
raise NotSupported(self.id + ' repayMargin is deprecated, please use repayCrossMargin or repayIsolatedMargin instead')
|
|
3950
3953
|
|
|
3951
|
-
def fetch_ohlcv(self, symbol: str, timeframe='1m', since: Int = None, limit: Int = None, params={}):
|
|
3954
|
+
def fetch_ohlcv(self, symbol: str, timeframe: str = '1m', since: Int = None, limit: Int = None, params={}):
|
|
3952
3955
|
message = ''
|
|
3953
3956
|
if self.has['fetchTrades']:
|
|
3954
3957
|
message = '. If you want to build OHLCV candles from trade executions data, visit https://github.com/ccxt/ccxt/tree/master/examples/ and see "build-ohlcv-bars" file'
|
|
3955
3958
|
raise NotSupported(self.id + ' fetchOHLCV() is not supported yet' + message)
|
|
3956
3959
|
|
|
3957
|
-
def fetch_ohlcv_ws(self, symbol: str, timeframe='1m', since: Int = None, limit: Int = None, params={}):
|
|
3960
|
+
def fetch_ohlcv_ws(self, symbol: str, timeframe: str = '1m', since: Int = None, limit: Int = None, params={}):
|
|
3958
3961
|
message = ''
|
|
3959
3962
|
if self.has['fetchTradesWs']:
|
|
3960
3963
|
message = '. If you want to build OHLCV candles from trade executions data, visit https://github.com/ccxt/ccxt/tree/master/examples/ and see "build-ohlcv-bars" file'
|
|
3961
3964
|
raise NotSupported(self.id + ' fetchOHLCVWs() is not supported yet. Try using fetchOHLCV instead.' + message)
|
|
3962
3965
|
|
|
3963
|
-
def watch_ohlcv(self, symbol: str, timeframe='1m', since: Int = None, limit: Int = None, params={}):
|
|
3966
|
+
def watch_ohlcv(self, symbol: str, timeframe: str = '1m', since: Int = None, limit: Int = None, params={}):
|
|
3964
3967
|
raise NotSupported(self.id + ' watchOHLCV() is not supported yet')
|
|
3965
3968
|
|
|
3966
3969
|
def convert_trading_view_to_ohlcv(self, ohlcvs: List[List[float]], timestamp='t', open='o', high='h', low='l', close='c', volume='v', ms=False):
|
|
@@ -4763,6 +4766,11 @@ class Exchange(object):
|
|
|
4763
4766
|
return market
|
|
4764
4767
|
return result
|
|
4765
4768
|
|
|
4769
|
+
def market_or_null(self, symbol: str):
|
|
4770
|
+
if symbol is None:
|
|
4771
|
+
return None
|
|
4772
|
+
return self.market(symbol)
|
|
4773
|
+
|
|
4766
4774
|
def check_required_credentials(self, error=True):
|
|
4767
4775
|
"""
|
|
4768
4776
|
@ignore
|
|
@@ -6201,7 +6209,7 @@ class Exchange(object):
|
|
|
6201
6209
|
else:
|
|
6202
6210
|
raise NotSupported(self.id + ' fetchFundingInterval() is not supported yet')
|
|
6203
6211
|
|
|
6204
|
-
def fetch_mark_ohlcv(self, symbol: str, timeframe='1m', since: Int = None, limit: Int = None, params={}):
|
|
6212
|
+
def fetch_mark_ohlcv(self, symbol: str, timeframe: str = '1m', since: Int = None, limit: Int = None, params={}):
|
|
6205
6213
|
"""
|
|
6206
6214
|
fetches historical mark price candlestick data containing the open, high, low, and close price of a market
|
|
6207
6215
|
:param str symbol: unified symbol of the market to fetch OHLCV data for
|
|
@@ -6219,7 +6227,7 @@ class Exchange(object):
|
|
|
6219
6227
|
else:
|
|
6220
6228
|
raise NotSupported(self.id + ' fetchMarkOHLCV() is not supported yet')
|
|
6221
6229
|
|
|
6222
|
-
def fetch_index_ohlcv(self, symbol: str, timeframe='1m', since: Int = None, limit: Int = None, params={}):
|
|
6230
|
+
def fetch_index_ohlcv(self, symbol: str, timeframe: str = '1m', since: Int = None, limit: Int = None, params={}):
|
|
6223
6231
|
"""
|
|
6224
6232
|
fetches historical index price candlestick data containing the open, high, low, and close price of a market
|
|
6225
6233
|
:param str symbol: unified symbol of the market to fetch OHLCV data for
|
|
@@ -6237,7 +6245,7 @@ class Exchange(object):
|
|
|
6237
6245
|
else:
|
|
6238
6246
|
raise NotSupported(self.id + ' fetchIndexOHLCV() is not supported yet')
|
|
6239
6247
|
|
|
6240
|
-
def fetch_premium_index_ohlcv(self, symbol: str, timeframe='1m', since: Int = None, limit: Int = None, params={}):
|
|
6248
|
+
def fetch_premium_index_ohlcv(self, symbol: str, timeframe: str = '1m', since: Int = None, limit: Int = None, params={}):
|
|
6241
6249
|
"""
|
|
6242
6250
|
fetches historical premium index price candlestick data containing the open, high, low, and close price of a market
|
|
6243
6251
|
:param str symbol: unified symbol of the market to fetch OHLCV data for
|
mexc/ccxt/mexc.py
CHANGED
|
@@ -4760,7 +4760,13 @@ class mexc(Exchange, ImplicitAPI):
|
|
|
4760
4760
|
# "id":"25fb2831fb6d4fc7aa4094612a26c81d"
|
|
4761
4761
|
# }
|
|
4762
4762
|
#
|
|
4763
|
-
|
|
4763
|
+
# internal withdraw(aka internal-transfer)
|
|
4764
|
+
#
|
|
4765
|
+
# {
|
|
4766
|
+
# "tranId":"ad36f0e9c9a24ae794b36fa4f152e471"
|
|
4767
|
+
# }
|
|
4768
|
+
#
|
|
4769
|
+
id = self.safe_string_2(transaction, 'id', 'tranId')
|
|
4764
4770
|
type = 'deposit' if (id is None) else 'withdrawal'
|
|
4765
4771
|
timestamp = self.safe_integer_2(transaction, 'insertTime', 'applyTime')
|
|
4766
4772
|
updated = self.safe_integer(transaction, 'updateTime')
|
|
@@ -5254,17 +5260,38 @@ class mexc(Exchange, ImplicitAPI):
|
|
|
5254
5260
|
make a withdrawal
|
|
5255
5261
|
|
|
5256
5262
|
https://mexcdevelop.github.io/apidocs/spot_v3_en/#withdraw-new
|
|
5263
|
+
https://www.mexc.com/api-docs/spot-v3/wallet-endpoints#internal-transfer
|
|
5257
5264
|
|
|
5258
5265
|
:param str code: unified currency code
|
|
5259
5266
|
:param float amount: the amount to withdraw
|
|
5260
5267
|
:param str address: the address to withdraw to
|
|
5261
5268
|
:param str tag:
|
|
5262
5269
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
|
5270
|
+
:param dict [params.internal]: False by default, set to True for an "internal transfer"
|
|
5271
|
+
:param dict [params.toAccountType]: skipped by default, set to 'EMAIL|UID|MOBILE' when making an "internal transfer"
|
|
5263
5272
|
:returns dict: a `transaction structure <https://docs.ccxt.com/#/?id=transaction-structure>`
|
|
5264
5273
|
"""
|
|
5265
5274
|
self.load_markets()
|
|
5266
5275
|
currency = self.currency(code)
|
|
5267
5276
|
tag, params = self.handle_withdraw_tag_and_params(tag, params)
|
|
5277
|
+
internal = self.safe_bool(params, 'internal', False)
|
|
5278
|
+
if internal:
|
|
5279
|
+
params = self.omit(params, 'internal')
|
|
5280
|
+
requestForInternal = {
|
|
5281
|
+
'asset': currency['id'],
|
|
5282
|
+
'amount': amount,
|
|
5283
|
+
'toAccount': address,
|
|
5284
|
+
}
|
|
5285
|
+
toAccountType = self.safe_string(params, 'toAccountType')
|
|
5286
|
+
if toAccountType is None:
|
|
5287
|
+
raise ArgumentsRequired(self.id + ' withdraw() requires a toAccountType parameter for internal transfer to be of: EMAIL | UID | MOBILE')
|
|
5288
|
+
responseForInternal = self.spotPrivatePostCapitalTransferInternal(self.extend(requestForInternal, params))
|
|
5289
|
+
#
|
|
5290
|
+
# {
|
|
5291
|
+
# "id":"7213fea8e94b4a5593d507237e5a555b"
|
|
5292
|
+
# }
|
|
5293
|
+
#
|
|
5294
|
+
return self.parse_transaction(responseForInternal, currency)
|
|
5268
5295
|
networks = self.safe_dict(self.options, 'networks', {})
|
|
5269
5296
|
network = self.safe_string_2(params, 'network', 'netWork') # self line allows the user to specify either ERC20 or ETH
|
|
5270
5297
|
network = self.safe_string(networks, network, network) # handle ETH > ERC-20 alias
|
mexc/ccxt/pro/__init__.py
CHANGED
mexc/ccxt/pro/mexc.py
CHANGED
|
@@ -184,7 +184,7 @@ class mexc(mexcAsync):
|
|
|
184
184
|
self.handle_bid_ask(client, message)
|
|
185
185
|
rawTicker = self.safe_dict_n(message, ['d', 'data', 'publicAggreBookTicker'])
|
|
186
186
|
marketId = self.safe_string_2(message, 's', 'symbol')
|
|
187
|
-
timestamp = self.safe_integer_2(message, 't', '
|
|
187
|
+
timestamp = self.safe_integer_2(message, 't', 'sendTime')
|
|
188
188
|
market = self.safe_market(marketId)
|
|
189
189
|
symbol = market['symbol']
|
|
190
190
|
ticker = None
|
|
@@ -1480,7 +1480,7 @@ class mexc(mexcAsync):
|
|
|
1480
1480
|
# "ts": 1680059188190
|
|
1481
1481
|
# }
|
|
1482
1482
|
#
|
|
1483
|
-
c = self.
|
|
1483
|
+
c = self.safe_string(message, 'c') # do not add 'channel' here, self is especially for spot
|
|
1484
1484
|
type = 'swap' if (c is None) else 'spot'
|
|
1485
1485
|
messageHash = 'balance:' + type
|
|
1486
1486
|
data = self.safe_dict_n(message, ['d', 'data', 'privateAccount'])
|
|
@@ -1494,7 +1494,10 @@ class mexc(mexcAsync):
|
|
|
1494
1494
|
currencyId = self.safe_string_n(data, ['a', 'currency', 'vcoinName'])
|
|
1495
1495
|
code = self.safe_currency_code(currencyId)
|
|
1496
1496
|
account = self.account()
|
|
1497
|
-
|
|
1497
|
+
balanceAmount = self.safe_string(data, 'balanceAmount')
|
|
1498
|
+
if balanceAmount is not None:
|
|
1499
|
+
account['free'] = balanceAmount
|
|
1500
|
+
account['total'] = self.safe_string_n(data, ['f', 'availableBalance'])
|
|
1498
1501
|
account['used'] = self.safe_string_n(data, ['l', 'frozenBalance', 'frozenAmount'])
|
|
1499
1502
|
self.balance[type][code] = account
|
|
1500
1503
|
self.balance[type] = self.safe_balance(self.balance[type])
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
mexc/__init__.py,sha256=bFV_Nfz_k-lfB_ImsHGpFnJuVMUXLBRbttugnPV7c4A,222
|
|
2
|
-
mexc/ccxt/__init__.py,sha256=
|
|
3
|
-
mexc/ccxt/mexc.py,sha256=
|
|
2
|
+
mexc/ccxt/__init__.py,sha256=V9zQ3RDA_bL2bpuTyCjLtqwWfFQTFn2QPiVn3_nar70,6126
|
|
3
|
+
mexc/ccxt/mexc.py,sha256=Lw1oduV2Yz5Zn_0z-74eP5jTdZ78-vvem4xN5yJklY0,261023
|
|
4
4
|
mexc/ccxt/abstract/mexc.py,sha256=oyg0sZFYs1d77F-_9QAatqMSQJ8h-1u1wWb-d1DX2zQ,26434
|
|
5
|
-
mexc/ccxt/async_support/__init__.py,sha256=
|
|
6
|
-
mexc/ccxt/async_support/mexc.py,sha256=
|
|
5
|
+
mexc/ccxt/async_support/__init__.py,sha256=RFppoeb6iq3vhyd8z_rdiP5vti5nLlUQr3MLdOLmmjU,4859
|
|
6
|
+
mexc/ccxt/async_support/mexc.py,sha256=0T_xkvZHwCZoI1opouAZL8PkiYRW7BUtz33kxEqozCs,262293
|
|
7
7
|
mexc/ccxt/async_support/base/__init__.py,sha256=aVYSsFi--b4InRs9zDN_wtCpj8odosAB726JdUHavrk,67
|
|
8
|
-
mexc/ccxt/async_support/base/exchange.py,sha256=
|
|
8
|
+
mexc/ccxt/async_support/base/exchange.py,sha256=nMqvBDsBpGe7mSUA1j8xK4_CvHvGtrlkeFfjdcnUfPQ,121450
|
|
9
9
|
mexc/ccxt/async_support/base/throttler.py,sha256=tvDVcdRUVYi8fZRlEcnqtgzcgB_KMUMRs5Pu8tuU-tU,1847
|
|
10
10
|
mexc/ccxt/async_support/base/ws/__init__.py,sha256=uockzpLuwntKGZbs5EOWFe-Zg-k6Cj7GhNJLc_RX0so,1791
|
|
11
11
|
mexc/ccxt/async_support/base/ws/cache.py,sha256=xf2VOtfUwloxSlIQ39M1RGZHWQzyS9IGhB5NX6cDcAc,8370
|
|
@@ -17,11 +17,11 @@ mexc/ccxt/async_support/base/ws/order_book_side.py,sha256=GhnGUt78pJ-AYL_Dq9prod
|
|
|
17
17
|
mexc/ccxt/base/__init__.py,sha256=eTx1OE3HJjspFUQjGm6LBhaQiMKJnXjkdP-JUXknyQ0,1320
|
|
18
18
|
mexc/ccxt/base/decimal_to_precision.py,sha256=3XI30u9YudHbTA438397u5rkdlXa3atxwZEfUus3C4k,6803
|
|
19
19
|
mexc/ccxt/base/errors.py,sha256=OGhWNvNtRlJOzFx-n1x3ZjTnaPpfWH0Vc0xACS-MeDw,5012
|
|
20
|
-
mexc/ccxt/base/exchange.py,sha256=
|
|
20
|
+
mexc/ccxt/base/exchange.py,sha256=K-wfT2MGTJMLuqR7ytj7xYunUdJOm3Ve3XRikY_3UKk,334643
|
|
21
21
|
mexc/ccxt/base/precise.py,sha256=koce64Yrp6vFbGijJtUt-QQ6XhJgeGTCksZ871FPp_A,8886
|
|
22
22
|
mexc/ccxt/base/types.py,sha256=Gvbogh9i7pPH7Z18xesYeDPribqqwq8uKpOv-YODFBs,11505
|
|
23
|
-
mexc/ccxt/pro/__init__.py,sha256=
|
|
24
|
-
mexc/ccxt/pro/mexc.py,sha256=
|
|
23
|
+
mexc/ccxt/pro/__init__.py,sha256=_BpokhPZ9jHn4aplOCMu5RXhYF_H44seXXrdibuIOSs,4173
|
|
24
|
+
mexc/ccxt/pro/mexc.py,sha256=c7A65AYXkWY8l-9pcrpZdlwMSW52zg3YhP76dz0uwUI,77115
|
|
25
25
|
mexc/ccxt/static_dependencies/README.md,sha256=3TCvhhn09_Cqf9BDDpao1V7EfKHDpQ6k9oWRsLFixpU,18
|
|
26
26
|
mexc/ccxt/static_dependencies/__init__.py,sha256=tzFje8cloqmiIE6kola3EaYC0SnD1izWnri69hzHsSw,168
|
|
27
27
|
mexc/ccxt/static_dependencies/ecdsa/__init__.py,sha256=Xaj0G79BLtBt2YZcOOMV8qOlQZ7fIJznNiHhiEEZfQA,594
|
|
@@ -281,6 +281,6 @@ mexc/ccxt/static_dependencies/toolz/curried/exceptions.py,sha256=gKFOHDIayAWnX2u
|
|
|
281
281
|
mexc/ccxt/static_dependencies/toolz/curried/operator.py,sha256=ML92mknkAwzBl2NCm-4werSUmJEtSHNY9NSzhseNM9s,525
|
|
282
282
|
mexc/ccxt/static_dependencies/typing_inspect/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
283
283
|
mexc/ccxt/static_dependencies/typing_inspect/typing_inspect.py,sha256=5gIWomLPfuDpgd3gX1GlnX0MuXM3VorR4j2W2qXORiQ,28269
|
|
284
|
-
mexc_exchange_api-0.0.
|
|
285
|
-
mexc_exchange_api-0.0.
|
|
286
|
-
mexc_exchange_api-0.0.
|
|
284
|
+
mexc_exchange_api-0.0.86.dist-info/METADATA,sha256=Jk6AhfBoekJWyLGmppdhlBBJ8VOGZaufrjyy4LaNTa4,18072
|
|
285
|
+
mexc_exchange_api-0.0.86.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
286
|
+
mexc_exchange_api-0.0.86.dist-info/RECORD,,
|
|
File without changes
|