Skip to main content

A Python SDK by LUCIT to use the Binance Websocket API`s (com+testnet, com-margin+testnet, com-isolated_margin+testnet, com-futures+testnet, com-coin_futures, us, tr, dex/chain+testnet) in a easy, fast, flexible, robust and fully-featured way.

Project description

Get a UNICORN Binance Suite License

GitHub Release GitHub Downloads Anaconda Release Anaconda Downloads PyPi Release PyPi Downloads License Supported Python Version PyPI - Status codecov CodeQL Unit Tests Build and Publish GH+PyPi Build and Publish Anaconda Read the Docs Read How To`s Github Telegram Gitter Get Free Professional Support ChatGPT UNICORN Binance Suite Assistant

LUCIT-UBWA-Banner

UNICORN Binance WebSocket API

Description | Live Demo | Installation | How To | Documentation | Examples | Change Log | Wiki | Social | Notifications | Bugs | Contributing | Disclaimer | Commercial Support

A Python SDK by LUCIT to use the Binance Websocket API`s (com+testnet, com-margin+testnet, com-isolated_margin+testnet, com-futures+testnet, com-coin_futures, us, tr, dex/chain+testnet) in a easy, fast, flexible, robust and fully-featured way.

Part of 'UNICORN Binance Suite'.

Get help with the integration of the UNICORN Binance Suite modules from the UNICORN Binance Suite Assistant GPT or a real human LUCIT employee.

Get a UNICORN Binance Suite License

To run modules of the UNICORN Binance Suite you need a valid license!

Receive Data from Binance WebSockets

Create a multiplex websocket connection to Binance with a stream_buffer with just 3 lines of code

from unicorn_binance_websocket_api import BinanceWebSocketApiManager

ubwa = BinanceWebSocketApiManager(exchange="binance.com")
ubwa.create_stream(channels=['trade', 'kline_1m'], markets=['btcusdt', 'bnbbtc', 'ethbtc'])

And 4 more lines to print out the data

while True:
    oldest_data_from_stream_buffer = ubwa.pop_stream_data_from_stream_buffer()
    if oldest_data_from_stream_buffer:
        print(oldest_data_from_stream_buffer)

Or with a callback function just do

from unicorn_binance_websocket_api import BinanceWebSocketApiManager


def process_new_receives(stream_data):
    print(str(stream_data))


ubwa = BinanceWebSocketApiManager(exchange="binance.com")
ubwa.create_stream(channels=['trade', 'kline_1m'], 
                   markets=['btcusdt', 'bnbbtc', 'ethbtc'], 
                   process_stream_data=process_new_receives)

Or await the webstream data in an asyncio coroutine

This is the recommended method for processing data from web streams.

from unicorn_binance_websocket_api import BinanceWebSocketApiManager
import asyncio

async def main():
    async def process_asyncio_queue(stream_id=None):
        print(f"Start processing the data from stream '{ubwa.get_stream_label(stream_id)}':")
        while ubwa.is_stop_request(stream_id) is False:
            data = await ubwa.get_stream_data_from_asyncio_queue(stream_id)
            print(data)
            ubwa.asyncio_queue_task_done(stream_id)
    ubwa.create_stream(channels=['trade'],
                       markets=['ethbtc', 'btcusdt'],
                       stream_label="TRADES",
                       process_asyncio_queue=process_asyncio_queue)
    while not ubwa.is_manager_stopping():
            await asyncio.sleep(1)

with BinanceWebSocketApiManager(exchange='binance.com') as ubwa:
    try:
        asyncio.run(main())
    except KeyboardInterrupt:
        print("\r\nGracefully stopping ...")
    except Exception as error_msg:
        print(f"\r\nERROR: {error_msg}\r\nGracefully stopping ...")

Basically that's it, but there are more options.

Convert received stream data into well-formed Python dictionaries with UnicornFy

unicorn_fied_stream_data = UnicornFy.binance_com_websocket(data)

or

ubwa.create_stream(['trade'], ['btcusdt'], output="UnicornFy")

Subscribe / unsubscribe new markets and channels

markets = ['engbtc', 'zileth']
channels = ['kline_5m', 'kline_15m', 'kline_30m', 'kline_1h', 'kline_12h', 'depth5']

ubwa.subscribe_to_stream(stream_id=stream_id, channels=channels, markets=markets)

ubwa.unsubscribe_from_stream(stream_id=stream_id, markets=markets)

ubwa.unsubscribe_from_stream(stream_id=stream_id, channels=channels)

Send Requests to Binance WebSocket API

Place orders, cancel orders or send other requests via WebSocket

from unicorn_binance_websocket_api import BinanceWebSocketApiManager

api_key = "YOUR_BINANCE_API_KEY"
api_secret = "YOUR_BINANCE_API_SECRET"

async def process_api_responses(stream_id=None):
    while ubwa.is_stop_request(stream_id=stream_id) is False:
        data = await ubwa.get_stream_data_from_asyncio_queue(stream_id=stream_id)
        print(data)
        ubwa.asyncio_queue_task_done(stream_id=stream_id)

ubwa = BinanceWebSocketApiManager(exchange="binance.com")
api_stream = ubwa.create_stream(api=True,
                                api_key=api_key,
                                api_secret=api_secret,
                                output="UnicornFy",
                                process_asyncio_queue=process_api_responses)

response = ubwa.api.get_server_time(return_response=True)
print(f"Binance serverTime: {response['result']['serverTime']}")

orig_client_order_id = ubwa.api.create_order(order_type="LIMIT",
                                             price = 1.1,
                                             quantity = 15.0,
                                             side = "SELL",
                                             symbol = "BUSDUSDT")

ubwa.api.cancel_order(orig_client_order_id=orig_client_order_id, symbol="BUSDUSDT")                                   

Here you can find a complete guide on how to process requests via the Binance WebSocket API!

Stop ubwa after usage to avoid memory leaks

When you instantiate UBWA with with, ubwa.stop_manager() is automatically executed upon exiting the with-block.

with BinanceWebSocketApiManager() as ubwa:
    ubwa.create_stream(channels="trade", markets="btcusdt", stream_label="TRADES")

Without with, you must explicitly execute ubwa.stop_manager() yourself.

ubwa.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 Binance WebSocket API provides so-called stream_signals , 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_binance_websocket_api import BinanceWebSocketApiManager
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 '{ubwa.get_stream_label(stream_id=stream_id)}': "
          f"{signal_type} - {stream_id} - {data_record} - {error_msg}")

with BinanceWebSocketApiManager(process_stream_signals=process_stream_signals) as ubwa:
    ubwa.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)

More?

Discover even more possibilities, use this script to stream everything from "binance.com" or try our examples!

This should be known by everyone using this lib:

Description

The Python package UNICORN Binance WebSocket API provides an API to the Binance Websocket API`s of Binance (+Testnet), Binance Margin (+Testnet), Binance Isolated Margin (+Testnet), Binance Futures (+Testnet), Binance COIN-M Futures, Binance US, Binance TR, Binance DEX and Binance DEX Testnet and supports sending requests to the Binance Websocket API and the streaming of all public streams like trade, kline, ticker, depth, bookTicker, forceOrder, compositeIndex, blockheight etc. and also all private userData streams which needs to be used with a valid api_key and api_secret from the Binance Exchange www.binance.com, testnet.binance.vision or www.binance.us - for the DEX you need a user address from www.binance.org or testnet.binance.org and you can get funds for the testnet.

Use the UNICORN Binance REST API in combination.

What are the benefits of the UNICORN Binance WebSocket API?

Exchange Exchange string WS WS API
Binance binance.com yes yes
Binance Testnet binance.com-testnet yes yes
Binance Margin binance.com-margin yes no
Binance Margin Testnet binance.com-margin-testnet yes no
Binance Isolated Margin binance.com-isolated_margin yes no
Binance Isolated Margin Testnet binance.com-isolated_margin-testnet yes no
Binance USD-M Futures binance.com-futures yes no
Binance USD-M Futures Testnet binance.com-futures-testnet yes no
Binance Coin-M Futures binance.com-coin_futures yes no
Binance US binance.us yes no
Binance TR trbinance.com yes no
Binance DEX binance.org yes no
Binance DEX Testnet binance.org-testnet yes no

If you like the project, please star it on GitHub!

Live Demo

This live demo script is streaming from binance.com and runs on a cx31 virtual machine of HETZNER CLOUD - get 20 EUR starting credit!

Open live monitor!

live-demo

(Refresh update once a minute!)

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.

If you run into errors during the installation take a look here.

Packages are created automatically with GitHub Actions

When a new release is to be created, we start two GitHubActions:

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

Our Cython and PyPy Wheels are available on PyPI, 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-binance-websocket-api

Update

pip install unicorn-binance-websocket-api --upgrade

A Conda Package of the latest version with conda from Anaconda

The unicorn-binance-websocket-api package is also available as a Cython version for the linux-64, osx-64 and win-64 architectures with Conda through the lucit channel.

For optimal compatibility and performance, it is recommended to source the necessary dependencies from the conda-forge channel.

Installation

conda config --add channels conda-forge
conda config --add channels lucit
conda install -c lucit unicorn-binance-websocket-api

Update

conda update -c lucit unicorn-binance-websocket-api

From source of the latest release with PIP from GitHub

Linux, macOS, ...

Run in bash:

pip install https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/archive/$(curl -s https://api.github.com/repos/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/releases/latest | grep -oP '"tag_name": "\K(.*)(?=")').tar.gz --upgrade

Windows

Use the below command with the version (such as 2.6.0) you determined here:

pip install https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/archive/2.6.0.tar.gz --upgrade

From the latest source (dev-stage) with PIP from GitHub

This is not a release version and can not be considered to be stable!

pip install https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/tarball/master --upgrade

Conda environment, Virtualenv or plain Python

Download the latest release or the current master branch and use:

  • ./environment.yml
  • ./pyproject.toml
  • ./requirements.txt
  • ./setup.py

Change Log

https://unicorn-binance-websocket-api.docs.lucit.tech/changelog.html

Documentation

Examples

Howto

Project Homepage

https://www.lucit.tech/unicorn-binance-websocket-api.html

Wiki

https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/wiki

Social

Receive Notifications

To receive notifications on available updates you can watch the repository on GitHub, write your own script with using is_update_available() or you use the monitoring API service.

Follow us on LinkedIn, X or Facebook!

To receive news (like inspection windows/maintenance) about the Binance API`s subscribe to their telegram groups:

How to report Bugs or suggest Improvements?

List of planned features - click thumbs-up if you need one of them or suggest a new feature!

Before you report a bug, try the latest release. 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!

Report a security bug!

Contributing

UNICORN Binance WebSocket API 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.

Contributors

Contributors

We love 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.

SOCKS5 Proxy / Geoblocking

We would like to explicitly point out that in our opinion US citizens are exclusively authorized to trade on Binance.US and that this restriction must not be circumvented!

The purpose of supporting a SOCKS5 proxy in the UNICORN Binance Suite and its modules is to allow non-US citizens to use US services. For example, GitHub actions with UBS will not work without a SOCKS5 proxy, as they will inevitably run on servers in the US and be blocked by Binance.com. Moreover, it also seems justified that traders, data scientists and companies from the US analyze binance.com market data - as long as they do not trade there.

Commercial Support

Get professional and fast support

Do you need a developer, operator or consultant? Contact us for a non-binding initial consultation!

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

unicorn_binance_websocket_api-2.6.0.tar.gz (1.6 MB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

unicorn_binance_websocket_api-2.6.0-pp39-pypy39_pp73-win_amd64.whl (2.5 MB view details)

Uploaded PyPyWindows x86-64

unicorn_binance_websocket_api-2.6.0-cp312-cp312-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.12Windows x86-64

unicorn_binance_websocket_api-2.6.0-cp312-cp312-win32.whl (2.5 MB view details)

Uploaded CPython 3.12Windows x86

unicorn_binance_websocket_api-2.6.0-cp312-cp312-musllinux_1_1_x86_64.whl (9.9 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

unicorn_binance_websocket_api-2.6.0-cp312-cp312-musllinux_1_1_i686.whl (9.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ i686

unicorn_binance_websocket_api-2.6.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (9.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

unicorn_binance_websocket_api-2.6.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (9.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

unicorn_binance_websocket_api-2.6.0-cp312-cp312-macosx_10_9_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.12macOS 10.9+ x86-64

unicorn_binance_websocket_api-2.6.0-cp311-cp311-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.11Windows x86-64

unicorn_binance_websocket_api-2.6.0-cp311-cp311-win32.whl (2.5 MB view details)

Uploaded CPython 3.11Windows x86

unicorn_binance_websocket_api-2.6.0-cp311-cp311-musllinux_1_1_x86_64.whl (9.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

unicorn_binance_websocket_api-2.6.0-cp311-cp311-musllinux_1_1_i686.whl (9.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ i686

unicorn_binance_websocket_api-2.6.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (9.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

unicorn_binance_websocket_api-2.6.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (9.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

unicorn_binance_websocket_api-2.6.0-cp311-cp311-macosx_10_9_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

unicorn_binance_websocket_api-2.6.0-cp310-cp310-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.10Windows x86-64

unicorn_binance_websocket_api-2.6.0-cp310-cp310-win32.whl (2.5 MB view details)

Uploaded CPython 3.10Windows x86

unicorn_binance_websocket_api-2.6.0-cp310-cp310-musllinux_1_1_x86_64.whl (9.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

unicorn_binance_websocket_api-2.6.0-cp310-cp310-musllinux_1_1_i686.whl (8.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ i686

unicorn_binance_websocket_api-2.6.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (9.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

unicorn_binance_websocket_api-2.6.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (8.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

unicorn_binance_websocket_api-2.6.0-cp310-cp310-macosx_10_9_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

unicorn_binance_websocket_api-2.6.0-cp39-cp39-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.9Windows x86-64

unicorn_binance_websocket_api-2.6.0-cp39-cp39-win32.whl (2.5 MB view details)

Uploaded CPython 3.9Windows x86

unicorn_binance_websocket_api-2.6.0-cp39-cp39-musllinux_1_1_x86_64.whl (9.0 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

unicorn_binance_websocket_api-2.6.0-cp39-cp39-musllinux_1_1_i686.whl (8.7 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ i686

unicorn_binance_websocket_api-2.6.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (9.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

unicorn_binance_websocket_api-2.6.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (8.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

unicorn_binance_websocket_api-2.6.0-cp39-cp39-macosx_10_9_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

unicorn_binance_websocket_api-2.6.0-cp38-cp38-win_amd64.whl (2.7 MB view details)

Uploaded CPython 3.8Windows x86-64

unicorn_binance_websocket_api-2.6.0-cp38-cp38-win32.whl (2.5 MB view details)

Uploaded CPython 3.8Windows x86

unicorn_binance_websocket_api-2.6.0-cp38-cp38-musllinux_1_1_x86_64.whl (11.2 MB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ x86-64

unicorn_binance_websocket_api-2.6.0-cp38-cp38-musllinux_1_1_i686.whl (10.3 MB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ i686

unicorn_binance_websocket_api-2.6.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (9.5 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

unicorn_binance_websocket_api-2.6.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (9.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

unicorn_binance_websocket_api-2.6.0-cp38-cp38-macosx_10_9_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

unicorn_binance_websocket_api-2.6.0-cp37-cp37m-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.7mWindows x86-64

unicorn_binance_websocket_api-2.6.0-cp37-cp37m-win32.whl (2.5 MB view details)

Uploaded CPython 3.7mWindows x86

unicorn_binance_websocket_api-2.6.0-cp37-cp37m-musllinux_1_1_x86_64.whl (8.2 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ x86-64

unicorn_binance_websocket_api-2.6.0-cp37-cp37m-musllinux_1_1_i686.whl (7.9 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ i686

unicorn_binance_websocket_api-2.6.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (8.1 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

unicorn_binance_websocket_api-2.6.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (7.9 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

unicorn_binance_websocket_api-2.6.0-cp37-cp37m-macosx_10_9_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

File details

Details for the file unicorn_binance_websocket_api-2.6.0.tar.gz.

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.6.0.tar.gz
Algorithm Hash digest
SHA256 c836acf6f2c6f56efde488934a5b39a862f0bd546e1635931eceaa264ee2139f
MD5 fa27e6612c5368a839e5de59633b748c
BLAKE2b-256 b5ed0706486e9a53d1df34d36565172e48529d9113f59137320b4a402af1d2d1

See more details on using hashes here.

File details

Details for the file unicorn_binance_websocket_api-2.6.0-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.6.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 aaf33c86b714a2bf62c73b7147a4e0cc6e12da2e1d7a3addba1ae6c02ddc14f6
MD5 04d6583da1e70898fd2e070453f1ea62
BLAKE2b-256 f41e13dc7fbeffddc5b62564b4e06988b98d573397dd1a255efcbd316a2f7e0e

See more details on using hashes here.

File details

Details for the file unicorn_binance_websocket_api-2.6.0-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.6.0-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 64028f985db663e456ed3056093f5bcc070106489d2e1ee26f4ae0190326c621
MD5 c0976b3eb41f8e7bfca8ed176f3ed63c
BLAKE2b-256 064dd9c303220b85bbe427bec44cacef0a1baff4ac3dfee4535dbf077593d39d

See more details on using hashes here.

File details

Details for the file unicorn_binance_websocket_api-2.6.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.6.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 21ac0f6ca0acf443f268f3457e8fafd280ed923135d6934754ecac9f75377f07
MD5 e4676f125d3dd30a02f9e976a1fe7577
BLAKE2b-256 c0ed1a49c230717c32c7d3ffef482cb12e49b9f2163844c267e9207d62af690e

See more details on using hashes here.

File details

Details for the file unicorn_binance_websocket_api-2.6.0-pp310-pypy310_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.6.0-pp310-pypy310_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b93c39fd981e7e8210d21c43a7ce775d7bedc5339a9d1c3d862897f609059ca0
MD5 d58027354a69df29d533c516f56ad77c
BLAKE2b-256 4c1bf0292d8f750ea5b0e2360b7b539f62cf9a0c4a04edc135fb8b01b54cfdf3

See more details on using hashes here.

File details

Details for the file unicorn_binance_websocket_api-2.6.0-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.6.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 254da86c2c8573ea35fdbc4cb754278661c87612c898e685c24488a85429f3cb
MD5 0f87d809919a37eb8182bb7702ccd73c
BLAKE2b-256 9c5a0a135600f15dda7a7d72e1bf1eb7e82795e67c718f4a4a6cc7554c524bbe

See more details on using hashes here.

File details

Details for the file unicorn_binance_websocket_api-2.6.0-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.6.0-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1f545bb74b0d9b99721b07850d27d0805c852c87b8e4d72c33ecb23b3f5947b2
MD5 0fbb0a71988bdf6bf53eb8f8582760fd
BLAKE2b-256 be4ceff4b00b623a53da564a323f880ebd7cf7d265139b3388ccc7eccfc9cab6

See more details on using hashes here.

File details

Details for the file unicorn_binance_websocket_api-2.6.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.6.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0bb83d217937348923941d0eb76234ea47584d1cc77959b0dd410116a7935a28
MD5 c16bca15be4277f925346a0eed48cdcc
BLAKE2b-256 1a870f5c8c23ef142cf82d0aed9da9c85e60591ffd87acfaff923ddb68d3e7c5

See more details on using hashes here.

File details

Details for the file unicorn_binance_websocket_api-2.6.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.6.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b970760512dc3d22713eccc7df64e79ccb3e1d177281bb5dd441909fdc46aeb7
MD5 4593a0caa0629bf0f8904cdcdf0604f0
BLAKE2b-256 47bc959d8e11cd3ac32b4d5185699da98c486655b151b3bdf3938a3cdb2086e4

See more details on using hashes here.

File details

Details for the file unicorn_binance_websocket_api-2.6.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.6.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d52929f7cda4b8959170ea347eb5609e0b165f6f99b3fcec57e4e3c2d9a33c78
MD5 5b2f63591e3fa92b6aad132d302da815
BLAKE2b-256 990d18ce90dd3fbde2a04cd66bb8615223d4e01caa283e1f17cbd2f633e33e72

See more details on using hashes here.

File details

Details for the file unicorn_binance_websocket_api-2.6.0-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.6.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 01260e030ce785340c54c033eb32ad810df21b20f67b9a98617a73f305bbb246
MD5 425c14485cf2a154526656b63ca57e36
BLAKE2b-256 4c0182d3a3cb825c6a3f0bafd39bc5b7c45b1c587808b2a32637f54adfbd30e5

See more details on using hashes here.

File details

Details for the file unicorn_binance_websocket_api-2.6.0-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.6.0-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 cc146693f9c93cfb07e9251675044afae478bf4bb724c34c0789224db8ff4b46
MD5 40ca5b440b6b7c0fdf860b688d4a36c4
BLAKE2b-256 c2df8049391639918bd297852126031b2e46fc8c2f0df26e8a085ed2a6690e33

See more details on using hashes here.

File details

Details for the file unicorn_binance_websocket_api-2.6.0-cp312-cp312-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.6.0-cp312-cp312-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 3390a8675159eef9e51d9d684cdd0aab59859dc9aa52f514fc787c88f4847784
MD5 c2bde88302f467cb11d7be7aa36e6524
BLAKE2b-256 fa5b46fd5068c7832f451a0d81a765dd05a2fabdc9dd9e135128405af4549109

See more details on using hashes here.

File details

Details for the file unicorn_binance_websocket_api-2.6.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.6.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e93ff4d382f548794953e3a80cd7194480450272771ebc85df6acc2fb8f9c55c
MD5 b9e6beb9552eca316bb93b3e2d951df5
BLAKE2b-256 7eba05246856c2f8cf521c1f47b9e8485d811e9d2396f9ada453760140413b41

See more details on using hashes here.

File details

Details for the file unicorn_binance_websocket_api-2.6.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.6.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0f1e79f91db116d23b3c79e9c67106b1a46b5efbeb2165ac397a099c78e07065
MD5 0f718674aa2b3e9499e23a90a7896522
BLAKE2b-256 bdc8ab35cbafc214ac34527f9d5465e8a24c3973939ded6cd01bdcd39e02e522

See more details on using hashes here.

File details

Details for the file unicorn_binance_websocket_api-2.6.0-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.6.0-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 60534f17f26ee6ba46a65573e27d512d84285df04b84edc2e350f9e63c651b5d
MD5 dd7b30f8a10db4344e66955c28ce4322
BLAKE2b-256 88b366f9271d8c69ee59ed0e1432bf96975500fdc661b94fff2d9d76478254e2

See more details on using hashes here.

File details

Details for the file unicorn_binance_websocket_api-2.6.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.6.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e80cee7c521aeaedd009711a8365fe7ec124fc2ae4ca236cfd154ee4676465c8
MD5 d3d955f0692768ab3193b10446783102
BLAKE2b-256 b71ecdbf79a6aeb4f121866404435d5dfa7a3b00093d7d6cedd40cea018f7436

See more details on using hashes here.

File details

Details for the file unicorn_binance_websocket_api-2.6.0-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.6.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 54a0c9ef0fc033429829488c96925acd587cbda3ecfe864b6c4ee1c02bfe8767
MD5 2bdf3ab746c2fca50301a9fca882320c
BLAKE2b-256 621f6ace11e86f1882041c3b78da744092bca2a05fc8f53742945c64c4dac409

See more details on using hashes here.

File details

Details for the file unicorn_binance_websocket_api-2.6.0-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.6.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 45e7ca7edeac70b289650ccaf888620e325f732b6cda5af22ad081838d749112
MD5 ebb20fe8108053ba638ec850dc406219
BLAKE2b-256 9b3cc4bf25c29450ab0bab912d539a7965eecf6db7fa6c84d6fcfebf106e0dc0

See more details on using hashes here.

File details

Details for the file unicorn_binance_websocket_api-2.6.0-cp311-cp311-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.6.0-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 a1580c770ea9e6efbef87630ea8e2a54fb81d509440ef707bd77ea67ec48eb1e
MD5 b982ff82cbf7816f71c1ec6f9e78af28
BLAKE2b-256 c93a341a5c46b5de34edf97ae06e875c6b599cd37172d86ae2da2530b672304f

See more details on using hashes here.

File details

Details for the file unicorn_binance_websocket_api-2.6.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.6.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 79b2f0932dd7ea6620bf4fd4eb685c4b3d42a691855be492f2725ea5bdc44cfc
MD5 e7c5f05c93f82e2191f3b45876de5157
BLAKE2b-256 61b3b0f38e0fc4cb4e95cb6ece5ed6b1e200ae10840c1e3298964a68b748442b

See more details on using hashes here.

File details

Details for the file unicorn_binance_websocket_api-2.6.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.6.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7e83364698a2e893492221a3c1f3437cbea2a73cb466b8720a6932f26972ea34
MD5 c39fec54edfa3f23c4e27aebf07ffacc
BLAKE2b-256 9440175df2926926bc60ee854935f4787d87100a86f5fe75a89ee5a0221f0d62

See more details on using hashes here.

File details

Details for the file unicorn_binance_websocket_api-2.6.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.6.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 25000b288176c872702392e539699bf4c251ddc1bba541ce89f06ba3b70270d0
MD5 6f79158c5fcfcda11cbf92525617a14f
BLAKE2b-256 b64a14c0964ffb35e07ebb730a06bc2a19cafcb520e72da8db3b4cd3e1286b21

See more details on using hashes here.

File details

Details for the file unicorn_binance_websocket_api-2.6.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.6.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a8939a26d96ff06b823d9dc5bc5789712bed9c12316b70b9b8262208fe2785b4
MD5 63438ba6d35b0c8a1502cac0099c255d
BLAKE2b-256 00eb7f3f1ddb06eb986c3474dad29ee427fb6b676b24c112ee69223bdbadb140

See more details on using hashes here.

File details

Details for the file unicorn_binance_websocket_api-2.6.0-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.6.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 7b9ce1b7d1e14e8c0bfefb2d9eee82b8aabf9d942eab4c6a6aa2d684e9066669
MD5 5e63d091c67d0964b195aafa03535a5a
BLAKE2b-256 81b83756ec19bd2e34d4897a14f841e2276b125f07d70b8ca67133017a785f57

See more details on using hashes here.

File details

Details for the file unicorn_binance_websocket_api-2.6.0-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.6.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 758605da865c11950f23715d0ea8e054337806b934f5320bb8e7606799ac4a0c
MD5 713da401370a55bfe0c112da3816a170
BLAKE2b-256 7c44af28b7892ad130de1e59777a4014dd6a4a99d5fc97a5a63dbed52adb876a

See more details on using hashes here.

File details

Details for the file unicorn_binance_websocket_api-2.6.0-cp310-cp310-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.6.0-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 69a87d5996847fc5a3a34d2b3fd487d11691796c0cd9ffe30de699cdae1a8b6e
MD5 39b649c5a4764b5f8ea30ef569227f16
BLAKE2b-256 c2f3078ed046abe8f2a869d19bbacf2ce07cbb65efe8bb380f9aca5a866ca688

See more details on using hashes here.

File details

Details for the file unicorn_binance_websocket_api-2.6.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.6.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 36d4a6f343a50d89ab06e20e3b3fe87938fb096cbe245ca396734a15b3cbddfd
MD5 6121e645c637cf5d01d5cdb98e5bd689
BLAKE2b-256 73c1cedb0ad4676dff47816904000e680ff9a9918e4af3db0ba4da27e91f8b8b

See more details on using hashes here.

File details

Details for the file unicorn_binance_websocket_api-2.6.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.6.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 bfb4463d336d800f95c6d8d70c1fbdc6f49eb6e6bbb73c5cf1da542870440de5
MD5 7917a1d0998aadbd3c6d1bb42f45a371
BLAKE2b-256 0b13129642c1b17dda860692bd7f65a581e229838ddcadfce53835cc6c93db76

See more details on using hashes here.

File details

Details for the file unicorn_binance_websocket_api-2.6.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.6.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5feb341de10aea027485d19818720ea2c4c7d6ec2dd545d4903e8064b99495da
MD5 7e94b903b5ebbc9b7eafcd32af2d2914
BLAKE2b-256 298499acdec4077238104c637c74b201b894eddac6820d20391fd6d10ed0bd75

See more details on using hashes here.

File details

Details for the file unicorn_binance_websocket_api-2.6.0-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.6.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 256e70e2eca562e75c003b1b7d56ccfb14fb1a8462157fcec716fd34c4bc094e
MD5 5290756de337074a4046a3e9167569bb
BLAKE2b-256 0543a1afe41c49b7619b841b2123862afdacf8b2e7b83f289d535d5e7a6eb742

See more details on using hashes here.

File details

Details for the file unicorn_binance_websocket_api-2.6.0-cp39-cp39-win32.whl.

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.6.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 393a16123ee1d6428669a5a1942ea3b1d71ceec723fe7465822922f103691710
MD5 a2f747338b4ec38e0779d40c7b2502e1
BLAKE2b-256 c36384031edd1312c85d00dde468d71e9f3ce218edf2d8aa909bac46ba1eb633

See more details on using hashes here.

File details

Details for the file unicorn_binance_websocket_api-2.6.0-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.6.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 b50a12b929f38a543a1a6b8dc9696d8d31bae8fbdc22dfe12640bf08b636df45
MD5 ad4e3222564075b2f56f79b829845a8c
BLAKE2b-256 80517dd253f65886eb317c03a4bee305852f7db46241ac2b177e85c9560bd9ad

See more details on using hashes here.

File details

Details for the file unicorn_binance_websocket_api-2.6.0-cp39-cp39-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.6.0-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 86fdfda4d8b822fc2beb60beed9149a76197bfc2f270ab0f57df5d998b8542df
MD5 959ace643fa922d327d75eb8b9dd0f96
BLAKE2b-256 8e712c2c85aa4023623e369f3d303058b514e8abc312836741732a3fe8be36c7

See more details on using hashes here.

File details

Details for the file unicorn_binance_websocket_api-2.6.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.6.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1bf80d3430b88db03fcb11c2a5fa8fb6fa03cb3f56aebf3aba0e1899b728607e
MD5 edd4e88efc3a636dcc219160580e7cfb
BLAKE2b-256 ab7ceaea4741618d4374eb3358310519fe5ecac8875a1d369a2791f8fb5348b3

See more details on using hashes here.

File details

Details for the file unicorn_binance_websocket_api-2.6.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.6.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2a0be34f4329d74bcdc4f95bf81a0663947f08ce4de44d4198b72ec3f57214ad
MD5 25563dbc9a90b057f65ab6b784234aec
BLAKE2b-256 7a4ddd49510980ba338280c63bdfb6e78c9fee4e5cf914e98d91a2274b9d2786

See more details on using hashes here.

File details

Details for the file unicorn_binance_websocket_api-2.6.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.6.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 539a810aea9738ee08e038c8721cec7186ca80f829edb61eb297e805d27c04c7
MD5 77c5b68217c4c04e1e50c87ba025f0a1
BLAKE2b-256 1de00ddb26ae5f58197716da57d2e7b1ca62b80786e4c3ad2f0c8d26bb6b615f

See more details on using hashes here.

File details

Details for the file unicorn_binance_websocket_api-2.6.0-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.6.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 be1d1bec341fb7b35640d708ff51cd0e30223db504eba0cdcf4ee5443d1c9c1e
MD5 c733f46435120ce4f49e4cd3492f3d90
BLAKE2b-256 5dfeba989c6a70d6320ecb9e16d0f0fb7b0fc45da836ee95746a73df5d25ab26

See more details on using hashes here.

File details

Details for the file unicorn_binance_websocket_api-2.6.0-cp38-cp38-win32.whl.

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.6.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 65abc1a9f9c24f53b200e075c5606b066eda648d72def3170918a5a8f1cd5cbd
MD5 5357c754436bccd4bc2f09f18b21d2f4
BLAKE2b-256 1656378e70e4a4865dada727173a104750018954801eefe4f20115f1b5417189

See more details on using hashes here.

File details

Details for the file unicorn_binance_websocket_api-2.6.0-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.6.0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 4071e54d665274d939fa4e9110b00c84e6fd09995c9f8a187da3086403259420
MD5 aa1ac48161427f9dcd969143289b7392
BLAKE2b-256 98ce06c78ec56cae2f0c8d930d87aeb00e31cf88cced4b2487c4639056b9ef3d

See more details on using hashes here.

File details

Details for the file unicorn_binance_websocket_api-2.6.0-cp38-cp38-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.6.0-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 ced1a8407b9b0e874a0d58b998872845a8aa1aa389b473beda22cb43d375f151
MD5 f440b983ad25c080e232893ad32acbbb
BLAKE2b-256 6ad37cb0cc06f89f46ef874df131fd97211960d8db8180f888136df64da06077

See more details on using hashes here.

File details

Details for the file unicorn_binance_websocket_api-2.6.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.6.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 80f1f2cf5f119fc43a53315a05b6d366b266155a2cec17bc6eabfc8cf9c10495
MD5 f4e606e3ad3837505b4440f3ff2fcc13
BLAKE2b-256 a49983d1e5f82ad223b7f36b3ce2534afacd1e05b848adb87a33ed737ec7d203

See more details on using hashes here.

File details

Details for the file unicorn_binance_websocket_api-2.6.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.6.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 819f5265447c1a18ad1e187becc05f9f223c3cabf62ad526fc85f0fbf6220cd3
MD5 bf629c3629789e48d737f9ebb259e7d3
BLAKE2b-256 fe0a8a8cd77b53cb01d42903b806cab0580d25f3344b9834df553d8de15addbc

See more details on using hashes here.

File details

Details for the file unicorn_binance_websocket_api-2.6.0-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.6.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a8cfbdfb188d14180cc4e3779dbd01d1ff9cd2e91ec0a90f8dda2ba564eca128
MD5 81c3828ae1839b43787c4f4ce88b70d1
BLAKE2b-256 aba6fda4fe4c5e835691ce068a4a0b2f75e5ca46e9c13d580be976bb3246bbd5

See more details on using hashes here.

File details

Details for the file unicorn_binance_websocket_api-2.6.0-cp37-cp37m-win_amd64.whl.

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.6.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 c92b95ec5a7cbfbe9fbda28354a0a9185c3560360c0e20b82f83483bc022e9ea
MD5 ef6ebf8249a0da50f71763186809f27d
BLAKE2b-256 65ebc9fbde710598d0d40817b05c731e434aa7c08c582bf6ea20ff2adb4b15f9

See more details on using hashes here.

File details

Details for the file unicorn_binance_websocket_api-2.6.0-cp37-cp37m-win32.whl.

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.6.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 b191d8cca16a65f7af26e17538fbff17d586ab51caa58c32f8444c5ff77fbb03
MD5 4f3d729ecefa92f1d4d52d21f68633de
BLAKE2b-256 1fb0bc7956261441b84c1e2e73ee570f87d4fc5115097ab813f46a2d10b2cf63

See more details on using hashes here.

File details

Details for the file unicorn_binance_websocket_api-2.6.0-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.6.0-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 7e2f3d46458a90c2aa0224e3eefc3a46fd66245e7a39406455aa66fa66a3ff5e
MD5 c647017258f74fff5c9a0a40038bfaf2
BLAKE2b-256 04e5e25bc6b6919af676facb24bb2dcd9dd764818d046eacc56f464279ad213f

See more details on using hashes here.

File details

Details for the file unicorn_binance_websocket_api-2.6.0-cp37-cp37m-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.6.0-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 da1b3e977287a88bffb2d7b81c802e49bd95e324c17330bfc336a07af2dfe7b6
MD5 7c61dc3ef65a45854b135752e31ed617
BLAKE2b-256 0e1333a757e41ffdaff4f83a7d3fb94fd8ca2b20958ba3289f738c00639c32ff

See more details on using hashes here.

File details

Details for the file unicorn_binance_websocket_api-2.6.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.6.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a3c09e9e98b0f222a5f184fb7a7ab916492425fe59e03fdddabde89dcc781ba9
MD5 d14696f41677c99ec2a9c80b67b5860b
BLAKE2b-256 d831a8683528721569bf810b831e84870c42af6cf74bd1c215e0d9bba82ef098

See more details on using hashes here.

File details

Details for the file unicorn_binance_websocket_api-2.6.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.6.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 68c5b509ab3ec53debd861887f667c1935fbb5eee5116c32c33c2fa79e3f1360
MD5 1f1856c3fcf93af2fd0d66f63ccfa8a1
BLAKE2b-256 f2fad7d8a1809327ae5a49e62ed87166fab6c588ebd037c134e64b533b9a8c32

See more details on using hashes here.

File details

Details for the file unicorn_binance_websocket_api-2.6.0-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.6.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 dce0610d992d335ed3c5e9f1060f27b64a49302dc6d733a01698e51526c27a96
MD5 cf58c85d0403b2f9716313836b700a7c
BLAKE2b-256 e1c1b40c0a164129e34bcc88ea370318fbd75b248c6d3a7eb398082c539a94e7

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page