Security News
38% of CISOs Fear They’re Not Moving Fast Enough on AI
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
This library is designed to fetch data from exchange WebSocket APIs and store or update data in a temporary SQLite database in the background, making it readily accessible for retrieval.
Currently, it is available for several exchanges, including Binance, Bybit, and more. You can find a complete list of supported exchanges using Ccxw.get_supported_exchanges()
.
Furthermore, the library supports a variety of endpoints, such as order_book, kline, and more. A comprehensive list of supported endpoints can be found via Ccxw.get_supported_endpoints()
.
pip install ccxw
import time
import pprint
from ccxw import Ccxw
symbol = 'BTC/USDT'
streams = [\
{\
'endpoint': 'order_book',\
'symbol': symbol
},\
{\
'endpoint': 'kline',\
'symbol': symbol,\
'interval': interval\
},\
{\
'endpoint': 'trades',\
'symbol': symbol
},\
{\
'endpoint': 'ticker',\
'symbol': symbol
}\
]
wsm = Ccxw('binance',\
streams,\
result_max_len=5,\
data_max_len=10)
wsm.start() # Start getting data
time.sleep(2) # Wait for available data
for i in range(0, 10):
for stream in streams:
interval = 'none'
if 'interval' in stream:
interval = stream['interval']
data = wsm.get_current_data(stream['endpoint'], stream['symbol'], interval)
pprint.pprint(data, sort_dicts=False)
print('----------------------------------')
time.sleep(1)
print('============================================================')
wsm.stop() # Stop getting data
Please be aware that each instance opens a new connection to websockets. If you create multiple instances for the same exchange, you may exceed the websockets connection limits set by exchanges. Make sure to check the connection limits of exchanges before opening numerous instances.
FAQs
Ccxw - CryptoCurrency eXchange Websocket Library
We found that ccxw demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.
Security News
Company News
Socket is joining TC54 to help develop standards for software supply chain security, contributing to the evolution of SBOMs, CycloneDX, and Package URL specifications.