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 the receives:

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)

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)
                                
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 or above, as it depends on Pythons latest asyncio features for asynchronous/concurrent processing.

For the PyPy interpreter we offer packages only from Python version 3.9 and higher.

Anaconda packages are available from Python version 3.8 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.

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

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

Uploaded Source

Built Distributions

unicorn_binance_websocket_api-2.1.4-pp39-pypy39_pp73-win_amd64.whl (689.7 kB view details)

Uploaded PyPy Windows x86-64

unicorn_binance_websocket_api-2.1.4-pp38-pypy38_pp73-win_amd64.whl (693.5 kB view details)

Uploaded PyPy Windows x86-64

unicorn_binance_websocket_api-2.1.4-pp37-pypy37_pp73-win_amd64.whl (693.5 kB view details)

Uploaded PyPy Windows x86-64

unicorn_binance_websocket_api-2.1.4-cp312-cp312-win_amd64.whl (830.3 kB view details)

Uploaded CPython 3.12 Windows x86-64

unicorn_binance_websocket_api-2.1.4-cp312-cp312-win32.whl (737.4 kB view details)

Uploaded CPython 3.12 Windows x86

unicorn_binance_websocket_api-2.1.4-cp312-cp312-musllinux_1_1_x86_64.whl (6.8 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ x86-64

unicorn_binance_websocket_api-2.1.4-cp312-cp312-musllinux_1_1_i686.whl (6.4 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ i686

unicorn_binance_websocket_api-2.1.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.8 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

unicorn_binance_websocket_api-2.1.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (6.4 MB view details)

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

unicorn_binance_websocket_api-2.1.4-cp312-cp312-macosx_10_9_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

unicorn_binance_websocket_api-2.1.4-cp311-cp311-win_amd64.whl (840.5 kB view details)

Uploaded CPython 3.11 Windows x86-64

unicorn_binance_websocket_api-2.1.4-cp311-cp311-win32.whl (743.6 kB view details)

Uploaded CPython 3.11 Windows x86

unicorn_binance_websocket_api-2.1.4-cp311-cp311-musllinux_1_1_x86_64.whl (6.7 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

unicorn_binance_websocket_api-2.1.4-cp311-cp311-musllinux_1_1_i686.whl (6.3 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ i686

unicorn_binance_websocket_api-2.1.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.7 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

unicorn_binance_websocket_api-2.1.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (6.4 MB view details)

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

unicorn_binance_websocket_api-2.1.4-cp311-cp311-macosx_10_9_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

unicorn_binance_websocket_api-2.1.4-cp310-cp310-win_amd64.whl (829.7 kB view details)

Uploaded CPython 3.10 Windows x86-64

unicorn_binance_websocket_api-2.1.4-cp310-cp310-win32.whl (744.1 kB view details)

Uploaded CPython 3.10 Windows x86

unicorn_binance_websocket_api-2.1.4-cp310-cp310-musllinux_1_1_x86_64.whl (6.0 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

unicorn_binance_websocket_api-2.1.4-cp310-cp310-musllinux_1_1_i686.whl (5.8 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

unicorn_binance_websocket_api-2.1.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.1 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

unicorn_binance_websocket_api-2.1.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (5.8 MB view details)

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

unicorn_binance_websocket_api-2.1.4-cp310-cp310-macosx_10_9_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

unicorn_binance_websocket_api-2.1.4-cp39-cp39-win_amd64.whl (829.9 kB view details)

Uploaded CPython 3.9 Windows x86-64

unicorn_binance_websocket_api-2.1.4-cp39-cp39-win32.whl (743.9 kB view details)

Uploaded CPython 3.9 Windows x86

unicorn_binance_websocket_api-2.1.4-cp39-cp39-musllinux_1_1_x86_64.whl (6.0 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

unicorn_binance_websocket_api-2.1.4-cp39-cp39-musllinux_1_1_i686.whl (5.8 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

unicorn_binance_websocket_api-2.1.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.1 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

unicorn_binance_websocket_api-2.1.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (5.8 MB view details)

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

unicorn_binance_websocket_api-2.1.4-cp39-cp39-macosx_10_9_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

unicorn_binance_websocket_api-2.1.4-cp38-cp38-win_amd64.whl (853.5 kB view details)

Uploaded CPython 3.8 Windows x86-64

unicorn_binance_websocket_api-2.1.4-cp38-cp38-win32.whl (760.8 kB view details)

Uploaded CPython 3.8 Windows x86

unicorn_binance_websocket_api-2.1.4-cp38-cp38-musllinux_1_1_x86_64.whl (7.9 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

unicorn_binance_websocket_api-2.1.4-cp38-cp38-musllinux_1_1_i686.whl (7.0 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

unicorn_binance_websocket_api-2.1.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

unicorn_binance_websocket_api-2.1.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (6.1 MB view details)

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

unicorn_binance_websocket_api-2.1.4-cp38-cp38-macosx_10_9_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

unicorn_binance_websocket_api-2.1.4-cp37-cp37m-win_amd64.whl (782.2 kB view details)

Uploaded CPython 3.7m Windows x86-64

unicorn_binance_websocket_api-2.1.4-cp37-cp37m-win32.whl (707.3 kB view details)

Uploaded CPython 3.7m Windows x86

unicorn_binance_websocket_api-2.1.4-cp37-cp37m-musllinux_1_1_x86_64.whl (5.3 MB view details)

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

unicorn_binance_websocket_api-2.1.4-cp37-cp37m-musllinux_1_1_i686.whl (5.0 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

unicorn_binance_websocket_api-2.1.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.2 MB view details)

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

unicorn_binance_websocket_api-2.1.4-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (5.0 MB view details)

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

unicorn_binance_websocket_api-2.1.4-cp37-cp37m-macosx_10_9_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

File details

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

File metadata

File hashes

Hashes for unicorn-binance-websocket-api-2.1.4.tar.gz
Algorithm Hash digest
SHA256 a7e5b4cec57288c7b8cc23fbd796c20dc5c6bc000ff2bba011c86f2360b97004
MD5 70fa295d33dad81ca3e373eac09530c8
BLAKE2b-256 131424ce241671f125e2cefc0079d40fb15feeb4c83dc920d0a6d3810f8d9c98

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.1.4-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 500dcc47ddbb8d305abaae3dd57e547c8c6ed929143fb4f371cdc755d129d278
MD5 46e3ec4df630945ed091702a33a2bbd1
BLAKE2b-256 469d52cd3e4e9b181a37f0ead1950dd40ecc940102f06ebab4dbee54c6a88922

See more details on using hashes here.

Provenance

File details

Details for the file unicorn_binance_websocket_api-2.1.4-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.1.4-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a3ce939d8a50d8c4b98e567599707f5a7caf936bc4dbb59931a81b3860831226
MD5 1366ebae7e76aa393ea0f04cbfa5b2e7
BLAKE2b-256 8f99af4298a9e21a91e45459269b7272b547439aef24d6821454bc652e9d103a

See more details on using hashes here.

Provenance

File details

Details for the file unicorn_binance_websocket_api-2.1.4-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.1.4-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 425d854d119f3c1f7100fb12f92bb0e944db5c3ec5571a7dcb595d569f83acf0
MD5 e477aaaf28ae8be3f3795f3d1476a86d
BLAKE2b-256 2123b81e5e350fba19da893ec995ffc60507c78f57ee291292a354c0d6fc7a9a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.1.4-pp310-pypy310_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3a457d37821708702c699ebfc5f47faba165ecee6398232d6688ec83e4a61271
MD5 e390fbe6d5878fe69098c94710370205
BLAKE2b-256 cbf09ea56088b5dbd5d0c28b0e4b18fb16a4dc73cfec86012e309e087b8287eb

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.1.4-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 047aca1e250b3e841c73ce6ed1257617cc208db01df1a8985dbac62ea03748d0
MD5 ef1af3ed281f2cd34e8d0b216a50a16d
BLAKE2b-256 fabcb4a1d8fd7c36d0d6f558dbb3a00573b7cb1bb66febd3bc43012650413218

See more details on using hashes here.

Provenance

File details

Details for the file unicorn_binance_websocket_api-2.1.4-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.1.4-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5cea68cb119ed3ad1fdf206575e194ce7e5597009469c924cd2ca56f34c96c16
MD5 0908229ac729505ec5cc19e2d385ba8e
BLAKE2b-256 e60f0c1e0ada0eeaa3c600d7711553f2084205adb923de4bc3ad32daa78be830

See more details on using hashes here.

Provenance

File details

Details for the file unicorn_binance_websocket_api-2.1.4-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.1.4-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 970a0344d5bf8014d8f51a003460fb5f708eb8857ee05e7b0932bde61468b2e0
MD5 5490f07461208563b293cb711f781748
BLAKE2b-256 3f26ca792c733fde19cb0bc3aa2b10779606efc74e0bd45067390037c9bb0978

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.1.4-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e30337a35d0fe64b0857d0a6213648a5e14e7e98ad2ed9c9d6d87217d7318034
MD5 286cc21dfe8040c5b3973cc79b02f59c
BLAKE2b-256 041442513335b4112f936e86ede7799bcb9589178330dfcbe75e02eb429fb54f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.1.4-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 7d22f2de3cc2952fa969446469ff4f291fd6f8318cb37580ac4a40991da94d4e
MD5 0151ca68a40c9ab099bc5d745e7183be
BLAKE2b-256 410f2736bb6c7fb8c179a8bd6a19f4dd43bfe378191c83ea29670eb1f301234a

See more details on using hashes here.

Provenance

File details

Details for the file unicorn_binance_websocket_api-2.1.4-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.1.4-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cdba935685ef18dce3565181e3096c73d01341363871b099939bd095757eb814
MD5 da1b9d3e918ce6781cef333d02e93b7e
BLAKE2b-256 e309ebd4882d0e7807024098ea1a55f1a393d76e57590d5c99013a9ef381d3c7

See more details on using hashes here.

Provenance

File details

Details for the file unicorn_binance_websocket_api-2.1.4-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.1.4-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 823587f0c37f38c89f27176d9bc13b5ec05661eebe1678a2a74cf77a166e41a9
MD5 aee3f7be42691f51ad596d6844d85923
BLAKE2b-256 6d90145d6677c5c4fb38e5ae774cb66a5182747051fee476c4da6343547173a9

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.1.4-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c1ae4b519114b2253a8bb144481bb9a6d6da1735db4aff81860c14907a871ca8
MD5 384abfac0c0f45f220c2038c12f7521d
BLAKE2b-256 4111bf864840b835dd841d8ba53c8c4bc69792418a5eb56930caccc0f79ec01a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.1.4-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 9e3dac541af4b557e545fc8ddb5a86abe02d2af7bf0e2e858566d4bc5cacbd36
MD5 9b933bcfaf99de27cc806a24b47b730d
BLAKE2b-256 57f1c5f53ea5b0be0e8edb44bd13d76a499cbc011e369b51618f2e5bff219639

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.1.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 17234bfb0a67b0ea45c4e4f45e2af48896c9e15d6dbb54f04a35f1cb42111a48
MD5 191e13f393ba3919d1c304001ef0bfe9
BLAKE2b-256 d9d2e4a39abcf9ca0959d62c975009be9a236ea787f050e5a9f6de01896f7c4c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.1.4-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 9f42ce2a9b0055df7c52608994e556070aef6023f50078b7958e0f9765241957
MD5 5138e646eeceef6cd87109c62e1433ee
BLAKE2b-256 4d88e818883c0031ce1ee73cad0f74796fd2b5568f8c7d38e4fc291fa726c0e0

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.1.4-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 b8f7fbbb0c41fc077e8967cbf355faf92ea9fc36664afdff5719517a9e2d04e6
MD5 21dc11625b433e2a601af38d6553c6d2
BLAKE2b-256 1ab6cf3ad67e62ceae1e69217e5be59346c6222e220accc1bc20f46fe77458a2

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.1.4-cp312-cp312-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 8b50b235ed10d4187fef83829cecc0a00a8d7b1c2fa58df50949f4211ff6dca9
MD5 cef24f1bce0c2cfd8ff14e1e493935f7
BLAKE2b-256 275a7302aca43917feb61f6b59593492217e1ecf40062fca473f795021368900

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.1.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b0e8bd26ccda9beceb3ea0461879450c7117f12362fc761e5cfca6f57fb71657
MD5 72fd41976edc876f2b3c0fc92250aa63
BLAKE2b-256 8da55f6f744cddba33007db205f47565b1f46a2a8bc5c97beb5cb91001766f41

See more details on using hashes here.

Provenance

File details

Details for the file unicorn_binance_websocket_api-2.1.4-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.1.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ece9a25c09405761b25600ea31ebc85d676f0432ff55b1dcf3038078e2ef7a74
MD5 11258c46c3c05503f6c24b029eddb86e
BLAKE2b-256 1fbdea69c5a85e3ec29e8bb443ed29c8b65f33b8b247c1e62e4f3440c8ed3196

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.1.4-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b1810f632c3cd1bf9507c793bdb6ddeeac52d7bfcf6b1076b6b0ff12613d0ff8
MD5 0d948ca431029c1ba02716fce0747876
BLAKE2b-256 a89e85f0f5f1bbd4cf4f728cff6c2bdee4c101f8e0f90fb06f7c699a4986d2a1

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.1.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 96c5720248643645af35258fe447a41a799e4cf0f6be0630cb8ecb69d8cd15e7
MD5 78c4fceaead40008a138c45b86546b31
BLAKE2b-256 aed120fd2ddef3b8e7733b6719a3b742ba0099a06293ea25287f327f37833bc8

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.1.4-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 766a6fe07f1ab04741b7a080bd5d47fe907eed8acf97c627ac3a11edd132ec3c
MD5 a5182d367e44f491a8fa995b03d055df
BLAKE2b-256 df7bf3816f1c755811c298c43d9fb5af4fa3da7828ef73002cdc08c3984a02fb

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.1.4-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 0bbd9b63a483f03e1d7ea791fe219781039c6e0d2be69288da0b13e4871fff7a
MD5 ab9ec896752cd36312f3b11ff6769547
BLAKE2b-256 98630a373049ab31626ef4210c566683d1428c29bf5dfba785a5e61805a250bc

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.1.4-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 d9cc55c312f78023b2f2e3b24a2b6621faf64ddbb7e31e01833222e835f10804
MD5 87a77f7b258da67f9cae28e3876101ac
BLAKE2b-256 4f46715b4bdb401b8b220c0a76d958ae37afbcd35b8f2994fa042cb2d9b0ae48

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.1.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 01335f26db90de6ece1eac002ae68055ed3d2219f1090c50e1f4d06ce5f46443
MD5 73d1a68c0b52587da2edb8a4b27f7947
BLAKE2b-256 64e240e6b52b9a5c5244703b6bb4655ca77cfc0e8d3a5100d009363bd3518bbb

See more details on using hashes here.

Provenance

File details

Details for the file unicorn_binance_websocket_api-2.1.4-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.1.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8a4b266d209d1d877b169400065ec4bf7b2743757d27e1944184413badbdf0d5
MD5 788aa53fbbe6d81a1f671de2e995525a
BLAKE2b-256 75e45161c0960ad25722e47917627c31517678126a4cbfc07cd47737fa67ab78

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.1.4-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 40193182903a4091a5f8da6d8aa1af678b8063eddc8ecfee247a0cf4eec73ef8
MD5 95d09fd3f61ed2051edf1e1d843d2d1a
BLAKE2b-256 995e61086d01764742a5b7209342062f143642fec194f76a4c767014ad3048b2

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.1.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 ab8c90ac4526354e0d025cdaaeb0496d9703e7dba298af8d4906218c29ab9c62
MD5 0073c0e03b4ce1f367cba8a3a5051a4e
BLAKE2b-256 49043fbba1f4df881224f21f1d2be8f941a47028134e9825546e647ba151dfd6

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.1.4-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 ce482d1b4aa14ae476bf5c8de803b27c530eed2993c3dbe987e54a494167c9cf
MD5 a0b52ab2b937772ed164fcff97259f75
BLAKE2b-256 88d9147ba9b436898dabf2c0458098d467b7ff556ac9bbf8f7089e21fdbf7935

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.1.4-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 872cb4a077d075a786e7216ff7d1456d435eacc43caa0ba7ff1d45238f4832b7
MD5 2ef0538f523722f56382f68976bd0cbc
BLAKE2b-256 04ea2c9d023b8f62f50af925a2642d8b3fe350ee6ba31fbeff628a57c1fef8e3

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.1.4-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 2c421c85350c2fd34568c7a7640bd886df37668f63b521477cea085504b0f538
MD5 5ae7f055bc9194bfb8d0cdec37f18b96
BLAKE2b-256 7709b3cd0e30d934dee86f9976bedf19a884a2ef678f6a0529470f503d8ef757

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.1.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9b34457b09c81166f61ad1c323130710825c4920582eefd748263f9b8d7145f8
MD5 844df794f180c029fbea1e7b45e769da
BLAKE2b-256 bae80353a5a1cf96ecc87443c6e00d3f8e27ae11f0929b8df9cde73f0f00e1bd

See more details on using hashes here.

Provenance

File details

Details for the file unicorn_binance_websocket_api-2.1.4-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.1.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ab5e9c042e492b39ff8b8906a7d4f4482934b2b1f003758074feaa18264cb05c
MD5 490ac46b57c29e67e1b4317057bdf7ba
BLAKE2b-256 ad4659269f1068b6b0b1f7ae0349f7ea15d69360e17ec0f953fbb3f7ef9512d7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.1.4-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 35d78238d2161c023c568563a31526fcf8f4667d294f0b1df8b6cd366ce5215a
MD5 2896eef404ea7d53a56fef3990403576
BLAKE2b-256 ec422d2e9ca1a5bf0f871799a11c0268d1a984829c6189a71c4704ca64af90da

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.1.4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 e8bbd260d73a25f4a745b967c27f269a09999f4c936a18625b96e36236536516
MD5 dbc878f8983890888905fc907737fcd6
BLAKE2b-256 7b2f0355736d36a84e938eaefc2493081cf089bf4d6383b63a8433d48894907f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.1.4-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 3544db3fa5845133927bc10daad07beec79600c4d369a9bcd315d7cf90194f10
MD5 631bb55b8de6141e05b6a45c400a7884
BLAKE2b-256 61ed6bd2a19974bf934dcfe321aeeec5ea72eddfa6aa9913f5e9ebb89258b79c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.1.4-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e72240ed7cc285bc73584e1f5ec9d2bed00b7303f426df238346a460f1a59856
MD5 4fa330ed682f3e54635a7dfa36cd2fc7
BLAKE2b-256 3077471d1da6973bd480362451fa0871e16e616054c13a4895e9767fb1ecd505

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.1.4-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 93a7c81744216f5ff8dd237a8dd9503948e3f764b5c8a9ee5fe7af13c017f422
MD5 f37598995797747042d69e56ec3e992d
BLAKE2b-256 0d877f518a39375749ca5811ec54e97e4d3225ed7dcfe9c52c5850f693020286

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.1.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d9428aea299c3ef1f2d08e478ffbb5a9e1c36887b78b1cb8ef747d4c2eed37ad
MD5 6bc2d27e24f49add2d40288647c5b6ed
BLAKE2b-256 83d7eab18690f55b415b1807a844b4f7090aca8ede1fc72ed01282cb940672d8

See more details on using hashes here.

Provenance

File details

Details for the file unicorn_binance_websocket_api-2.1.4-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.1.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 25923b445dcc06a63d1276ac0456c2f9582f4dc6048e7bb039818caed396bab3
MD5 9f5199471eff56e25616bac7223b9134
BLAKE2b-256 bf26022f2d2fe3badf1e4f50364b21cf60fca2ea4e63056bafae4ac23800f1f6

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.1.4-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4d45e205a54820e3eae6b3209d7241c7fb4984f7b3b5b620d6e789bbd2178276
MD5 ad2584dcc4214a5afcac0ff0f65890bf
BLAKE2b-256 9426494ea47cd396b62af604f082e80be191930f5c6df44ea4909a40f4804c73

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.1.4-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 1a383302ca046e6bcd4a290b1dfccd8bac2d22ec765e793ec6e9612f1f21937d
MD5 28faabf1296085e92c690a8db281e14f
BLAKE2b-256 be89301ffe4cbc0b5bceda91d37fe7725f396c6701e54029d0241b179b6b8c0f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.1.4-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 e5904772b3f81db7c9c1c5fde19237d34bfa67e47841708ea047ca561f783846
MD5 0e74d331fc93076a04bda653a2f82f01
BLAKE2b-256 3a5412e1afca170ac732de2581beb405463f0b24beb47b71e3315280ee1a29b1

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.1.4-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 162603e929c4c3d03239dd94097bc1ad34ad3f9054df5a6fa43cb9f02d9f5bcf
MD5 34de8e361b4c18d48b5a3de6653f0e76
BLAKE2b-256 237f8667e82ee9c69b1961c90f9b1a6c70b01b19910d140f133117115a5f2f1e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.1.4-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 c92d363063a273d226f7a2d8910bb861f2b4fc7fee35ebe65f5782e0a81099c1
MD5 fb4cc39be63b2f5bdf220919564823a1
BLAKE2b-256 cad28bf1b00af2b009be970b343ab330fbc939cd2029a2dd537dc57131ef7a1c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.1.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1df6ee36ba358bca419d22babcc16fa840aca83632b8a14a759a22389fe37815
MD5 854b6e72a302bdb8ea9bf833f2118fda
BLAKE2b-256 9da3b31b00d840e684ed4e16075ec72f61dbdedd1e0ab5357ec64a1fba6d7b9a

See more details on using hashes here.

Provenance

File details

Details for the file unicorn_binance_websocket_api-2.1.4-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.1.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8778823944699fdb151e55566b36bfa9cb3d44931344109b10781ebe89c4df21
MD5 eced008ba5a289572b86676ed639f85e
BLAKE2b-256 6bde5b6d102d6a17ed37d1afc26a9e7bf442bb5d812d70572cdcd1701bec8d48

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.1.4-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c4506356ae77acce4d38f68c08af680452680868fbeccfc4ffbcfc7713df0f3b
MD5 9a59975fba1cb708dfd4d4272de8b0ea
BLAKE2b-256 a42a1a571b26b5e0631219d99d1264e9d4305e0b8100b17179e2d5f497f967a3

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.1.4-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 9c21dc92a505c17982b7328b0e2198cc74e8cc1334ce2e10e8c321dd1aa77a48
MD5 0969816fe950b418794cae22eb2a3e17
BLAKE2b-256 da974cca7170638c858a914dbe30ce640c6fe27f19dabc5f84244bd66aa9ff23

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.1.4-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 bc038029c59af8bbe7105a278aff51f520e0b477ca93a0c76b97d38e48991886
MD5 776c34b71a08bb9906d8d4151c74443f
BLAKE2b-256 1a575066c825d9c764181fc48087bc59ab3faecef0c34d72a42ca6b57daf0fe0

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.1.4-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 2f9295b6cef158e81f1391852c75fe1516cc4405a545de12a0d9f3c145391c01
MD5 ab9ab4a59cf8839ced9fc5759b40e037
BLAKE2b-256 9ec8fbb463825072d5c4828b4f0bbcd85fda0f88071c6916d5ebef95df79c0e5

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.1.4-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 51f9a99548b0679c082c93d64232bbb2fef14f43dde70f268783d1270738f2cd
MD5 7f576e4f3d4a97caca22d3997215ba8b
BLAKE2b-256 363a09ded8a90a47aaaa3c8dbd110addfaa78ac91fec1ddc84f64edafee3a057

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.1.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6c569617082c110277cc864c7b40f8f866bd0607332efd00227bbe15366f7381
MD5 b3e5c81dae06bbc8d02f52957e797949
BLAKE2b-256 d9621f5b450dc5f876017c10017818f051bcffed2f1d45189dc8569a92b778fa

See more details on using hashes here.

Provenance

File details

Details for the file unicorn_binance_websocket_api-2.1.4-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.1.4-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 637d544bc3a9374a4605b0a3066d1a26efbe0926e2950aa230ee91ffe1c3c768
MD5 d14c18c9d8f0c32efb2f49fb98e13c0a
BLAKE2b-256 10ab29dccb23fe55f84b7f337a4e72ca1e1f9433af6bd802ee6ed632b86e7a08

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.1.4-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bc9020acd59db0634a0f5e92f6d088e9752f6081795187556e8cd64b43fb7970
MD5 7d211907d95e7cd811da371335f15563
BLAKE2b-256 7769840b7efe7f73087e554151ec190ccf3e8e07da6976be9f317f5428394bfb

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