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

⚠️ Security Warning: There are currently fraudulent repositories (e.g., under the user gesine1541ro7) impersonating this project to distribute malware. Please ensure you are only using the official source: oliver-zehentleitner/unicorn-binance-websocket-api. Read the full technical analysis and campaign details here!

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

UBS-Banner

UNICORN Binance WebSocket API

Description | Installation | 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, com-vanilla-options+testnet, us, tr) 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.

Receive private UserData Streams

Create a private !userData stream to receive account updates like order fills, balance changes and position updates in real time. A valid api_key and api_secret is required.

Set the credentials globally on the manager

All streams created on this manager inherit the credentials:

from unicorn_binance_websocket_api import BinanceWebSocketApiManager

async def process_userdata(stream_data):
    print(stream_data)

ubwa = BinanceWebSocketApiManager(exchange="binance.com",
                                  api_key="YOUR_BINANCE_API_KEY",
                                  api_secret="YOUR_BINANCE_API_SECRET")
ubwa.create_stream(channels='arr',
                   markets='!userData',
                   process_stream_data_async=process_userdata)

Or pass the credentials per stream

Useful when running multiple !userData streams with different API keys on the same manager:

ubwa = BinanceWebSocketApiManager(exchange="binance.com")

ubwa.create_stream(channels='arr',
                   markets='!userData',
                   api_key="API_KEY_ACCOUNT_A",
                   api_secret="API_SECRET_ACCOUNT_A",
                   stream_label="ACCOUNT_A",
                   process_stream_data_async=process_userdata)

ubwa.create_stream(channels='arr',
                   markets='!userData',
                   api_key="API_KEY_ACCOUNT_B",
                   api_secret="API_SECRET_ACCOUNT_B",
                   stream_label="ACCOUNT_B",
                   process_stream_data_async=process_userdata)

Per-stream credentials override the manager defaults. Isolated Margin additionally requires the symbols parameter:

ubwa_im = BinanceWebSocketApiManager(exchange="binance.com-isolated_margin")
ubwa_im.create_stream(channels='arr',
                      markets='!userData',
                      symbols='btcusdt',
                      api_key="YOUR_BINANCE_API_KEY",
                      api_secret="YOUR_BINANCE_API_SECRET",
                      process_stream_data_async=process_userdata)

See also example_multiple_userdata_streams.py.

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 European Options (+Testnet), Binance US and Binance TR and supports sending requests to the Binance Websocket API and the streaming of all public streams like trade, kline, ticker, depth, bookTicker, forceOrder, compositeIndex 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.

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 European Options binance.com-vanilla-options yes no
Binance European Options Testnet binance.com-vanilla-options-testnet yes no
Binance US binance.us yes no
Binance TR trbinance.com yes no

If you like the project, please star it on GitHub!

Installation and Upgrade

The module requires Python 3.9 and runs smoothly up to and including Python 3.14.

PyPy wheels are available for all supported Python versions.

conda-forge note: Conda packages are provided for Python 3.10 – 3.14. Python 3.9 is not available on conda-forge — it was dropped from the global pinning after reaching end-of-life in October 2025. For Python 3.9, use pip install.

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 created, the Build and Publish GH+PyPi workflow spins up virtual Windows/Linux/Mac runners, compiles the Cython extensions, builds the wheels and publishes them on GitHub and PyPI. The conda-forge feedstock conda-forge/unicorn-binance-websocket-api-feedstock picks up the new PyPI release automatically and builds the Conda packages on its own infrastructure. 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

conda

conda install -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/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.14.0) you determined here:

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

Change Log

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

Documentation

Examples

Related Articles

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 get_monitoring_status_plain().

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!


AI Integration

This project provides a llms.txt file for AI tools (ChatGPT, Claude, Copilot, etc.) with structured usage instructions, code examples and module routing.


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

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

unicorn_binance_websocket_api-2.14.0-cp314-cp314-win_amd64.whl (2.8 MB view details)

Uploaded CPython 3.14Windows x86-64

unicorn_binance_websocket_api-2.14.0-cp314-cp314-musllinux_1_2_x86_64.whl (10.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

unicorn_binance_websocket_api-2.14.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (10.3 MB view details)

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

unicorn_binance_websocket_api-2.14.0-cp314-cp314-macosx_11_0_arm64.whl (2.9 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

unicorn_binance_websocket_api-2.14.0-cp314-cp314-macosx_10_15_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

unicorn_binance_websocket_api-2.14.0-cp314-cp314-macosx_10_15_universal2.whl (4.0 MB view details)

Uploaded CPython 3.14macOS 10.15+ universal2 (ARM64, x86-64)

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

Uploaded CPython 3.13Windows x86-64

unicorn_binance_websocket_api-2.14.0-cp313-cp313-musllinux_1_2_x86_64.whl (10.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

unicorn_binance_websocket_api-2.14.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (10.5 MB view details)

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

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

Uploaded CPython 3.13macOS 11.0+ ARM64

unicorn_binance_websocket_api-2.14.0-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.14.0-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.14.0-cp312-cp312-win_amd64.whl (2.8 MB view details)

Uploaded CPython 3.12Windows x86-64

unicorn_binance_websocket_api-2.14.0-cp312-cp312-musllinux_1_2_x86_64.whl (10.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

unicorn_binance_websocket_api-2.14.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (10.5 MB view details)

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

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

Uploaded CPython 3.12macOS 11.0+ ARM64

unicorn_binance_websocket_api-2.14.0-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.14.0-cp312-cp312-macosx_10_13_universal2.whl (4.0 MB view details)

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

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

Uploaded CPython 3.11Windows x86-64

unicorn_binance_websocket_api-2.14.0-cp311-cp311-musllinux_1_2_x86_64.whl (10.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

unicorn_binance_websocket_api-2.14.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (10.7 MB view details)

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

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

Uploaded CPython 3.11macOS 11.0+ ARM64

unicorn_binance_websocket_api-2.14.0-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.14.0-cp311-cp311-macosx_10_9_universal2.whl (4.1 MB view details)

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

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

Uploaded CPython 3.10Windows x86-64

unicorn_binance_websocket_api-2.14.0-cp310-cp310-musllinux_1_2_x86_64.whl (10.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

unicorn_binance_websocket_api-2.14.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (10.2 MB view details)

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

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

Uploaded CPython 3.10macOS 11.0+ ARM64

unicorn_binance_websocket_api-2.14.0-cp310-cp310-macosx_10_9_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

unicorn_binance_websocket_api-2.14.0-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.14.0-cp39-cp39-win_amd64.whl (2.8 MB view details)

Uploaded CPython 3.9Windows x86-64

unicorn_binance_websocket_api-2.14.0-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.14.0-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.14.0-cp39-cp39-macosx_11_0_arm64.whl (3.0 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

unicorn_binance_websocket_api-2.14.0-cp39-cp39-macosx_10_9_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

unicorn_binance_websocket_api-2.14.0-cp39-cp39-macosx_10_9_universal2.whl (4.1 MB view details)

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

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.14.0.tar.gz
Algorithm Hash digest
SHA256 e6666c6176cbeb371901e228a21e377b30ac149efb8bbea8ccfb22d89f8137a1
MD5 fb114b6f6c0337a7284fb654e6881365
BLAKE2b-256 06858bc73a0e6e4f390d08e1062650e867d3143e8faa7b4981a654879a5dd3f5

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_websocket_api-2.14.0.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.14.0-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.14.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 81fc3ff790ab33ceac107a8056bbf09bd6fd7d1fb81c1d6c1bbbbc7c4e2ed3ea
MD5 dd395b3be28b2db6c199f60bc611c3fd
BLAKE2b-256 cf5c23e993707757a0272bc34dbcb35b4c0616d04d0a154abf0000a437e79128

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_websocket_api-2.14.0-cp314-cp314-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.14.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.14.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d3d51a47ffe601b01867a66d9119f915fc8353b41457256c0d48233968adc7a4
MD5 afafaadb2c0a4a53155dc94e6db08814
BLAKE2b-256 1dc656373f67b04d9f24479fb2e694b35fdcc87f5fa3c13e0c8e96ae5db20964

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_websocket_api-2.14.0-cp314-cp314-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.14.0-cp314-cp314-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.14.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ba7a2b213888d6a102a8610183d94c50ba7dfceffd7164c1701fddcb59382201
MD5 d69ee74bcac0b8c78538c856e1127058
BLAKE2b-256 d7632d4e32b35ff63cd7903bf2968b13cb7bfc699984d08d7b3f90b468a1091f

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_websocket_api-2.14.0-cp314-cp314-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.14.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.14.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9e78fe90405640145026cfd47e0ab8dbf6ca955faa8053b4e44aad1fafaeb026
MD5 0719e1b88e139152f539e63ba836de03
BLAKE2b-256 d9b4588891272dd0b87cb212afe88d0312bc423f5df8b36c4017867ad8f07061

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_websocket_api-2.14.0-cp314-cp314-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.14.0-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.14.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 3a5541e9f17f1946eb71de6e3d7535d228d1ffdf39a6ac180871d494b27ce1d7
MD5 beb73db76dac2e5dbb6450087315b425
BLAKE2b-256 2bb762c094f128a8ac5ad0f30fae818c9ed03c43f7dc8d9317bcdc35bac23b3d

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_websocket_api-2.14.0-cp314-cp314-macosx_10_15_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.14.0-cp314-cp314-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.14.0-cp314-cp314-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 99e8ed7b39dab54b4f838891e2307f5fee7fc9ab274d53b74ef04be2f400e5ab
MD5 e2fe9516a00281bbddb1166c3a223d48
BLAKE2b-256 a87890f682c799b4240ccd891c3fbeeb61eda16f6d291eeb4a81d18e02e3d06e

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_websocket_api-2.14.0-cp314-cp314-macosx_10_15_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.14.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.14.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 743c8ad6e5554fd991c7877e94ee114e919abe8a4d0a51f46546804513dc7f2d
MD5 33a07f582081895f7a71c7400857a4c8
BLAKE2b-256 64ba60ce49aadf466946bb53118adb1b5e817dc0545e6e24744661dcf7fc69c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_websocket_api-2.14.0-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.14.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.14.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d3365d1f195935e73935726d4f3f7ec8b010c8a0d3a56d99db9b6541083be877
MD5 c2c70218e8d30070f5364eff4bbea37b
BLAKE2b-256 3953c7e91a1127c19cbd508470e301b6c3d348dd931c7c035b868469d30b4775

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_websocket_api-2.14.0-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.14.0-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.14.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 25ddb6c4044da67a3f13ae1a3e4e85a2e2bdb7fa9e4bf639f29d3d729d4a1720
MD5 d5c4fb36be8f77649d8a3a9baf6c902c
BLAKE2b-256 125d30604218372fb12d631351874038004650524e329264f7c6b878fb6c9676

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_websocket_api-2.14.0-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.14.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.14.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b91ae71a7caaf7a7cfd18ac7629864a2823ebb2fbc12d781cb424b38e2deb986
MD5 6839ada86ca46740a29b5cbcabbe771c
BLAKE2b-256 b51c36df52194e7664edf67f3260dc87853ced1bea7dd6206f27694eb94e244e

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_websocket_api-2.14.0-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.14.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.14.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 812721edb4e664a228da89a42e68cc14abbbbb2cb8de260e3e22c9c5392db5dc
MD5 933be82700432d75cbde545dd31a7082
BLAKE2b-256 744ba009119aaa97f5aa730233686b89401b365e49e7345489a8e75d94aa6e15

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_websocket_api-2.14.0-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.14.0-cp313-cp313-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.14.0-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 5bf8d12a7c7c56823e71bf6b98704ea7294599bda46c140625205ed1e9e7aaee
MD5 66fd064f40b377b2bca0dbdb175d02fd
BLAKE2b-256 e0c9f1af5f8a73870112bbba2cbe601bc2402f7e5e0a19c4a90266a11592b9c5

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_websocket_api-2.14.0-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.14.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.14.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 3c522b94be7e515f069eac58e70b7d49feb6909a2fb9addd061fbf75b5985901
MD5 b944b5bf6c3f048f15d69436d3fd7db8
BLAKE2b-256 930814b46be6da1d97dfac67489efea60acba5cf66112d424f9dba4201505e6b

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_websocket_api-2.14.0-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.14.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.14.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 42cdc70f1d0ff095b15bb490efa8eb7c375272a0db8841ef25d8ee5f6c3ff15e
MD5 cd371a93b26ed64c8a8c22e8f3541ac2
BLAKE2b-256 1434592e8f00ba6fdf82ac99d2d12d06d173b52f29c5cd30489b1e33ce1c1b42

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_websocket_api-2.14.0-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.14.0-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.14.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8a70f81d0e1825c5ce4a04e1ca78871a4bebebffa579f33d1eb157bb70bd19ef
MD5 5f7a1b8ab8e1288c7f9708fb2f1a7d2d
BLAKE2b-256 9532cdaf815aafa11bc45844e9eac5ba7b9c855a6ac120f9c4e35bf03f49b7f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_websocket_api-2.14.0-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.14.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.14.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dbd76b498743279f45641915a30d18de7084aee9a22520c1a652848740a39ed8
MD5 120198a71d765543f762808fa2af2527
BLAKE2b-256 c4add41dc287b57f2d3aa5c10f945b5c0897aa57140bc0b8fb257c9989c6bfe8

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_websocket_api-2.14.0-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.14.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.14.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 f3c3d5785980ac45d63ef726b8bfb543f4a97a1dcdeeca9ba8b86e0ebf738e0c
MD5 b789f8fc4069308f26b3823acd40b61b
BLAKE2b-256 ce5ddc88d382c88bd3486aae755402bbfef84e2cb3224068e06f9f5526bec0c3

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_websocket_api-2.14.0-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.14.0-cp312-cp312-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.14.0-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 89fb902ddcc2c8ac047c46377d63d768c88eea0492384046dfbdc6b2432ee513
MD5 91fe3da9e9c22be0dc54d4126ed27f4a
BLAKE2b-256 019f7d7c71279074586bd47ba6b26a90843f85531b40c077020446f48d46af0d

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_websocket_api-2.14.0-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.14.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.14.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 207810f1da828bdb55ec234f047454729c1c1306b17f4746f567c68b0e3485e6
MD5 d4a8d2466cbaacd6b040c24b78decf74
BLAKE2b-256 c9b9d89afbd9ea4130cc63f234afb5d0b6af992c8c6a616cce60c65a7a2772fe

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_websocket_api-2.14.0-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.14.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.14.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a3f8454c6560bb293aa7af23a5df67f180bf45bf31bd56ea68c9747b25702012
MD5 ef517b58d198aca8d0b51ab5cdfb7385
BLAKE2b-256 a65e60e4029649c27f9859d2f585dbe9cf7bbc524699f1fd4a3e130a363c810a

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_websocket_api-2.14.0-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.14.0-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.14.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ae4b8de22fb6900af7aab5a4315067ea47701ac5fe30e92fae1062168fbc5af6
MD5 56a0f528a78d3d9963c2a7b3b824ab05
BLAKE2b-256 c47f836f42f353711a7bcbdaddf9c373407c44ad0edbdaba149fee2281f1b795

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_websocket_api-2.14.0-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.14.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.14.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1d3eea69a9d9508b1615a794738859cd5660f453ead12a0e5f72c388b8c9c41a
MD5 141e11a9907b714cb5f57e3671d23e5b
BLAKE2b-256 d945fa346358575987d4b6264ec23fc77b4df06e2617d4f55534a9f2504b1ba9

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_websocket_api-2.14.0-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.14.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.14.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6da9a499cc1691451794e136f4a8e4132e2efe8d1c3ddf01dd46fe086c489baa
MD5 ff13108c74865ffa0bffa538d282999c
BLAKE2b-256 2f3378a33f3a84bf1c6628473b9984c14df9bc16283eba69ab8b5435317c40be

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_websocket_api-2.14.0-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.14.0-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.14.0-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 13215815ec105d5311ef641a2653a5e0db7dd0d286781003c6cdf727cc5729f3
MD5 88ef5c78a379f4a544123980f8058669
BLAKE2b-256 3ec3df08acb1933edd6567a1a83a83a353c3edf3b81325cfbed19c5ba866893c

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_websocket_api-2.14.0-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.14.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.14.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 fc32bf6e07b35e0b99e2d6fc4c53166136ea2fe4c97f3f522d5f5ecec42a2daf
MD5 420d9bf84159e14b7733fe8d04ef91b6
BLAKE2b-256 c6cc1a36a98bb217a386e9692a596f665087b2489a37d3085f8270f414c9854a

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_websocket_api-2.14.0-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.14.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.14.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 be072b1bb9782f2f6d062c6aaac350b4d5e3b120ba3e57c017e85b25bffc62e5
MD5 ecbc1ecb3e82c8c007306477d49244ee
BLAKE2b-256 7838cad8605ca76d1afc1042065f6bab07a527398078232b2ae5325dc65a1dd9

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_websocket_api-2.14.0-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.14.0-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.14.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6bd16eae1fecc740cd7dd8faa4798ca5ad6a24b067506adb119deab48155aa5a
MD5 bc3dd9bdd3ad58fd7d5f415bc1716da1
BLAKE2b-256 471b74cac72883c37ae927fd2b5a6e2c4a1231b97078d5c39d8c27f2896a3285

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_websocket_api-2.14.0-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.14.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.14.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9f9506feb52817a572ea4115587e8adc8c452bc9423f09c2ff1d72a225d1fbe8
MD5 c3dfc2b8373e98977c543a9434b17900
BLAKE2b-256 b71dccc2643a5fc2f6079c42c3507622451f72b647919e52269adb35d2842ab0

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_websocket_api-2.14.0-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.14.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.14.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 49795c0bb9ca368f2ee8314d119da63265d54345bc76b41ac42a5e269085eebe
MD5 c9663ad0af7f64fbb4e4cb7773ff7b59
BLAKE2b-256 d8e06c5b05dd80be2683cc700611e6e9bd5a7235ca02b50a4f5777e16f0f635f

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_websocket_api-2.14.0-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.14.0-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.14.0-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 865a84b55f9f973fb61c378634538ed7967e87125b271186d7256ac1bee865a1
MD5 6e8a060ca58e69a1211c17f95eb5bbf1
BLAKE2b-256 8c61fce12c1d5b9acfc495180261cacc493a8ec0a3b6e525a8af547519e2ba1b

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_websocket_api-2.14.0-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.14.0-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.14.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 fb084135176950de55b9a7daccc04e536eb501fa46d57206954b2a04c5283470
MD5 336fcaf453a22f48d82efcee1664dc2a
BLAKE2b-256 273300645fa12f55f64945035ba66311a78727d95d6a6a08ac4902d21b6d74b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_websocket_api-2.14.0-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.14.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.14.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 120eb9711d89969a85e261c9a8262e43c054d5aad94188ade35e9adae9905809
MD5 abbedf8719bebd097c93be0fbfc8f6fa
BLAKE2b-256 ec2c0b55647a6789562b798f99f4319e4b6efaa60045a8b61bb66866146ec5f3

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_websocket_api-2.14.0-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.14.0-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.14.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 324d76a1ee32af00e626a704a3c8f577ee345b039e3ee9ee24a9b5ba7d85bc8d
MD5 0bfe983f4c002c503d43b9643c896791
BLAKE2b-256 476775382fa4551a87dbfa680c6378fa7d4c0b74bb8ce16a7a41aa145d02e916

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_websocket_api-2.14.0-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.14.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.14.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b19c9644bc52255d6018b1084a35c7654e236a7d2b32e87f49aeb7792d80fbf0
MD5 e521f7127c04ce6ee401d55d2ad4e3ff
BLAKE2b-256 86a018b3fa7d229edd3d54efcba0e24900a41e7a68fce90e710585893d3c4824

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_websocket_api-2.14.0-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.14.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.14.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e1111a463184d33632981e4444f24437a81f19bc7ab0defc8de5db5d2c4c3270
MD5 4c433dbcc5562cd4e5f7f0f9f131355a
BLAKE2b-256 f0b80a7218ae97f23d196a7676c862f4093ac6ee0235aed114ba522788d1ed57

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_websocket_api-2.14.0-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.14.0-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.14.0-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 a9f123d5dffe27f22516ed35beb862820f98c00b6d50d8253f454e2d3b7853ab
MD5 0413c54d6f6512fd6c24a4c130601313
BLAKE2b-256 4318514f7efae767409b5512814d8fe6cb2a68f362424908cc403380ab790678

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_websocket_api-2.14.0-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.

Supported by

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