Skip to main content

A Python API 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 API 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 task:

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("Gracefully stopping ...")
    except Exception as error_msg:
        print(f"\r\nERROR: {error_msg}")
        print("Gracefully stopping ...")

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

Convert received raw webstream data into well-formed Python dictionaries with UnicornFy:

unicorn_fied_stream_data = UnicornFy.binance_com_websocket(oldest_data_from_stream_buffer)

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


def process_api_responses(stream_data):
    print(str(stream_data))


api_key = "YOUR_BINANCE_API_KEY"
api_secret = "YOUR_BINANCE_API_SECRET"


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

response = ubwa.api.get_listen_key(return_response=True))
print(response['result']['listenKey'])                                       
                                
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

ubwa.stop_manager()

Discover even more possibilities or use this script to stream everything from "binance.com".

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

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

Uploaded Source

Built Distributions

unicorn_binance_websocket_api-2.3.0-pp39-pypy39_pp73-win_amd64.whl (782.5 kB view details)

Uploaded PyPy Windows x86-64

unicorn_binance_websocket_api-2.3.0-pp38-pypy38_pp73-win_amd64.whl (784.6 kB view details)

Uploaded PyPy Windows x86-64

unicorn_binance_websocket_api-2.3.0-pp37-pypy37_pp73-win_amd64.whl (784.6 kB view details)

Uploaded PyPy Windows x86-64

unicorn_binance_websocket_api-2.3.0-cp312-cp312-win_amd64.whl (932.0 kB view details)

Uploaded CPython 3.12 Windows x86-64

unicorn_binance_websocket_api-2.3.0-cp312-cp312-win32.whl (827.4 kB view details)

Uploaded CPython 3.12 Windows x86

unicorn_binance_websocket_api-2.3.0-cp312-cp312-musllinux_1_1_x86_64.whl (7.3 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ x86-64

unicorn_binance_websocket_api-2.3.0-cp312-cp312-musllinux_1_1_i686.whl (6.9 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ i686

unicorn_binance_websocket_api-2.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.3 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

unicorn_binance_websocket_api-2.3.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (6.9 MB view details)

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

unicorn_binance_websocket_api-2.3.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.3.0-cp311-cp311-win_amd64.whl (945.6 kB view details)

Uploaded CPython 3.11 Windows x86-64

unicorn_binance_websocket_api-2.3.0-cp311-cp311-win32.whl (836.5 kB view details)

Uploaded CPython 3.11 Windows x86

unicorn_binance_websocket_api-2.3.0-cp311-cp311-musllinux_1_1_x86_64.whl (7.2 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

unicorn_binance_websocket_api-2.3.0-cp311-cp311-musllinux_1_1_i686.whl (6.9 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ i686

unicorn_binance_websocket_api-2.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.2 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

unicorn_binance_websocket_api-2.3.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (6.9 MB view details)

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

unicorn_binance_websocket_api-2.3.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.3.0-cp310-cp310-win_amd64.whl (931.8 kB view details)

Uploaded CPython 3.10 Windows x86-64

unicorn_binance_websocket_api-2.3.0-cp310-cp310-win32.whl (836.2 kB view details)

Uploaded CPython 3.10 Windows x86

unicorn_binance_websocket_api-2.3.0-cp310-cp310-musllinux_1_1_x86_64.whl (6.5 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

unicorn_binance_websocket_api-2.3.0-cp310-cp310-musllinux_1_1_i686.whl (6.2 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

unicorn_binance_websocket_api-2.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.5 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

unicorn_binance_websocket_api-2.3.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (6.3 MB view details)

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

unicorn_binance_websocket_api-2.3.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.3.0-cp39-cp39-win_amd64.whl (932.0 kB view details)

Uploaded CPython 3.9 Windows x86-64

unicorn_binance_websocket_api-2.3.0-cp39-cp39-win32.whl (836.1 kB view details)

Uploaded CPython 3.9 Windows x86

unicorn_binance_websocket_api-2.3.0-cp39-cp39-musllinux_1_1_x86_64.whl (6.5 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

unicorn_binance_websocket_api-2.3.0-cp39-cp39-musllinux_1_1_i686.whl (6.2 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

unicorn_binance_websocket_api-2.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.5 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

unicorn_binance_websocket_api-2.3.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (6.3 MB view details)

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

unicorn_binance_websocket_api-2.3.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.3.0-cp38-cp38-win_amd64.whl (952.5 kB view details)

Uploaded CPython 3.8 Windows x86-64

unicorn_binance_websocket_api-2.3.0-cp38-cp38-win32.whl (851.4 kB view details)

Uploaded CPython 3.8 Windows x86

unicorn_binance_websocket_api-2.3.0-cp38-cp38-musllinux_1_1_x86_64.whl (8.2 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

unicorn_binance_websocket_api-2.3.0-cp38-cp38-musllinux_1_1_i686.whl (7.4 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

unicorn_binance_websocket_api-2.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.8 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

unicorn_binance_websocket_api-2.3.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (6.5 MB view details)

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

unicorn_binance_websocket_api-2.3.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.3.0-cp37-cp37m-win_amd64.whl (889.8 kB view details)

Uploaded CPython 3.7m Windows x86-64

unicorn_binance_websocket_api-2.3.0-cp37-cp37m-win32.whl (798.0 kB view details)

Uploaded CPython 3.7m Windows x86

unicorn_binance_websocket_api-2.3.0-cp37-cp37m-musllinux_1_1_x86_64.whl (5.8 MB view details)

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

unicorn_binance_websocket_api-2.3.0-cp37-cp37m-musllinux_1_1_i686.whl (5.5 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

unicorn_binance_websocket_api-2.3.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.7 MB view details)

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

unicorn_binance_websocket_api-2.3.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (5.5 MB view details)

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

unicorn_binance_websocket_api-2.3.0-cp37-cp37m-macosx_10_9_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

File details

Details for the file unicorn-binance-websocket-api-2.3.0.tar.gz.

File metadata

File hashes

Hashes for unicorn-binance-websocket-api-2.3.0.tar.gz
Algorithm Hash digest
SHA256 2ec833ad9b75e1b8154c00e63fa1abee23e17ee83c4d01c3dafe81c0d628fcfd
MD5 2a8aabff9ff0e6126160fd490d77669b
BLAKE2b-256 06708dcf03c320be8dc22d0edfb7d25639f2dea2315afc0f8194119fa4050a1d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.3.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 45d33d16b230b2f90aece8ae0146904a076f2cc0a466329a44b9c17e5d7fc38b
MD5 446ed402d123a0d8b65b31d31f44f14b
BLAKE2b-256 d9408d30930ca0e0bd0480c437f3430c2106309e6ecade9e22e0c4da18cc0434

See more details on using hashes here.

Provenance

File details

Details for the file unicorn_binance_websocket_api-2.3.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.3.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 e8102ae22b2f67de241e1833c47eb547d57c87ec4c236d80516bab6dc6087dfd
MD5 59387c17d9e04b480fa209d5c517b200
BLAKE2b-256 ef828204e1eb466caaccb24df30347f59037fca7688675bbb1529e6eaeea9d21

See more details on using hashes here.

Provenance

File details

Details for the file unicorn_binance_websocket_api-2.3.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.3.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7208b02c72a755c659c5d39cce03bb82aac865d45e0766348854cb4dacfb0ba5
MD5 37a386dc36ae25b2cdcd7dfdae1d93dd
BLAKE2b-256 2927f0bcd3440620d17865d9d917e48cc4c192d9654c47e951cf84281aefa585

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.3.0-pp310-pypy310_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5e36daff6bc9c54dd98b9b8ca45626e891545edb1e358b2d82395d529b35cdd0
MD5 591e72f82f85e13fc332fafe5620be3e
BLAKE2b-256 1297ef8e912c3dfc4ae7c49b5c274af3d5d7e89b892a0242f5b74613f985c743

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.3.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 c329d94711f20374203926fd4b0287d4a1eacd9ebdf803806a1c73f0bfac01f7
MD5 a06f66bf01ee186aed1a4f86126f7515
BLAKE2b-256 8768047f980b09894e29b84f650addd4ffd71f929bb7488f956c8a9af5db0d5b

See more details on using hashes here.

Provenance

File details

Details for the file unicorn_binance_websocket_api-2.3.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.3.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 48ae6afee8b88945a64c23d98b6c77ba44845a7561d99ae843959c747382aa69
MD5 d68408c3d82a297a4ebdeccaee420e25
BLAKE2b-256 8236f4cde531ffc3f6199bee86148f9872cc7e794def6b9c573a41ed976c68bb

See more details on using hashes here.

Provenance

File details

Details for the file unicorn_binance_websocket_api-2.3.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.3.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2bb9d27741982714ad8461cf1f81da68e0b1b890dde19313db5e2320f39db858
MD5 73c6b358395aaa75ef3bac0d7fd373dc
BLAKE2b-256 c0fec9503a59d86ef23bee4b404a731e02382e2c5b4984e7bcfe1c3c956f8ff0

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.3.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 62c1ad020da393f8d54e25a210d18a255fc4fe003c73b6c7ea1bc3ab1b429d9a
MD5 4be521550a6074547ac8ef21301ee4a2
BLAKE2b-256 70cd37f7dde917f8864522242b79cb92e95ad1dff3bfde70c851fffd04fdcca7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.3.0-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 38c28cbe23db1a156a535639bddf386c4d53a1d99c12e5c5917da1119e9f81fd
MD5 2dd253442e5b4b1a432bb42895d7a91f
BLAKE2b-256 81574eb8a43bdaef02963a267ce41d56132d0bb6c0bbf80e7bf0327b3e2acdeb

See more details on using hashes here.

Provenance

File details

Details for the file unicorn_binance_websocket_api-2.3.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.3.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 c4c3caeda1b90871ad8046a14d2c4cf1f534b07971fe9305322ade3e73dfc052
MD5 ea809af724054d474b3234ac336e9598
BLAKE2b-256 0e6eb8175e4555e4abe6a3721e1fd3b9568e200b4a7d84a85682d8380b026cd7

See more details on using hashes here.

Provenance

File details

Details for the file unicorn_binance_websocket_api-2.3.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.3.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 10776f67d5c0e7909777fd57ab603a62064244d3fb72d43bedb564b56a3f7098
MD5 16411d1d82f1e4c0956e921e0bb2c184
BLAKE2b-256 443ebd162bf1f80d27d3878d5a3ce3874313be8b71207c736d905e200cc5080c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.3.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4c7086ce935a6607378f556c986a41a8eeccdf8e5a66d9178b9f25ac38bad1fe
MD5 511655e9b25011a189e7a3d77d3851da
BLAKE2b-256 a4d1096928d6686dfe629416c6b1d607439970b8d636dd245fab0957445b4403

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.3.0-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 01c0e828ef4b79e6f264a5167e8afe4c535c6a2683f8815f357c13e1dd1fb365
MD5 1f2bc051bf677122d81dd7ab780f1e5e
BLAKE2b-256 9117948547295787887cad2843c894ecfb5537a24bc4b2e012662d9f048da1af

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.3.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 4233ac74a0fdf2e0a5c5311413afb574ead34811953dd6cae3a04c4b0ab7b4e5
MD5 b8bf7ef22fb6930f2692c103d5af357a
BLAKE2b-256 b1fcad642f1b2524ed6816be30683a35de5dbe1df0b7ed2d8cfa7a63e1f041b0

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.3.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 c18d34f3cf754fe0e47f7899577363fe97149879a47b15595b176ddf509c8f91
MD5 80af5c4b794e42a5d73161dc948f6dd7
BLAKE2b-256 a238764c426c719ec50559ca82805ff67e86ea730e4aafaab1180f9aa7784ebd

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.3.0-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 5a6b6dfeff29253f52cde7a1e6d491170b7107d2d0adfa0e269d2af3624990a8
MD5 d237787606365a2f179642bc793d4b40
BLAKE2b-256 d13871b464cc6e708c6d93f533315a852b7dd680f649016169d1fd4616cf0754

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.3.0-cp312-cp312-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 08a43f2d9c5a3ba342a4cdfd421ebe1272b76cc053fa144b74142fd259c4c209
MD5 7b8797d1942f4b2255b7f43f70ad1568
BLAKE2b-256 4b451e00be4575ef9e459691e6e060ee2a75fe0b85fc5c6d3ba8d9690c91a09a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f453611e5aa8f4af46ad24b514ca45e710c6d508faa3f35d6e4510ce3a6e94ec
MD5 a87c292705cc6bc1721477735dadcb4e
BLAKE2b-256 13e70701d1b001e2986d1c989911992274b64f9c58455c58e731a88fae7b77f3

See more details on using hashes here.

Provenance

File details

Details for the file unicorn_binance_websocket_api-2.3.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.3.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d0a23e27914561b06f18e0c1b9a3a0750e022fdbabf2325f7b8c5d9d2679740f
MD5 f78b2db261f4999a28fd1f101feb2e5a
BLAKE2b-256 f5861a10cfbad4ca8e96a4435ec26bcc424e16800efafc27a46bd2a81255cd9f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.3.0-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c75e47adf51a6d0df96c28bae6d3ff45021b9a69d897b16baa9470126c4aec94
MD5 f78032bad93b664911604f42cc218776
BLAKE2b-256 8876854311c8bc7800ee4970c682efddb18656ab42b3a507b702812c5a1c630f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.3.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 6b3aac941ab4f17b60f582387548d5868ba63552405ead7154bf584a734f8e46
MD5 98255239d6acea26522189287f8cf9f3
BLAKE2b-256 157ba7c74cf26ebb4799500ad07a3e0102cae7ba1cb21bf1e52bf7b58bdff4be

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.3.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 1530818b8d09ede8b9bcfacb03a8224420629da7f6f5cb455f8c4620b366fb0a
MD5 23599907338a1cba40842d37a3c0dcec
BLAKE2b-256 588746ac3969af51ffcbfed05f6c1cd8c3d82b4dd7352a6b3f613868edf49b5e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.3.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 a947163eee35f4dd5a9dec35e6dcc99feb888f40ee152b564afad13d19b564d3
MD5 7e76cd712769203c0212ad62278972dd
BLAKE2b-256 2597041baef0a2466882909d103ad6faec78c5394c96f05a6ccb0c7b22bb211d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.3.0-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 55c959614fdcc8a6b8e150b894e94b4b3ae3a2d8260d7a43cfa189106112a79e
MD5 83545ce5422545f19cfc30657ba29c51
BLAKE2b-256 4d54bffc551ac8262a2b33fa2e98ef23213c6260b25dab590e9d2c2297f66198

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 60b3d38dadb988418003f737047e8754792752c0b100c04dc5fadc62fcd3e40c
MD5 b6a56e498f2582e9839ed6aac40a2596
BLAKE2b-256 8258759bf4c08dadc1089e09ecc6d299e834ed3f178ce83b0b2d81ad71adcf40

See more details on using hashes here.

Provenance

File details

Details for the file unicorn_binance_websocket_api-2.3.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.3.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 577cd8e9773eb10d4563cf2aa4f3c5d8c2e0620a9a14a837b6ba094065037285
MD5 3fc1ae8ecbbd74f7aff6850699c56626
BLAKE2b-256 9a4e78e24ef28fdd0026207c71567abbfbbdfc9d1f468cd34a9628f025e1e1b2

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.3.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c46cf488193f51b5c121c82c42f1291de30e6fbe32b60ce7eeb0792d33fa9bab
MD5 6c5e1afc97d04367cfb1f6bdea9e6f30
BLAKE2b-256 86acbde778aa7697ae5af46d3060eb2a6639f8039810c65b476712bfefe394f4

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.3.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 3bcf1314d86456ea630b6a11f050824e952b4b012387518b33815b45beb14dfb
MD5 dba4e21418a671deebf1b72664a5e081
BLAKE2b-256 fa47d04b4d166f54aea5d73508f4f3b93d9a8f1add6f54bfd8c587a0ee27d135

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.3.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 38a6132c22f3f7bd773a747d0cc44ff139f0ca455ef1d1d5b49ef0983c1689e9
MD5 1c998eca85d64a81f3f27824d13fce92
BLAKE2b-256 6dc677e16853c61b366849e78e26522ac067eb7674bfb304b0e5251d0126b7b3

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.3.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c77014a69f69f2d62c1e5536ce43bc3e8a97e6e0384d20acda7b08fdf880f9ad
MD5 597ed0baf0810f6174db7b074e7c18b7
BLAKE2b-256 3d186efaf4232c729aacd8cf9388f5a52553de69ba9d8038148cfbb9874cead5

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.3.0-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 c8c9ab751002896b30abde0f4ec10cc90ee2ccb66e7dd2c0b6b87a078ca210e0
MD5 3bb5a390a5d76536f3bda89019e9366a
BLAKE2b-256 b328bf2d58f670bb148963ab3eee6c8b13e7411985635969de9e66b13516c958

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cd54299930ef6e2cfe9364d7684514fded05e8bd5009cd326a20c8d94723901e
MD5 0b698ac0c81d10c52c31693f6d92ae13
BLAKE2b-256 6297166574d8841d99d0936695765501ecb4d6175ce73d9d0204c6a910bb9c67

See more details on using hashes here.

Provenance

File details

Details for the file unicorn_binance_websocket_api-2.3.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.3.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c68a283eb6a77e5d105296991256f9ff2d23c688189fe405218734e8da884a5b
MD5 d6e9afc6247ab0c357805b52807c34d6
BLAKE2b-256 558f672a23a3237de80f97a727bdf7e395669f125ae2458491c6634e451dcce5

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.3.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5ae9d66dece3edbf1f10991b1f3d9114075f103f31c88b1f8823941389379705
MD5 ab85b0394573a96c10fe27821bb0551d
BLAKE2b-256 9095d6d0a5171847ad2e39bf74c215919034d7d26e2eb71dd1fb70ae007aaf19

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.3.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 ee46c0d98b8d7b1ce443eccdc37b91c16679eb9ae0f289797157b96f704fcb1c
MD5 bcfc639c12bbd58c3c7359a111bc0876
BLAKE2b-256 cb9cfd0744ce0bb88795b0b71408103a3fd4c40ab7f5037aedc57d3906bf5877

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.3.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 15c4879468896395bd54dc727d2c0e928aef396f49053d025ba74f16f646c53b
MD5 05de6cdf6158c7ed5fc30c22e87be782
BLAKE2b-256 9791dc64e4f67903af6541956ec76b973a8ad76f33ff4ba42d3a8a9808b7b688

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.3.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f98995152fad24047dfa2981736dcbd4adc52e1e2c3d529cfd70430bf0d2fa8e
MD5 c9a8a901be5f07dc0c25790d62e9fd78
BLAKE2b-256 a1db711cfad704392f13b805596c0ed23f145d340ff9bed319d7d70369444754

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.3.0-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 f731de0f645347146d888480f3690b8b096ce2f5097add39bff39f4b9c5ae4bd
MD5 1a1263dbc61a455118a2cf3382c22df3
BLAKE2b-256 fe51dab2ec3e6c49d4113ffbb126760a0898c5427d3ef8d98eb2e2e04ad21de4

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 88f82bb6d910415ae003f7417b3e0db72d22fe42b0d110b5e913b6ca285c8d07
MD5 359fde7d899b4c521edfe38e6a16ba1b
BLAKE2b-256 dd0b87c6f10ea18d19d6c6688986145ee16fdb43e2c8aec194125d82f8d3e4e8

See more details on using hashes here.

Provenance

File details

Details for the file unicorn_binance_websocket_api-2.3.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.3.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1f2eb3d799ea6359a9696a83d0c266f2247e499d40ce1e3af7691a3ce25d6070
MD5 0f7d39328f09d4df3041dd0a3e198534
BLAKE2b-256 d0739b4949aa147b4051b233d4693514836f121733533911c99885c3c5a97913

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.3.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b03865957ef3a5a528bf58a406528db8b2fd8d788eb7fa4f13826e2097fc9b88
MD5 282259ddbf57326f9a5ae348c76d0d53
BLAKE2b-256 4dd98a52693901da58eb571de20ab6eeba6720425f18aa664d4d56b139bb3b68

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.3.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 eb7b5857282e6d77161bc036b9d53d2b0223cda86069f757e385a9f0369c8584
MD5 d99e604e373cef55c2b82aa4a71dea7c
BLAKE2b-256 35724a448f2c9626d218401a9e11813a9cdac7c06808a8ecc076f4343fbd1d9c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.3.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 18295c4960eb8c12a05385c5913f17b3c13eacdb3c4297042d674407bb8052bf
MD5 7f588377ecfacc8c1e942111577af9eb
BLAKE2b-256 2cfb8eb557311bc9ce6e60a06b21201034a709628628f6aa86b2b8b1491532fb

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.3.0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e758ac81b964b7c6b68088233b4a4641cac48a0cf0202cb9f8605ac7029971e0
MD5 248ed853e0b7a0d1963606285d41b297
BLAKE2b-256 f66e1e920719e0b7e07bda6df7a6f480f2438f08d206b343a1a609551cf97133

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.3.0-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 bd34af952830a2b4aa81ae7be88e5b9a60d7ba3f49e7bf7f082b8af2c2057d5b
MD5 49d54345a6968e84b151bcdd0ca32fc0
BLAKE2b-256 739740a5e9b662f125ee3545b583c6f1f48682bf7f2fe524263c629af448bcda

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fa55e63e611ce6020839f45e67b9fcbddd8c21798b6834b524ce68ec6de444df
MD5 78d4a8770a00e8c18ee6ce0c462603bb
BLAKE2b-256 c25bfb16058ed6e49604e643cb6f1b5a4c0f01df862209044e3ba67e46d52af3

See more details on using hashes here.

Provenance

File details

Details for the file unicorn_binance_websocket_api-2.3.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.3.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cb0b80cbfb869b1336ed75d5d9ccd2bf5fa19665806851cfc8912571086de761
MD5 a03b44c628d51c54199d14776eae6fbb
BLAKE2b-256 72271cb52821b280cd14c923875d7de92e38f123f16c50289daa02f93964029f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.3.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cc4eeb79c85b63a892018a98ac4988cb2b177d3258783d1f4d091a33ff59304f
MD5 4dbf7db0bd6a27c9b4d32c424c54688a
BLAKE2b-256 c5d83232d155af45c8faba15b0ad7f25ebaff994e594500e65e2dce50eb7ce6b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.3.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 1e40a00f0320390129fa7cdd90f8433dbb09478ae26119071c564e407a719e30
MD5 b38c25ab373253b23ddcc5e8acefffd4
BLAKE2b-256 69745ebb801bb37ae4d96e562677d9763907969bfee5d83433bf080810c5782d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.3.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 1c1e5fb49ecfa54cbe4e29c8ee398d17fe535ccab5a06dd1888abde486748932
MD5 c3b6d65c397c25c571dfe000a260a526
BLAKE2b-256 7690b752e2247bd4b54385f2677ffffe81b687c4934441c1d88c1345408cb30c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.3.0-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 ba5cb15f41013ee32954a3235e64e872ae1f3639c28f16aab4c3f472cebaee47
MD5 c12d27101723d0765ba1a6627fd0a6b3
BLAKE2b-256 556d70e60313905be144c299ccc0bd8f931efcb9731460a3517465f4bebcf1fb

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.3.0-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 8beb072f946b24fd8916cf76b301ef17cc379c6e7983147c909ed56d0b7b16bd
MD5 6fcafd9585c880c985e4b759304d15fd
BLAKE2b-256 8438e4cb41402263cd374e843c3af8fcee396030aa561d5678a518ab2e269981

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.3.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 644ecc2e4b967488086fdff6f0a336060ed1adad6c2ae86fe8e1ed66ff3a9331
MD5 a2b282fc8a97e4794ddd5d42b251dfb0
BLAKE2b-256 44a43a43296c90d6444429c4d0d6aeea4e6a341b12b6a98d342fc9717f6b882c

See more details on using hashes here.

Provenance

File details

Details for the file unicorn_binance_websocket_api-2.3.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.3.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1f6adcca2c3bd4f8fd9ba64bc1f0ef1c7eb9b0aebb99f5c43046c176360f2afc
MD5 c40dffbdc3af05068b8c02d61b68a27c
BLAKE2b-256 d5e1f49d5f0989496df449a6c820619bed64a63b956a4e5f3ba26b968c55e9bb

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.3.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9e827bb8be1fb979421ee6c6e0404283600d9c91609dfe0f634d9b3504163c26
MD5 32d484de96866a9042fc77a680ecd8d4
BLAKE2b-256 ccfbfd634865ce1c86ca0c867b4aa3cbe689542983bcfad078bbb77d8dfa571a

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