Skip to main content

An unofficial Python API to use the Binance Websocket API`s (com+testnet, com-margin+testnet, com-isolated_margin+testnet, com-futures+testnet, jersey, us, dex/chain+testnet) in a easy, fast, flexible, robust and fully-featured way.

Project description

Get a UNICORN Binance Suite License

Github GitHub Release GitHub Downloads Conda Release Conda Downloads PyPi Release PyPi Downloads License Supported Python Version PyPI - Status codecov CodeQL Unit Tests Build and Publish Azure Pipelines Read the Docs Read How To`s Telegram Gitter

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

An unofficial Python API 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 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:

import unicorn_binance_websocket_api

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.manager 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.manager 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!

Get the right logger:

logging.getLogger("unicorn_binance_websocket_api")

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 API
Binance binance.com yes
Binance Testnet binance.com-testnet yes
Binance Margin binance.com-margin no
Binance Margin Testnet binance.com-margin-testnet no
Binance Isolated Margin binance.com-isolated_margin no
Binance Isolated Margin Testnet binance.com-isolated_margin-testnet no
Binance USD-M Futures binance.com-futures no
Binance USD-M Futures Testnet binance.com-futures-testnet no
Binance Coin-M Futures binance.com-coin_futures no
Binance US binance.us no
Binance TR trbinance.com no
Binance DEX binance.org no
Binance DEX Testnet binance.org-testnet 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.

The current dependencies are listed here.

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

A binary, PyPy or source code based wheel of the latest version with pip from PyPI

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

A conda package of the latest release with conda from Anaconda via CONDA-FORGE.

conda install -c conda-forge unicorn-binance-websocket-api

conda update -c conda-forge 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.0.0) you determined here:

pip install https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/archive/2.0.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://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api

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.0.tar.gz (1.2 MB view details)

Uploaded Source

Built Distributions

unicorn_binance_websocket_api-2.1.0-cp312-cp312-win_amd64.whl (814.1 kB view details)

Uploaded CPython 3.12 Windows x86-64

unicorn_binance_websocket_api-2.1.0-cp312-cp312-win32.whl (722.4 kB view details)

Uploaded CPython 3.12 Windows x86

unicorn_binance_websocket_api-2.1.0-cp312-cp312-musllinux_1_1_x86_64.whl (6.6 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ x86-64

unicorn_binance_websocket_api-2.1.0-cp312-cp312-musllinux_1_1_i686.whl (6.2 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ i686

unicorn_binance_websocket_api-2.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.6 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

unicorn_binance_websocket_api-2.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (6.3 MB view details)

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

unicorn_binance_websocket_api-2.1.0-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.0-cp311-cp311-win_amd64.whl (822.3 kB view details)

Uploaded CPython 3.11 Windows x86-64

unicorn_binance_websocket_api-2.1.0-cp311-cp311-win32.whl (728.8 kB view details)

Uploaded CPython 3.11 Windows x86

unicorn_binance_websocket_api-2.1.0-cp311-cp311-musllinux_1_1_x86_64.whl (6.5 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

unicorn_binance_websocket_api-2.1.0-cp311-cp311-musllinux_1_1_i686.whl (6.2 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ i686

unicorn_binance_websocket_api-2.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.5 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

unicorn_binance_websocket_api-2.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (6.3 MB view details)

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

unicorn_binance_websocket_api-2.1.0-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.0-cp310-cp310-win_amd64.whl (812.0 kB view details)

Uploaded CPython 3.10 Windows x86-64

unicorn_binance_websocket_api-2.1.0-cp310-cp310-win32.whl (728.6 kB view details)

Uploaded CPython 3.10 Windows x86

unicorn_binance_websocket_api-2.1.0-cp310-cp310-musllinux_1_1_x86_64.whl (5.9 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

unicorn_binance_websocket_api-2.1.0-cp310-cp310-musllinux_1_1_i686.whl (5.6 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

unicorn_binance_websocket_api-2.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.9 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

unicorn_binance_websocket_api-2.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (5.7 MB view details)

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

unicorn_binance_websocket_api-2.1.0-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.0-cp39-cp39-win_amd64.whl (812.2 kB view details)

Uploaded CPython 3.9 Windows x86-64

unicorn_binance_websocket_api-2.1.0-cp39-cp39-win32.whl (728.4 kB view details)

Uploaded CPython 3.9 Windows x86

unicorn_binance_websocket_api-2.1.0-cp39-cp39-musllinux_1_1_x86_64.whl (5.9 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

unicorn_binance_websocket_api-2.1.0-cp39-cp39-musllinux_1_1_i686.whl (5.6 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

unicorn_binance_websocket_api-2.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.9 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

unicorn_binance_websocket_api-2.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (5.7 MB view details)

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

unicorn_binance_websocket_api-2.1.0-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.0-cp38-cp38-win_amd64.whl (835.1 kB view details)

Uploaded CPython 3.8 Windows x86-64

unicorn_binance_websocket_api-2.1.0-cp38-cp38-win32.whl (746.2 kB view details)

Uploaded CPython 3.8 Windows x86

unicorn_binance_websocket_api-2.1.0-cp38-cp38-musllinux_1_1_x86_64.whl (7.7 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

unicorn_binance_websocket_api-2.1.0-cp38-cp38-musllinux_1_1_i686.whl (6.8 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

unicorn_binance_websocket_api-2.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.2 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

unicorn_binance_websocket_api-2.1.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (5.9 MB view details)

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

unicorn_binance_websocket_api-2.1.0-cp38-cp38-macosx_10_9_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

unicorn_binance_websocket_api-2.1.0-cp37-cp37m-win_amd64.whl (767.5 kB view details)

Uploaded CPython 3.7m Windows x86-64

unicorn_binance_websocket_api-2.1.0-cp37-cp37m-win32.whl (692.8 kB view details)

Uploaded CPython 3.7m Windows x86

unicorn_binance_websocket_api-2.1.0-cp37-cp37m-musllinux_1_1_x86_64.whl (5.1 MB view details)

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

unicorn_binance_websocket_api-2.1.0-cp37-cp37m-musllinux_1_1_i686.whl (4.9 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

unicorn_binance_websocket_api-2.1.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.1 MB view details)

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

unicorn_binance_websocket_api-2.1.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (4.9 MB view details)

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

unicorn_binance_websocket_api-2.1.0-cp37-cp37m-macosx_10_9_x86_64.whl (995.5 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

File details

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

File metadata

File hashes

Hashes for unicorn-binance-websocket-api-2.1.0.tar.gz
Algorithm Hash digest
SHA256 e5064c62c45841e8533c1ecbe18df1d655178903c94c145a4ead12ff2d5be014
MD5 84635c8805fd06ac187e976e5b762469
BLAKE2b-256 89369658cfcd7bec7e3a8df6ced86a52f1a65d1513859184723a29d0cfac7c73

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.1.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 be272e1c56c0e7e4ee457b0da4b6251edd9c70f663e7bec5126adb666f09fa22
MD5 54dc3988dc414c386913c2d973a34532
BLAKE2b-256 d5e73af09bad57d5375e7eef848f5d3725ae543195b71e23e6ded50654a2211f

See more details on using hashes here.

Provenance

File details

Details for the file unicorn_binance_websocket_api-2.1.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.1.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 c818e5330f489b138dee9268ac20e6bee60d1d190f377929fcc6946fbc376ee6
MD5 e3c2b4e12a85b97627983992b7dd1098
BLAKE2b-256 1ee7e3f6833a53427b630c7da1e4cea47e952c88956f0445adef91893e6f37b7

See more details on using hashes here.

Provenance

File details

Details for the file unicorn_binance_websocket_api-2.1.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.1.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9b6133a86497ba618a0dd899c129074ab18cf3913336d2b6db8a259b40535fcc
MD5 092f63e635c600faa5dd3f8dde040ec4
BLAKE2b-256 c3e913b855e2a47f256f5c0a38f16b945636a101e95ab13abc2dec94bf2276ca

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.1.0-pp310-pypy310_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 85733b3fa5f7e2df0acf196bf3342298ef449c2bbc8817f3b65a1e1eacdb926b
MD5 945810efb3800cc240e72882c1cab95a
BLAKE2b-256 eeffbe818ef822b9f4ab90eb1aafdfc76b208d13984a637d9fd0dd1e2b3de9e5

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.1.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 5a9c52de3b6d8aeec8b3f1a9486c5535aa14f6cf75ed74a99195adcbbb6eb582
MD5 c5668857c753c1b20a62793b73cd9a64
BLAKE2b-256 519c802255749026e03ef71c8601852dd6163381a787fa26fb93c2e7f2c44a31

See more details on using hashes here.

Provenance

File details

Details for the file unicorn_binance_websocket_api-2.1.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.1.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 6b8a3acf13a07281e8f2cffd4420c3567b70e15fb471dd93106e581b2ac93af3
MD5 11af135698811bb1d2eb61928c2ccb3d
BLAKE2b-256 d2ce208761066b015952081d6e0133153c03973b58eadfde291c1b7d22cfbd27

See more details on using hashes here.

Provenance

File details

Details for the file unicorn_binance_websocket_api-2.1.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.1.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e0c68e86f261c8f9ad6142a0b685ef1dedbb7f84c7909c49fe55b7aaeeac3468
MD5 f0ae7649dcaf2c97ba69ddb2dfec28ed
BLAKE2b-256 b520d6c7486f79140c716cf73c92419bdd00a19d4a37d37fb5ba48a466b12c34

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.1.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a1c7c681fc4e1a31ad64bbbb565469fbdf2c71a2bf0dbac15576e0344dbcf08f
MD5 67a4c7fad635e142799923bce04a17d2
BLAKE2b-256 29b84492a2556940ce0d7662b1ff75fda0b3a4fa11530d0cf0c04ff4b4152322

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.1.0-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 19e71709514f7015844b41ec9fc12bff65dfda9470b583b0df6a785ef3393229
MD5 3973fd0ea808eb2cd68d37999e316648
BLAKE2b-256 7f3def4dba9568a237b03e48c6e35dee9785c21d91c261f39a4bfe3c2abd4dd3

See more details on using hashes here.

Provenance

File details

Details for the file unicorn_binance_websocket_api-2.1.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.1.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 cbc1f915199b28a4e0d7497f7208c4d0f053c06497f87158fe98c2b1f2e67f36
MD5 e6efb9f4cbd4f34e05e9ad10a6958e0b
BLAKE2b-256 282a840a0854ba07f85e0aea384b7ba9cb20558787d5597eaf2d15d94bbe3e8e

See more details on using hashes here.

Provenance

File details

Details for the file unicorn_binance_websocket_api-2.1.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.1.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 39974ec59cbb4f9af7e8cad03a29f79d46f7551fd583c58773ae90d2c89c7c72
MD5 bf598303b9da27a9fd2d88128e470645
BLAKE2b-256 38607e4397327aec55fc4ec2993a277ac43b42bfd6836dc9f0bc4f4e8d2a0318

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.1.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4ee5d4d04dba73ed5b496d6f6ebed4cc70365c69228faa6e619a5b7cfbbe06d9
MD5 df13252c8b3a4be548f772dea62a71a6
BLAKE2b-256 e24094009475286c996448da8989a6cd9820905865499271f4f15de495fcec52

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.1.0-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 64eda342e13e08d349b2603939efacfafd933bd781598340e5f33855e60fbe80
MD5 0d88ac199f59eaa186d545be56a42ee4
BLAKE2b-256 283743a365a932b26569d42ba4dd88c45af7fcdf6a308b67238755925cb4e4be

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a7a1fed4ad649efddfdff0cf1a277a84afe8be09ccb9e1cee6689f4ebf27e299
MD5 38d17365864d1ae9ca27e5884646e7ec
BLAKE2b-256 4969146237c155e97f25d804ef8f51524e079f094a8f1a4c5bd008aa4df4fb0e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.1.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 e27d5a2dd5598a35cb2604207b2211aec5f4073b6462e6c486c21ef66a71e5c1
MD5 bd2b18d5632419d5d2efaaaeb79f42c0
BLAKE2b-256 03084480167d322ce17cc5a32b488c75042b387c421f5ff28e67684f82004316

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.1.0-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 99ee6b6aedc4b0f90d61a616d890e627ff0fe7fbb1604729522f5dfb5fbfef16
MD5 246ec385f8931f1f3d1d7bb2b3f18b7d
BLAKE2b-256 1cf19dfe910aeddc6b48dc46974fd09f824a228f96fac0e21f1fa6940bd0a490

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.1.0-cp312-cp312-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 fa4d3a5e792b32a132fda8b384f1b7c0b39a942aeb5ede1c1de8dcbb4d475da4
MD5 367ea5c7737b5f6e47444ff8b419dfa5
BLAKE2b-256 f9233522cc4e5f425509068503bec2c69d0b09de0ba0518caad70196cd62a724

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5ff1a037291fc844ee6299d40a6bbe072eb9df3f15f9ee6244b885e8feb4a3ff
MD5 1cfd8e253f963020c744396c0681ddeb
BLAKE2b-256 0a3a3a5af45e4ee1770d2b437b589373ee8cd51363aec26b1ce2b3368a0d4d63

See more details on using hashes here.

Provenance

File details

Details for the file unicorn_binance_websocket_api-2.1.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.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0f789698832ace02dc8465fe8bc485114654e0f77a13c8add1ac8a6b69e85d59
MD5 eca3610e1386b442858558cad6d96c3e
BLAKE2b-256 481d40a740145d0e4411a1ad39a9235d07d54c71eef51423c70812871321bb08

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.1.0-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ca7a12a6afb61f1118cc049bc95975ee3ad610503a30a8532734642d38f99815
MD5 d01ceddb0b74235007106304d527850f
BLAKE2b-256 e54b99c5a910f0ab2d9751af386a743c53390c193ed0a6392dd9c53f86073dd2

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 27a5ba4ba9f9b32fe3bfd6feb7495a5525b284a9b1dceb313fd4ca57a03a582e
MD5 cbf77a892341eae840a0756833d3b310
BLAKE2b-256 32dd7f28e3f7eda88901aadf69af155af10821f21fbbf7fb3f71de10946032c8

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.1.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 a3d84739c8d0b7ca9dd0cc5bce8ac63aa2651792189e12666148cf240d9effad
MD5 48a3b2ccd508cf7d0e3daca64c82781d
BLAKE2b-256 3a54916d711ce3c0509d6d7a5f51efd265ffdb692b3e03acee6f30a6684ab6e4

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.1.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 4bd9b2fe83325e1be7d8b505549e1b12537778423e19a4e76ee9322998d5b1cd
MD5 fab4c534ab8339014492e796c08150c0
BLAKE2b-256 1a1448193cd539137e9176a6ffa6b82a1319a7febb6c8cb8c107e4f6cd5df81e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.1.0-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 ea794d983dac2201f66ce43f8d82ed24a4082f3c55377f83a0a0e54826e8a7af
MD5 84305ed55d534510f25f78e6814bc157
BLAKE2b-256 83f2370ebab8c705ef85941d28891e48f50bb47f896218fdeab3ca545fef53ba

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ed3d9c9a896836d3d3da074453089c8895d60eb90bb480d120874a4238591bc6
MD5 01f20a9611d8bf4b1600fd3913f03cf3
BLAKE2b-256 1680ee973b03940d14661f1ef743b644df76ecf6d636c2c9cde71f1606d2baa8

See more details on using hashes here.

Provenance

File details

Details for the file unicorn_binance_websocket_api-2.1.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.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7f6841a4772b804ce46cc34287134040f822c9a9bbb3a24fd07fbb966aa134f4
MD5 8e6e090b46ea642b8130f7d94de2b60a
BLAKE2b-256 0ba866c1ec7f6a2dabe5c4584ffed1029543ffe8f06b004ac914b79a7ce8f6ba

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.1.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 72d0bf379639208fc41b514fdacb51a544602e419f22a3890ebbe8e53374aea7
MD5 45b6c58ff7b20762c5e075ce00b99ed4
BLAKE2b-256 e0eb09b2af3731b66496df9b7593c14a636fad5cabd20233f6148880c313d0f2

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 ee4d9dc14991b45c7db11517b42da175f96a938019a6814872af60c1750aa1e5
MD5 ddc60acee125852f691518abec1f313e
BLAKE2b-256 8490aa41fe6b4662accc04582dfdf463dc073df0477856a91f5c51ef03e536dd

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.1.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 c67049176a7642d34378ae126b4543582a1a89fb4fa9acb4c8f24ba530f6ee50
MD5 364c79c58dc01f4f83ddd598c917305e
BLAKE2b-256 97b8db19cccd111db2bda28a5eb5bf3ea73538cedb89782c7c7e50c0cf1744c7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.1.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 324704daa0897ba8bc0d123e5ea1837f06c3e335e8eceaa077bc7727c2b76e44
MD5 9715ecab4da9a13255d79dfe0f7335f4
BLAKE2b-256 a099b69de1867499bb19069f76a609ddcf2d763776a8138ee27f5636707d1617

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.1.0-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 46a60cf81b134c7238ac400690184ed76f5d360c60695934b840668a76349402
MD5 3e1f0f393dfa3c8349536738bf1a3fb4
BLAKE2b-256 c25de8e52c3587369ef22fdd4eb770faa9890edd0babfcac6f93e7fd4d4d92e2

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 152092c613113dd4aad2b97b1dcb6c9268bc33120aafe76b0af441945ffd2fc6
MD5 32fb21250bf59b27f58646966fd514fd
BLAKE2b-256 c1daebd7a29dbe8a5a0c98cea1913d5939360359a1f8d494d54350b83e0d9355

See more details on using hashes here.

Provenance

File details

Details for the file unicorn_binance_websocket_api-2.1.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.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c9b2cddf2bbc8c446964d04cf2906dcd64585307bdcf466389af160d7f9243c5
MD5 78f10c6ab03d0f010fc12a196531016d
BLAKE2b-256 879044c20f288cdeb90f8940c4afb98da771a04ea2cdb19fa39ea94e64c5e4af

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.1.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 acf8b03f55f02c2bf6f398d0d7870372db0e2ef2742b138380cacfce11717a33
MD5 8c2d74526d90e951b9a5a807af0ea2b4
BLAKE2b-256 f5a782990f87247500935faf57d715e837c8b51dd9aeab8b82565f0474c3d2d9

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.1.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 ce22ef4135abfc6a6bc7585d7028ac3cc2fe1b1e47b92ea59fb3884b0756dd42
MD5 a804dd0ecd08bbbca875828c9e89bd59
BLAKE2b-256 8cc5cd207167dc0bc9d61124829c1f2795baf438b398b329d211c3b840307ffc

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.1.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 b9dbe889b797c789ba9a875648fd3f54b5a7e6e48979db911212f6ffb13c8c3b
MD5 fbb1ddcb2a97a72ce1739cf08e55b29d
BLAKE2b-256 7a5c1a105e180dfa4061e9d63c3521dd52be49a2deb9501b2874c23dd1150c7a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.1.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 b29d82f5b888d28ed2562a01a1660b6d0a99e473bcc82c050d8bcd92d984d1af
MD5 e072f9d8897bf3719ae5413974b34187
BLAKE2b-256 aabbc3d64c2dbebad625cf4a0b25ecbef9f20d5e759d7e1f88bdcfec0e6adb13

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.1.0-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 f384843e907b283cf1a08ef3984f5e49f1487252f6b0b21a0d5bd8c4b3198ef4
MD5 7fc9c3fae594e14c2ca1681961d2d662
BLAKE2b-256 4c19a1d6b2930fe204d14cee94229c35d12c889fd66be33e58af22ce4cf01daf

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 75b6e8ce9fc4c6ccc6d3f049bf7e38169bc29117c42031b821dc982954a35094
MD5 36866b92789d6df2a7839b1363e0ad78
BLAKE2b-256 ad43965c1b5489e2c0dfa512f0df4c194405f4c301a3ae1dda81a6a44f09f71f

See more details on using hashes here.

Provenance

File details

Details for the file unicorn_binance_websocket_api-2.1.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.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 83339c24162f630756fd6359921e6cc20ef3872db55fc5154e62f3b3ac76b1d6
MD5 6384a136f75a9dd644f123b2e1412a03
BLAKE2b-256 63236c947d2da63d25c4560e342f13302531c3079ba5781a4952b38af0eec673

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.1.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d07c78010bec9e24a799d37afd0dd85eac3f4418d1e9d77053ce5e1d3286cad3
MD5 d43b15031e65583fe83d987fbfe3f1f4
BLAKE2b-256 cdb46c22899b6fc2064002464b9d19c44e8fb2dfbd9dd30c514a05895a23dd71

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.1.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 0662625c7e158bf8fce78fc3dd134f6e0c732bab153e561da9b3aaf5935bdcd0
MD5 6999a79ff25310431ce26afa40ec8b00
BLAKE2b-256 712aa6b7916614711aed2a9ad443e182a1d0c0419b4dde57868f5c76a036db4e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.1.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 214a5c975fa0efc41c099b6c6393912c1ed070d5e80a79a2279fd67d81a9966d
MD5 0ac16ca819fe9e29b45cd422b3439496
BLAKE2b-256 7fd3b4a97f4fb43713296e7d6152d2e0c6da91e8704ccb8201cb5d40144a258c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.1.0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 fada23855336ea4f967d5846555962d708025800ba0cbfd410997909bcaa4421
MD5 6952a1bf59e797106a064241447a2860
BLAKE2b-256 0aba261307e7f04ef6006f5aa455130a8d4ed7cc997738ffbecc664de4afddb0

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.1.0-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 1ad129b0616120eba03d74d8cdc23d89efd8883f91d82839b4616f63099d9a77
MD5 833bcd73c80c8834f66f6c932311d2b0
BLAKE2b-256 21373f8c1b41763b86e6eb38405a51d3c8de531d5821347c67b5126b7371e078

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 39a8171e946a90a2fad76e98f7be7aa80c833f8e7aaefa29ba251c4527749278
MD5 46097402724c154715bf8e170bbfd024
BLAKE2b-256 911cb7bac39ae29134711a88a2d8cc2230b511aee11a41d6f0761ca23f8bf91d

See more details on using hashes here.

Provenance

File details

Details for the file unicorn_binance_websocket_api-2.1.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.1.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0d249b5cfa003b2c8d5f960509cd62f6d188797e0b0244ef6c159336c8695c41
MD5 b8e534d13f291d290664e60add49fe36
BLAKE2b-256 7e82f8ea7826d490b377957745ddb853b78d9729f7a82c72fdcbb95fe39b415e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.1.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5c427bdc617e4bf947a7dfa22429847e61288d9a84c763f16a6f2151ffc887f7
MD5 03c277ab9e2cf8dc734ed3db9a0c05e5
BLAKE2b-256 fd54f72cbec8a98c0ab46f83766b206a8d099b4c2c0d1fd8db5e824a25f6f0a1

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.1.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 06b22d08effc03c97f780086503da4b88ccb59754b3a45719f516a8715d59ddd
MD5 e7c04a8bc4870bacfcf0a79d1447032c
BLAKE2b-256 0f05b4cdb7a708151848126c29be6d9807faaa0bd9567c3704a5ee31a6f042aa

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.1.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 8c1bea48c6347b7e241c336f879b3bd2bbe88da076151fa3db4818fb8758a690
MD5 a90ed46f19ca5f06b560e4817a491e98
BLAKE2b-256 142a7eb91596fdeb5dd39e2949aeff0eecf5ab1cb9eef6dbda4cefb1e9c01e15

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.1.0-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 4ec7e4e7a4593f100eb6fcd430ceadd0ec20ebe65e7e40c1412ad468556674fc
MD5 cc9eeb934d1129ad0b8f61387f039092
BLAKE2b-256 a3c10291da60eb523d4d48f0488090f091830205569d81398a77702cbb17aab8

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.1.0-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 d726815f3ad3b9262b3890dd6c62b2732ea69141d49cbca9920f20b1eb2b7dfa
MD5 715ed271637f9de4a6cde4346864e608
BLAKE2b-256 506ae4dc19b09f09fb57be5d30eedf6aa1903fac96684d948e46a12298bd4fac

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.1.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e651f2a0b8ae9acf92c27fd8e709ee38bbc2948bda31115b2d73f375303e67c1
MD5 183aabf18e843339a81f22d8de974a38
BLAKE2b-256 00b9920767c8dac8912f2ab14ebdd7593fffcfbca783a46b016ffe5e9581c532

See more details on using hashes here.

Provenance

File details

Details for the file unicorn_binance_websocket_api-2.1.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.1.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 98aa6cfe75378f566b7027e275d07481c37e39785ec4c4b7ee76dfe33f8d08a1
MD5 fcef981d172ce687d262532145167d1f
BLAKE2b-256 d1128cb5c3ba5b6999890a423dacd78bdba296ab42446ee9cde49bbcd3cb5049

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.1.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9cc86eecc31ccc564e0028ffa786d5f1f74dc32c9b90ca1bc4f4236e0b92b1c5
MD5 dcd92775ec467249126365d1196d8af5
BLAKE2b-256 ab4d0128e9419c8fecf46082f1f133bca210e52b157bdf749a3927520892db96

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