python-okx 0.3.3__py3-none-any.whl → 0.3.5__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.
okx/Account.py CHANGED
@@ -5,7 +5,7 @@ from .okxclient import OkxClient
5
5
  class AccountAPI(OkxClient):
6
6
 
7
7
  def __init__(self, api_key='-1', api_secret_key='-1', passphrase='-1', use_server_time=None, flag='1',
8
- domain='https://www.okx.com', debug=True, proxy=None):
8
+ domain='https://www.okx.com', debug=False, proxy=None):
9
9
  OkxClient.__init__(self, api_key, api_secret_key, passphrase, use_server_time, flag, domain, debug, proxy)
10
10
 
11
11
  # Get Positions
@@ -88,8 +88,8 @@ class AccountAPI(OkxClient):
88
88
  return self._request_with_params(POST, ADJUSTMENT_MARGIN, params)
89
89
 
90
90
  # Get Leverage
91
- def get_leverage(self, instId, mgnMode):
92
- params = {'instId': instId, 'mgnMode': mgnMode}
91
+ def get_leverage(self, mgnMode, ccy='', instId=''):
92
+ params = {'instId': instId, 'mgnMode': mgnMode, 'ccy': ccy}
93
93
  return self._request_with_params(GET, GET_LEVERAGE, params)
94
94
 
95
95
  # Get instruments
@@ -294,3 +294,23 @@ class AccountAPI(OkxClient):
294
294
  if limit is not None:
295
295
  params['limit'] = limit
296
296
  return self._request_with_params(GET, BORROWING_ORDERS_LIST, params)
297
+
298
+ def spot_manual_borrow_repay(self, ccy=None, side=None, amt=None):
299
+ params = {}
300
+ if ccy is not None:
301
+ params['ccy'] = ccy
302
+ if side is not None:
303
+ params['side'] = side
304
+ if amt is not None:
305
+ params['amt'] = amt
306
+ return self._request_with_params(POST, MANUAL_REBORROW_REPAY, params)
307
+
308
+ def set_auto_repay(self, autoRepay=False):
309
+ params = {}
310
+ if autoRepay is not None:
311
+ params['autoRepay'] = autoRepay
312
+ return self._request_with_params(POST, SET_AUTO_REPAY, params)
313
+
314
+ def spot_borrow_repay_history(self, ccy='', type='', after='', before='', limit=''):
315
+ params = {'ccy': ccy, 'type': type, 'after': after, 'before': before, 'limit': limit}
316
+ return self._request_with_params(GET, GET_BORROW_REPAY_HISTORY, params)
okx/BlockTrading.py CHANGED
@@ -3,7 +3,7 @@ from .consts import *
3
3
 
4
4
 
5
5
  class BlockTradingAPI(OkxClient):
6
- def __init__(self, api_key='-1', api_secret_key='-1', passphrase='-1', use_server_time=None, flag='1', domain = 'https://www.okx.com',debug = True, proxy=None):
6
+ def __init__(self, api_key='-1', api_secret_key='-1', passphrase='-1', use_server_time=None, flag='1', domain = 'https://www.okx.com',debug = False, proxy=None):
7
7
  OkxClient.__init__(self, api_key, api_secret_key, passphrase, use_server_time, flag, domain, debug, proxy)
8
8
 
9
9
  def counterparties(self):
okx/Convert.py CHANGED
@@ -3,7 +3,7 @@ from .consts import *
3
3
 
4
4
 
5
5
  class ConvertAPI(OkxClient):
6
- def __init__(self, api_key='-1', api_secret_key='-1', passphrase='-1', use_server_time=None, flag='1', domain = 'https://www.okx.com',debug = True,proxy = None):
6
+ def __init__(self, api_key='-1', api_secret_key='-1', passphrase='-1', use_server_time=None, flag='1', domain = 'https://www.okx.com',debug = False,proxy = None):
7
7
  OkxClient.__init__(self, api_key, api_secret_key, passphrase, use_server_time, flag, domain, debug, proxy)
8
8
 
9
9
  def get_currencies(self):
okx/CopyTrading.py CHANGED
@@ -4,7 +4,7 @@ from .consts import *
4
4
 
5
5
  class CopyTradingAPI(OkxClient):
6
6
  def __init__(self, api_key='-1', api_secret_key='-1', passphrase='-1', use_server_time=False, flag='1',
7
- domain='https://www.okx.com', debug=True, proxy=None):
7
+ domain='https://www.okx.com', debug=False, proxy=None):
8
8
  OkxClient.__init__(self, api_key, api_secret_key, passphrase, use_server_time, flag, domain, debug,
9
9
  proxy=proxy)
10
10
 
okx/Earning.py CHANGED
@@ -3,7 +3,7 @@ from .consts import *
3
3
 
4
4
 
5
5
  class EarningAPI(OkxClient):
6
- def __init__(self, api_key='-1', api_secret_key='-1', passphrase='-1', use_server_time=None, flag='1', domain = 'https://www.okx.com',debug = True, proxy=None):
6
+ def __init__(self, api_key='-1', api_secret_key='-1', passphrase='-1', use_server_time=None, flag='1', domain = 'https://www.okx.com',debug = False, proxy=None):
7
7
  OkxClient.__init__(self, api_key, api_secret_key, passphrase, use_server_time, flag, domain, debug, proxy)
8
8
 
9
9
  def get_offers(self,productId = '',protocolType = '',ccy = ''):
okx/FDBroker.py CHANGED
@@ -3,7 +3,7 @@ from .consts import *
3
3
 
4
4
 
5
5
  class FDBrokerAPI(OkxClient):
6
- def __init__(self, api_key='-1', api_secret_key='-1', passphrase='-1', use_server_time=None, flag='1', domain = 'https://www.okx.com',debug = True, proxy=None):
6
+ def __init__(self, api_key='-1', api_secret_key='-1', passphrase='-1', use_server_time=None, flag='1', domain = 'https://www.okx.com',debug = False, proxy=None):
7
7
  OkxClient.__init__(self, api_key, api_secret_key, passphrase, use_server_time, flag, domain, debug, proxy)
8
8
 
9
9
  def generate_rebate_details_download_link(self, begin ='', end = ''):
okx/Funding.py CHANGED
@@ -5,7 +5,7 @@ from .consts import *
5
5
  class FundingAPI(OkxClient):
6
6
 
7
7
 
8
- def __init__(self, api_key='-1', api_secret_key='-1', passphrase='-1', use_server_time=None, flag='1', domain = 'https://www.okx.com',debug = True, proxy=None):
8
+ def __init__(self, api_key='-1', api_secret_key='-1', passphrase='-1', use_server_time=None, flag='1', domain = 'https://www.okx.com',debug = False, proxy=None):
9
9
  OkxClient.__init__(self, api_key, api_secret_key, passphrase, use_server_time, flag, domain, debug, proxy)
10
10
 
11
11
  # Get Non Tradable Assets
@@ -35,8 +35,8 @@ class FundingAPI(OkxClient):
35
35
  return self._request_with_params(POST, FUNDS_TRANSFER, params)
36
36
 
37
37
  # Withdrawal
38
- def withdrawal(self, ccy, amt, dest, toAddr, fee, chain='', areaCode='', clientId=''):
39
- params = {'ccy': ccy, 'amt': amt, 'dest': dest, 'toAddr': toAddr, 'fee': fee, 'chain': chain,
38
+ def withdrawal(self, ccy, amt, dest, toAddr, chain='', areaCode='', clientId=''):
39
+ params = {'ccy': ccy, 'amt': amt, 'dest': dest, 'toAddr': toAddr, 'chain': chain,
40
40
  'areaCode': areaCode, 'clientId': clientId}
41
41
  return self._request_with_params(POST, WITHDRAWAL_COIN, params)
42
42
 
okx/Grid.py CHANGED
@@ -3,7 +3,7 @@ from .consts import *
3
3
 
4
4
 
5
5
  class GridAPI(OkxClient):
6
- def __init__(self, api_key='-1', api_secret_key='-1', passphrase='-1', use_server_time=None, flag='1', domain = 'https://www.okx.com',debug = True, proxy=None):
6
+ def __init__(self, api_key='-1', api_secret_key='-1', passphrase='-1', use_server_time=None, flag='1', domain = 'https://www.okx.com',debug = False, proxy=None):
7
7
  OkxClient.__init__(self, api_key, api_secret_key, passphrase, use_server_time, flag, domain, debug, proxy)
8
8
 
9
9
  def grid_order_algo(self, instId='', algoOrdType='', maxPx='', minPx='', gridNum='', runType='', tpTriggerPx='',
okx/MarketData.py CHANGED
@@ -4,7 +4,7 @@ from .consts import *
4
4
 
5
5
  class MarketAPI(OkxClient):
6
6
 
7
- def __init__(self, api_key='-1', api_secret_key='-1', passphrase='-1', use_server_time=None, flag='1', domain = 'https://www.okx.com',debug = True, proxy=None):
7
+ def __init__(self, api_key='-1', api_secret_key='-1', passphrase='-1', use_server_time=None, flag='1', domain = 'https://www.okx.com',debug = False, proxy=None):
8
8
  OkxClient.__init__(self, api_key, api_secret_key, passphrase, use_server_time, flag, domain, debug, proxy)
9
9
 
10
10
 
okx/NDBroker.py CHANGED
@@ -1,7 +1,7 @@
1
1
  from .okxclient import OkxClient
2
2
  from .consts import *
3
3
  class NDBrokerAPI(OkxClient):
4
- def __init__(self, api_key='-1', api_secret_key='-1', passphrase='-1', use_server_time=None, flag='1', domain = 'https://www.okx.com',debug = True, proxy=None):
4
+ def __init__(self, api_key='-1', api_secret_key='-1', passphrase='-1', use_server_time=None, flag='1', domain = 'https://www.okx.com',debug = False, proxy=None):
5
5
  OkxClient.__init__(self, api_key, api_secret_key, passphrase, use_server_time, flag, domain, debug, proxy)
6
6
 
7
7
  #GET /api/v5/broker/nd/info
okx/PublicData.py CHANGED
@@ -4,7 +4,7 @@ from .consts import *
4
4
 
5
5
  class PublicAPI(OkxClient):
6
6
 
7
- def __init__(self, api_key='-1', api_secret_key='-1', passphrase='-1', use_server_time=None, flag='1', domain = 'https://www.okx.com',debug = True, proxy=None):
7
+ def __init__(self, api_key='-1', api_secret_key='-1', passphrase='-1', use_server_time=None, flag='1', domain = 'https://www.okx.com',debug = False, proxy=None):
8
8
  OkxClient.__init__(self, api_key, api_secret_key, passphrase, use_server_time, flag, domain, debug, proxy)
9
9
 
10
10
  # Get Instruments
okx/SimpleEarnFixed.py CHANGED
@@ -5,7 +5,7 @@ from okx.okxclient import OkxClient
5
5
 
6
6
  class SimpleEarnFixedAPI(OkxClient):
7
7
  def __init__(self, api_key='-1', api_secret_key='-1', passphrase='-1', use_server_time=None, flag='1',
8
- domain='https://www.okx.com', debug=True, proxy=None):
8
+ domain='https://www.okx.com', debug=False, proxy=None):
9
9
  OkxClient.__init__(self, api_key, api_secret_key, passphrase, use_server_time, flag, domain, debug, proxy)
10
10
 
11
11
  def get_lending_offers(self, ccy=None, term=None):
okx/SpreadTrading.py CHANGED
@@ -4,7 +4,7 @@ from .consts import *
4
4
 
5
5
  class SpreadTradingAPI(OkxClient):
6
6
 
7
- def __init__(self, api_key='-1', api_secret_key='-1', passphrase='-1', use_server_time=None, flag='1', domain = 'https://www.okx.com',debug = True, proxy=None):
7
+ def __init__(self, api_key='-1', api_secret_key='-1', passphrase='-1', use_server_time=None, flag='1', domain = 'https://www.okx.com',debug = False, proxy=None):
8
8
  OkxClient.__init__(self, api_key, api_secret_key, passphrase, use_server_time, flag, domain, debug, proxy)
9
9
 
10
10
  # Place Order
okx/Status.py CHANGED
@@ -3,7 +3,7 @@ from .consts import *
3
3
 
4
4
 
5
5
  class StatusAPI(OkxClient):
6
- def __init__(self, api_key='-1', api_secret_key='-1', passphrase='-1', use_server_time=None, flag='1', domain = 'https://www.okx.com',debug = True, proxy=None):
6
+ def __init__(self, api_key='-1', api_secret_key='-1', passphrase='-1', use_server_time=None, flag='1', domain = 'https://www.okx.com',debug = False, proxy=None):
7
7
  OkxClient.__init__(self, api_key, api_secret_key, passphrase, use_server_time, flag, domain, debug, proxy)
8
8
 
9
9
  def status(self, state=''):
okx/SubAccount.py CHANGED
@@ -3,7 +3,7 @@ from .consts import *
3
3
 
4
4
 
5
5
  class SubAccountAPI(OkxClient):
6
- def __init__(self, api_key='-1', api_secret_key='-1', passphrase='-1', use_server_time=None, flag='1', domain = 'https://www.okx.com',debug = True, proxy=None):
6
+ def __init__(self, api_key='-1', api_secret_key='-1', passphrase='-1', use_server_time=None, flag='1', domain = 'https://www.okx.com',debug = False, proxy=None):
7
7
  OkxClient.__init__(self, api_key, api_secret_key, passphrase, use_server_time, flag, domain, debug, proxy)
8
8
 
9
9
  def get_account_balance(self, subAcct):
okx/Trade.py CHANGED
@@ -7,7 +7,7 @@ from .consts import *
7
7
  class TradeAPI(OkxClient):
8
8
 
9
9
  def __init__(self, api_key='-1', api_secret_key='-1', passphrase='-1', use_server_time=None, flag='1',
10
- domain='https://www.okx.com', debug=True, proxy=None):
10
+ domain='https://www.okx.com', debug=False, proxy=None):
11
11
  OkxClient.__init__(self, api_key, api_secret_key, passphrase, use_server_time, flag, domain, debug, proxy)
12
12
 
13
13
  # Place Order
okx/TradingData.py CHANGED
@@ -4,7 +4,7 @@ from .consts import *
4
4
 
5
5
  class TradingDataAPI(OkxClient):
6
6
 
7
- def __init__(self, api_key='-1', api_secret_key='-1', passphrase='-1', use_server_time=None, flag='1', domain = 'https://www.okx.com',debug = True, proxy=None):
7
+ def __init__(self, api_key='-1', api_secret_key='-1', passphrase='-1', use_server_time=None, flag='1', domain = 'https://www.okx.com',debug = False, proxy=None):
8
8
  OkxClient.__init__(self, api_key, api_secret_key, passphrase, use_server_time, flag, domain, debug, proxy)
9
9
 
10
10
 
okx/__init__.py CHANGED
@@ -2,4 +2,4 @@
2
2
  Python SDK for the OKX API v5
3
3
 
4
4
  """
5
- __version__="0.3.3"
5
+ __version__="0.3.5"
okx/consts.py CHANGED
@@ -62,6 +62,9 @@ AMEND_BORROWING_ORDER='/api/v5/account/fixed-loan/amend-borrowing-order'
62
62
  MANUAL_REBORROW = '/api/v5/account/fixed-loan/manual-reborrow'
63
63
  REPAY_BORROWING_ORDER='/api/v5/account/fixed-loan/repay-borrowing-order'
64
64
  BORROWING_ORDERS_LIST='/api/v5/account/fixed-loan/borrowing-orders-list'
65
+ MANUAL_REBORROW_REPAY = '/api/v5/account/spot-manual-borrow-repay'
66
+ SET_AUTO_REPAY='/api/v5/account/set-auto-repay'
67
+ GET_BORROW_REPAY_HISTORY='/api/v5/account/spot-borrow-repay-history'
65
68
 
66
69
  # funding-complete-testcomplete
67
70
  NON_TRADABLE_ASSETS = '/api/v5/asset/non-tradable-assets'
okx/okxclient.py CHANGED
@@ -13,7 +13,7 @@ from . import consts as c, utils, exceptions
13
13
 
14
14
  class OkxClient(Client):
15
15
 
16
- def __init__(self, api_key='-1', api_secret_key='-1', passphrase='-1', use_server_time=None, flag='1',base_api=c.API_URL, debug='True', proxy=None):
16
+ def __init__(self, api_key='-1', api_secret_key='-1', passphrase='-1', use_server_time=None, flag='1',base_api=c.API_URL, debug=False, proxy=None):
17
17
  super().__init__(base_url=base_api, http2=True, proxy=proxy)
18
18
  self.API_KEY = api_key
19
19
  self.API_SECRET_KEY = api_secret_key
@@ -5,8 +5,7 @@ import ssl
5
5
  import certifi
6
6
  import websockets
7
7
 
8
- logging.basicConfig(level=logging.INFO)
9
- logger = logging.getLogger("WebSocketFactory")
8
+ logger = logging.getLogger(__name__)
10
9
 
11
10
 
12
11
  class WebSocketFactory:
@@ -5,8 +5,7 @@ import logging
5
5
  from okx.websocket import WsUtils
6
6
  from okx.websocket.WebSocketFactory import WebSocketFactory
7
7
 
8
- logging.basicConfig(level=logging.INFO)
9
- logger = logging.getLogger("WsPrivate")
8
+ logger = logging.getLogger(__name__)
10
9
 
11
10
 
12
11
  class WsPrivateAsync:
@@ -26,7 +25,7 @@ class WsPrivateAsync:
26
25
 
27
26
  async def consume(self):
28
27
  async for message in self.websocket:
29
- logger.info("Received message: {%s}", message)
28
+ logger.debug("Received message: {%s}", message)
30
29
  if self.callback:
31
30
  self.callback(message)
32
31
 
@@ -4,8 +4,7 @@ import logging
4
4
 
5
5
  from okx.websocket.WebSocketFactory import WebSocketFactory
6
6
 
7
- logging.basicConfig(level=logging.INFO)
8
- logger = logging.getLogger("WsPublic")
7
+ logger = logging.getLogger(__name__)
9
8
 
10
9
 
11
10
  class WsPublicAsync:
@@ -21,7 +20,7 @@ class WsPublicAsync:
21
20
 
22
21
  async def consume(self):
23
22
  async for message in self.websocket:
24
- logger.info("Received message: {%s}", message)
23
+ logger.debug("Received message: {%s}", message)
25
24
  if self.callback:
26
25
  self.callback(message)
27
26
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: python-okx
3
- Version: 0.3.3
3
+ Version: 0.3.5
4
4
  Summary: Python SDK for OKX
5
5
  Home-page: https://okx.com/docs-v5/
6
6
  Author: okxv5api
@@ -0,0 +1,31 @@
1
+ okx/Account.py,sha256=JNN5fwW5XjPj9GvsQxGlMlSvtQGOFJ0K8U26M4t3g9k,13884
2
+ okx/BlockTrading.py,sha256=A4OcuLuEHucAIhc8doPGr2o6dsCjVbv-a6YiTlzwdEw,4128
3
+ okx/Convert.py,sha256=xEB2pwEUpc-k23hA3mYIe3EKB5szIXlEe96JFiRSPpc,1575
4
+ okx/CopyTrading.py,sha256=Mso5GE9UQTJVrL4V3jIyU1QWBtzr-m32edrGDoRHk84,2751
5
+ okx/Earning.py,sha256=snNtSbVR5qmnLiaH9taknY2UhCG19p3dn54fbWaZxjc,3853
6
+ okx/FDBroker.py,sha256=nUpcR_XtUcKa1Jk_B1OUZCjiv9ifQnxGRsLNHDxdGno,788
7
+ okx/Funding.py,sha256=brxLrc4YtnybQPorhBLce48fsCVVF5ChEKH96SVW9T0,6261
8
+ okx/Grid.py,sha256=r8cZidY2okqrb-zpyTsFJrecPzw2s25ySH3tOBDnDtA,6691
9
+ okx/MarketData.py,sha256=n9AgxmFyr4GoDQjxkKdryInDhnYfGcxeBrWZSMHu8kI,4928
10
+ okx/NDBroker.py,sha256=Ba954chTcPkwG45PWSTmUVO32h3ZeRpU4qrSiVq_RJ0,5063
11
+ okx/PublicData.py,sha256=HEq4cNCk5P1mhLaMewJhVJTvHm0I2bdrL8Z6pH3yYn0,5136
12
+ okx/SimpleEarnFixed.py,sha256=DKROSJV_WTlHalCY0BoBG4euruBVKUn-2xTIu9XYCWE,3435
13
+ okx/SpreadTrading.py,sha256=Dy7VZ8WK4HyxhMvLY1G5RukRHI_T3d0fnrHZifv9Uyw,3227
14
+ okx/Status.py,sha256=hGnn-tw302xXCDWly7LssaG3-29HcHZRhrBFUuGrSS0,495
15
+ okx/SubAccount.py,sha256=SMMPdkatDyRE0_7mDqK8orzt29hti2TTTWNayLT3F0g,3528
16
+ okx/Trade.py,sha256=xHMu8fqZUjFc7Z4q16gFQHCbQH_7LAQKQ-pJVZWBPK0,10839
17
+ okx/TradingData.py,sha256=ig9Y3f-CH_nyBvoZCF4M9z2_wQXF-r0On7p9EMMuDMo,2331
18
+ okx/__init__.py,sha256=SPx-xgkDj0_52KU23clj4zgtbtKjf3HmK2VAjF11CgE,58
19
+ okx/consts.py,sha256=h94U14Pw_wxSOe5Aej5hHYH4fYitCSi4a5p8c7_f2ew,15594
20
+ okx/exceptions.py,sha256=ERuCnvnudJNBNACh3LNE3km5GJy0BGC5C3OKjgHXFaU,1182
21
+ okx/okxclient.py,sha256=wJD8gTyHs92WjLffANbWLCgfX4Mnxh-IKnnJ2nUYHsI,2597
22
+ okx/utils.py,sha256=FTXSW73yXV6Hc4-9O22WFmkhayASYo7WQHIc_bTyc6g,1858
23
+ okx/websocket/WebSocketFactory.py,sha256=ba0ZNUggghZ_YlWYB7g8UCv6MewqVr9wn75YOtIU5kE,845
24
+ okx/websocket/WsPrivateAsync.py,sha256=zmZuInowW9_YWpQoZoicbbff-UwWvWxOluKclomNcXA,2240
25
+ okx/websocket/WsPublicAsync.py,sha256=yDk_2jkgM4M_sq6zSL6i-KfdoSOaSd5KsmA1wqbIx3E,1520
26
+ okx/websocket/WsUtils.py,sha256=ynkCtfvkrwBUiCi-_yqp1xTn3hhVd_o5ITIhD1xLdBo,2199
27
+ okx/websocket/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
28
+ python_okx-0.3.5.dist-info/METADATA,sha256=yEZEbXCjByOP-38FcraX_WBy-Ymbu_5EhVDR9OMF7U4,3145
29
+ python_okx-0.3.5.dist-info/WHEEL,sha256=OVMc5UfuAQiSplgO0_WdW7vXVGAt9Hdd6qtN4HotdyA,91
30
+ python_okx-0.3.5.dist-info/top_level.txt,sha256=rrbhHZwiw4YlhG1LWWaAODvRxyZr3onxFnqwsHdikDc,4
31
+ python_okx-0.3.5.dist-info/RECORD,,
@@ -1,31 +0,0 @@
1
- okx/Account.py,sha256=pXh-3PEYrESeCEmp4JngZv4jT0ItXcJfS2-CF2yCRpc,13026
2
- okx/BlockTrading.py,sha256=LC44PIxd5-S2coHxCmYjG7WqAuwrMdfO644eui2Ixvc,4127
3
- okx/Convert.py,sha256=StJqUTODvycEtPyBmvl2Cao7ElzGWQW-95vREkvkhPo,1574
4
- okx/CopyTrading.py,sha256=6vrJFKqzRhRf5t279XsLNamdo06-L1ORjlX60nMwgw8,2750
5
- okx/Earning.py,sha256=_H7_a466naKaEt3-SD_ZUbi-swnm8VwYZ357xF4q2rM,3852
6
- okx/FDBroker.py,sha256=7nEWawZ3sVHRT-9beZ95KADtXf2eyNsL91Wchr7kLtQ,787
7
- okx/Funding.py,sha256=lSbgBNIsv45LhZbvyHBAOSFeU63nWU-y81FkI73ogyk,6277
8
- okx/Grid.py,sha256=EYTZwf5-pWN75kdiukOfkEp20R2kttxj8d5HPNsdwWE,6690
9
- okx/MarketData.py,sha256=TsVXdH-wOUZQMQPG70BTIiaBhWG-dknwNbVJHjFgpFE,4927
10
- okx/NDBroker.py,sha256=u-PDdCePOEJowLCB5GyJXRQXsiTG1tWUznQX5qngkaQ,5062
11
- okx/PublicData.py,sha256=hNKowBqf4CEmB6-b0owKs4_nnGGVCQLOgaJb1YaimuI,5135
12
- okx/SimpleEarnFixed.py,sha256=ToT2bCDRJ3HPdvmGjPVEBy0B-ah0YhEdFknOycFGT7U,3434
13
- okx/SpreadTrading.py,sha256=V_TgEkGaD6Pce1VJmUB7fdiw16BzoUSdBeVxo7mfSmU,3226
14
- okx/Status.py,sha256=Nm2qRviE-40AVo_ndDtPludvObnWZ1OqP7qRZokTYuw,494
15
- okx/SubAccount.py,sha256=z8ZBVIHu4XW4bqTj97sifBiodgxbVgXOQ2Ndf2KycSo,3527
16
- okx/Trade.py,sha256=T1HQB9-Wo5MWlhrPahGub9hBXzQDe9QkkSShMpvyYIo,10838
17
- okx/TradingData.py,sha256=SMc5C3sQk5rwn08AsDDcbN6zQm_wy4S2JO0jQHAKVhU,2330
18
- okx/__init__.py,sha256=eq6SltLpIFvlso3dAsIVcWcgIC6xKfsTUKjM22ViQt0,58
19
- okx/consts.py,sha256=rxScpgjvR7vjd_XZp9o09UMD8GexWXSf4xPi63ATyV8,15410
20
- okx/exceptions.py,sha256=ERuCnvnudJNBNACh3LNE3km5GJy0BGC5C3OKjgHXFaU,1182
21
- okx/okxclient.py,sha256=RepnkJnstxtNGyFmlPh_9b6SFUooxKk-fM7d6z0Dvvc,2598
22
- okx/utils.py,sha256=FTXSW73yXV6Hc4-9O22WFmkhayASYo7WQHIc_bTyc6g,1858
23
- okx/websocket/WebSocketFactory.py,sha256=PlcvdNjVoLEm2515E9p6zTXVvX1gLoebTyBoDPkMbwM,895
24
- okx/websocket/WsPrivateAsync.py,sha256=CYmZDRV16BxkrFhf7yeT7L4JyK2IZBlOIziaUOk3QCo,2282
25
- okx/websocket/WsPublicAsync.py,sha256=sOV-IUmgybOQI1snCoyPxD4hzIoiQLHjUVRWrS2_2cM,1561
26
- okx/websocket/WsUtils.py,sha256=ynkCtfvkrwBUiCi-_yqp1xTn3hhVd_o5ITIhD1xLdBo,2199
27
- okx/websocket/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
28
- python_okx-0.3.3.dist-info/METADATA,sha256=LkLJv7J4rpqCcTKmUmHDy4qqdVmiRCH8oUlz26gRt14,3145
29
- python_okx-0.3.3.dist-info/WHEEL,sha256=OVMc5UfuAQiSplgO0_WdW7vXVGAt9Hdd6qtN4HotdyA,91
30
- python_okx-0.3.3.dist-info/top_level.txt,sha256=rrbhHZwiw4YlhG1LWWaAODvRxyZr3onxFnqwsHdikDc,4
31
- python_okx-0.3.3.dist-info/RECORD,,