# ***BETA, NOT FOR PRODUCTIVE USE!!!***
The core functions work. Websocket connections to public endpoints can be established and are stable. (No long-term tests!)
If you would like to take part in the test, please contact us in the [chat](https://www.lucit.tech/get-support.html)!
[![Get a UNICORN Trading Suite License](https://raw.githubusercontent.com/LUCIT-Systems-and-Development/unicorn-binance-suite/master/images/logo/LUCIT-UTS-License-Offer.png)](https://shop.lucit.services/software/unicorn-trading-suite)
[![GitHub Release](https://img.shields.io/github/release/LUCIT-Systems-and-Development/unicorn-bybit-websocket-api.svg?label=github)](https://github.com/LUCIT-Systems-and-Development/unicorn-bybit-websocket-api/releases)
[![GitHub Downloads](https://img.shields.io/github/downloads/LUCIT-Systems-and-Development/unicorn-bybit-websocket-api/total?color=blue)](https://github.com/LUCIT-Systems-and-Development/unicorn-bybit-websocket-api/releases)
![Anaconda Release](https://img.shields.io/conda/v/lucit/unicorn-bybit-websocket-api?color=blue)
![Anaconda Downloads](https://img.shields.io/conda/dn/lucit/unicorn-bybit-websocket-api?color=blue)
[![PyPi Release](https://img.shields.io/pypi/v/unicorn-bybit-websocket-api?color=blue)](https://pypi.org/project/unicorn-bybit-websocket-api/)
[![PyPi Downloads](https://pepy.tech/badge/unicorn-bybit-websocket-api)](https://pepy.tech/project/unicorn-bybit-websocket-api)
[![License](https://img.shields.io/badge/license-LSOSL-blue)](https://unicorn-bybit-websocket-api.docs.lucit.tech/license.html)
[![Supported Python Version](https://img.shields.io/pypi/pyversions/unicorn_bybit_websocket_api.svg)](https://www.python.org/downloads/)
[![PyPI - Status](https://img.shields.io/pypi/status/unicorn_bybit_websocket_api.svg)](https://github.com/LUCIT-Systems-and-Development/unicorn-bybit-websocket-api/issues)
[![codecov](https://codecov.io/gh/LUCIT-Systems-and-Development/unicorn-bybit-websocket-api/branch/master/graph/badge.svg?token=5I03AZ3F5S)](https://codecov.io/gh/LUCIT-Systems-and-Development/unicorn-bybit-websocket-api)
[![CodeQL](https://github.com/LUCIT-Systems-and-Development/unicorn-bybit-websocket-api/actions/workflows/codeql-analysis.yml/badge.svg)](https://github.com/LUCIT-Systems-and-Development/unicorn-bybit-websocket-api/actions/workflows/codeql-analysis.yml)
[![Unit Tests](https://github.com/LUCIT-Systems-and-Development/unicorn-bybit-websocket-api/actions/workflows/unit-tests.yml/badge.svg)](https://github.com/LUCIT-Systems-and-Development/unicorn-bybit-websocket-api/actions/workflows/unit-tests.yml)
[![Build and Publish GH+PyPi](https://github.com/LUCIT-Systems-and-Development/unicorn-bybit-websocket-api/actions/workflows/build_wheels.yml/badge.svg)](https://github.com/LUCIT-Systems-and-Development/unicorn-bybit-websocket-api/actions/workflows/build_wheels.yml)
[![Build and Publish Anaconda](https://github.com/LUCIT-Systems-and-Development/unicorn-bybit-websocket-api/actions/workflows/build_conda.yml/badge.svg)](https://github.com/LUCIT-Systems-and-Development/unicorn-bybit-websocket-api/actions/workflows/build_conda.yml)
[![Read the Docs](https://img.shields.io/badge/read-%20docs-yellow)](https://unicorn-bybit-websocket-api.docs.lucit.tech)
[![Read How To`s](https://img.shields.io/badge/read-%20howto-yellow)](https://medium.lucit.tech)
[![Github](https://img.shields.io/badge/source-github-cbc2c8)](https://github.com/LUCIT-Systems-and-Development/unicorn-bybit-websocket-api)
[![Telegram](https://img.shields.io/badge/community-telegram-41ab8c)](https://t.me/unicorndevs)
[![Gitter](https://img.shields.io/badge/community-gitter-41ab8c)](https://gitter.im/unicorn-trading-suite/unicorn-bybit-websocket-api?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
[![Get Free Professional Support](https://img.shields.io/badge/chat-lucit%20support-004166)](https://www.lucit.tech/get-support.html)
[![LUCIT-UBWA-Banner](https://raw.githubusercontent.com/LUCIT-Systems-and-Development/unicorn-bybit-websocket-api/master/images/logo/LUCIT-UBWA-Banner-Readme.png)](https://www.lucit.tech/unicorn-bybit-websocket-api.html)
# UNICORN Bybit WebSocket API
[Description](#description) | [Installation](#installation-and-upgrade) | [How To](#howto) |
[Documentation](#documentation) | [Examples](#examples) | [Change Log](#change-log) | [Wiki](#wiki) |
[Social](#social) | [Notifications](#receive-notifications) | [Bugs](#how-to-report-bugs-or-suggest-improvements) |
[Contributing](#contributing) | [Disclaimer](#disclaimer) | [Commercial Support](#commercial-support)
A Python SDK by [LUCIT](https://www.lucit.tech) to use the Bybit Websocket API`s (live+testnet) in a simple, fast, flexible, robust and
fully-featured way.
Part of '[UNICORN Trading Suite](https://www.lucit.tech/unicorn-trading-suite.html)'.
[Get help](https://www.lucit.tech/get-support.html) with the integration of the `UNICORN Trading Suite` modules!
## Get a UNICORN Trading Suite License
To run modules of the *UNICORN Trading Suite* you need a [valid license](https://medium.lucit.tech/how-to-obtain-and-use-a-unicorn-trading-suite-license-key-and-run-the-uts-module-according-to-best-87b0088124a8#4ca4)!
## Receive Data from Bybit WebSockets
### [Create a multiplex websocket connection](https://unicorn-bybit-websocket-api.docs.lucit.tech/unicorn_bybit_websocket_api.html#unicorn_bybit_websocket_api.manager.BybitWebSocketApiManager.create_stream) to Bybit with a [`stream_buffer`](https://github.com/LUCIT-Systems-and-Development/unicorn-bybit-websocket-api/wiki/%60stream_buffer%60) with just 3 lines of code
```
from unicorn_bybit_websocket_api import BybitWebSocketApiManager
bybit_wsm = BybitWebSocketApiManager(exchange="bybit.com")
bybit_wsm.create_stream(endpoint="public/linear", channels=['kline.1'], markets=['btcusdt', 'ethusdt'])
```
#### And 4 more lines to print out the data
```
while True:
oldest_data_from_stream_buffer = bybit_wsm.pop_stream_data_from_stream_buffer()
if oldest_data_from_stream_buffer:
print(oldest_data_from_stream_buffer)
```
### Or with a [callback function](https://unicorn-bybit-websocket-api.docs.lucit.tech/unicorn_bybit_websocket_api.html?highlight=process_stream_data#unicorn_bybit_websocket_api.manager.BybitWebSocketApiManager.create_stream) just do
```
from unicorn_bybit_websocket_api import BybitWebSocketApiManager
def process_new_receives(stream_data):
print(str(stream_data))
bybit_wsm = BybitWebSocketApiManager(exchange="bybit.com")
bybit_wsm.create_stream(endpoint="public/linear", channels=['kline.1m'],
markets=['btcusdt', 'ethusdt'],
process_stream_data=process_new_receives)
```
### Or with an [async callback function](https://unicorn-bybit-websocket-api.docs.lucit.tech/unicorn_bybit_websocket_api.html?highlight=process_stream_data#unicorn_bybit_websocket_api.manager.BybitWebSocketApiManager.create_stream) just do
```
from unicorn_bybit_websocket_api import BybitWebSocketApiManager
import asyncio
async def process_new_receives(stream_data):
print(stream_data)
await asyncio.sleep(1)
bybit_wsm = BybitWebSocketApiManager()
bybit_wsm.create_stream(endpoint="public/linear", channels=['kline_1m'],
markets=['btcusdt', 'ethusdt'],
process_stream_data_async=process_new_receives)
```
### Or await the stream data in an asyncio coroutine
All the methods of data collection presented have their own advantages and disadvantages. However, this is the
generally recommended method for processing data from streams.
```
from unicorn_bybit_websocket_api import BybitWebSocketApiManager
import asyncio
async def main():
async def process_asyncio_queue(stream_id=None):
print(f"Start processing the data from stream '{bybit_wsm.get_stream_label(stream_id)}':")
while bybit_wsm.is_stop_request(stream_id) is False:
data = await bybit_wsm.get_stream_data_from_asyncio_queue(stream_id)
print(data)
bybit_wsm.asyncio_queue_task_done(stream_id)
bybit_wsm.create_stream(endpoint="public/linear",
channels=['kline.1'],
markets=['btcusdt', 'ethusdt'],
stream_label="KLINE_1m",
process_asyncio_queue=process_asyncio_queue)
while not bybit_wsm.is_manager_stopping():
await asyncio.sleep(1)
with BybitWebSocketApiManager(exchange='bybit.com') as bybit_wsm:
try:
asyncio.run(main())
except KeyboardInterrupt:
print("\r\nGracefully stopping ...")
except Exception as e:
print(f"\r\nERROR: {e}\r\nGracefully stopping ...")
```
Basically that's it, but there are more options.
## [Subscribe](https://unicorn-bybit-websocket-api.docs.lucit.tech/unicorn_bybit_websocket_api.html#unicorn_bybit_websocket_api.manager.BybitWebSocketApiManager.subscribe_to_stream) / [unsubscribe](https://unicorn-bybit-websocket-api.docs.lucit.tech/unicorn_bybit_websocket_api.html#unicorn_bybit_websocket_api.manager.BybitWebSocketApiManager.unsubscribe_from_stream) new markets and channels
These functions are not ready! (Todo!)
## Stop `bybit_wsm` after usage to avoid memory leaks
When you instantiate UNICORN Bybit Websocket API with `with`, `bybit_wsm.stop_manager()` is automatically executed upon exiting the `with`-block.
```
with BybitWebSocketApiManager() as bybit_wsm:
bybit_wsm.create_stream(channels="kline.1", markets="btcusdt", stream_label="KLINE_1m")
```
Without `with`, you must explicitly execute `bybit_wsm.stop_manager()` yourself.
```
bybit_wsm.stop_manager()
```
## `stream_signals` - know the state of your streams
Usually you want to know when a stream is working and when it is not. This can be useful to know that your own system is
currently "blind" and you may want to close open positions to be on the safe side, know that indicators will now provide
incorrect values or that you have to reload the missing data via REST as an alternative.
For this purpose, the UNICORN Bybit WebSocket API provides so-called
[`stream_signals`](https://github.com/LUCIT-Systems-and-Development/unicorn-bybit-websocket-api/wiki/%60stream_signals%60),
which are used to tell your code in real time when a stream is connected, when it received its first data record, when
it was disconnected and stopped, and when the stream cannot be restored.
```
from unicorn_bybit_websocket_api import BybitWebSocketApiManager
import time
def process_stream_signals(signal_type=None, stream_id=None, data_record=None, error_msg=None):
print(f"Received stream_signal for stream '{bybit_wsm.get_stream_label(stream_id=stream_id)}': "
f"{signal_type} - {stream_id} - {data_record} - {error_msg}")
with BybitWebSocketApiManager(process_stream_signals=process_stream_signals) as bybit_wsm:
bybit_wsm.create_stream(channels="trade", markets="btcusdt", stream_label="TRADES")
time.sleep(2)
print(f"Waiting 5 seconds and then stop the stream ...")
time.sleep(5)
```
## Description
The Python package [UNICORN Bybit WebSocket API](https://www.lucit.tech/unicorn-bybit-websocket-api.html)
provides an API to the [Bybit Websocket API`s](https://bybit-exchange.github.io/docs) of [Bybit](https://www.bybit.com)
([+Testnet](https://testnet.bybit.com)).
### What are the benefits of the UNICORN Bybit WebSocket API?
- Fully managed websockets and 100% auto-reconnect! Also handles maintenance windows!
- No memory leaks from Python version 3.7 to 3.12!
- The full [UTS stack](https://www.lucit.tech/unicorn-trading-suite.html) is delivered as a compiled C extension for
maximum performance.
- [Supported exchanges](https://github.com/LUCIT-Systems-and-Development/unicorn-bybit-websocket-api/wiki/Bybit-websocket-endpoint-configuration-overview):
| Exchange | Exchange string | WS | WS API |
|--------------------------------------------|---------------------|------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------|
| [Bybit](https://www.bybit.com) | `bybit.com` | ![yes](https://raw.githubusercontent.com/lucit-systems-and-development/unicorn-bybit-websocket-api/master/images/misc/ok-icon.png) | ![yes](https://raw.githubusercontent.com/lucit-systems-and-development/unicorn-bybit-websocket-api/master/images/misc/ok-icon.png) |
| [Bybit Testnet](https://testnet.bybit.com) | `bybit.com-testnet` | ![yes](https://raw.githubusercontent.com/lucit-systems-and-development/unicorn-bybit-websocket-api/master/images/misc/ok-icon.png) | ![yes](https://raw.githubusercontent.com/lucit-systems-and-development/unicorn-bybit-websocket-api/master/images/misc/ok-icon.png) |
- Streams are processing asynchronous/concurrent (Python asyncio) and each stream is started in a separate thread, so
you don't need to deal with asyncio in your code! But you can consume with
[`await`](https://unicorn-bybit-websocket-api.docs.lucit.tech/readme.html#or-await-the-webstream-data-in-an-asyncio-task)
, if you want!
- Supports
[subscribe](https://unicorn-bybit-websocket-api.docs.lucit.tech/unicorn_bybit_websocket_api.html#unicorn_bybit_websocket_api.manager.BybitWebSocketApiManager.subscribe_to_stream)/[unsubscribe](https://unicorn-bybit-websocket-api.docs.lucit.tech/unicorn_bybit_websocket_api.html#unicorn_bybit_websocket_api.manager.BybitWebSocketApiManager.unsubscribe_from_stream)
on all exchanges! (Take a look to the max supported subscriptions per stream in the [endpoint configuration overview](https://github.com/LUCIT-Systems-and-Development/unicorn-bybit-websocket-api/wiki/Bybit-websocket-endpoint-configuration-overview)!)
- [UNICORN Bybit WebSocket API](https://www.lucit.tech/unicorn-bybit-websocket-api.html) respects Bybit's API guidelines and protects you from avoidable reconnects and bans.
- Support for multiple private `!userData` streams with different `api_key` and `api_secret`.
([example_multiple_userdata_streams.py](https://github.com/LUCIT-Systems-and-Development/unicorn-bybit-websocket-api/blob/master/examples/_archive/example_multiple_userdata_streams.py))
- [Pick up the received data from the `stream_buffer`](https://unicorn-bybit-websocket-api.docs.lucit.tech/unicorn_bybit_websocket_api.html?highlight=get_stream_info#unicorn_bybit_websocket_api.unicorn_bybit_websocket_api_manager.BybitWebSocketApiManager.pop_stream_data_from_stream_buffer) ([FIFO or LIFO](https://github.com/LUCIT-Systems-and-Development/unicorn-bybit-websocket-api/wiki/%60stream_buffer%60)) -
if you can not store your data in cause of a temporary technical issue, you can
[kick back the data to the `stream_buffer`](https://unicorn-bybit-websocket-api.docs.lucit.tech/unicorn_bybit_websocket_api.html?highlight=get_stream_info#unicorn_bybit_websocket_api.unicorn_bybit_websocket_api_manager.BybitWebSocketApiManager.add_to_stream_buffer)
which stores the receives in the RAM till you are able to process the data in the normal way again.
[Learn more!](https://github.com/LUCIT-Systems-and-Development/unicorn-bybit-websocket-api/wiki/%60stream_buffer%60)
- Use separate `stream_buffers` for
[specific streams](https://github.com/LUCIT-Systems-and-Development/unicorn-bybit-websocket-api/blob/master/examples/_archive/example_stream_buffer_extended.py)
or
[users](https://github.com/LUCIT-Systems-and-Development/unicorn-bybit-websocket-api/blob/master/examples/_archive/example_multiple_userdata_streams.py)!
- Watch the `stream_signals` to receive `CONNECT`, `FIRST_RECEIVED_DATA`, `DISCONNECT`, `STOP` and
`STREAM_UNREPAIRABLE` signals from your streams! [Learn more!](https://github.com/LUCIT-Systems-and-Development/unicorn-bybit-websocket-api/wiki/%60stream_signals%60)
- Get the received data unchanged as received, as Python dictionary or converted with
[UnicornFy](https://github.com/LUCIT-Systems-and-Development/unicorn-fy) into well-formed Python dictionaries. Use the `output`
parameter of
[`create_stream()`](https://unicorn-bybit-websocket-api.docs.lucit.tech/unicorn_bybit_websocket_api.html?highlight=create_stream#unicorn_bybit_websocket_api.unicorn_bybit_websocket_api_manager.BybitWebSocketApiManager.create_stream)
to control the output format.
- Helpful management features like
[`clear_asyncio_queue()`](https://unicorn-bybit-websocket-api.docs.lucit.tech/unicorn_bybit_websocket_api.html#unicorn_bybit_websocket_api.manager.BybitWebSocketApiManager.clear_asyncio_queue),
[`clear_stream_buffer()`](https://unicorn-bybit-websocket-api.docs.lucit.tech/unicorn_bybit_websocket_api.html#unicorn_bybit_websocket_api.manager.BybitWebSocketApiManager.clear_stream_buffer),
[`get_bybit_api_status()`](https://unicorn-bybit-websocket-api.docs.lucit.tech/unicorn_bybit_websocket_api.html#unicorn_bybit_websocket_api.manager.BybitWebSocketApiManager.get_bybit_api_status),
[`get_current_receiving_speed()`](https://unicorn-bybit-websocket-api.docs.lucit.tech/unicorn_bybit_websocket_api.html#unicorn_bybit_websocket_api.manager.BybitWebSocketApiManager.get_current_receiving_speed),
[`get_errors_from_endpoints()`](https://unicorn-bybit-websocket-api.docs.lucit.tech/unicorn_bybit_websocket_api.html#unicorn_bybit_websocket_api.manager.BybitWebSocketApiManager.get_errors_from_endpoints),
[`get_limit_of_subscriptions_per_stream()`](https://unicorn-bybit-websocket-api.docs.lucit.tech/unicorn_bybit_websocket_api.html#unicorn_bybit_websocket_api.manager.BybitWebSocketApiManager.get_limit_of_subscriptions_per_stream),
[`get_request_id()`](https://unicorn-bybit-websocket-api.docs.lucit.tech/unicorn_bybit_websocket_api.html#unicorn_bybit_websocket_api.manager.BybitWebSocketApiManager.get_request_id),
[`get_result_by_request_id()`](https://unicorn-bybit-websocket-api.docs.lucit.tech/unicorn_bybit_websocket_api.html#unicorn_bybit_websocket_api.manager.BybitWebSocketApiManager.get_result_by_request_id),
[`get_results_from_endpoints()`](https://unicorn-bybit-websocket-api.docs.lucit.tech/unicorn_bybit_websocket_api.html#unicorn_bybit_websocket_api.manager.BybitWebSocketApiManager.get_results_from_endpoints),
[`get_stream_buffer_length()`](https://unicorn-bybit-websocket-api.docs.lucit.tech/unicorn_bybit_websocket_api.html#unicorn_bybit_websocket_api.manager.BybitWebSocketApiManager.get_stream_buffer_length),
[`get_stream_info()`](https://unicorn-bybit-websocket-api.docs.lucit.tech/unicorn_bybit_websocket_api.html#unicorn_bybit_websocket_api.manager.BybitWebSocketApiManager.get_stream_info),
[`get_stream_list()`](https://unicorn-bybit-websocket-api.docs.lucit.tech/unicorn_bybit_websocket_api.html#unicorn_bybit_websocket_api.manager.BybitWebSocketApiManager.get_stream_list),
[`get_stream_id_by_label()`](https://unicorn-bybit-websocket-api.docs.lucit.tech/unicorn_bybit_websocket_api.html#unicorn_bybit_websocket_api.manager.BybitWebSocketApiManager.get_stream_id_by_label),
[`get_stream_statistic()`](https://unicorn-bybit-websocket-api.docs.lucit.tech/unicorn_bybit_websocket_api.html#unicorn_bybit_websocket_api.manager.BybitWebSocketApiManager.get_stream_statistic),
[`get_stream_subscriptions()`](https://unicorn-bybit-websocket-api.docs.lucit.tech/unicorn_bybit_websocket_api.html#unicorn_bybit_websocket_api.manager.BybitWebSocketApiManager.get_stream_subscriptions),
[`get_version()`](https://unicorn-bybit-websocket-api.docs.lucit.tech/unicorn_bybit_websocket_api.html#unicorn_bybit_websocket_api.manager.BybitWebSocketApiManager.get_version),
[`is_update_available()`](https://unicorn-bybit-websocket-api.docs.lucit.tech/unicorn_bybit_websocket_api.html#unicorn_bybit_websocket_api.manager.BybitWebSocketApiManager.is_update_availabe),
[`get_stream_data_from_asyncio_queue()`](https://unicorn-bybit-websocket-api.docs.lucit.tech/unicorn_bybit_websocket_api.html#unicorn_bybit_websocket_api.manager.BybitWebSocketApiManager.get_stream_data_from_asyncio_queue),
[`pop_stream_data_from_stream_buffer()`](https://unicorn-bybit-websocket-api.docs.lucit.tech/unicorn_bybit_websocket_api.html#unicorn_bybit_websocket_api.manager.BybitWebSocketApiManager.pop_stream_data_from_stream_buffer),
[`print_summary()`](https://unicorn-bybit-websocket-api.docs.lucit.tech/unicorn_bybit_websocket_api.html#unicorn_bybit_websocket_api.manager.BybitWebSocketApiManager.print_summary),
[`replace_stream()`](https://unicorn-bybit-websocket-api.docs.lucit.tech/unicorn_bybit_websocket_api.html#unicorn_bybit_websocket_api.manager.BybitWebSocketApiManager.replace_stream),
[`set_stream_label()`](https://unicorn-bybit-websocket-api.docs.lucit.tech/unicorn_bybit_websocket_api.html#unicorn_bybit_websocket_api.manager.BybitWebSocketApiManager.set_stream_label),
[`set_ringbuffer_error_max_size()`](https://unicorn-bybit-websocket-api.docs.lucit.tech/unicorn_bybit_websocket_api.html#unicorn_bybit_websocket_api.manager.BybitWebSocketApiManager.set_ringbuffer_error_max_size),
[`subscribe_to_stream()`](https://unicorn-bybit-websocket-api.docs.lucit.tech/unicorn_bybit_websocket_api.html#unicorn_bybit_websocket_api.manager.BybitWebSocketApiManager.subscribe_to_stream),
[`stop_stream()`](https://unicorn-bybit-websocket-api.docs.lucit.tech/unicorn_bybit_websocket_api.html#unicorn_bybit_websocket_api.manager.BybitWebSocketApiManager.stop_stream),
[`unsubscribe_from_stream()`](https://unicorn-bybit-websocket-api.docs.lucit.tech/unicorn_bybit_websocket_api.html#unicorn_bybit_websocket_api.manager.BybitWebSocketApiManager.unsubscribe_from_stream),
[`wait_till_stream_has_started()`](https://unicorn-bybit-websocket-api.docs.lucit.tech/unicorn_bybit_websocket_api.html#unicorn_bybit_websocket_api.manager.BybitWebSocketApiManager.wait_till_stream_has_started)
and many more! Explore them [here](https://unicorn-bybit-websocket-api.docs.lucit.tech/modules.html).
- Monitor the status of the created `BybitWebSocketApiManager()` instance within your code with
[`get_monitoring_status_plain()`](https://unicorn-bybit-websocket-api.docs.lucit.tech/unicorn_bybit_websocket_api.html?highlight=plain#unicorn_bybit_websocket_api.unicorn_bybit_websocket_api_manager.BybitWebSocketApiManager.get_monitoring_status_plain)
and specific streams with
[`get_stream_info()`](https://unicorn-bybit-websocket-api.docs.lucit.tech/unicorn_bybit_websocket_api.html#unicorn_bybit_websocket_api.manager.BybitWebSocketApiManager.get_stream_info).
- Available as a package via `pip` and `conda` as precompiled C extension with stub files for improved Intellisense
functions and source code for easier debugging of the source code. [To the installation.](#installation-and-upgrade)
- Integration of [test cases](https://github.com/LUCIT-Systems-and-Development/unicorn-bybit-websocket-api/actions/workflows/unit-tests.yml) and [examples](#examples).
- Customizable base URL.
- *Socks5 Proxy* support:
```
bybit_wsm = BybitWebSocketApiManager(exchange="bybit.com", socks5_proxy_server="127.0.0.1:9050")
```
Read the [docs](https://unicorn-bybit-websocket-api.docs.lucit.tech/unicorn_bybit_websocket_api.html#unicorn_bybit_websocket_api.manager.BybitWebSocketApiManager)
or this [how to](https://medium.com/@oliverzehentleitner/how-to-connect-to-bybit-com-websockets-using-python-via-a-socks5-proxy-3c5a3e063f12)
for more information or try
[example_socks5_proxy.py](https://github.com/LUCIT-Systems-and-Development/unicorn-bybit-websocket-api/blob/master/examples/_archive/example_socks5_proxy.py).
- Excessively tested on Linux, Mac and Windows on x86, arm32, arm64, ...
If you like the project, please [![star](https://raw.githubusercontent.com/lucit-systems-and-development/unicorn-bybit-websocket-api/master/images/misc/gh-star.png)](https://github.com/LUCIT-Systems-and-Development/unicorn-bybit-websocket-api/stargazers) it on
[GitHub](https://github.com/LUCIT-Systems-and-Development/unicorn-bybit-websocket-api)!
## Installation and Upgrade
The module requires Python 3.7 and runs smoothly up to and including Python 3.12.
Anaconda packages are available from Python version 3.8 and higher, but only in the latest version!
For the PyPy interpreter we offer packages via PyPi only from Python version 3.9 and higher.
The current dependencies are listed [here](https://github.com/LUCIT-Systems-and-Development/unicorn-bybit-websocket-api/blob/master/requirements.txt).
If you run into errors during the installation take a look [here](https://github.com/LUCIT-Systems-and-Development/unicorn-bybit-suite/wiki/Installation).
### Packages are created automatically with GitHub Actions
When a new release is to be created, we start two GitHubActions:
- [Build and Publish Anaconda](https://github.com/LUCIT-Systems-and-Development/unicorn-bybit-websocket-api/actions/workflows/build_conda.yml)
- [Build and Publish GH+PyPi](https://github.com/LUCIT-Systems-and-Development/unicorn-bybit-websocket-api/actions/workflows/build_wheels.yml)
Both start virtual Windows/Linux/Mac servers provided by GitHub in the cloud with preconfigured environments and
create the respective compilations and stub files, pack them into wheels and conda packages and then publish them on
GitHub, PYPI and Anaconda. This is a transparent method that makes it possible to trace the source code behind a
compilation.
### A Cython binary, PyPy or source code based CPython wheel of the latest version with `pip` from [PyPI](https://pypi.org/project/unicorn-bybit-websocket-api/)
Our [Cython](https://cython.org/) and [PyPy](https://www.pypy.org/) Wheels are available on [PyPI](https://pypi.org/),
these wheels offer significant advantages for Python developers:
- ***Performance Boost with Cython Wheels:*** Cython is a programming language that supplements Python with static typing and C-level performance. By compiling
Python code into C, Cython Wheels can significantly enhance the execution speed of Python code, especially in
computationally intensive tasks. This means faster runtimes and more efficient processing for users of our package.
- ***PyPy Wheels for Enhanced Efficiency:*** PyPy is an alternative Python interpreter known for its speed and efficiency. It uses Just-In-Time (JIT) compilation,
which can dramatically improve the performance of Python code. Our PyPy Wheels are tailored for compatibility with
PyPy, allowing users to leverage this speed advantage seamlessly.
Both Cython and PyPy Wheels on PyPI make the installation process simpler and more straightforward. They ensure that
you get the optimized version of our package with minimal setup, allowing you to focus on development rather than
configuration.
On Raspberry Pi and other architectures for which there are no pre-compiled versions, the package can still be
installed with PIP. PIP then compiles the package locally on the target system during installation. Please be patient,
this may take some time!
#### Installation
`pip install unicorn-bybit-websocket-api`
#### Update
`pip install unicorn-bybit-websocket-api --upgrade`
### A Conda Package of the latest version with `conda` from [Anaconda](https://anaconda.org/lucit)
The `unicorn-bybit-websocket-api` package is also available as a Cython version for the `linux-64`, `osx-64`
and `win-64` architectures with [Conda](https://docs.conda.io/en/latest/) through the
[`lucit` channel](https://anaconda.org/lucit).
For optimal compatibility and performance, it is recommended to source the necessary dependencies from the
[`conda-forge` channel](https://anaconda.org/conda-forge).
#### Installation
```
conda config --add channels conda-forge
conda config --add channels lucit
conda install -c lucit unicorn-bybit-websocket-api
```
#### Update
`conda update -c lucit unicorn-bybit-websocket-api`
### From source of the latest release with PIP from [GitHub](https://github.com/LUCIT-Systems-and-Development/unicorn-bybit-websocket-api)
#### Linux, macOS, ...
Run in bash:
`pip install https://github.com/LUCIT-Systems-and-Development/unicorn-bybit-websocket-api/archive/$(curl -s https://api.github.com/repos/LUCIT-Systems-and-Development/unicorn-bybit-websocket-api/releases/latest | grep -oP '"tag_name": "\K(.*)(?=")').tar.gz --upgrade`
#### Windows
Use the below command with the version (such as 0.1.0) you determined
[here](https://github.com/LUCIT-Systems-and-Development/unicorn-bybit-websocket-api/releases/latest):
`pip install https://github.com/LUCIT-Systems-and-Development/unicorn-bybit-websocket-api/archive/0.1.0.tar.gz --upgrade`
### From the latest source (dev-stage) with PIP from [GitHub](https://github.com/LUCIT-Systems-and-Development/unicorn-bybit-websocket-api)
This is not a release version and can not be considered to be stable!
`pip install https://github.com/LUCIT-Systems-and-Development/unicorn-bybit-websocket-api/tarball/master --upgrade`
## Change Log
[https://unicorn-bybit-websocket-api.docs.lucit.tech/changelog.html](https://unicorn-bybit-websocket-api.docs.lucit.tech/changelog.html)
## Documentation
- [General](https://unicorn-bybit-websocket-api.docs.lucit.tech)
- [Modules](https://unicorn-bybit-websocket-api.docs.lucit.tech/modules.html)
## Examples
- [Look here!](https://github.com/LUCIT-Systems-and-Development/unicorn-bybit-websocket-api/tree/master/examples/)
## Howto
- [How to Obtain and Use a Unicorn Trading Suite License Key and Run the UTS Module According to Best Practice](https://medium.lucit.tech/how-to-obtain-and-use-a-unicorn-trading-suite-license-key-and-run-the-uts-module-according-to-best-87b0088124a8)
## Project Homepage
[https://www.lucit.tech/unicorn-bybit-websocket-api.html](https://www.lucit.tech/unicorn-bybit-websocket-api.html)
## Wiki
[https://github.com/LUCIT-Systems-and-Development/unicorn-bybit-websocket-api/wiki](https://github.com/LUCIT-Systems-and-Development/unicorn-bybit-websocket-api/wiki)
## Social
- [Discussions](https://github.com/LUCIT-Systems-and-Development/unicorn-bybit-websocket-api/discussions)
- [Gitter](https://gitter.im/unicorn-trading-suite/unicorn-bybit-websocket-api)
- [https://t.me/unicorndevs](https://t.me/unicorndevs)
- [Telegram - English API Community](https://t.me/BybitAPI)
- [Telegram - Chinese API Community](https://t.me/BybitChineseAPI)
- [Discord](https://discord.gg/VBwVwS2HUs)
## Receive Notifications
To receive notifications on available updates you can
[![watch](https://raw.githubusercontent.com/lucit-systems-and-development/unicorn-bybit-websocket-api/master/images/misc/gh-watch.png)](https://github.com/LUCIT-Systems-and-Development/unicorn-bybit-websocket-api/watchers)
the repository on [GitHub](https://github.com/LUCIT-Systems-and-Development/unicorn-bybit-websocket-api), write your
[own script](https://github.com/LUCIT-Systems-and-Development/unicorn-bybit-websocket-api/blob/master/examples/_archive/example_version_of_this_package.py)
with using
[`is_update_available()`](https://unicorn-bybit-websocket-api.docs.lucit.tech/unicorn_bybit_websocket_api.html#unicorn_bybit_websocket_api.manager.BybitWebSocketApiManager.is_update_availabe)
or you use the
[monitoring API service](https://github.com/LUCIT-Systems-and-Development/unicorn-bybit-websocket-api/wiki/UNICORN-Monitoring-API-Service).
Follow us on [LinkedIn](https://www.linkedin.com/company/lucit-systems-and-development),
[X](https://twitter.com/LUCIT_SysDev) or [Facebook](https://www.facebook.com/lucit.systems.and.development)!
To receive news (like inspection windows/maintenance) about the Bybit API`s subscribe to their telegram groups:
- [Bybit English](https://t.me/BybitEnglish)
- [Bybit Announcements](https://t.me/Bybit_Announcements)
## How to report Bugs or suggest Improvements?
[List of planned features](https://github.com/LUCIT-Systems-and-Development/unicorn-bybit-websocket-api/issues?q=is%3Aissue+is%3Aopen+label%3Aenhancement) - click ![thumbs-up](https://raw.githubusercontent.com/lucit-systems-and-development/unicorn-bybit-websocket-api/master/images/misc/thumbup.png) if you need one of them or suggest a new feature!
Before you report a bug, [try the latest release](https://github.com/LUCIT-Systems-and-Development/unicorn-bybit-websocket-api#installation-and-upgrade). If the issue still exists, provide the error trace, OS
and Python version and explain how to reproduce the error. A demo script is appreciated.
If you don't find an issue related to your topic, please open a new [issue](https://github.com/LUCIT-Systems-and-Development/unicorn-bybit-websocket-api/issues)!
[Report a security bug!](https://github.com/LUCIT-Systems-and-Development/unicorn-bybit-websocket-api/security/policy)
## Contributing
[UNICORN Bybit WebSocket API](https://www.lucit.tech/unicorn-bybit-websocket-api.html) is an open
source project which welcomes contributions which can be anything from simple documentation fixes and reporting dead links to new features. To
contribute follow
[this guide](https://github.com/LUCIT-Systems-and-Development/unicorn-bybit-websocket-api/blob/master/CONTRIBUTING.md).
### Contributors
[![Contributors](https://contributors-img.web.app/image?repo=oliver-zehentleitner/unicorn-bybit-websocket-api)](https://github.com/LUCIT-Systems-and-Development/unicorn-bybit-websocket-api/graphs/contributors)
We ![love](https://raw.githubusercontent.com/lucit-systems-and-development/unicorn-bybit-websocket-api/master/images/misc/heart.png) open source!
## Disclaimer
This project is for informational purposes only. You should not construe this information or any other material as
legal, tax, investment, financial or other advice. Nothing contained herein constitutes a solicitation, recommendation,
endorsement or offer by us or any third party provider to buy or sell any securities or other financial instruments in
this or any other jurisdiction in which such solicitation or offer would be unlawful under the securities laws of such
jurisdiction.
### If you intend to use real money, use it at your own risk!
Under no circumstances will we be responsible or liable for any claims, damages, losses, expenses, costs or liabilities
of any kind, including but not limited to direct or indirect damages for loss of profits.
## Commercial Support
[![Get professional and fast support](https://raw.githubusercontent.com/LUCIT-Systems-and-Development/unicorn-trading-suite/master/images/support/LUCIT-get-professional-and-fast-support.png)](https://www.lucit.tech/get-support.html)
***Do you need a developer, operator or consultant?*** [Contact us](https://www.lucit.tech/contact.html) for a non-binding initial consultation!
Raw data
{
"_id": null,
"home_page": "https://github.com/LUCIT-Systems-and-Development/unicorn-bybit-websocket-api",
"name": "unicorn-bybit-websocket-api",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.7.0",
"maintainer_email": null,
"keywords": "bybit, asyncio, async, asynchronous, concurrent, websocket-api, webstream-api, bybit-websocket, bybit-webstream, webstream, websocket, api",
"author": "LUCIT Systems and Development",
"author_email": "info@lucit.tech",
"download_url": "https://files.pythonhosted.org/packages/2f/d9/2cf3c1779d141023ddf223e6cc47a4f824a9d821c9a4cfd9d29c0413f530/unicorn_bybit_websocket_api-0.1.0.tar.gz",
"platform": null,
"description": "# ***BETA, NOT FOR PRODUCTIVE USE!!!***\nThe core functions work. Websocket connections to public endpoints can be established and are stable. (No long-term tests!)\n\nIf you would like to take part in the test, please contact us in the [chat](https://www.lucit.tech/get-support.html)!\n\n[![Get a UNICORN Trading Suite License](https://raw.githubusercontent.com/LUCIT-Systems-and-Development/unicorn-binance-suite/master/images/logo/LUCIT-UTS-License-Offer.png)](https://shop.lucit.services/software/unicorn-trading-suite)\n\n[![GitHub Release](https://img.shields.io/github/release/LUCIT-Systems-and-Development/unicorn-bybit-websocket-api.svg?label=github)](https://github.com/LUCIT-Systems-and-Development/unicorn-bybit-websocket-api/releases)\n[![GitHub Downloads](https://img.shields.io/github/downloads/LUCIT-Systems-and-Development/unicorn-bybit-websocket-api/total?color=blue)](https://github.com/LUCIT-Systems-and-Development/unicorn-bybit-websocket-api/releases)\n![Anaconda Release](https://img.shields.io/conda/v/lucit/unicorn-bybit-websocket-api?color=blue)\n![Anaconda Downloads](https://img.shields.io/conda/dn/lucit/unicorn-bybit-websocket-api?color=blue)\n[![PyPi Release](https://img.shields.io/pypi/v/unicorn-bybit-websocket-api?color=blue)](https://pypi.org/project/unicorn-bybit-websocket-api/)\n[![PyPi Downloads](https://pepy.tech/badge/unicorn-bybit-websocket-api)](https://pepy.tech/project/unicorn-bybit-websocket-api)\n[![License](https://img.shields.io/badge/license-LSOSL-blue)](https://unicorn-bybit-websocket-api.docs.lucit.tech/license.html)\n[![Supported Python Version](https://img.shields.io/pypi/pyversions/unicorn_bybit_websocket_api.svg)](https://www.python.org/downloads/)\n[![PyPI - Status](https://img.shields.io/pypi/status/unicorn_bybit_websocket_api.svg)](https://github.com/LUCIT-Systems-and-Development/unicorn-bybit-websocket-api/issues)\n[![codecov](https://codecov.io/gh/LUCIT-Systems-and-Development/unicorn-bybit-websocket-api/branch/master/graph/badge.svg?token=5I03AZ3F5S)](https://codecov.io/gh/LUCIT-Systems-and-Development/unicorn-bybit-websocket-api)\n[![CodeQL](https://github.com/LUCIT-Systems-and-Development/unicorn-bybit-websocket-api/actions/workflows/codeql-analysis.yml/badge.svg)](https://github.com/LUCIT-Systems-and-Development/unicorn-bybit-websocket-api/actions/workflows/codeql-analysis.yml)\n[![Unit Tests](https://github.com/LUCIT-Systems-and-Development/unicorn-bybit-websocket-api/actions/workflows/unit-tests.yml/badge.svg)](https://github.com/LUCIT-Systems-and-Development/unicorn-bybit-websocket-api/actions/workflows/unit-tests.yml)\n[![Build and Publish GH+PyPi](https://github.com/LUCIT-Systems-and-Development/unicorn-bybit-websocket-api/actions/workflows/build_wheels.yml/badge.svg)](https://github.com/LUCIT-Systems-and-Development/unicorn-bybit-websocket-api/actions/workflows/build_wheels.yml)\n[![Build and Publish Anaconda](https://github.com/LUCIT-Systems-and-Development/unicorn-bybit-websocket-api/actions/workflows/build_conda.yml/badge.svg)](https://github.com/LUCIT-Systems-and-Development/unicorn-bybit-websocket-api/actions/workflows/build_conda.yml)\n[![Read the Docs](https://img.shields.io/badge/read-%20docs-yellow)](https://unicorn-bybit-websocket-api.docs.lucit.tech)\n[![Read How To`s](https://img.shields.io/badge/read-%20howto-yellow)](https://medium.lucit.tech)\n[![Github](https://img.shields.io/badge/source-github-cbc2c8)](https://github.com/LUCIT-Systems-and-Development/unicorn-bybit-websocket-api)\n[![Telegram](https://img.shields.io/badge/community-telegram-41ab8c)](https://t.me/unicorndevs)\n[![Gitter](https://img.shields.io/badge/community-gitter-41ab8c)](https://gitter.im/unicorn-trading-suite/unicorn-bybit-websocket-api?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\n[![Get Free Professional Support](https://img.shields.io/badge/chat-lucit%20support-004166)](https://www.lucit.tech/get-support.html)\n\n[![LUCIT-UBWA-Banner](https://raw.githubusercontent.com/LUCIT-Systems-and-Development/unicorn-bybit-websocket-api/master/images/logo/LUCIT-UBWA-Banner-Readme.png)](https://www.lucit.tech/unicorn-bybit-websocket-api.html)\n\n# UNICORN Bybit WebSocket API\n\n[Description](#description) | [Installation](#installation-and-upgrade) | [How To](#howto) | \n[Documentation](#documentation) | [Examples](#examples) | [Change Log](#change-log) | [Wiki](#wiki) | \n[Social](#social) | [Notifications](#receive-notifications) | [Bugs](#how-to-report-bugs-or-suggest-improvements) | \n[Contributing](#contributing) | [Disclaimer](#disclaimer) | [Commercial Support](#commercial-support)\n\nA Python SDK by [LUCIT](https://www.lucit.tech) to use the Bybit Websocket API`s (live+testnet) in a simple, fast, flexible, robust and \nfully-featured way. \n\nPart of '[UNICORN Trading Suite](https://www.lucit.tech/unicorn-trading-suite.html)'.\n\n[Get help](https://www.lucit.tech/get-support.html) with the integration of the `UNICORN Trading Suite` modules!\n\n## Get a UNICORN Trading Suite License\n\nTo run modules of the *UNICORN Trading Suite* you need a [valid license](https://medium.lucit.tech/how-to-obtain-and-use-a-unicorn-trading-suite-license-key-and-run-the-uts-module-according-to-best-87b0088124a8#4ca4)!\n\n## Receive Data from Bybit WebSockets\n\n### [Create a multiplex websocket connection](https://unicorn-bybit-websocket-api.docs.lucit.tech/unicorn_bybit_websocket_api.html#unicorn_bybit_websocket_api.manager.BybitWebSocketApiManager.create_stream) to Bybit with a [`stream_buffer`](https://github.com/LUCIT-Systems-and-Development/unicorn-bybit-websocket-api/wiki/%60stream_buffer%60) with just 3 lines of code\n\n```\nfrom unicorn_bybit_websocket_api import BybitWebSocketApiManager\n\nbybit_wsm = BybitWebSocketApiManager(exchange=\"bybit.com\")\nbybit_wsm.create_stream(endpoint=\"public/linear\", channels=['kline.1'], markets=['btcusdt', 'ethusdt'])\n```\n\n#### And 4 more lines to print out the data\n\n```\nwhile True:\n oldest_data_from_stream_buffer = bybit_wsm.pop_stream_data_from_stream_buffer()\n if oldest_data_from_stream_buffer:\n print(oldest_data_from_stream_buffer)\n```\n\n### Or with a [callback function](https://unicorn-bybit-websocket-api.docs.lucit.tech/unicorn_bybit_websocket_api.html?highlight=process_stream_data#unicorn_bybit_websocket_api.manager.BybitWebSocketApiManager.create_stream) just do\n\n```\nfrom unicorn_bybit_websocket_api import BybitWebSocketApiManager\n\ndef process_new_receives(stream_data):\n print(str(stream_data))\n\nbybit_wsm = BybitWebSocketApiManager(exchange=\"bybit.com\")\nbybit_wsm.create_stream(endpoint=\"public/linear\", channels=['kline.1m'], \n markets=['btcusdt', 'ethusdt'], \n process_stream_data=process_new_receives)\n```\n\n### Or with an [async callback function](https://unicorn-bybit-websocket-api.docs.lucit.tech/unicorn_bybit_websocket_api.html?highlight=process_stream_data#unicorn_bybit_websocket_api.manager.BybitWebSocketApiManager.create_stream) just do\n\n```\nfrom unicorn_bybit_websocket_api import BybitWebSocketApiManager\nimport asyncio\n\nasync def process_new_receives(stream_data):\n print(stream_data)\n await asyncio.sleep(1)\n\nbybit_wsm = BybitWebSocketApiManager()\nbybit_wsm.create_stream(endpoint=\"public/linear\", channels=['kline_1m'],\n markets=['btcusdt', 'ethusdt'],\n process_stream_data_async=process_new_receives)\n```\n\n### Or await the stream data in an asyncio coroutine\n\nAll the methods of data collection presented have their own advantages and disadvantages. However, this is the \ngenerally recommended method for processing data from streams.\n\n```\nfrom unicorn_bybit_websocket_api import BybitWebSocketApiManager\nimport asyncio\n\nasync def main():\n async def process_asyncio_queue(stream_id=None):\n print(f\"Start processing the data from stream '{bybit_wsm.get_stream_label(stream_id)}':\")\n while bybit_wsm.is_stop_request(stream_id) is False:\n data = await bybit_wsm.get_stream_data_from_asyncio_queue(stream_id)\n print(data)\n bybit_wsm.asyncio_queue_task_done(stream_id)\n bybit_wsm.create_stream(endpoint=\"public/linear\",\n channels=['kline.1'],\n markets=['btcusdt', 'ethusdt'],\n stream_label=\"KLINE_1m\",\n process_asyncio_queue=process_asyncio_queue)\n while not bybit_wsm.is_manager_stopping():\n await asyncio.sleep(1)\n\nwith BybitWebSocketApiManager(exchange='bybit.com') as bybit_wsm:\n try:\n asyncio.run(main())\n except KeyboardInterrupt:\n print(\"\\r\\nGracefully stopping ...\")\n except Exception as e:\n print(f\"\\r\\nERROR: {e}\\r\\nGracefully stopping ...\")\n```\n\nBasically that's it, but there are more options.\n\n## [Subscribe](https://unicorn-bybit-websocket-api.docs.lucit.tech/unicorn_bybit_websocket_api.html#unicorn_bybit_websocket_api.manager.BybitWebSocketApiManager.subscribe_to_stream) / [unsubscribe](https://unicorn-bybit-websocket-api.docs.lucit.tech/unicorn_bybit_websocket_api.html#unicorn_bybit_websocket_api.manager.BybitWebSocketApiManager.unsubscribe_from_stream) new markets and channels\n\nThese functions are not ready! (Todo!)\n\n## Stop `bybit_wsm` after usage to avoid memory leaks\n\nWhen you instantiate UNICORN Bybit Websocket API with `with`, `bybit_wsm.stop_manager()` is automatically executed upon exiting the `with`-block.\n\n```\nwith BybitWebSocketApiManager() as bybit_wsm:\n bybit_wsm.create_stream(channels=\"kline.1\", markets=\"btcusdt\", stream_label=\"KLINE_1m\")\n```\n\nWithout `with`, you must explicitly execute `bybit_wsm.stop_manager()` yourself.\n\n```\nbybit_wsm.stop_manager()\n```\n\n## `stream_signals` - know the state of your streams\nUsually you want to know when a stream is working and when it is not. This can be useful to know that your own system is \ncurrently \"blind\" and you may want to close open positions to be on the safe side, know that indicators will now provide \nincorrect values or that you have to reload the missing data via REST as an alternative. \n\nFor this purpose, the UNICORN Bybit WebSocket API provides so-called \n[`stream_signals`](https://github.com/LUCIT-Systems-and-Development/unicorn-bybit-websocket-api/wiki/%60stream_signals%60), \nwhich are used to tell your code in real time when a stream is connected, when it received its first data record, when \nit was disconnected and stopped, and when the stream cannot be restored.\n\n```\nfrom unicorn_bybit_websocket_api import BybitWebSocketApiManager\nimport time\n\ndef process_stream_signals(signal_type=None, stream_id=None, data_record=None, error_msg=None):\n print(f\"Received stream_signal for stream '{bybit_wsm.get_stream_label(stream_id=stream_id)}': \"\n f\"{signal_type} - {stream_id} - {data_record} - {error_msg}\")\n\nwith BybitWebSocketApiManager(process_stream_signals=process_stream_signals) as bybit_wsm:\n bybit_wsm.create_stream(channels=\"trade\", markets=\"btcusdt\", stream_label=\"TRADES\")\n time.sleep(2)\n print(f\"Waiting 5 seconds and then stop the stream ...\")\n time.sleep(5)\n```\n\n## Description\nThe Python package [UNICORN Bybit WebSocket API](https://www.lucit.tech/unicorn-bybit-websocket-api.html) \nprovides an API to the [Bybit Websocket API`s](https://bybit-exchange.github.io/docs) of [Bybit](https://www.bybit.com)\n([+Testnet](https://testnet.bybit.com)).\n\n### What are the benefits of the UNICORN Bybit WebSocket API?\n- Fully managed websockets and 100% auto-reconnect! Also handles maintenance windows!\n\n- No memory leaks from Python version 3.7 to 3.12!\n\n- The full [UTS stack](https://www.lucit.tech/unicorn-trading-suite.html) is delivered as a compiled C extension for \n maximum performance.\n\n- [Supported exchanges](https://github.com/LUCIT-Systems-and-Development/unicorn-bybit-websocket-api/wiki/Bybit-websocket-endpoint-configuration-overview): \n\n| Exchange | Exchange string | WS | WS API |\n|--------------------------------------------|---------------------|------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------|\n| [Bybit](https://www.bybit.com) | `bybit.com` | ![yes](https://raw.githubusercontent.com/lucit-systems-and-development/unicorn-bybit-websocket-api/master/images/misc/ok-icon.png) | ![yes](https://raw.githubusercontent.com/lucit-systems-and-development/unicorn-bybit-websocket-api/master/images/misc/ok-icon.png) |\n| [Bybit Testnet](https://testnet.bybit.com) | `bybit.com-testnet` | ![yes](https://raw.githubusercontent.com/lucit-systems-and-development/unicorn-bybit-websocket-api/master/images/misc/ok-icon.png) | ![yes](https://raw.githubusercontent.com/lucit-systems-and-development/unicorn-bybit-websocket-api/master/images/misc/ok-icon.png) |\n\n\n- Streams are processing asynchronous/concurrent (Python asyncio) and each stream is started in a separate thread, so \nyou don't need to deal with asyncio in your code! But you can consume with \n[`await`](https://unicorn-bybit-websocket-api.docs.lucit.tech/readme.html#or-await-the-webstream-data-in-an-asyncio-task)\n, if you want!\n\n- Supports \n[subscribe](https://unicorn-bybit-websocket-api.docs.lucit.tech/unicorn_bybit_websocket_api.html#unicorn_bybit_websocket_api.manager.BybitWebSocketApiManager.subscribe_to_stream)/[unsubscribe](https://unicorn-bybit-websocket-api.docs.lucit.tech/unicorn_bybit_websocket_api.html#unicorn_bybit_websocket_api.manager.BybitWebSocketApiManager.unsubscribe_from_stream)\non all exchanges! (Take a look to the max supported subscriptions per stream in the [endpoint configuration overview](https://github.com/LUCIT-Systems-and-Development/unicorn-bybit-websocket-api/wiki/Bybit-websocket-endpoint-configuration-overview)!)\n\n- [UNICORN Bybit WebSocket API](https://www.lucit.tech/unicorn-bybit-websocket-api.html) respects Bybit's API guidelines and protects you from avoidable reconnects and bans.\n\n- Support for multiple private `!userData` streams with different `api_key` and `api_secret`. \n ([example_multiple_userdata_streams.py](https://github.com/LUCIT-Systems-and-Development/unicorn-bybit-websocket-api/blob/master/examples/_archive/example_multiple_userdata_streams.py))\n\n- [Pick up the received data from the `stream_buffer`](https://unicorn-bybit-websocket-api.docs.lucit.tech/unicorn_bybit_websocket_api.html?highlight=get_stream_info#unicorn_bybit_websocket_api.unicorn_bybit_websocket_api_manager.BybitWebSocketApiManager.pop_stream_data_from_stream_buffer) ([FIFO or LIFO](https://github.com/LUCIT-Systems-and-Development/unicorn-bybit-websocket-api/wiki/%60stream_buffer%60)) - \nif you can not store your data in cause of a temporary technical issue, you can \n[kick back the data to the `stream_buffer`](https://unicorn-bybit-websocket-api.docs.lucit.tech/unicorn_bybit_websocket_api.html?highlight=get_stream_info#unicorn_bybit_websocket_api.unicorn_bybit_websocket_api_manager.BybitWebSocketApiManager.add_to_stream_buffer) \nwhich stores the receives in the RAM till you are able to process the data in the normal way again. \n[Learn more!](https://github.com/LUCIT-Systems-and-Development/unicorn-bybit-websocket-api/wiki/%60stream_buffer%60)\n\n- Use separate `stream_buffers` for \n[specific streams](https://github.com/LUCIT-Systems-and-Development/unicorn-bybit-websocket-api/blob/master/examples/_archive/example_stream_buffer_extended.py) \nor \n[users](https://github.com/LUCIT-Systems-and-Development/unicorn-bybit-websocket-api/blob/master/examples/_archive/example_multiple_userdata_streams.py)!\n\n- Watch the `stream_signals` to receive `CONNECT`, `FIRST_RECEIVED_DATA`, `DISCONNECT`, `STOP` and \n `STREAM_UNREPAIRABLE` signals from your streams! [Learn more!](https://github.com/LUCIT-Systems-and-Development/unicorn-bybit-websocket-api/wiki/%60stream_signals%60)\n\n- Get the received data unchanged as received, as Python dictionary or converted with \n[UnicornFy](https://github.com/LUCIT-Systems-and-Development/unicorn-fy) into well-formed Python dictionaries. Use the `output`\nparameter of \n[`create_stream()`](https://unicorn-bybit-websocket-api.docs.lucit.tech/unicorn_bybit_websocket_api.html?highlight=create_stream#unicorn_bybit_websocket_api.unicorn_bybit_websocket_api_manager.BybitWebSocketApiManager.create_stream) \nto control the output format.\n\n- Helpful management features like \n[`clear_asyncio_queue()`](https://unicorn-bybit-websocket-api.docs.lucit.tech/unicorn_bybit_websocket_api.html#unicorn_bybit_websocket_api.manager.BybitWebSocketApiManager.clear_asyncio_queue), \n[`clear_stream_buffer()`](https://unicorn-bybit-websocket-api.docs.lucit.tech/unicorn_bybit_websocket_api.html#unicorn_bybit_websocket_api.manager.BybitWebSocketApiManager.clear_stream_buffer), \n[`get_bybit_api_status()`](https://unicorn-bybit-websocket-api.docs.lucit.tech/unicorn_bybit_websocket_api.html#unicorn_bybit_websocket_api.manager.BybitWebSocketApiManager.get_bybit_api_status), \n[`get_current_receiving_speed()`](https://unicorn-bybit-websocket-api.docs.lucit.tech/unicorn_bybit_websocket_api.html#unicorn_bybit_websocket_api.manager.BybitWebSocketApiManager.get_current_receiving_speed), \n[`get_errors_from_endpoints()`](https://unicorn-bybit-websocket-api.docs.lucit.tech/unicorn_bybit_websocket_api.html#unicorn_bybit_websocket_api.manager.BybitWebSocketApiManager.get_errors_from_endpoints), \n[`get_limit_of_subscriptions_per_stream()`](https://unicorn-bybit-websocket-api.docs.lucit.tech/unicorn_bybit_websocket_api.html#unicorn_bybit_websocket_api.manager.BybitWebSocketApiManager.get_limit_of_subscriptions_per_stream), \n[`get_request_id()`](https://unicorn-bybit-websocket-api.docs.lucit.tech/unicorn_bybit_websocket_api.html#unicorn_bybit_websocket_api.manager.BybitWebSocketApiManager.get_request_id), \n[`get_result_by_request_id()`](https://unicorn-bybit-websocket-api.docs.lucit.tech/unicorn_bybit_websocket_api.html#unicorn_bybit_websocket_api.manager.BybitWebSocketApiManager.get_result_by_request_id),\n[`get_results_from_endpoints()`](https://unicorn-bybit-websocket-api.docs.lucit.tech/unicorn_bybit_websocket_api.html#unicorn_bybit_websocket_api.manager.BybitWebSocketApiManager.get_results_from_endpoints), \n[`get_stream_buffer_length()`](https://unicorn-bybit-websocket-api.docs.lucit.tech/unicorn_bybit_websocket_api.html#unicorn_bybit_websocket_api.manager.BybitWebSocketApiManager.get_stream_buffer_length), \n[`get_stream_info()`](https://unicorn-bybit-websocket-api.docs.lucit.tech/unicorn_bybit_websocket_api.html#unicorn_bybit_websocket_api.manager.BybitWebSocketApiManager.get_stream_info), \n[`get_stream_list()`](https://unicorn-bybit-websocket-api.docs.lucit.tech/unicorn_bybit_websocket_api.html#unicorn_bybit_websocket_api.manager.BybitWebSocketApiManager.get_stream_list), \n[`get_stream_id_by_label()`](https://unicorn-bybit-websocket-api.docs.lucit.tech/unicorn_bybit_websocket_api.html#unicorn_bybit_websocket_api.manager.BybitWebSocketApiManager.get_stream_id_by_label), \n[`get_stream_statistic()`](https://unicorn-bybit-websocket-api.docs.lucit.tech/unicorn_bybit_websocket_api.html#unicorn_bybit_websocket_api.manager.BybitWebSocketApiManager.get_stream_statistic), \n[`get_stream_subscriptions()`](https://unicorn-bybit-websocket-api.docs.lucit.tech/unicorn_bybit_websocket_api.html#unicorn_bybit_websocket_api.manager.BybitWebSocketApiManager.get_stream_subscriptions), \n[`get_version()`](https://unicorn-bybit-websocket-api.docs.lucit.tech/unicorn_bybit_websocket_api.html#unicorn_bybit_websocket_api.manager.BybitWebSocketApiManager.get_version), \n[`is_update_available()`](https://unicorn-bybit-websocket-api.docs.lucit.tech/unicorn_bybit_websocket_api.html#unicorn_bybit_websocket_api.manager.BybitWebSocketApiManager.is_update_availabe), \n[`get_stream_data_from_asyncio_queue()`](https://unicorn-bybit-websocket-api.docs.lucit.tech/unicorn_bybit_websocket_api.html#unicorn_bybit_websocket_api.manager.BybitWebSocketApiManager.get_stream_data_from_asyncio_queue), \n[`pop_stream_data_from_stream_buffer()`](https://unicorn-bybit-websocket-api.docs.lucit.tech/unicorn_bybit_websocket_api.html#unicorn_bybit_websocket_api.manager.BybitWebSocketApiManager.pop_stream_data_from_stream_buffer), \n[`print_summary()`](https://unicorn-bybit-websocket-api.docs.lucit.tech/unicorn_bybit_websocket_api.html#unicorn_bybit_websocket_api.manager.BybitWebSocketApiManager.print_summary), \n[`replace_stream()`](https://unicorn-bybit-websocket-api.docs.lucit.tech/unicorn_bybit_websocket_api.html#unicorn_bybit_websocket_api.manager.BybitWebSocketApiManager.replace_stream), \n[`set_stream_label()`](https://unicorn-bybit-websocket-api.docs.lucit.tech/unicorn_bybit_websocket_api.html#unicorn_bybit_websocket_api.manager.BybitWebSocketApiManager.set_stream_label), \n[`set_ringbuffer_error_max_size()`](https://unicorn-bybit-websocket-api.docs.lucit.tech/unicorn_bybit_websocket_api.html#unicorn_bybit_websocket_api.manager.BybitWebSocketApiManager.set_ringbuffer_error_max_size), \n[`subscribe_to_stream()`](https://unicorn-bybit-websocket-api.docs.lucit.tech/unicorn_bybit_websocket_api.html#unicorn_bybit_websocket_api.manager.BybitWebSocketApiManager.subscribe_to_stream), \n[`stop_stream()`](https://unicorn-bybit-websocket-api.docs.lucit.tech/unicorn_bybit_websocket_api.html#unicorn_bybit_websocket_api.manager.BybitWebSocketApiManager.stop_stream),\n[`unsubscribe_from_stream()`](https://unicorn-bybit-websocket-api.docs.lucit.tech/unicorn_bybit_websocket_api.html#unicorn_bybit_websocket_api.manager.BybitWebSocketApiManager.unsubscribe_from_stream), \n[`wait_till_stream_has_started()`](https://unicorn-bybit-websocket-api.docs.lucit.tech/unicorn_bybit_websocket_api.html#unicorn_bybit_websocket_api.manager.BybitWebSocketApiManager.wait_till_stream_has_started) \nand many more! Explore them [here](https://unicorn-bybit-websocket-api.docs.lucit.tech/modules.html).\n\n- Monitor the status of the created `BybitWebSocketApiManager()` instance within your code with \n[`get_monitoring_status_plain()`](https://unicorn-bybit-websocket-api.docs.lucit.tech/unicorn_bybit_websocket_api.html?highlight=plain#unicorn_bybit_websocket_api.unicorn_bybit_websocket_api_manager.BybitWebSocketApiManager.get_monitoring_status_plain)\nand specific streams with \n[`get_stream_info()`](https://unicorn-bybit-websocket-api.docs.lucit.tech/unicorn_bybit_websocket_api.html#unicorn_bybit_websocket_api.manager.BybitWebSocketApiManager.get_stream_info).\n\n- Available as a package via `pip` and `conda` as precompiled C extension with stub files for improved Intellisense \n functions and source code for easier debugging of the source code. [To the installation.](#installation-and-upgrade)\n\n- Integration of [test cases](https://github.com/LUCIT-Systems-and-Development/unicorn-bybit-websocket-api/actions/workflows/unit-tests.yml) and [examples](#examples).\n\n- Customizable base URL.\n\n- *Socks5 Proxy* support:\n\n ```\n bybit_wsm = BybitWebSocketApiManager(exchange=\"bybit.com\", socks5_proxy_server=\"127.0.0.1:9050\") \n ```\n \n Read the [docs](https://unicorn-bybit-websocket-api.docs.lucit.tech/unicorn_bybit_websocket_api.html#unicorn_bybit_websocket_api.manager.BybitWebSocketApiManager)\n or this [how to](https://medium.com/@oliverzehentleitner/how-to-connect-to-bybit-com-websockets-using-python-via-a-socks5-proxy-3c5a3e063f12) \n for more information or try \n [example_socks5_proxy.py](https://github.com/LUCIT-Systems-and-Development/unicorn-bybit-websocket-api/blob/master/examples/_archive/example_socks5_proxy.py).\n\n- Excessively tested on Linux, Mac and Windows on x86, arm32, arm64, ...\n\nIf you like the project, please [![star](https://raw.githubusercontent.com/lucit-systems-and-development/unicorn-bybit-websocket-api/master/images/misc/gh-star.png)](https://github.com/LUCIT-Systems-and-Development/unicorn-bybit-websocket-api/stargazers) it on \n[GitHub](https://github.com/LUCIT-Systems-and-Development/unicorn-bybit-websocket-api)!\n\n## Installation and Upgrade\nThe module requires Python 3.7 and runs smoothly up to and including Python 3.12.\n\nAnaconda packages are available from Python version 3.8 and higher, but only in the latest version!\n\nFor the PyPy interpreter we offer packages via PyPi only from Python version 3.9 and higher.\n\nThe current dependencies are listed [here](https://github.com/LUCIT-Systems-and-Development/unicorn-bybit-websocket-api/blob/master/requirements.txt).\n\nIf you run into errors during the installation take a look [here](https://github.com/LUCIT-Systems-and-Development/unicorn-bybit-suite/wiki/Installation).\n\n### Packages are created automatically with GitHub Actions\nWhen a new release is to be created, we start two GitHubActions: \n\n- [Build and Publish Anaconda](https://github.com/LUCIT-Systems-and-Development/unicorn-bybit-websocket-api/actions/workflows/build_conda.yml)\n- [Build and Publish GH+PyPi](https://github.com/LUCIT-Systems-and-Development/unicorn-bybit-websocket-api/actions/workflows/build_wheels.yml) \n\nBoth start virtual Windows/Linux/Mac servers provided by GitHub in the cloud with preconfigured environments and \ncreate the respective compilations and stub files, pack them into wheels and conda packages and then publish them on \nGitHub, PYPI and Anaconda. This is a transparent method that makes it possible to trace the source code behind a \ncompilation.\n\n### A Cython binary, PyPy or source code based CPython wheel of the latest version with `pip` from [PyPI](https://pypi.org/project/unicorn-bybit-websocket-api/)\nOur [Cython](https://cython.org/) and [PyPy](https://www.pypy.org/) Wheels are available on [PyPI](https://pypi.org/), \nthese wheels offer significant advantages for Python developers:\n\n- ***Performance Boost with Cython Wheels:*** Cython is a programming language that supplements Python with static typing and C-level performance. By compiling \n Python code into C, Cython Wheels can significantly enhance the execution speed of Python code, especially in \n computationally intensive tasks. This means faster runtimes and more efficient processing for users of our package. \n\n- ***PyPy Wheels for Enhanced Efficiency:*** PyPy is an alternative Python interpreter known for its speed and efficiency. It uses Just-In-Time (JIT) compilation, \n which can dramatically improve the performance of Python code. Our PyPy Wheels are tailored for compatibility with \n PyPy, allowing users to leverage this speed advantage seamlessly.\n\nBoth Cython and PyPy Wheels on PyPI make the installation process simpler and more straightforward. They ensure that \nyou get the optimized version of our package with minimal setup, allowing you to focus on development rather than \nconfiguration.\n\nOn Raspberry Pi and other architectures for which there are no pre-compiled versions, the package can still be \ninstalled with PIP. PIP then compiles the package locally on the target system during installation. Please be patient, \nthis may take some time!\n\n#### Installation\n`pip install unicorn-bybit-websocket-api`\n\n#### Update\n`pip install unicorn-bybit-websocket-api --upgrade`\n\n### A Conda Package of the latest version with `conda` from [Anaconda](https://anaconda.org/lucit)\nThe `unicorn-bybit-websocket-api` package is also available as a Cython version for the `linux-64`, `osx-64` \nand `win-64` architectures with [Conda](https://docs.conda.io/en/latest/) through the \n[`lucit` channel](https://anaconda.org/lucit). \n\nFor optimal compatibility and performance, it is recommended to source the necessary dependencies from the \n[`conda-forge` channel](https://anaconda.org/conda-forge). \n\n#### Installation\n```\nconda config --add channels conda-forge\nconda config --add channels lucit\nconda install -c lucit unicorn-bybit-websocket-api\n```\n\n#### Update\n`conda update -c lucit unicorn-bybit-websocket-api`\n\n### From source of the latest release with PIP from [GitHub](https://github.com/LUCIT-Systems-and-Development/unicorn-bybit-websocket-api)\n#### Linux, macOS, ...\nRun in bash:\n\n`pip install https://github.com/LUCIT-Systems-and-Development/unicorn-bybit-websocket-api/archive/$(curl -s https://api.github.com/repos/LUCIT-Systems-and-Development/unicorn-bybit-websocket-api/releases/latest | grep -oP '\"tag_name\": \"\\K(.*)(?=\")').tar.gz --upgrade`\n\n#### Windows\nUse the below command with the version (such as 0.1.0) you determined \n[here](https://github.com/LUCIT-Systems-and-Development/unicorn-bybit-websocket-api/releases/latest):\n\n`pip install https://github.com/LUCIT-Systems-and-Development/unicorn-bybit-websocket-api/archive/0.1.0.tar.gz --upgrade`\n### From the latest source (dev-stage) with PIP from [GitHub](https://github.com/LUCIT-Systems-and-Development/unicorn-bybit-websocket-api)\nThis is not a release version and can not be considered to be stable!\n\n`pip install https://github.com/LUCIT-Systems-and-Development/unicorn-bybit-websocket-api/tarball/master --upgrade`\n\n## Change Log\n[https://unicorn-bybit-websocket-api.docs.lucit.tech/changelog.html](https://unicorn-bybit-websocket-api.docs.lucit.tech/changelog.html)\n\n## Documentation\n- [General](https://unicorn-bybit-websocket-api.docs.lucit.tech)\n- [Modules](https://unicorn-bybit-websocket-api.docs.lucit.tech/modules.html)\n\n## Examples\n- [Look here!](https://github.com/LUCIT-Systems-and-Development/unicorn-bybit-websocket-api/tree/master/examples/)\n\n## Howto\n- [How to Obtain and Use a Unicorn Trading Suite License Key and Run the UTS Module According to Best Practice](https://medium.lucit.tech/how-to-obtain-and-use-a-unicorn-trading-suite-license-key-and-run-the-uts-module-according-to-best-87b0088124a8)\n\n\n## Project Homepage\n[https://www.lucit.tech/unicorn-bybit-websocket-api.html](https://www.lucit.tech/unicorn-bybit-websocket-api.html)\n\n## Wiki\n[https://github.com/LUCIT-Systems-and-Development/unicorn-bybit-websocket-api/wiki](https://github.com/LUCIT-Systems-and-Development/unicorn-bybit-websocket-api/wiki)\n\n## Social\n- [Discussions](https://github.com/LUCIT-Systems-and-Development/unicorn-bybit-websocket-api/discussions)\n- [Gitter](https://gitter.im/unicorn-trading-suite/unicorn-bybit-websocket-api)\n- [https://t.me/unicorndevs](https://t.me/unicorndevs)\n- [Telegram - English API Community](https://t.me/BybitAPI)\n- [Telegram - Chinese API Community](https://t.me/BybitChineseAPI)\n- [Discord](https://discord.gg/VBwVwS2HUs)\n\n## Receive Notifications\nTo receive notifications on available updates you can \n[![watch](https://raw.githubusercontent.com/lucit-systems-and-development/unicorn-bybit-websocket-api/master/images/misc/gh-watch.png)](https://github.com/LUCIT-Systems-and-Development/unicorn-bybit-websocket-api/watchers) \nthe repository on [GitHub](https://github.com/LUCIT-Systems-and-Development/unicorn-bybit-websocket-api), write your \n[own script](https://github.com/LUCIT-Systems-and-Development/unicorn-bybit-websocket-api/blob/master/examples/_archive/example_version_of_this_package.py) \nwith using \n[`is_update_available()`](https://unicorn-bybit-websocket-api.docs.lucit.tech/unicorn_bybit_websocket_api.html#unicorn_bybit_websocket_api.manager.BybitWebSocketApiManager.is_update_availabe) \nor you use the \n[monitoring API service](https://github.com/LUCIT-Systems-and-Development/unicorn-bybit-websocket-api/wiki/UNICORN-Monitoring-API-Service).\n\nFollow us on [LinkedIn](https://www.linkedin.com/company/lucit-systems-and-development), \n[X](https://twitter.com/LUCIT_SysDev) or [Facebook](https://www.facebook.com/lucit.systems.and.development)!\n\nTo receive news (like inspection windows/maintenance) about the Bybit API`s subscribe to their telegram groups: \n\n- [Bybit English](https://t.me/BybitEnglish)\n- [Bybit Announcements](https://t.me/Bybit_Announcements)\n\n\n## How to report Bugs or suggest Improvements?\n[List of planned features](https://github.com/LUCIT-Systems-and-Development/unicorn-bybit-websocket-api/issues?q=is%3Aissue+is%3Aopen+label%3Aenhancement) - click ![thumbs-up](https://raw.githubusercontent.com/lucit-systems-and-development/unicorn-bybit-websocket-api/master/images/misc/thumbup.png) if you need one of them or suggest a new feature!\n\nBefore you report a bug, [try the latest release](https://github.com/LUCIT-Systems-and-Development/unicorn-bybit-websocket-api#installation-and-upgrade). If the issue still exists, provide the error trace, OS \nand Python version and explain how to reproduce the error. A demo script is appreciated.\n\nIf you don't find an issue related to your topic, please open a new [issue](https://github.com/LUCIT-Systems-and-Development/unicorn-bybit-websocket-api/issues)!\n\n[Report a security bug!](https://github.com/LUCIT-Systems-and-Development/unicorn-bybit-websocket-api/security/policy)\n\n## Contributing\n[UNICORN Bybit WebSocket API](https://www.lucit.tech/unicorn-bybit-websocket-api.html) is an open \nsource project which welcomes contributions which can be anything from simple documentation fixes and reporting dead links to new features. To \ncontribute follow \n[this guide](https://github.com/LUCIT-Systems-and-Development/unicorn-bybit-websocket-api/blob/master/CONTRIBUTING.md).\n \n### Contributors\n[![Contributors](https://contributors-img.web.app/image?repo=oliver-zehentleitner/unicorn-bybit-websocket-api)](https://github.com/LUCIT-Systems-and-Development/unicorn-bybit-websocket-api/graphs/contributors)\n\nWe ![love](https://raw.githubusercontent.com/lucit-systems-and-development/unicorn-bybit-websocket-api/master/images/misc/heart.png) open source!\n\n## Disclaimer\nThis project is for informational purposes only. You should not construe this information or any other material as \nlegal, tax, investment, financial or other advice. Nothing contained herein constitutes a solicitation, recommendation, \nendorsement or offer by us or any third party provider to buy or sell any securities or other financial instruments in \nthis or any other jurisdiction in which such solicitation or offer would be unlawful under the securities laws of such \njurisdiction.\n\n### If you intend to use real money, use it at your own risk!\n\nUnder no circumstances will we be responsible or liable for any claims, damages, losses, expenses, costs or liabilities \nof any kind, including but not limited to direct or indirect damages for loss of profits.\n\n## Commercial Support\n\n[![Get professional and fast support](https://raw.githubusercontent.com/LUCIT-Systems-and-Development/unicorn-trading-suite/master/images/support/LUCIT-get-professional-and-fast-support.png)](https://www.lucit.tech/get-support.html)\n\n***Do you need a developer, operator or consultant?*** [Contact us](https://www.lucit.tech/contact.html) for a non-binding initial consultation!\n",
"bugtrack_url": null,
"license": "LSOSL - LUCIT Synergetic Open Source License",
"summary": "A Python SDK by LUCIT to use the Bybit Websocket API`s in a simple, fast, flexible, robust and fully-featured way.",
"version": "0.1.0",
"project_urls": {
"Author": "https://www.lucit.tech",
"Changes": "https://unicorn-bybit-websocket-api.docs.lucit.tech/changelog.html",
"Chat": "https://gitter.im/unicorn-trading-suite/unicorn-bybit-websocket-api",
"Documentation": "https://unicorn-bybit-websocket-api.docs.lucit.tech",
"Get Support": "https://www.lucit.tech/get-support.html",
"Homepage": "https://github.com/LUCIT-Systems-and-Development/unicorn-bybit-websocket-api",
"Howto": "https://www.lucit.tech/unicorn-bybit-websocket-api.html#howto",
"Issue Tracker": "https://github.com/LUCIT-Systems-and-Development/unicorn-bybit-websocket-api/issues",
"LUCIT Online Shop": "https://shop.lucit.services/software",
"License": "https://unicorn-bybit-websocket-api.docs.lucit.tech/license.html",
"Telegram": "https://t.me/unicorndevs",
"Wiki": "https://github.com/LUCIT-Systems-and-Development/unicorn-bybit-websocket-api/wiki"
},
"split_keywords": [
"bybit",
" asyncio",
" async",
" asynchronous",
" concurrent",
" websocket-api",
" webstream-api",
" bybit-websocket",
" bybit-webstream",
" webstream",
" websocket",
" api"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "026f87aa2dd078f0633e405f5f963d969d09fa74442a6f0caee6eb4144908f6c",
"md5": "90b26c79eeebe55837d4c78b27eaac13",
"sha256": "c35f7abd4f6edf5af5b45cb575e770dc5ef3f60764b6b00a893150c24ca782f6"
},
"downloads": -1,
"filename": "unicorn_bybit_websocket_api-0.1.0-cp310-cp310-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "90b26c79eeebe55837d4c78b27eaac13",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.7.0",
"size": 2200097,
"upload_time": "2024-08-03T23:44:29",
"upload_time_iso_8601": "2024-08-03T23:44:29.249210Z",
"url": "https://files.pythonhosted.org/packages/02/6f/87aa2dd078f0633e405f5f963d969d09fa74442a6f0caee6eb4144908f6c/unicorn_bybit_websocket_api-0.1.0-cp310-cp310-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4ab924d2246367926c9b411a0bc0cbc140314a65d142e365d38ed469f95072bb",
"md5": "ed6fa710495e36f263fa3f428e7b0927",
"sha256": "c3fefbcc3873f2c476625554cba66c82e3d7fe478c86dfffb942e1fdd241276e"
},
"downloads": -1,
"filename": "unicorn_bybit_websocket_api-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "ed6fa710495e36f263fa3f428e7b0927",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.7.0",
"size": 6797918,
"upload_time": "2024-08-03T23:44:31",
"upload_time_iso_8601": "2024-08-03T23:44:31.125246Z",
"url": "https://files.pythonhosted.org/packages/4a/b9/24d2246367926c9b411a0bc0cbc140314a65d142e365d38ed469f95072bb/unicorn_bybit_websocket_api-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "30e80e690e39b8634dae50250906127376ad5efbf0264ff6de07410e13a3625a",
"md5": "c07f2255512fd7c17e04b00bd249581f",
"sha256": "bf50ae850e196ec9b86b1c8705d9c949ef890d6c32d2234b22a2c8a71095517a"
},
"downloads": -1,
"filename": "unicorn_bybit_websocket_api-0.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "c07f2255512fd7c17e04b00bd249581f",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.7.0",
"size": 6606046,
"upload_time": "2024-08-03T23:44:33",
"upload_time_iso_8601": "2024-08-03T23:44:33.375983Z",
"url": "https://files.pythonhosted.org/packages/30/e8/0e690e39b8634dae50250906127376ad5efbf0264ff6de07410e13a3625a/unicorn_bybit_websocket_api-0.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "fb28179bc3be30fd3a4f41359d3b2d26487b03ae1b66ca66e828b90088763301",
"md5": "2a69873173f00e3d462e33ae3a00cb42",
"sha256": "ea0915e958e398c37231a02376d56fd95747910b1c135e268d52684d26828631"
},
"downloads": -1,
"filename": "unicorn_bybit_websocket_api-0.1.0-cp310-cp310-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "2a69873173f00e3d462e33ae3a00cb42",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.7.0",
"size": 6487151,
"upload_time": "2024-08-03T23:44:35",
"upload_time_iso_8601": "2024-08-03T23:44:35.433873Z",
"url": "https://files.pythonhosted.org/packages/fb/28/179bc3be30fd3a4f41359d3b2d26487b03ae1b66ca66e828b90088763301/unicorn_bybit_websocket_api-0.1.0-cp310-cp310-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "60c16940f8460d8ebfeadd615fd2f7316cdb8a6c59898716196f65eec573019f",
"md5": "f3d83f5d615fc69d39f05e8f66485c03",
"sha256": "53b32545f25ee1527d8a3feeb5c2c2e19225caee59cd48231e733c94e3f8a770"
},
"downloads": -1,
"filename": "unicorn_bybit_websocket_api-0.1.0-cp310-cp310-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "f3d83f5d615fc69d39f05e8f66485c03",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.7.0",
"size": 6724992,
"upload_time": "2024-08-03T23:44:37",
"upload_time_iso_8601": "2024-08-03T23:44:37.109945Z",
"url": "https://files.pythonhosted.org/packages/60/c1/6940f8460d8ebfeadd615fd2f7316cdb8a6c59898716196f65eec573019f/unicorn_bybit_websocket_api-0.1.0-cp310-cp310-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "36d3b3bfba7015f70a8e3a31735687fcd9c1638ca73331e07a8d69e9dae57420",
"md5": "37a84e471a5e72a7e2a6d1c94c0b4615",
"sha256": "bf17f35c2c035915609b47674de1b015945106826c704daf154416b187abc26b"
},
"downloads": -1,
"filename": "unicorn_bybit_websocket_api-0.1.0-cp310-cp310-win32.whl",
"has_sig": false,
"md5_digest": "37a84e471a5e72a7e2a6d1c94c0b4615",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.7.0",
"size": 1892342,
"upload_time": "2024-08-03T23:44:38",
"upload_time_iso_8601": "2024-08-03T23:44:38.695491Z",
"url": "https://files.pythonhosted.org/packages/36/d3/b3bfba7015f70a8e3a31735687fcd9c1638ca73331e07a8d69e9dae57420/unicorn_bybit_websocket_api-0.1.0-cp310-cp310-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d343de737665d2c3ca13425ed916adec82da8a0e341a209e45aa65f999f0ebdc",
"md5": "19dbbd1c9d1b929e04662d303631f32a",
"sha256": "bc08a18f29921bf9d5b789df917997abf98963caf1fc90156f78ffcb52a578ea"
},
"downloads": -1,
"filename": "unicorn_bybit_websocket_api-0.1.0-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "19dbbd1c9d1b929e04662d303631f32a",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.7.0",
"size": 1974247,
"upload_time": "2024-08-03T23:44:40",
"upload_time_iso_8601": "2024-08-03T23:44:40.606435Z",
"url": "https://files.pythonhosted.org/packages/d3/43/de737665d2c3ca13425ed916adec82da8a0e341a209e45aa65f999f0ebdc/unicorn_bybit_websocket_api-0.1.0-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3a65d13a42c74f5bd52ecacb458fe5c950b5afeca7ae0e7687ba01912fe2d4d6",
"md5": "707b91648cc9ad9506478996a3e923cc",
"sha256": "6d0d548cef5bb0b1ddf649f5c8fd37c369443edb5d113ce659907da9244d55b9"
},
"downloads": -1,
"filename": "unicorn_bybit_websocket_api-0.1.0-cp311-cp311-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "707b91648cc9ad9506478996a3e923cc",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.7.0",
"size": 2204576,
"upload_time": "2024-08-03T23:44:42",
"upload_time_iso_8601": "2024-08-03T23:44:42.778652Z",
"url": "https://files.pythonhosted.org/packages/3a/65/d13a42c74f5bd52ecacb458fe5c950b5afeca7ae0e7687ba01912fe2d4d6/unicorn_bybit_websocket_api-0.1.0-cp311-cp311-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "50b61c03c6da59f8cd0db2aadfafdba20b0deeaa8360f183b6503d3f436f0ccf",
"md5": "f7d7ea18b4271c8a2040ca9aaa01796f",
"sha256": "48131da639f6c34a3409e2cbf7bde43f30a062143966977b9c9caa0c9fb85880"
},
"downloads": -1,
"filename": "unicorn_bybit_websocket_api-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "f7d7ea18b4271c8a2040ca9aaa01796f",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.7.0",
"size": 7360823,
"upload_time": "2024-08-03T23:44:45",
"upload_time_iso_8601": "2024-08-03T23:44:45.525682Z",
"url": "https://files.pythonhosted.org/packages/50/b6/1c03c6da59f8cd0db2aadfafdba20b0deeaa8360f183b6503d3f436f0ccf/unicorn_bybit_websocket_api-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "eef8e9521e69f130ad3bed72906276f6aa3ca0b14cee49a46f3f9eefd720d6a7",
"md5": "f539bbf82da5371703d24db35f1bcd60",
"sha256": "51f63f60204457fa82b27e7e13700b11da4d9b9d869089c402858e222a14dcf9"
},
"downloads": -1,
"filename": "unicorn_bybit_websocket_api-0.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "f539bbf82da5371703d24db35f1bcd60",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.7.0",
"size": 7130456,
"upload_time": "2024-08-03T23:44:47",
"upload_time_iso_8601": "2024-08-03T23:44:47.918516Z",
"url": "https://files.pythonhosted.org/packages/ee/f8/e9521e69f130ad3bed72906276f6aa3ca0b14cee49a46f3f9eefd720d6a7/unicorn_bybit_websocket_api-0.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ac46de811d1b5a2000a06cc678bdb0aaa02fd9df2153d491255318ea6fb7bda7",
"md5": "23daf9c74c451e316db8917001b482f6",
"sha256": "8b3be170a85cd6df2edb187d58842d814511e01a5def52ca059985bdd3f4f9f6"
},
"downloads": -1,
"filename": "unicorn_bybit_websocket_api-0.1.0-cp311-cp311-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "23daf9c74c451e316db8917001b482f6",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.7.0",
"size": 7050218,
"upload_time": "2024-08-03T23:44:50",
"upload_time_iso_8601": "2024-08-03T23:44:50.314145Z",
"url": "https://files.pythonhosted.org/packages/ac/46/de811d1b5a2000a06cc678bdb0aaa02fd9df2153d491255318ea6fb7bda7/unicorn_bybit_websocket_api-0.1.0-cp311-cp311-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2cfaa5eec8db22ef23c0cdcff72e16564e340f49101dc69aedbfd370dd504f86",
"md5": "e3dd1a19f519e15e1e7ed6a4f559ba96",
"sha256": "93f97e2384136062399c7a3f782bb990223a92debabec308d91a992944833f50"
},
"downloads": -1,
"filename": "unicorn_bybit_websocket_api-0.1.0-cp311-cp311-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "e3dd1a19f519e15e1e7ed6a4f559ba96",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.7.0",
"size": 7324767,
"upload_time": "2024-08-03T23:44:52",
"upload_time_iso_8601": "2024-08-03T23:44:52.003248Z",
"url": "https://files.pythonhosted.org/packages/2c/fa/a5eec8db22ef23c0cdcff72e16564e340f49101dc69aedbfd370dd504f86/unicorn_bybit_websocket_api-0.1.0-cp311-cp311-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "39dd8d28b062da4279bfee4853a261f952ad94dca722cf67e60995224e050aa8",
"md5": "2c2f2624cffa9d3877c7a78957c3f80a",
"sha256": "59e086161754d813d66a29ab60e41935ddc70e55fe94c17f6bcde1070af9fa06"
},
"downloads": -1,
"filename": "unicorn_bybit_websocket_api-0.1.0-cp311-cp311-win32.whl",
"has_sig": false,
"md5_digest": "2c2f2624cffa9d3877c7a78957c3f80a",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.7.0",
"size": 1891897,
"upload_time": "2024-08-03T23:44:53",
"upload_time_iso_8601": "2024-08-03T23:44:53.584944Z",
"url": "https://files.pythonhosted.org/packages/39/dd/8d28b062da4279bfee4853a261f952ad94dca722cf67e60995224e050aa8/unicorn_bybit_websocket_api-0.1.0-cp311-cp311-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "dd4f41e994576cfb3c00300ac370ecda3427dddc717e7d18626ce32373fac598",
"md5": "9cb8c2f4327de617210599a9f01cb00d",
"sha256": "2aed27f93bf955b2e3158eb9406b31089b4424a71438ac01e8e256eeb8281cf5"
},
"downloads": -1,
"filename": "unicorn_bybit_websocket_api-0.1.0-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "9cb8c2f4327de617210599a9f01cb00d",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.7.0",
"size": 1988408,
"upload_time": "2024-08-03T23:44:55",
"upload_time_iso_8601": "2024-08-03T23:44:55.619832Z",
"url": "https://files.pythonhosted.org/packages/dd/4f/41e994576cfb3c00300ac370ecda3427dddc717e7d18626ce32373fac598/unicorn_bybit_websocket_api-0.1.0-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0a954379b3cfe5bd6c249011357bed83e2aa37eba1e5b587fb25eeea7bb0c814",
"md5": "4d691143a018a7676780bc3ac9a99c58",
"sha256": "d9d0d74fa5545167f32b2d71204822732f5651ed0b569d0c6f1786f19faa3f58"
},
"downloads": -1,
"filename": "unicorn_bybit_websocket_api-0.1.0-cp312-cp312-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "4d691143a018a7676780bc3ac9a99c58",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.7.0",
"size": 2151914,
"upload_time": "2024-08-03T23:44:57",
"upload_time_iso_8601": "2024-08-03T23:44:57.165404Z",
"url": "https://files.pythonhosted.org/packages/0a/95/4379b3cfe5bd6c249011357bed83e2aa37eba1e5b587fb25eeea7bb0c814/unicorn_bybit_websocket_api-0.1.0-cp312-cp312-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "814796461ac3c289086f79b8c0e6e02aec62f34dc7b11265bda68d94ee28886a",
"md5": "48e6b42bf16fc8e1300cade839c58c1e",
"sha256": "9a82fc33061dfc40502bf54fea3b2ff0644705122590610b698f7bf20a74e3a9"
},
"downloads": -1,
"filename": "unicorn_bybit_websocket_api-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "48e6b42bf16fc8e1300cade839c58c1e",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.7.0",
"size": 7361459,
"upload_time": "2024-08-03T23:44:58",
"upload_time_iso_8601": "2024-08-03T23:44:58.671285Z",
"url": "https://files.pythonhosted.org/packages/81/47/96461ac3c289086f79b8c0e6e02aec62f34dc7b11265bda68d94ee28886a/unicorn_bybit_websocket_api-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a587479ee506c94b5e80a6a5a214479b3391994d22055970f2979777fa8899a0",
"md5": "cd94dcb4ace90bc8c86df9a498133f13",
"sha256": "d287798ab1537870f3f93c701051e4190db3a15a1dfb1a6a9cfbbd03ba2a8cae"
},
"downloads": -1,
"filename": "unicorn_bybit_websocket_api-0.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "cd94dcb4ace90bc8c86df9a498133f13",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.7.0",
"size": 7081311,
"upload_time": "2024-08-03T23:45:01",
"upload_time_iso_8601": "2024-08-03T23:45:01.218560Z",
"url": "https://files.pythonhosted.org/packages/a5/87/479ee506c94b5e80a6a5a214479b3391994d22055970f2979777fa8899a0/unicorn_bybit_websocket_api-0.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "fa02d40a4c38c895baf9c837f81c458300cc4446137f4b6c31e43af7da6bd50e",
"md5": "89c397741e4fbd86d2312bb539c0abad",
"sha256": "c497d028412768d9ad91f9155e1d0663465411f62379edefdcc95422c5803ddf"
},
"downloads": -1,
"filename": "unicorn_bybit_websocket_api-0.1.0-cp312-cp312-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "89c397741e4fbd86d2312bb539c0abad",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.7.0",
"size": 7052607,
"upload_time": "2024-08-03T23:45:03",
"upload_time_iso_8601": "2024-08-03T23:45:03.866704Z",
"url": "https://files.pythonhosted.org/packages/fa/02/d40a4c38c895baf9c837f81c458300cc4446137f4b6c31e43af7da6bd50e/unicorn_bybit_websocket_api-0.1.0-cp312-cp312-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d9baa7af92ecf32586fcbba740afc96dc0446127121f99710d86b226df2663ff",
"md5": "55280582e1eb512712565d5501faf692",
"sha256": "e9189daeff4bfa05a69d81c215cd5402d044645e4074ae1a72adec40d7f1830b"
},
"downloads": -1,
"filename": "unicorn_bybit_websocket_api-0.1.0-cp312-cp312-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "55280582e1eb512712565d5501faf692",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.7.0",
"size": 7349347,
"upload_time": "2024-08-03T23:45:05",
"upload_time_iso_8601": "2024-08-03T23:45:05.489615Z",
"url": "https://files.pythonhosted.org/packages/d9/ba/a7af92ecf32586fcbba740afc96dc0446127121f99710d86b226df2663ff/unicorn_bybit_websocket_api-0.1.0-cp312-cp312-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c686570094ca8fc8f43ce0c90dadbce8b0b4c2cf85a2692e85332f7ed9146d95",
"md5": "c5f1b511fe4ce181fa2e0a54dc05cd16",
"sha256": "1a79ccfeb63034e4b3f3b22a605ba2ef68dfdb5f2ef04645e8542eda04723e92"
},
"downloads": -1,
"filename": "unicorn_bybit_websocket_api-0.1.0-cp312-cp312-win32.whl",
"has_sig": false,
"md5_digest": "c5f1b511fe4ce181fa2e0a54dc05cd16",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.7.0",
"size": 1874789,
"upload_time": "2024-08-03T23:45:07",
"upload_time_iso_8601": "2024-08-03T23:45:07.078649Z",
"url": "https://files.pythonhosted.org/packages/c6/86/570094ca8fc8f43ce0c90dadbce8b0b4c2cf85a2692e85332f7ed9146d95/unicorn_bybit_websocket_api-0.1.0-cp312-cp312-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ffa9b3e03f1909851a473049d8321ded6d7a41d0924ddb264e064979a2fc5ceb",
"md5": "09003976b6a734e97d1c0ad66004638f",
"sha256": "d40a38bf2141aaccf4b672c15d683d00b137a7e72c453b11c11e4c12cc2a304f"
},
"downloads": -1,
"filename": "unicorn_bybit_websocket_api-0.1.0-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "09003976b6a734e97d1c0ad66004638f",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.7.0",
"size": 1971494,
"upload_time": "2024-08-03T23:45:08",
"upload_time_iso_8601": "2024-08-03T23:45:08.533140Z",
"url": "https://files.pythonhosted.org/packages/ff/a9/b3e03f1909851a473049d8321ded6d7a41d0924ddb264e064979a2fc5ceb/unicorn_bybit_websocket_api-0.1.0-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6a410dcd5ad2937e43b324d65ff31119a9869dd1d37bec1902f27c1f9b6a1ab1",
"md5": "5029004226c3f1e47f7860506d584522",
"sha256": "9135367bc8e000c0e77695b5c524e0efc5270890e7ccabee9fc644df297a8ffc"
},
"downloads": -1,
"filename": "unicorn_bybit_websocket_api-0.1.0-cp37-cp37m-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "5029004226c3f1e47f7860506d584522",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.7.0",
"size": 2144895,
"upload_time": "2024-08-03T23:45:10",
"upload_time_iso_8601": "2024-08-03T23:45:10.491336Z",
"url": "https://files.pythonhosted.org/packages/6a/41/0dcd5ad2937e43b324d65ff31119a9869dd1d37bec1902f27c1f9b6a1ab1/unicorn_bybit_websocket_api-0.1.0-cp37-cp37m-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "aaaafc6043cc7362c235d82ec91483edce1c5a0fee7fa3720fe655eb66fc22a3",
"md5": "22fe665f6044fa98ecad8f380db69a35",
"sha256": "263ad48da92a5a018e1f445c45051e0858671515779e162e0f71805e27b2aaee"
},
"downloads": -1,
"filename": "unicorn_bybit_websocket_api-0.1.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "22fe665f6044fa98ecad8f380db69a35",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.7.0",
"size": 6074235,
"upload_time": "2024-08-03T23:45:11",
"upload_time_iso_8601": "2024-08-03T23:45:11.968989Z",
"url": "https://files.pythonhosted.org/packages/aa/aa/fc6043cc7362c235d82ec91483edce1c5a0fee7fa3720fe655eb66fc22a3/unicorn_bybit_websocket_api-0.1.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "da7f253a40e0f91fe7f9fef9572786e2348b6a9605888f09c57d4301d63369e6",
"md5": "eb84abdce5437c5e52077f305641bee3",
"sha256": "f72ada372deb8e6ead90231d1f378d31aabcc6693ed901749a549fc7c8067bda"
},
"downloads": -1,
"filename": "unicorn_bybit_websocket_api-0.1.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "eb84abdce5437c5e52077f305641bee3",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.7.0",
"size": 5909442,
"upload_time": "2024-08-03T23:45:13",
"upload_time_iso_8601": "2024-08-03T23:45:13.640272Z",
"url": "https://files.pythonhosted.org/packages/da/7f/253a40e0f91fe7f9fef9572786e2348b6a9605888f09c57d4301d63369e6/unicorn_bybit_websocket_api-0.1.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "83a76896fba7d7220f177ce45cc063403fbe7219bbfe252974883b806f225b8b",
"md5": "eceff7813c2c2ee8c0e6611a38eb5dc7",
"sha256": "1bb67f50b50dd9584925774be2a10c1a8b419223641145e81b404aec558629d6"
},
"downloads": -1,
"filename": "unicorn_bybit_websocket_api-0.1.0-cp37-cp37m-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "eceff7813c2c2ee8c0e6611a38eb5dc7",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.7.0",
"size": 5952412,
"upload_time": "2024-08-03T23:45:15",
"upload_time_iso_8601": "2024-08-03T23:45:15.219395Z",
"url": "https://files.pythonhosted.org/packages/83/a7/6896fba7d7220f177ce45cc063403fbe7219bbfe252974883b806f225b8b/unicorn_bybit_websocket_api-0.1.0-cp37-cp37m-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4945f8e9abdbbc3f4a1f83be3ce2a48635b068ac9f33a1846345de1a497cf95a",
"md5": "c1f57e97362e4441b2833b7c8d09cab8",
"sha256": "8ec0802ed2c6922881dcdf699a0e150dee25c0b3481784c8a7e5979197247dd0"
},
"downloads": -1,
"filename": "unicorn_bybit_websocket_api-0.1.0-cp37-cp37m-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "c1f57e97362e4441b2833b7c8d09cab8",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.7.0",
"size": 6146317,
"upload_time": "2024-08-03T23:45:16",
"upload_time_iso_8601": "2024-08-03T23:45:16.845621Z",
"url": "https://files.pythonhosted.org/packages/49/45/f8e9abdbbc3f4a1f83be3ce2a48635b068ac9f33a1846345de1a497cf95a/unicorn_bybit_websocket_api-0.1.0-cp37-cp37m-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "843f52d8b6cd636007443e56582de1c50b43443ce59c94b671873d7c1f9b6c7a",
"md5": "7e124835d75482e013b8b6b68bfaeb5a",
"sha256": "3d318515365649276f72f85b967ab276eb0a1dce26a40bb42308546c2f22e27c"
},
"downloads": -1,
"filename": "unicorn_bybit_websocket_api-0.1.0-cp37-cp37m-win32.whl",
"has_sig": false,
"md5_digest": "7e124835d75482e013b8b6b68bfaeb5a",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.7.0",
"size": 1856016,
"upload_time": "2024-08-03T23:45:18",
"upload_time_iso_8601": "2024-08-03T23:45:18.308106Z",
"url": "https://files.pythonhosted.org/packages/84/3f/52d8b6cd636007443e56582de1c50b43443ce59c94b671873d7c1f9b6c7a/unicorn_bybit_websocket_api-0.1.0-cp37-cp37m-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "27cc47427a688c473f92b33495286ea8662be79527052ac30fbb229a8384ff20",
"md5": "f9bd0435df375c952d3c977313010682",
"sha256": "529b23cf76e893aac555e58d98fad474bcbb073b2427f1248c989106173ab124"
},
"downloads": -1,
"filename": "unicorn_bybit_websocket_api-0.1.0-cp37-cp37m-win_amd64.whl",
"has_sig": false,
"md5_digest": "f9bd0435df375c952d3c977313010682",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.7.0",
"size": 1935145,
"upload_time": "2024-08-03T23:45:20",
"upload_time_iso_8601": "2024-08-03T23:45:20.180310Z",
"url": "https://files.pythonhosted.org/packages/27/cc/47427a688c473f92b33495286ea8662be79527052ac30fbb229a8384ff20/unicorn_bybit_websocket_api-0.1.0-cp37-cp37m-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "db6e1603be19e5a7f87d0a1c21d66868bdc8c1f61d4a31e67ea60c94bf74edbf",
"md5": "b934449670a7ed7500116cc60150a61f",
"sha256": "99f75c18e4097664c9defa728ee1fa95f693502f0df266589139397c0b0367bb"
},
"downloads": -1,
"filename": "unicorn_bybit_websocket_api-0.1.0-cp38-cp38-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "b934449670a7ed7500116cc60150a61f",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.7.0",
"size": 2181964,
"upload_time": "2024-08-03T23:45:22",
"upload_time_iso_8601": "2024-08-03T23:45:22.178320Z",
"url": "https://files.pythonhosted.org/packages/db/6e/1603be19e5a7f87d0a1c21d66868bdc8c1f61d4a31e67ea60c94bf74edbf/unicorn_bybit_websocket_api-0.1.0-cp38-cp38-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3ed4c9e0b331e1a4c8c898a26bc6d1ac40c2c48d90d34e8500e124b427169fcb",
"md5": "374f9faf41536bdd08d424fe864a47a8",
"sha256": "842fd8982b1d82516326a66b4de05cd359440b1f63803f12279191fe7198fcc9"
},
"downloads": -1,
"filename": "unicorn_bybit_websocket_api-0.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "374f9faf41536bdd08d424fe864a47a8",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.7.0",
"size": 7039498,
"upload_time": "2024-08-03T23:45:23",
"upload_time_iso_8601": "2024-08-03T23:45:23.975716Z",
"url": "https://files.pythonhosted.org/packages/3e/d4/c9e0b331e1a4c8c898a26bc6d1ac40c2c48d90d34e8500e124b427169fcb/unicorn_bybit_websocket_api-0.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b9380241477f686fb280b8d6ba33f88443463ac641b250010c494a1be47d03fc",
"md5": "0b268ad2c995b87318fad0a07b459d36",
"sha256": "6edaae532558b901918ec40d40b7b8db6a41da36e70528a7f935cbe24ce11122"
},
"downloads": -1,
"filename": "unicorn_bybit_websocket_api-0.1.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "0b268ad2c995b87318fad0a07b459d36",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.7.0",
"size": 6823666,
"upload_time": "2024-08-03T23:45:25",
"upload_time_iso_8601": "2024-08-03T23:45:25.663701Z",
"url": "https://files.pythonhosted.org/packages/b9/38/0241477f686fb280b8d6ba33f88443463ac641b250010c494a1be47d03fc/unicorn_bybit_websocket_api-0.1.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "eea2226b6c8a2d66eeaa08f7020792697ce8b1fc8d7c6226e707a105db2586d7",
"md5": "2b7f52d91795839045da6b5ef6826230",
"sha256": "eb4650d035a11e3a0d8531bb2d3c549c59343f7c21e2ae0f8c9f0a2906d4b7c9"
},
"downloads": -1,
"filename": "unicorn_bybit_websocket_api-0.1.0-cp38-cp38-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "2b7f52d91795839045da6b5ef6826230",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.7.0",
"size": 7560317,
"upload_time": "2024-08-03T23:45:28",
"upload_time_iso_8601": "2024-08-03T23:45:28.050202Z",
"url": "https://files.pythonhosted.org/packages/ee/a2/226b6c8a2d66eeaa08f7020792697ce8b1fc8d7c6226e707a105db2586d7/unicorn_bybit_websocket_api-0.1.0-cp38-cp38-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6b1d59c2847016da0e8d65a146827287ad8a632cc47b10e724c2443154ea7d6c",
"md5": "aab650408663c669ddc59610041a1dc2",
"sha256": "87025171153f8d25898733a190cef0a9799d7cad45987e64641df1e41400e98b"
},
"downloads": -1,
"filename": "unicorn_bybit_websocket_api-0.1.0-cp38-cp38-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "aab650408663c669ddc59610041a1dc2",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.7.0",
"size": 8196067,
"upload_time": "2024-08-03T23:45:30",
"upload_time_iso_8601": "2024-08-03T23:45:30.032681Z",
"url": "https://files.pythonhosted.org/packages/6b/1d/59c2847016da0e8d65a146827287ad8a632cc47b10e724c2443154ea7d6c/unicorn_bybit_websocket_api-0.1.0-cp38-cp38-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b2864c218fd255b7361b97303840d67d64f7f3c930bf202ac968807b0b5a4c6d",
"md5": "1c55437b90ff0e30d4d85030c6a46e76",
"sha256": "18ef799f3460f9928c2fa4c1aaa699dd017f1f2fea7e89a1a23d8f656e83b53e"
},
"downloads": -1,
"filename": "unicorn_bybit_websocket_api-0.1.0-cp38-cp38-win32.whl",
"has_sig": false,
"md5_digest": "1c55437b90ff0e30d4d85030c6a46e76",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.7.0",
"size": 1905359,
"upload_time": "2024-08-03T23:45:31",
"upload_time_iso_8601": "2024-08-03T23:45:31.547539Z",
"url": "https://files.pythonhosted.org/packages/b2/86/4c218fd255b7361b97303840d67d64f7f3c930bf202ac968807b0b5a4c6d/unicorn_bybit_websocket_api-0.1.0-cp38-cp38-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f939294d349691c0727301319afe8cd500579082375bf26f105509893bdd349b",
"md5": "ed997664c6c5ab96a58a3f7bc31d180c",
"sha256": "847c42e53056c2f7e5be7e04b735018316a1c50cc5949ed30d7cdbda94e1ccc5"
},
"downloads": -1,
"filename": "unicorn_bybit_websocket_api-0.1.0-cp38-cp38-win_amd64.whl",
"has_sig": false,
"md5_digest": "ed997664c6c5ab96a58a3f7bc31d180c",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.7.0",
"size": 1993531,
"upload_time": "2024-08-03T23:45:32",
"upload_time_iso_8601": "2024-08-03T23:45:32.956039Z",
"url": "https://files.pythonhosted.org/packages/f9/39/294d349691c0727301319afe8cd500579082375bf26f105509893bdd349b/unicorn_bybit_websocket_api-0.1.0-cp38-cp38-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5c0003a96a663c055ed4d46f9cb9a45679d22292fcac285c21af43c258fca7da",
"md5": "40ed3e4282018055724eb46e1aa4a152",
"sha256": "f4749e067a496a5a0e9b0dcbcfe2d3bdf07b473cddb6a4327aa042f4eef55772"
},
"downloads": -1,
"filename": "unicorn_bybit_websocket_api-0.1.0-cp39-cp39-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "40ed3e4282018055724eb46e1aa4a152",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.7.0",
"size": 2200751,
"upload_time": "2024-08-03T23:45:35",
"upload_time_iso_8601": "2024-08-03T23:45:35.578308Z",
"url": "https://files.pythonhosted.org/packages/5c/00/03a96a663c055ed4d46f9cb9a45679d22292fcac285c21af43c258fca7da/unicorn_bybit_websocket_api-0.1.0-cp39-cp39-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "49f659c60511f85cb8ab7a8a6a2f7f197ff5149eb641440380fa80750af6c98e",
"md5": "96a62e6f766b5734a91136847e0ce192",
"sha256": "1b3117ea9ed28d675e99743f40c245cfe295f13e9dc87e91e9bdbac87127809c"
},
"downloads": -1,
"filename": "unicorn_bybit_websocket_api-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "96a62e6f766b5734a91136847e0ce192",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.7.0",
"size": 6803319,
"upload_time": "2024-08-03T23:45:37",
"upload_time_iso_8601": "2024-08-03T23:45:37.891426Z",
"url": "https://files.pythonhosted.org/packages/49/f6/59c60511f85cb8ab7a8a6a2f7f197ff5149eb641440380fa80750af6c98e/unicorn_bybit_websocket_api-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "50a3d0e34f0aac5b5ca4ca0bc3af51c120d58300ee8a0c4573a95804d9c141c7",
"md5": "62705d32f701185e8562dcaa3ea634a6",
"sha256": "c9bc82bd7382f50856e2da1afeacbd6bb7e4c124eb520d6861aa49fa3abfe0ed"
},
"downloads": -1,
"filename": "unicorn_bybit_websocket_api-0.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "62705d32f701185e8562dcaa3ea634a6",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.7.0",
"size": 6609665,
"upload_time": "2024-08-03T23:45:40",
"upload_time_iso_8601": "2024-08-03T23:45:40.480840Z",
"url": "https://files.pythonhosted.org/packages/50/a3/d0e34f0aac5b5ca4ca0bc3af51c120d58300ee8a0c4573a95804d9c141c7/unicorn_bybit_websocket_api-0.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "16f5d6d69573ccc31b82ba6ede71e27a7accda31b7dcb35ebfdc85e19008779d",
"md5": "99910ebac2e30081d88ef07a7b8f3530",
"sha256": "ec9c26d448138bb2953242604a93474a180371fc87c6907d93655b1dfe836dc0"
},
"downloads": -1,
"filename": "unicorn_bybit_websocket_api-0.1.0-cp39-cp39-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "99910ebac2e30081d88ef07a7b8f3530",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.7.0",
"size": 6487638,
"upload_time": "2024-08-03T23:45:42",
"upload_time_iso_8601": "2024-08-03T23:45:42.122657Z",
"url": "https://files.pythonhosted.org/packages/16/f5/d6d69573ccc31b82ba6ede71e27a7accda31b7dcb35ebfdc85e19008779d/unicorn_bybit_websocket_api-0.1.0-cp39-cp39-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e1e07e5f104753112c5be905c9a09c83bd01b066f6ecf9dee99d794e847ee957",
"md5": "21384486b3204cffa4dea3b79f6241f4",
"sha256": "34b6a673ae50cb3fcec19bb900fb4209ad6f7cdae49e26e1eef65ca4c20021ce"
},
"downloads": -1,
"filename": "unicorn_bybit_websocket_api-0.1.0-cp39-cp39-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "21384486b3204cffa4dea3b79f6241f4",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.7.0",
"size": 6728814,
"upload_time": "2024-08-03T23:45:44",
"upload_time_iso_8601": "2024-08-03T23:45:44.078137Z",
"url": "https://files.pythonhosted.org/packages/e1/e0/7e5f104753112c5be905c9a09c83bd01b066f6ecf9dee99d794e847ee957/unicorn_bybit_websocket_api-0.1.0-cp39-cp39-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ed58ff59133ad80ee36bab41a8cf9a467a78c8a1732bbc6732fcec7aa959c2d0",
"md5": "2c79903b0d580ba0a9d91fbbb656aa2d",
"sha256": "0158c9d6e72d8d56dc583b053490da6a13eabd8f563256cfcb0647174f91f0d6"
},
"downloads": -1,
"filename": "unicorn_bybit_websocket_api-0.1.0-cp39-cp39-win32.whl",
"has_sig": false,
"md5_digest": "2c79903b0d580ba0a9d91fbbb656aa2d",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.7.0",
"size": 1892172,
"upload_time": "2024-08-03T23:45:46",
"upload_time_iso_8601": "2024-08-03T23:45:46.358449Z",
"url": "https://files.pythonhosted.org/packages/ed/58/ff59133ad80ee36bab41a8cf9a467a78c8a1732bbc6732fcec7aa959c2d0/unicorn_bybit_websocket_api-0.1.0-cp39-cp39-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "883b39f6c1240c4f2d9ff33e6a31b15b885cfdb6284fe5fcddd1c3212edb681b",
"md5": "21859a04b0c34cf2853350b0561b11f2",
"sha256": "666e8ba0fa4c5916963957221328eaaea335880c6f7b5e678eef508fd6c21b3f"
},
"downloads": -1,
"filename": "unicorn_bybit_websocket_api-0.1.0-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "21859a04b0c34cf2853350b0561b11f2",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.7.0",
"size": 1974605,
"upload_time": "2024-08-03T23:45:48",
"upload_time_iso_8601": "2024-08-03T23:45:48.578201Z",
"url": "https://files.pythonhosted.org/packages/88/3b/39f6c1240c4f2d9ff33e6a31b15b885cfdb6284fe5fcddd1c3212edb681b/unicorn_bybit_websocket_api-0.1.0-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0738e64bbc9d6ad68b30f570b583dfb13dbcf37d99aee0ad4855910526587f20",
"md5": "108869fb4b16cd3dbd890cebe7c8f08d",
"sha256": "23ca76af721c7d90f46e3fce99a8e5a6aecdc54f51a859efc19e4192779cdb27"
},
"downloads": -1,
"filename": "unicorn_bybit_websocket_api-0.1.0-pp310-pypy310_pp73-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "108869fb4b16cd3dbd890cebe7c8f08d",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.7.0",
"size": 1884894,
"upload_time": "2024-08-03T23:45:50",
"upload_time_iso_8601": "2024-08-03T23:45:50.072242Z",
"url": "https://files.pythonhosted.org/packages/07/38/e64bbc9d6ad68b30f570b583dfb13dbcf37d99aee0ad4855910526587f20/unicorn_bybit_websocket_api-0.1.0-pp310-pypy310_pp73-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7ba79e90071320133fc6084e90099cb3c1fa76fba30bafed6b14292374b2f0b1",
"md5": "0504a3191c4a632025264b72d75afdd7",
"sha256": "1bd1941cda948f4cda7838eb4b741f1981fc9dd1123b7448c0e2901457a0b993"
},
"downloads": -1,
"filename": "unicorn_bybit_websocket_api-0.1.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "0504a3191c4a632025264b72d75afdd7",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.7.0",
"size": 1987525,
"upload_time": "2024-08-03T23:45:51",
"upload_time_iso_8601": "2024-08-03T23:45:51.495769Z",
"url": "https://files.pythonhosted.org/packages/7b/a7/9e90071320133fc6084e90099cb3c1fa76fba30bafed6b14292374b2f0b1/unicorn_bybit_websocket_api-0.1.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "02e6a0c40185e88e8633a5825438e57efe239eba2476054108ea2c9895ff3416",
"md5": "f0cb4c94ba72b32c1ac4e2eb76412851",
"sha256": "2517a5360257ebd2d2a7c0cbe5e4b79e2214302e21601f32c420d28812ef8f47"
},
"downloads": -1,
"filename": "unicorn_bybit_websocket_api-0.1.0-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "f0cb4c94ba72b32c1ac4e2eb76412851",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.7.0",
"size": 1959643,
"upload_time": "2024-08-03T23:45:53",
"upload_time_iso_8601": "2024-08-03T23:45:53.157776Z",
"url": "https://files.pythonhosted.org/packages/02/e6/a0c40185e88e8633a5825438e57efe239eba2476054108ea2c9895ff3416/unicorn_bybit_websocket_api-0.1.0-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5e252d79ba0b02274d5b17c2377888f7f401a550bb975ed1954d0bd67f9752cf",
"md5": "f953406b2a6fbdb775ef1089acab139c",
"sha256": "49f611142dacc3c721bc37a56e3a6a8f5c396348780fd05ec39a936614ede14b"
},
"downloads": -1,
"filename": "unicorn_bybit_websocket_api-0.1.0-pp310-pypy310_pp73-win_amd64.whl",
"has_sig": false,
"md5_digest": "f953406b2a6fbdb775ef1089acab139c",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.7.0",
"size": 1840303,
"upload_time": "2024-08-03T23:45:54",
"upload_time_iso_8601": "2024-08-03T23:45:54.447924Z",
"url": "https://files.pythonhosted.org/packages/5e/25/2d79ba0b02274d5b17c2377888f7f401a550bb975ed1954d0bd67f9752cf/unicorn_bybit_websocket_api-0.1.0-pp310-pypy310_pp73-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "fd04ced42982fbee91aeda7001074e5c0a6cadeb012e046b3b35f91c7a18fd44",
"md5": "4aaf4001ed92e00914719cf2a80b1275",
"sha256": "d498e2e7a47810dca0301a6815ef1ec55ad16597b7a685b036dbea548ef1fc2d"
},
"downloads": -1,
"filename": "unicorn_bybit_websocket_api-0.1.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "4aaf4001ed92e00914719cf2a80b1275",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.7.0",
"size": 1884349,
"upload_time": "2024-08-03T23:45:56",
"upload_time_iso_8601": "2024-08-03T23:45:56.807466Z",
"url": "https://files.pythonhosted.org/packages/fd/04/ced42982fbee91aeda7001074e5c0a6cadeb012e046b3b35f91c7a18fd44/unicorn_bybit_websocket_api-0.1.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2aecbccfcaa8bc6a652817a86510828da9cf793f44adbd196c0fde897591bbd2",
"md5": "8b20599e2b74d6cca5b19d42cd9e1284",
"sha256": "d2990fe0edc281873408820895338ed77c6f514cc1bfcbdf3f76eb48755e3657"
},
"downloads": -1,
"filename": "unicorn_bybit_websocket_api-0.1.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "8b20599e2b74d6cca5b19d42cd9e1284",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.7.0",
"size": 1986816,
"upload_time": "2024-08-03T23:45:59",
"upload_time_iso_8601": "2024-08-03T23:45:59.006826Z",
"url": "https://files.pythonhosted.org/packages/2a/ec/bccfcaa8bc6a652817a86510828da9cf793f44adbd196c0fde897591bbd2/unicorn_bybit_websocket_api-0.1.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c188a987840d565b5e465ae3793fd017ae186f3ba07b30d9ae2205234c3d6073",
"md5": "a4909ff75faa7df962d58bb6753be0f4",
"sha256": "58ab82f04ab9c098a0b2c9287d84662b40066c2c6a02d946cb64c26d7bc165e2"
},
"downloads": -1,
"filename": "unicorn_bybit_websocket_api-0.1.0-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "a4909ff75faa7df962d58bb6753be0f4",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.7.0",
"size": 1958730,
"upload_time": "2024-08-03T23:46:00",
"upload_time_iso_8601": "2024-08-03T23:46:00.437952Z",
"url": "https://files.pythonhosted.org/packages/c1/88/a987840d565b5e465ae3793fd017ae186f3ba07b30d9ae2205234c3d6073/unicorn_bybit_websocket_api-0.1.0-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "903aca8df340e833a49b4c41b2b410e4795bf770f397c1caa96b29ed2bcaf738",
"md5": "b6f8208b0eb9a95f5f15709d96eb668e",
"sha256": "0c4fff762310d50d2ef80304e6f09982a84ee1026c17a5f3ce111810ba98d346"
},
"downloads": -1,
"filename": "unicorn_bybit_websocket_api-0.1.0-pp39-pypy39_pp73-win_amd64.whl",
"has_sig": false,
"md5_digest": "b6f8208b0eb9a95f5f15709d96eb668e",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.7.0",
"size": 1839816,
"upload_time": "2024-08-03T23:46:01",
"upload_time_iso_8601": "2024-08-03T23:46:01.843547Z",
"url": "https://files.pythonhosted.org/packages/90/3a/ca8df340e833a49b4c41b2b410e4795bf770f397c1caa96b29ed2bcaf738/unicorn_bybit_websocket_api-0.1.0-pp39-pypy39_pp73-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2fd92cf3c1779d141023ddf223e6cc47a4f824a9d821c9a4cfd9d29c0413f530",
"md5": "288be9ac3d8b4eae8bc12277baa31d34",
"sha256": "4989022ea49f9713139c6d598a5df661639d1a7570cfb99234fa0d8f5707c7bf"
},
"downloads": -1,
"filename": "unicorn_bybit_websocket_api-0.1.0.tar.gz",
"has_sig": false,
"md5_digest": "288be9ac3d8b4eae8bc12277baa31d34",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.7.0",
"size": 1169865,
"upload_time": "2024-08-03T23:46:03",
"upload_time_iso_8601": "2024-08-03T23:46:03.468643Z",
"url": "https://files.pythonhosted.org/packages/2f/d9/2cf3c1779d141023ddf223e6cc47a4f824a9d821c9a4cfd9d29c0413f530/unicorn_bybit_websocket_api-0.1.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-08-03 23:46:03",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "LUCIT-Systems-and-Development",
"github_project": "unicorn-bybit-websocket-api",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"requirements": [],
"lcname": "unicorn-bybit-websocket-api"
}