Skip to main content

A Python SDK 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 simple, fast, flexible, robust and fully-featured way.

Project description

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

LUCIT-UBWA-Banner

UNICORN Binance WebSocket API

Description | Installation | How To | Documentation | Examples | Change Log | Wiki | Social | Notifications | Bugs | Contributing | Disclaimer

A Python SDK 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 simple, fast, flexible, robust and fully-featured way.

Part of 'UNICORN Binance Suite'.

Receive Data from Binance WebSockets

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

from unicorn_binance_websocket_api import BinanceWebSocketApiManager

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

And 4 more lines to print out the data

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

Or with a callback function just do

from unicorn_binance_websocket_api import BinanceWebSocketApiManager

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

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

Or with an async callback function just do

from unicorn_binance_websocket_api import BinanceWebSocketApiManager
import asyncio

async def process_new_receives(stream_data):
    print(stream_data)
    await asyncio.sleep(1)

ubwa = BinanceWebSocketApiManager()
ubwa.create_stream(channels=['trade', 'kline_1m'],
                   markets=['btcusdt', 'bnbbtc', 'ethbtc'],
                   process_stream_data_async=process_new_receives)

Or await the stream data in an asyncio coroutine

All the methods of data collection presented have their own advantages and disadvantages. However, this is the generally recommended method for processing data from streams.

from unicorn_binance_websocket_api import BinanceWebSocketApiManager
import asyncio

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

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

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

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

unicorn_fied_stream_data = UnicornFy.binance_com_websocket(data)

or

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

Subscribe / unsubscribe new markets and channels

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

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

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

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

Send Requests to Binance WebSocket API

Place orders, cancel orders or send other requests via WebSocket

from unicorn_binance_websocket_api import BinanceWebSocketApiManager

api_key = "YOUR_BINANCE_API_KEY"
api_secret = "YOUR_BINANCE_API_SECRET"

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

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

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

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

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

All available methods:

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

Stop ubwa after usage to avoid memory leaks

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

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

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

ubwa.stop_manager()

stream_signals - know the state of your streams

Usually you want to know when a stream is working and when it is not. This can be useful to know that your own system is currently "blind" and you may want to close open positions to be on the safe side, know that indicators will now provide incorrect values or that you have to reload the missing data via REST as an alternative.

For this purpose, the UNICORN Binance WebSocket API provides so-called stream_signals, which are used to tell your code in real time when a stream is connected, when it received its first data record, when it was disconnected and stopped, and when the stream cannot be restored.

from unicorn_binance_websocket_api import BinanceWebSocketApiManager
import time

def process_stream_signals(signal_type=None, stream_id=None, data_record=None, error_msg=None):
    print(f"Received stream_signal for stream '{ubwa.get_stream_label(stream_id=stream_id)}': "
          f"{signal_type} - {stream_id} - {data_record} - {error_msg}")

with BinanceWebSocketApiManager(process_stream_signals=process_stream_signals) as ubwa:
    ubwa.create_stream(channels="trade", markets="btcusdt", stream_label="TRADES")
    print(f"Waiting a few seconds and then stopping the stream ...")
    time.sleep(7)

More?

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

This should be known by everyone using this lib:

Description

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

Use the UNICORN Binance REST API in combination.

What are the benefits of the UNICORN Binance WebSocket API?

Exchange Exchange string WS WS API
Binance binance.com yes yes
Binance Testnet binance.com-testnet yes yes
Binance Margin binance.com-margin yes no
Binance Margin Testnet binance.com-margin-testnet yes no
Binance Isolated Margin binance.com-isolated_margin yes no
Binance Isolated Margin Testnet binance.com-isolated_margin-testnet yes no
Binance USD-M Futures binance.com-futures yes yes
Binance USD-M Futures Testnet binance.com-futures-testnet yes yes
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!

Installation and Upgrade

The module requires Python 3.8 and runs smoothly up to and including Python 3.12.

There is no conda support until the migration to conda-forge.

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

The current dependencies are listed here.

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

Packages are created automatically with GitHub Actions

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

Both start virtual Windows/Linux/Mac servers provided by GitHub in the cloud with preconfigured environments and create the respective compilations and stub files, pack them into wheels and conda packages and then publish them on GitHub, PYPI and Anaconda. This is a transparent method that makes it possible to trace the source code behind a compilation.

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

Our Cython and PyPy Wheels are available on PyPI, these wheels offer significant advantages for Python developers:

  • Performance Boost with Cython Wheels: Cython is a programming language that supplements Python with static typing and C-level performance. By compiling Python code into C, Cython Wheels can significantly enhance the execution speed of Python code, especially in computationally intensive tasks. This means faster runtimes and more efficient processing for users of our package.

  • PyPy Wheels for Enhanced Efficiency: PyPy is an alternative Python interpreter known for its speed and efficiency. It uses Just-In-Time (JIT) compilation, which can dramatically improve the performance of Python code. Our PyPy Wheels are tailored for compatibility with PyPy, allowing users to leverage this speed advantage seamlessly.

Both Cython and PyPy Wheels on PyPI make the installation process simpler and more straightforward. They ensure that you get the optimized version of our package with minimal setup, allowing you to focus on development rather than configuration.

On Raspberry Pi and other architectures for which there are no pre-compiled versions, the package can still be installed with PIP. PIP then compiles the package locally on the target system during installation. Please be patient, this may take some time!

Installation

pip install unicorn-binance-websocket-api

Update

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

A Conda Package of the latest version with conda from Anaconda

There is no conda support until the migration to conda-forge.

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

There is no conda support until the migration to conda-forge.

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

Update

There is no conda support until the migration to conda-forge.

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/oliver-zehentleitner/unicorn-binance-websocket-api/archive/$(curl -s https://api.github.com/repos/oliver-zehentleitner/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.10.2) you determined here:

pip install https://github.com/oliver-zehentleitner/unicorn-binance-websocket-api/archive/2.10.2.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/oliver-zehentleitner/unicorn-binance-websocket-api/tarball/master --upgrade

Change Log

https://oliver-zehentleitner.github.io/unicorn-binance-websocket-api/changelog.html

Documentation

Examples

Howto

Project Homepage

https://github.com/oliver-zehentleitner/unicorn-binance-websocket-api

Wiki

https://github.com/oliver-zehentleitner/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.

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.

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

Uploaded Source

Built Distributions

unicorn_binance_websocket_api-2.10.2-cp313-cp313-win_amd64.whl (2.8 MB view details)

Uploaded CPython 3.13Windows x86-64

unicorn_binance_websocket_api-2.10.2-cp313-cp313-musllinux_1_2_x86_64.whl (10.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

unicorn_binance_websocket_api-2.10.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (10.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

unicorn_binance_websocket_api-2.10.2-cp313-cp313-macosx_11_0_arm64.whl (2.9 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

unicorn_binance_websocket_api-2.10.2-cp313-cp313-macosx_10_13_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

unicorn_binance_websocket_api-2.10.2-cp313-cp313-macosx_10_13_universal2.whl (4.0 MB view details)

Uploaded CPython 3.13macOS 10.13+ universal2 (ARM64, x86-64)

unicorn_binance_websocket_api-2.10.2-cp312-cp312-win_amd64.whl (2.8 MB view details)

Uploaded CPython 3.12Windows x86-64

unicorn_binance_websocket_api-2.10.2-cp312-cp312-musllinux_1_2_x86_64.whl (10.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

unicorn_binance_websocket_api-2.10.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (10.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

unicorn_binance_websocket_api-2.10.2-cp312-cp312-macosx_11_0_arm64.whl (2.9 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

unicorn_binance_websocket_api-2.10.2-cp312-cp312-macosx_10_13_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

unicorn_binance_websocket_api-2.10.2-cp312-cp312-macosx_10_13_universal2.whl (4.1 MB view details)

Uploaded CPython 3.12macOS 10.13+ universal2 (ARM64, x86-64)

unicorn_binance_websocket_api-2.10.2-cp311-cp311-win_amd64.whl (2.8 MB view details)

Uploaded CPython 3.11Windows x86-64

unicorn_binance_websocket_api-2.10.2-cp311-cp311-musllinux_1_2_x86_64.whl (10.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

unicorn_binance_websocket_api-2.10.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (10.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

unicorn_binance_websocket_api-2.10.2-cp311-cp311-macosx_11_0_arm64.whl (2.9 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

unicorn_binance_websocket_api-2.10.2-cp311-cp311-macosx_10_9_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

unicorn_binance_websocket_api-2.10.2-cp311-cp311-macosx_10_9_universal2.whl (4.2 MB view details)

Uploaded CPython 3.11macOS 10.9+ universal2 (ARM64, x86-64)

unicorn_binance_websocket_api-2.10.2-cp310-cp310-win_amd64.whl (2.8 MB view details)

Uploaded CPython 3.10Windows x86-64

unicorn_binance_websocket_api-2.10.2-cp310-cp310-musllinux_1_2_x86_64.whl (10.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

unicorn_binance_websocket_api-2.10.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (10.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

unicorn_binance_websocket_api-2.10.2-cp310-cp310-macosx_11_0_arm64.whl (2.9 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

unicorn_binance_websocket_api-2.10.2-cp310-cp310-macosx_10_9_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

unicorn_binance_websocket_api-2.10.2-cp310-cp310-macosx_10_9_universal2.whl (4.1 MB view details)

Uploaded CPython 3.10macOS 10.9+ universal2 (ARM64, x86-64)

unicorn_binance_websocket_api-2.10.2-cp39-cp39-win_amd64.whl (2.8 MB view details)

Uploaded CPython 3.9Windows x86-64

unicorn_binance_websocket_api-2.10.2-cp39-cp39-musllinux_1_2_x86_64.whl (10.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

unicorn_binance_websocket_api-2.10.2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (10.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

unicorn_binance_websocket_api-2.10.2-cp39-cp39-macosx_11_0_arm64.whl (2.9 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

unicorn_binance_websocket_api-2.10.2-cp39-cp39-macosx_10_9_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

unicorn_binance_websocket_api-2.10.2-cp39-cp39-macosx_10_9_universal2.whl (4.2 MB view details)

Uploaded CPython 3.9macOS 10.9+ universal2 (ARM64, x86-64)

unicorn_binance_websocket_api-2.10.2-cp38-cp38-win_amd64.whl (2.8 MB view details)

Uploaded CPython 3.8Windows x86-64

unicorn_binance_websocket_api-2.10.2-cp38-cp38-musllinux_1_2_x86_64.whl (10.6 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

unicorn_binance_websocket_api-2.10.2-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (10.7 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

unicorn_binance_websocket_api-2.10.2-cp38-cp38-macosx_11_0_arm64.whl (3.0 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

unicorn_binance_websocket_api-2.10.2-cp38-cp38-macosx_10_9_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

unicorn_binance_websocket_api-2.10.2-cp38-cp38-macosx_10_9_universal2.whl (4.2 MB view details)

Uploaded CPython 3.8macOS 10.9+ universal2 (ARM64, x86-64)

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.10.2.tar.gz
Algorithm Hash digest
SHA256 c31ea4f2dcfed941f9b6624a622c7b4f3d558492a987b0f7c57f9f239f7031c1
MD5 7831c8da6d626e5b295a94d957b58bab
BLAKE2b-256 9cf8eec8b668f5cdfdb7ea104e8893a26cf2cd93cfe8f288eaaf71c203825fa2

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_websocket_api-2.10.2.tar.gz:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-binance-websocket-api

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unicorn_binance_websocket_api-2.10.2-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.10.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 ee801db92458b8df920a540d5e32ec3fe4a7a875f4d5d5546d2c3427efe72a87
MD5 e21d1b1c34a26e40c113f37b42c3a727
BLAKE2b-256 96852cc24c40d0fe8803db1c77e3836ae261fd47683d60824f11b7df96ea90ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_websocket_api-2.10.2-cp313-cp313-win_amd64.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-binance-websocket-api

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unicorn_binance_websocket_api-2.10.2-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.10.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f20305376fd6b9a0fbff871a93f91046b709393a96acc5912e6cb23adab89c48
MD5 1426b86f063dcaf6f4f450d197dd90e0
BLAKE2b-256 09aaa7e9ed46becc9ada6bd3f0f35e44f8349164e9d299eb50431cec9a9188de

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_websocket_api-2.10.2-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-binance-websocket-api

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unicorn_binance_websocket_api-2.10.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.10.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 45e1ca15dd0a3df6851717e0356564fcc19f939e2d41910ef815c19a727c5971
MD5 8c442b3aca138dcb78de7ba5d028b6ad
BLAKE2b-256 7d1afcb66b665b6f9d3f161a665521a89d59fe828f0b84dc465d59e95e8da1d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_websocket_api-2.10.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-binance-websocket-api

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unicorn_binance_websocket_api-2.10.2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.10.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ba2dc6d7752a85071007b37e1548a1a4026c56c3656611534c1bac99ad3fec4c
MD5 7a1fc499dbd6e40b06936746e88cbcfc
BLAKE2b-256 a31e15deb2321cd4acfebbc482be1e127a2e2b225e1cf7a8415892d093fd8638

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_websocket_api-2.10.2-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-binance-websocket-api

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unicorn_binance_websocket_api-2.10.2-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.10.2-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 1a573a192940d92a0d3e421d8026a544af0d6d1e7a762140e5fac03a17d2efb3
MD5 0cf0c8eddf05006534d1214c6555c961
BLAKE2b-256 943bb69afaf95c6bed0edd2d4b37c8ad6ed4eb6b8db9326df41f27ce040d93bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_websocket_api-2.10.2-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-binance-websocket-api

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unicorn_binance_websocket_api-2.10.2-cp313-cp313-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.10.2-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 956e8da375065e296976971c5a3cb6a900909eccfb493d745f322f7dbb7158ff
MD5 f191fd510de110f3c287e70cc899766f
BLAKE2b-256 9d7a60e345a67f80ddd841d2896a3b97559b8fce336ba2b032f4486af949f8a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_websocket_api-2.10.2-cp313-cp313-macosx_10_13_universal2.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-binance-websocket-api

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.10.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 1da83dcf9fce1c83c2a7f65dece36ed240d3c02e42de7d9a362b5b565a461d6f
MD5 57b21694d4b8f1a63aec9099db098d89
BLAKE2b-256 532be9da10fdccc22386040d107c124c751b6cdee1b5d98091bb3b417d1fa48a

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_websocket_api-2.10.2-cp312-cp312-win_amd64.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-binance-websocket-api

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unicorn_binance_websocket_api-2.10.2-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.10.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 136129287592ab83c3fdfcfe7d96ef9dc9ab21063ed60a447ad642303ff27e36
MD5 a4cd82fca8dab7b87c6cd065112d42aa
BLAKE2b-256 e9c9c75a8bd613bc00a7e9e7aef26ffb349563491194e18e57f16350342c147e

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_websocket_api-2.10.2-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-binance-websocket-api

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unicorn_binance_websocket_api-2.10.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.10.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2a49a125dd8754d9de138533a3c46876eaeb2b1f0682f3ed1eef6cc22cc23956
MD5 3ddd184c9c76e69f7ea916573e66b6d7
BLAKE2b-256 2f4172c91de6a06d2ee4351ed304a5ef8b8d020f41ec0e89688d34713a9566b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_websocket_api-2.10.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-binance-websocket-api

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unicorn_binance_websocket_api-2.10.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.10.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 362fcb52ea70900d463b0ce002a280682d161b216002a9cda61daa4927c4c8b8
MD5 3840591bba78b1312cb578c389e896eb
BLAKE2b-256 d755ed39c289287a1f2e1bac44d9e031614acc55e8220967a5566716569ca592

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_websocket_api-2.10.2-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-binance-websocket-api

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unicorn_binance_websocket_api-2.10.2-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.10.2-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 32fdcd8b143ffad51237beea9981f66d6ad8c12a9138b3965fb398dc12e3fcc8
MD5 1dc9277a095a11d58e8bc3398c49a862
BLAKE2b-256 d639718b9a4da6a72acc96ca3852fd6bd072714df77c554dbc8b0da9499d18fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_websocket_api-2.10.2-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-binance-websocket-api

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unicorn_binance_websocket_api-2.10.2-cp312-cp312-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.10.2-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 7f1e4f628a35f59c8619615f6cdc51f748b9aa92f22c794ccf03493688603f02
MD5 d0dc81fdf1e1b1b411cf2f8ab1817bbb
BLAKE2b-256 e5fd2b636cfef6b26b7b23751f8ec94cb6f46f8819853dd36d791c4c1c13e576

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_websocket_api-2.10.2-cp312-cp312-macosx_10_13_universal2.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-binance-websocket-api

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.10.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e792b65e3c4b5ad5eb84f3bacdaffef47bfc5b3acb02a2d5c4a23a9fe36076c8
MD5 7939f49cf10f1cf4b0f2d123375d2d08
BLAKE2b-256 4111d97c92f37e495582a1836b3218e566df9a5a20daeb5ccdaf1cf0aaa58b6a

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_websocket_api-2.10.2-cp311-cp311-win_amd64.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-binance-websocket-api

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unicorn_binance_websocket_api-2.10.2-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.10.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9f9a6323c0c1bd425586da9ad0e84a90d4222bfd2c24d32d2a817a0dcbd366b2
MD5 b58397ba4aafb1c5ea3c76d6aeb7f404
BLAKE2b-256 5972e330c8c8d2d1ca31547fe709794a8ae0c6977b651e06f56d6804018cb900

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_websocket_api-2.10.2-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-binance-websocket-api

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unicorn_binance_websocket_api-2.10.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.10.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2c126fa834843ff8ebd9b94b7a09d35e282b993d07d58a97831fb9f785e2e17c
MD5 942b7b2d806c28c347b4e39f784187f6
BLAKE2b-256 303edc9c2b19ecda0a5ff1ee52062c0f297ff555c7ec690a688ed10a987f9bc3

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_websocket_api-2.10.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-binance-websocket-api

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unicorn_binance_websocket_api-2.10.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.10.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 98e2facca72eabc6441b4b2256af915df4f68b2d135f2076d2505cf4b2584494
MD5 0be1a0db2560c2ae27a2467440c1574f
BLAKE2b-256 dd61df3f3e286485dcbe209c8e069d288054768d6faa0f081164174bcbc2609a

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_websocket_api-2.10.2-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-binance-websocket-api

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.10.2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c81e56488136a7ac5fbf469b552949c6e85dc940fdf17759753ddf3a29a61932
MD5 90d69ff1c6c17d489ba15f065f74977e
BLAKE2b-256 e15f7f6c26e8cf51063317cca59700392d3873af3cd79b4907542b38c7a2be1b

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_websocket_api-2.10.2-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-binance-websocket-api

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unicorn_binance_websocket_api-2.10.2-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.10.2-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 8adaff4df9ddba079f16db111ac1f93c4ba4333930b2f07823670dd54172071b
MD5 198594e4d406b8e53b402c0ca2053010
BLAKE2b-256 f034a0df6d6d892e851cd95163288f61f0b6c4ab6c04e64e34725806f9384fac

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_websocket_api-2.10.2-cp311-cp311-macosx_10_9_universal2.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-binance-websocket-api

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.10.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 c16b5a87cce8b5699a1cb771cb497e6d148f29a76b442a1bc388fa22843ea820
MD5 e9ace833bd551cc06e34b2871e2d18ee
BLAKE2b-256 34135c0600cc7a6ef872187023fa36ab6f9b7eb551e5ad211d9f5ffab42c030b

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_websocket_api-2.10.2-cp310-cp310-win_amd64.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-binance-websocket-api

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unicorn_binance_websocket_api-2.10.2-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.10.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3887d4eef61372937ce7a1c8f8ddf8546c3510b12331819659c903f7b7b6c818
MD5 e9bacdddd66ee509e6e389254b84bbbe
BLAKE2b-256 2c3fc29d7b788c5414294c2694f2bc763c7114327bc8d6ee4dedd6e61377ad81

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_websocket_api-2.10.2-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-binance-websocket-api

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unicorn_binance_websocket_api-2.10.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.10.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 dda81030f0741bcd3c4729b01fec168e501cd2b035d2d9681334b654882d6049
MD5 2d4bc134662877d7b0d03c5b94713f71
BLAKE2b-256 e157001780898651b1b9c183ec8e75e292c6b18c74bd37a367451e1dd71c70d6

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_websocket_api-2.10.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-binance-websocket-api

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unicorn_binance_websocket_api-2.10.2-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.10.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9ff334a5a2355cffb74a3bc3791adcddaa8133a51c33e1009496a1d1d7772b16
MD5 5c81e8c8e5c303a459db629735b0d127
BLAKE2b-256 a2384e773926ced439e8fb03aee3afb496c174d594b4cf283d32c46751e8d9e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_websocket_api-2.10.2-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-binance-websocket-api

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.10.2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 aad827b248b3e4d54b2131247fb5a65abe2a0f7a695a520561a2e6ace291b849
MD5 8bafd3493fd1bd255c06df3cd802abbd
BLAKE2b-256 4245f73536ca1a21fddbcf9b90eecb6bbd6708382137cbab51229bb57bcbef3a

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_websocket_api-2.10.2-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-binance-websocket-api

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unicorn_binance_websocket_api-2.10.2-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.10.2-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 a3e5007b2e5f21619160e07aca2f6768769aa92cb9b05b7951bd96c51c9b39a5
MD5 6cccc2b2e1f4b3cfde07fae72bb881fa
BLAKE2b-256 71299f226353476f2f75d6444ab7df315d4c716a37fbb2dee33391bf38ca0c37

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_websocket_api-2.10.2-cp310-cp310-macosx_10_9_universal2.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-binance-websocket-api

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.10.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 700ba6e67466d5da8f898c39a615b50002c1f6065d2ce3356d1a24de3735fe3e
MD5 9c05266410f2f0228f6c60393e284233
BLAKE2b-256 b06047d4a67ca5a72226589c75fc06e3a70575f2dc677575cf4e8d0a0fdd58ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_websocket_api-2.10.2-cp39-cp39-win_amd64.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-binance-websocket-api

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unicorn_binance_websocket_api-2.10.2-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.10.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0a68c80610cd0cbff5fff4eba6bef89676a267fb5359b22be1379f73a1f1482f
MD5 9999577ccfc1ae5247dfcb26a78d2036
BLAKE2b-256 64c15cf66435b4a43c8e1737c91f1d6dbe5bdec5e1f892c85070d51552def311

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_websocket_api-2.10.2-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-binance-websocket-api

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unicorn_binance_websocket_api-2.10.2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.10.2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7520a43165a0ad78a0f719b1bcc37d151c1017c2fa37a3d713b41208adfb0f9b
MD5 e893774c383cd2fa9fdd294cf76b9a6c
BLAKE2b-256 2145bdafd62512a6237a8b4648035c1a15958d411d10ce12ea387c882d07ed29

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_websocket_api-2.10.2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-binance-websocket-api

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unicorn_binance_websocket_api-2.10.2-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.10.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 160ae1dc9dad31db092375ccb09dda29089aa5503cf1e41a215558b79185d5d6
MD5 8acab15a1dab967f3fa31be2f1dfbe06
BLAKE2b-256 34e74cf5ba1be60a5ae469ff26e216d04f2ebe76a6318b8e62d731a90083fb54

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_websocket_api-2.10.2-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-binance-websocket-api

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.10.2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 960227ee748eabdd9cba6542896d85d04f532139f1568a730565fa64d83479b3
MD5 bc0e200ac6b8329fc3802e134c139cbe
BLAKE2b-256 7f5587f1212a80568aaa09c50a883c4fa8398f8cde14d1362f1a85d5f196561b

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_websocket_api-2.10.2-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-binance-websocket-api

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unicorn_binance_websocket_api-2.10.2-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.10.2-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 dc6880ec2159af0db5531baa8d1d695858e8a9451da5b2b14a4f9a140be3f250
MD5 2436c489b37d2d3dc06343f06d7d6a89
BLAKE2b-256 15029511e63061c085de28e343517ec3dbb6e847ed21af9a23c2ead7d2c7ada2

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_websocket_api-2.10.2-cp39-cp39-macosx_10_9_universal2.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-binance-websocket-api

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.10.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 72f9b88b3ad4787b3510384b91f282847744e91b1bb6c64e876d76b34ee284b1
MD5 a5a56de9faa363f89719d6350408631b
BLAKE2b-256 4747c6d242ad3f662156a03b4833c82eada2c1205111ec544583c91bd4c12c38

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_websocket_api-2.10.2-cp38-cp38-win_amd64.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-binance-websocket-api

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unicorn_binance_websocket_api-2.10.2-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.10.2-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 53ea768bf4dc3ba65a39f597a3dbe25141acbb79576c8ca7286049d89db4ac8e
MD5 2d16cd4632bf3f8b93e3a3ab58b6980e
BLAKE2b-256 03727ad6874249341c240e849ab696e297fcb28af59b5daf5959882d510521ed

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_websocket_api-2.10.2-cp38-cp38-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-binance-websocket-api

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unicorn_binance_websocket_api-2.10.2-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.10.2-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ea6eda1675916eea9690ca05fe587f76c6f7df82f3343d11dea11d743bddd167
MD5 be49bf27a1317c71481ce4c896f621a3
BLAKE2b-256 988e6c89569016fbf34e7b199e148f9a9dd13a90b2d48ec52fbd7d67bda3aadb

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_websocket_api-2.10.2-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-binance-websocket-api

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unicorn_binance_websocket_api-2.10.2-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.10.2-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 961bf1681818607813ad972d6aeb5b6ec53995342ac5d195fa1f42a4d0d1b819
MD5 97e55a581f75bba0beb3e4cb61a39ec2
BLAKE2b-256 4dba449a3878b57794de64aeca21970bd184777bcc11acffa1a2d5c2975f93ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_websocket_api-2.10.2-cp38-cp38-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-binance-websocket-api

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.10.2-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a302ee10a7f5c4b8303731747d77996a6e1a6817a4cc1febec818d0f8eeecdc3
MD5 55284c9d3088f1501f2d9b71314d3441
BLAKE2b-256 56cf99a2360c3fbc16d22039d1b380789aab5e85a05db1d7f23231d61cd3fda2

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_websocket_api-2.10.2-cp38-cp38-macosx_10_9_x86_64.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-binance-websocket-api

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unicorn_binance_websocket_api-2.10.2-cp38-cp38-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.10.2-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 bc3a1663523d86eaf939141a51d8ae92b01f7e7f4191ce723f070b95f1f507c4
MD5 362a27b696a57a6ef1edf7d304d8cb02
BLAKE2b-256 4ca5d8572fdb567ef79ca0952975211c551f56301833d4db2009bf76f7355793

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_websocket_api-2.10.2-cp38-cp38-macosx_10_9_universal2.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-binance-websocket-api

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

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