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.

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.5.0) you determined here:

pip install https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/archive/2.5.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.5.0.tar.gz (1.5 MB view details)

Uploaded Source

Built Distributions

unicorn_binance_websocket_api-2.5.0-cp312-cp312-win_amd64.whl (965.1 kB view details)

Uploaded CPython 3.12 Windows x86-64

unicorn_binance_websocket_api-2.5.0-cp312-cp312-win32.whl (855.4 kB view details)

Uploaded CPython 3.12 Windows x86

unicorn_binance_websocket_api-2.5.0-cp312-cp312-musllinux_1_1_x86_64.whl (7.6 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ x86-64

unicorn_binance_websocket_api-2.5.0-cp312-cp312-musllinux_1_1_i686.whl (7.2 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ i686

unicorn_binance_websocket_api-2.5.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.6 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

unicorn_binance_websocket_api-2.5.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (7.2 MB view details)

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

unicorn_binance_websocket_api-2.5.0-cp312-cp312-macosx_10_9_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

unicorn_binance_websocket_api-2.5.0-cp311-cp311-win_amd64.whl (980.7 kB view details)

Uploaded CPython 3.11 Windows x86-64

unicorn_binance_websocket_api-2.5.0-cp311-cp311-win32.whl (866.4 kB view details)

Uploaded CPython 3.11 Windows x86

unicorn_binance_websocket_api-2.5.0-cp311-cp311-musllinux_1_1_x86_64.whl (7.5 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

unicorn_binance_websocket_api-2.5.0-cp311-cp311-musllinux_1_1_i686.whl (7.2 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ i686

unicorn_binance_websocket_api-2.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.5 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

unicorn_binance_websocket_api-2.5.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (7.2 MB view details)

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

unicorn_binance_websocket_api-2.5.0-cp311-cp311-macosx_10_9_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

unicorn_binance_websocket_api-2.5.0-cp310-cp310-win_amd64.whl (965.2 kB view details)

Uploaded CPython 3.10 Windows x86-64

unicorn_binance_websocket_api-2.5.0-cp310-cp310-win32.whl (867.1 kB view details)

Uploaded CPython 3.10 Windows x86

unicorn_binance_websocket_api-2.5.0-cp310-cp310-musllinux_1_1_x86_64.whl (6.8 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

unicorn_binance_websocket_api-2.5.0-cp310-cp310-musllinux_1_1_i686.whl (6.4 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

unicorn_binance_websocket_api-2.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.8 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

unicorn_binance_websocket_api-2.5.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (6.6 MB view details)

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

unicorn_binance_websocket_api-2.5.0-cp310-cp310-macosx_10_9_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

unicorn_binance_websocket_api-2.5.0-cp39-cp39-win_amd64.whl (965.4 kB view details)

Uploaded CPython 3.9 Windows x86-64

unicorn_binance_websocket_api-2.5.0-cp39-cp39-win32.whl (866.7 kB view details)

Uploaded CPython 3.9 Windows x86

unicorn_binance_websocket_api-2.5.0-cp39-cp39-musllinux_1_1_x86_64.whl (6.8 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

unicorn_binance_websocket_api-2.5.0-cp39-cp39-musllinux_1_1_i686.whl (6.4 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

unicorn_binance_websocket_api-2.5.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.8 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

unicorn_binance_websocket_api-2.5.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (6.6 MB view details)

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

unicorn_binance_websocket_api-2.5.0-cp39-cp39-macosx_10_9_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

unicorn_binance_websocket_api-2.5.0-cp38-cp38-win_amd64.whl (986.7 kB view details)

Uploaded CPython 3.8 Windows x86-64

unicorn_binance_websocket_api-2.5.0-cp38-cp38-win32.whl (882.8 kB view details)

Uploaded CPython 3.8 Windows x86

unicorn_binance_websocket_api-2.5.0-cp38-cp38-musllinux_1_1_x86_64.whl (8.3 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

unicorn_binance_websocket_api-2.5.0-cp38-cp38-musllinux_1_1_i686.whl (7.7 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

unicorn_binance_websocket_api-2.5.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.1 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

unicorn_binance_websocket_api-2.5.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (6.8 MB view details)

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

unicorn_binance_websocket_api-2.5.0-cp38-cp38-macosx_10_9_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

unicorn_binance_websocket_api-2.5.0-cp37-cp37m-win_amd64.whl (919.8 kB view details)

Uploaded CPython 3.7m Windows x86-64

unicorn_binance_websocket_api-2.5.0-cp37-cp37m-win32.whl (824.6 kB view details)

Uploaded CPython 3.7m Windows x86

unicorn_binance_websocket_api-2.5.0-cp37-cp37m-musllinux_1_1_x86_64.whl (6.0 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ x86-64

unicorn_binance_websocket_api-2.5.0-cp37-cp37m-musllinux_1_1_i686.whl (5.7 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

unicorn_binance_websocket_api-2.5.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.9 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

unicorn_binance_websocket_api-2.5.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (5.7 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

unicorn_binance_websocket_api-2.5.0-cp37-cp37m-macosx_10_9_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.5.0.tar.gz
Algorithm Hash digest
SHA256 57011efb362f6ea130e3b7cbbcdeb8e99d04fc5bd8521c6141c9e721990e9ef9
MD5 10e4c4933b9af538eabacb4d6d7d1028
BLAKE2b-256 4703ab3c42a195567cd904cb0bdd4272b8aad57b2a04f781d674ba57f0739149

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.5.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 622b17ec64a5b946832e523f46a841c55389e567da2523462af0d8f04ca8ba50
MD5 a25bd8a2b772751cff5523c3bef565b8
BLAKE2b-256 f25025020869e13150eec3bea7139ccf92f2f5d6b952f82cbb098ebbfa621b19

See more details on using hashes here.

Provenance

File details

Details for the file unicorn_binance_websocket_api-2.5.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.5.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 3a04ecfc1a0ebde91933947a1270c7eff6a2725811a1d2cb233460b4b18e79ff
MD5 1c4050e581ad74f3df99f2e7d738f7ef
BLAKE2b-256 ce7923d8d4d9d1ff6a1df35b3cc66e29e8820a08259fbc2c9d89846acd66e63a

See more details on using hashes here.

Provenance

File details

Details for the file unicorn_binance_websocket_api-2.5.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.5.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ac5a293a130777b5d6393c33e55ad5325b7dfbd5cf758bf571ff89744058a8f4
MD5 24b2eeb72dab6b343afa10bba163553b
BLAKE2b-256 c31f47b55a37dda9672a980c2e538234346db20ed28b699bb7d8a9427ebd542d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.5.0-pp310-pypy310_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 93ea8ce42d13f587821f090493113652421b07036bd348978e07266f7b6b148c
MD5 05b2ff8f014726c47ceea16370e76b93
BLAKE2b-256 5f93fbb8dc36d1e6787624a25d3673dfeabdb2533e5e3e29b1d815d3a726b4b2

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.5.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 b47d3d6ba71014a75f910e3936edfdc4833702303d06d5536dd14b5bb998b39c
MD5 1ca14de1cafe1afc1da66d93f59a7c2b
BLAKE2b-256 4cc9f386201a433c001603072b6e8181fbf9b056057896542e6ead931e5f9dd6

See more details on using hashes here.

Provenance

File details

Details for the file unicorn_binance_websocket_api-2.5.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.5.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 3f46a0c660ae066952186c4f61852896dbdd655a614b10e4bf65e590fd3c7b39
MD5 f59bfcb04f3d6b2e5c3b45c2728520a2
BLAKE2b-256 b3b8df2006ded65ee3bc60b3b9abbd2d566c7db9b93a01d6ec3a0b6db10d10a1

See more details on using hashes here.

Provenance

File details

Details for the file unicorn_binance_websocket_api-2.5.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.5.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5359bc59377ac85ed82cf950ed0f8d62eba6522bd033dff9197b2b8a79e8f0b6
MD5 3ab3e5b442c1820bd91b0de1d8ce8543
BLAKE2b-256 9b503a4b373eaf7300cf5883e89fc2ab1f335094f7c8c3240f131c0d511fd902

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.5.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d9aeae4708f99593bcb929cde108a7d50a40090d8161dbd72ba667bad7166e05
MD5 87ff6e9e04dfa82a3dbe1acc77b64b6c
BLAKE2b-256 fd5ca76877c9eb69794994d371ab0c7a0adc05e6eecf84a806156646c28fed19

See more details on using hashes here.

Provenance

File details

Details for the file unicorn_binance_websocket_api-2.5.0-pp38-pypy38_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.5.0-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 6d9cdcf54ebfdeb123f5858d51772d57b5f3e8ad7cee97db6ddc6403217bb691
MD5 e83646039c86bd335ee2669a708147fc
BLAKE2b-256 5022069ab2ec12e72498168af8b837a7e566508cd9e5a8f9cbed35f4b790aa65

See more details on using hashes here.

Provenance

File details

Details for the file unicorn_binance_websocket_api-2.5.0-pp38-pypy38_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.5.0-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 22a7e5049a4b635fd1dca3e5b9286ea10ba3f16e6c14f21448a732865ce943ca
MD5 497385961e96d2c130ea12bb360f5bb7
BLAKE2b-256 e934b4df92317e4b224d1a7b96644ee1aaf7ba2e5c427c4a765ed482dea5becb

See more details on using hashes here.

Provenance

File details

Details for the file unicorn_binance_websocket_api-2.5.0-pp38-pypy38_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.5.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 fec899ae303cac18b1517b30c8f3ee236303e65a64cd5d0a77cd4fc16063867a
MD5 df57d403fc221b7a57b3cc8c32327ffe
BLAKE2b-256 1fafb72ad8efd116b9c07ce26b81ff7f9bba8dde8280002328304a0cf95bae32

See more details on using hashes here.

Provenance

File details

Details for the file unicorn_binance_websocket_api-2.5.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.5.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3f102c7bed675eae3f5507967e2e63326a71693944475f6e926b3176057850dd
MD5 2f7c83dcdc24b5a8da617cc514c3a8ce
BLAKE2b-256 d36a8a2175898f1b530518551cc962569e2c896bb2084f5064fa458b3c589355

See more details on using hashes here.

Provenance

File details

Details for the file unicorn_binance_websocket_api-2.5.0-pp37-pypy37_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.5.0-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 0709252b1be5a9d9102a8914dfa087b0512bee8c6656ce7baeba6d277c8339ce
MD5 1bc775aa7bbaa860b54e4658326affb8
BLAKE2b-256 b527a8bfd2abc2491b3408986a19813c7f5eda771fd608153bda3f21bc5cc59d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.5.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 dd9e740182b946fa98067452f7d8fea5a492bd58faa979b34090199227b74b82
MD5 2e248bb57a1f92d57b2517c941fd56d3
BLAKE2b-256 846d6eb3e12fd7ece92cac607067b307d64c090f5cfafa452ba1067c759209cd

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.5.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 56b514498dd5438d043bcb080c81f297c1483e14ea2127aea74ff7bb5647f64d
MD5 d9dc9172379d46acc3035cfdc0535bc4
BLAKE2b-256 4dc7ee4704dccdc06aa20c33b59ef22f49113098395d8ece70b8695d0a65452e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.5.0-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 a8f18a0314dd42f91bed56fffd59c77f051c2d4b1dc61caa0630634e1b0ddbfc
MD5 0fcdd20ff0924a01655054e6b66565d9
BLAKE2b-256 ef0fbac993703ed610b6d677aed5592dbad454250d849728e19ebe2732f11cc6

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.5.0-cp312-cp312-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 1bcbb127aeaa6b3fcda43805a772e78adad744a5a2d22d14bae1f56e4dba94d4
MD5 0b66d1e4d34043584b0c3abba6738406
BLAKE2b-256 67d4c68918a942e11bf694274432d1530f50e94ca24d2ee08b12983085fe00ba

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.5.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 50f85ea8b0fd1ae1cf3ad8ba1895aa0a0846be121ad3dfc35296982b5ca9c3c5
MD5 cd0c8a8cb02ad630338040e7672ba0a9
BLAKE2b-256 7c8419c339263c7a95f3e0e78215896f62b2e3aece19f686787ebfa81698e71a

See more details on using hashes here.

Provenance

File details

Details for the file unicorn_binance_websocket_api-2.5.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.5.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3f44f58075f6a6c080cf32843cf558cf00a958b96b6351a1de538e0bfbe30a58
MD5 c2f8f5d99ba18783800c9f9163660b5b
BLAKE2b-256 7e9e4dff3fbd955c0b1cd401e38e9d802c3f73bf083ccd150e1e203e867c5488

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.5.0-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 59983c99fee83546b6dce6cf4b6411b4b00b803a9cd7b282aa2c4a0cef5c8103
MD5 5689dec63cbb289580574054ae9dd6e5
BLAKE2b-256 4f803a7efab2c39e63f263a4c2ae72607a58ed261e27043b269d0037a83d0e51

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.5.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 602464f8115ad72ad1c0d9d5fdc9984ef50be4623f83a164c513ba10af045d31
MD5 96ecc9695823b7d00c8e86ca2d3cba83
BLAKE2b-256 135adea24b2a4c4f0af364242626a4231e754a151d3eec2c41f3128a6023ca78

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.5.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 0a3c1b6fbcbb58c737f2eef7f1bddd5ad40e3bca4021a5cfb7bc8f48a59c74ff
MD5 34695fdc2103af70cf38fee0c3c1ce9d
BLAKE2b-256 38cbaaeefb2b5cadb848098c56a05677790a2495fa2204261bc4d8a3beed94bd

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.5.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 871f3e88c2bd358e6a528b09597df3431e514653745bf3ebcfd80111324dd121
MD5 2d4453cdd6d89c82eb66b2a0f0957557
BLAKE2b-256 585bbc12b01e50baed12d0a1187fbde9e123e97a016465839533b4b18a73b4c7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.5.0-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 e924ee29be8075b0f0b8fedff497426f7a930200a155c9493f0cb7537fe17c64
MD5 f3d5036b1628af9a21fd36bfd410af2c
BLAKE2b-256 f7827952a923f7cfd5934d53ab5877a5e68125a238eb80665359e149dc70aa43

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6f2df0d21c9ae996ff3d5e10881e0fa67ca40b10fa5cf4e216cc41317c6f3dfc
MD5 391fa138b731237886af0b4ce7e2ae53
BLAKE2b-256 bd993f0b3a5dca51ebfdebf8aa48d382ce7ced3aeffe003ab68f0ba49713a2f7

See more details on using hashes here.

Provenance

File details

Details for the file unicorn_binance_websocket_api-2.5.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.5.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ae79eeccbf5ad14237156b1ccdee0a1d8129994929b12719e7eb3e261267fb07
MD5 093f71deba153ba44f4b2d39dc6e65e2
BLAKE2b-256 86f1b516452bd9dbc6686b5a07f6171f0be8bda150728beec4f2eb2bba830302

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.5.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5c60deda40165efe344c0cab6936f84bed2d7865ba6eb5768cf05064e38b9d95
MD5 abcbb0f91499118ec73ec16627365db0
BLAKE2b-256 d0f8b2c06642eac700e1c7948dd2d4ad33f76ab05b300089e780581641b8ad96

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.5.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 aac0440b56e6f449cc4cccb00a0d6608ce76c27d1bcf7fa3e8e13339f67240ed
MD5 cd9ecdde04960aed6da90462fce8ad7a
BLAKE2b-256 beb957812411ad0c3256f2c0f579bf8795ade6bae172e9da32914e342f73c15d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.5.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 d1ca822936f02b52c86692771c762787aa924447cc735f8ccea104e99bbf3bae
MD5 926ba21af6e63f591f78f0de3fa86343
BLAKE2b-256 cda8db61f33d8b7dd095fd190ab70b65381f39d7b84878c621eb19d6c085eff3

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.5.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 809c6ce30087d647671dd4760d4f2af3d665606120b0e8cd368710404f8db858
MD5 b95d014175a2b218d2d03ab9477dd3c3
BLAKE2b-256 e7ecc0c6b7cab99f9d3c021b30f598215218402a49a3eece8ed46850012108c2

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.5.0-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 ae88104d4d8298588dcf5e9f7823d2dd4716f9230c2910fc713c296ae0bdb65d
MD5 9322894f640fbdecff2928534499d0d7
BLAKE2b-256 d2eac0b3a3907b1594315dd37b0e4e097f39a04691716abf05c2c150774ad786

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 397fda8fa44974470db14ab12e4ea69239cd8c3c080085aa07666407c021a9da
MD5 670db283579da1a9cdaa3bf59c576683
BLAKE2b-256 79e30daf91e4719fa069e2caa7b28d275c279019212b58290fb68b80626c57c7

See more details on using hashes here.

Provenance

File details

Details for the file unicorn_binance_websocket_api-2.5.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.5.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e6067263f0ec9e713cd6293f5698f6fbe60e4fc25857f47f54ae96b564ed7502
MD5 46d93954570e5a963e3b3dc0b7066dff
BLAKE2b-256 d329dd3718d669251994abf0781c619d163fa074e43bb32db20c86182bfd3704

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.5.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4c86120f6606f7eb3a880566d7e1857d9ad2156297c6cae27a9323e713ec6260
MD5 2712834c475948789f49b12e2d7dc29c
BLAKE2b-256 5137b3a533857406f42b5866d5e0d691f68f46f3009e1d732328e857480d4ad4

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.5.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 7526868d0d86e79bff7e7eada2240f9f55d78076c98bd02c2642619c63e89842
MD5 a4877e39c6451aadad181df3af87dfbd
BLAKE2b-256 572f697b04d84681a4e9b639986cf6a7bd646828f98b47ea60c6de97d6132c84

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.5.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 e8335e14ca163fe2b23a23cd5483c37dbaa30c5b8ef477536c51f5c00fd5082c
MD5 734a988bc6bb0006a21918a59d0f9b54
BLAKE2b-256 85a2784e104fb1f80e73bb2fec2c99fcbc47972dd6268ffb00dbafe1ea1dd296

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.5.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 b3953cc9cf9576f0962adfcc3e1c293943b4757bb9b8220b79b315a8c145f1dd
MD5 f06dc1e0dc1ee271b105aebabc5c7a5a
BLAKE2b-256 8523bb28d8b289db4a8ebf35b492508a93fd41af782a2c99df7f3a625e01da87

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.5.0-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 d1770f6394f7cf7b2d3b7fb4f7d6c639ae4665127a9b5df10bec4d48f960ac5f
MD5 55a02a4b18c71c653e59fb45b3e58967
BLAKE2b-256 ad7cf522e1823486edba217e3f65b993dd8651a97061f86c62168832d9218a81

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.5.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 19e465839625e8a6831dc5e10c8e95c3adc6ebc691519d0628a76ea5ae3d202c
MD5 a6efc7109c3e0593c33520ac7e839adc
BLAKE2b-256 089e242510d84526d77a0fd5f34284e948708c97d2d5eb423e79c5b1e2ccc5ac

See more details on using hashes here.

Provenance

File details

Details for the file unicorn_binance_websocket_api-2.5.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.5.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a1def69972a21a297ae365ffde29e60b78c9a82bca4f059ebf25c5c413c60445
MD5 6e1a70f63842e171f78546d754faea50
BLAKE2b-256 2d8d90da7754f189f8cb247352241760911d6d40a2a27919bbee15a385e1343b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.5.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 99aa05cfb23eee259f2ac4289e2b5eeafce7089ace26045f7fd6f8e52daa7e51
MD5 d073041230caec5c2c75bf75ac799b1d
BLAKE2b-256 3ad62cabdfeb10a40e52e05ce9816275fbc5d04fcef57c7469e62b19f23e2e83

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.5.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 c1589c9f03812b8c5beaca419c3fd9c5f5b16a71192892763459f56b681cafa5
MD5 92320ae78f0f4c7ff820c8465c734213
BLAKE2b-256 12d7f9973875ad1d716b909d8b9ce92e199910842c90d3e2bed4fa6fee43237e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.5.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 0a8ff02e3f48d4b7e95a2684ea4bdf5271ec9abb9ef421b465d5ccf8c824a934
MD5 d62a7c843649c1ad4a5c777380360189
BLAKE2b-256 39e833e727289852c5b75521caa69ae42d5f426ee187d0de67da19163ac67613

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.5.0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 61467e0592950c82b0d76f3e121b6b380389919d0ee548d279833afd071214a4
MD5 c2c6d47a5b272008e949b68351abcdcc
BLAKE2b-256 f4bbaee6db4804b7a5844e37e1596923334c2c550e971ef62f7102461ff47d8f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.5.0-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 92d8faca5e0b7b026e9c041c1431cf44f61e30e45ecabb764f9fa626eac272aa
MD5 4c700b6bb928259efb5af7c6366cc9fb
BLAKE2b-256 4670f3e7d65077c94e49b5513f6e5a16c2ce75ac28a54f2dd021e95ddd2a9146

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.5.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 29935d123c1c2817cbab996a17e26ba9b81511c2a7db478fd8809f70e20e5bb8
MD5 d4bab07f331d01928214e6c1350d37c0
BLAKE2b-256 c47ac0224b9a4ced3a26e36c249957911df60ba158110578998697d3f7b306b6

See more details on using hashes here.

Provenance

File details

Details for the file unicorn_binance_websocket_api-2.5.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.5.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a4734d0d675b7489ba763066c8cfdf0eda36c6c2a597a087a045ec10c454eec6
MD5 3527ef9ce3972fde7e63f6e0639e8aee
BLAKE2b-256 83836b40e183fc9983ca7c4fe8c210219c68a1f070626edc90a8ec029902ce3b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.5.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f23d6fff94ac3c48dc76712a25f7fcc9391933f084a85b41df7a99baa258ca4e
MD5 5767a17524fa4c135bd1280eb321b37e
BLAKE2b-256 e4fea6d8804513f0a9b30f82cbff8bb8f5a63b69d4cf83451ffcbafaa01e7916

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.5.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 8025980f8a0bcee784c3b5fdaf3994b143bfb8044d50c7a0a2c467ffd899d334
MD5 ebeaad07e85f615d91d2f4808ad9d07d
BLAKE2b-256 c28ab3d5927d71cd47837e37ee92135b84c2a05623f4b7bcd085b872e029172a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.5.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 3988ea41d6ee618d9835e9df98005f599498a4ba32a4cd28db485dadb7dab557
MD5 e37f607dafa690761409dba24ffdb4d5
BLAKE2b-256 d2bbc47e7b5c44951762392528e2c242efe6ed453cb1749ee9dadc304f637cc5

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.5.0-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 aa9fd6845ac210f08387b5c159191221a994379f82af99cb343d97c78cc923ec
MD5 adbc560bd38fa04d60546502fc77bf22
BLAKE2b-256 a5e70c73a8dce4a0a5c0ca303a8a195427f8bdc75f1719d01d09ad0728aee8f0

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.5.0-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 a1b9d73d82f189d7fd29c6254d1e05c6d8445bcc1a850b2abe6a85886a7f642f
MD5 351fdc0c1f23ec6fa69595cd9f7ba252
BLAKE2b-256 2b53993c7588cf1177718b59aef299168721aee8c2adce2eb3df5e44cdf379ea

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.5.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e1e7f8cf0d0ecb5729e0ee11b0f2738e7de7fce17674c43f64ffc303036ec1a4
MD5 9908be150ad6563d1b436e3ea215c6b8
BLAKE2b-256 946bbb27dc666e34481e1a03f1556f8527a024825829d3294ad06bba894de871

See more details on using hashes here.

Provenance

File details

Details for the file unicorn_binance_websocket_api-2.5.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.5.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ac6771eb320fc3c9e30eb46647a3ea1264a8f8d2f96860b1405baf0a01c397d9
MD5 a4ee8d2333648bb8febd6d16a7054118
BLAKE2b-256 808f3becd3eb4ec9f976873ba3178d2053ada89e77405a577c133ec5baa4f893

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.5.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 51fa8c9cbf0b2f7be271f5f1bf3648b323e85ac147df10155a0352dfbdbe4e22
MD5 c067f2544935a4e960ba557e2ce490f8
BLAKE2b-256 003e36d0c39a43d35406ec3b7950f7c36210ca7dfecbb3afb218b220ae1c861d

See more details on using hashes here.

Provenance

Supported by

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