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

pip install https://github.com/oliver-zehentleitner/unicorn-binance-websocket-api/archive/2.13.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.13.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.13.0-cp314-cp314-win_amd64.whl (2.8 MB view details)

Uploaded CPython 3.14Windows x86-64

unicorn_binance_websocket_api-2.13.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.13.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.13.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.13.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.13.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.13.0-cp313-cp313-win_amd64.whl (2.8 MB view details)

Uploaded CPython 3.13Windows x86-64

unicorn_binance_websocket_api-2.13.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.13.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (10.4 MB view details)

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

unicorn_binance_websocket_api-2.13.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.13.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.13.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.13.0-cp312-cp312-win_amd64.whl (2.8 MB view details)

Uploaded CPython 3.12Windows x86-64

unicorn_binance_websocket_api-2.13.0-cp312-cp312-musllinux_1_2_x86_64.whl (10.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

unicorn_binance_websocket_api-2.13.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (10.4 MB view details)

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

unicorn_binance_websocket_api-2.13.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.13.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.13.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.13.0-cp311-cp311-win_amd64.whl (2.8 MB view details)

Uploaded CPython 3.11Windows x86-64

unicorn_binance_websocket_api-2.13.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.13.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.13.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.13.0-cp311-cp311-macosx_10_9_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

unicorn_binance_websocket_api-2.13.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.13.0-cp310-cp310-win_amd64.whl (2.8 MB view details)

Uploaded CPython 3.10Windows x86-64

unicorn_binance_websocket_api-2.13.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.13.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.13.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.13.0-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.13.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.13.0-cp39-cp39-win_amd64.whl (2.8 MB view details)

Uploaded CPython 3.9Windows x86-64

unicorn_binance_websocket_api-2.13.0-cp39-cp39-musllinux_1_2_x86_64.whl (10.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

unicorn_binance_websocket_api-2.13.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (10.1 MB view details)

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

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

Uploaded CPython 3.9macOS 11.0+ ARM64

unicorn_binance_websocket_api-2.13.0-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.13.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.13.0.tar.gz.

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.13.0.tar.gz
Algorithm Hash digest
SHA256 11715eb62574609558153271628d646180b42693050e72fbc2b4ad1545160255
MD5 7e281414adc380a160262486e1f8e252
BLAKE2b-256 880541f75b24c095839724ab8f0983dff9b834c2cd6c76049767f998500e7ae1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.13.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 3afea96c01075bbba4e3a1eb98d8a5df4188ce0109bf27b2c1d93e36aca5cf26
MD5 0a82cf752fb968c4b23072fee59f956a
BLAKE2b-256 5c5c67fc5b83dc747634c39acae4eafbbd51d856f8fece7e4c01328e3d29f035

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.13.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dc1b0eba9474d6d42a17a73a8cb8bf2a24147f2523da0367b3b6964ba7a122d0
MD5 ea1cd7343f599c03f3e8364faba684dc
BLAKE2b-256 10d31ec0a3803014cd44d0d618f686b87da7866530dd7f15c9d2438a02355c28

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_websocket_api-2.13.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.13.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.13.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f3e75a3508a44036be893d337eb5ac510fc4de3362338d11a21ef7e6ebf88e43
MD5 99deebbf5ccfe92d89ebbd320c89ed96
BLAKE2b-256 4ebe17cb2a6529aedc552b15cc2a6235653a2aed1bd0e1f84e03aa91d2988cde

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.13.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9b1151fb89dd8ce58a26058340bd38f947e27ecbab796362b0733cd35de1996a
MD5 916e0218b534f858a3071c56ad34c42a
BLAKE2b-256 57a7d888935fead00d430052496a0f03ad9b7a74e664de725522ea17216b1adf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.13.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 4fcbe49be59c1958f24e0c296bce7940b68aceef00dfaa65216f17b1b4ae4ddf
MD5 75e3e7ee6e81c6a7a3dae0c0a5e1658c
BLAKE2b-256 bcdeb9e89f5e6ee7015898aa00bcb160f5d78bae6d723d39881f0eab875425b5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.13.0-cp314-cp314-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 02ee896e20d8f9f51f7759cb948ca7f58803e426e5e28456ec7b879767c440c3
MD5 e81ce99f05c09b17ba966ca11cdea251
BLAKE2b-256 7e4f950fdec798789b3f0ae942db0751042bd46eb959ebd8dd198605228e6b03

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_websocket_api-2.13.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.13.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.13.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 03a94b4c3de70678739ca629649a8b880fcd62f8efabedb8c57365952591a811
MD5 12286f9bcc3a98ced7ea819c85888c08
BLAKE2b-256 72a394ae8bcc90f6fdc18ea9662c0dde4614aa090034f00af3d9f00b9369cb5b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.13.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 757861f752a8351939b801da72cbeda82c51b42a0253292a43d94d611bf24574
MD5 b6702255762041c89cf0e70c231a830d
BLAKE2b-256 3ec09b62eebde731b5c8e0a350370a75d9fdbcbc18cda7370c545d053a27f40f

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_websocket_api-2.13.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.13.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.13.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 813fb018b8925234dfa98224869ed1603744d1af691f5670d45f68432c1607ce
MD5 c5c6154cc43f913edb3848f011f65217
BLAKE2b-256 3be12d8d16ba784b7da5ac30917d42ce24a3247801bdbc2a9384d25a2bb589f4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.13.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 102b34f66330d3345d36c62e608846b69411457e8e9182384c390be1587de8ef
MD5 b61077935eeddba50dcf60a3fb65c9ed
BLAKE2b-256 e84563f76c0bb4c4e3353f76da765109143bfaf2051297690a8f55729302ccae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.13.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 49ed9c816184e7600cbb7b898331f475f9a26e9406a54e8d902b0a3a78cb5d0a
MD5 ce538eebdb6b3727a4a420a6d82cd5dc
BLAKE2b-256 1eb1b24381ca3a147e6d7854aa70815e92da0ec1ab86f8ed7f7716fd9c8c635e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.13.0-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 0d0f16877c270edae30d76ed701f4fea5687470d1c24541571aec5b02c523a3d
MD5 90d98a423c8bafa64297b71d9257c633
BLAKE2b-256 c9b838f18c6d29d359fc6552c9aafa39c04182a8985c9e17387618295608b188

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.13.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 929db1cb838da9f9a81d6a2c9373241c3550fd36bf36a0d07e6622ec6869aab4
MD5 26b1e02bd43cf640509dd2350303b562
BLAKE2b-256 14b300da64a617faabde362d258593fc5f39434b411168830139dadb947f9a42

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.13.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b9255556fa4c98a5f85c8ab6281e805178fd38eec6401cc4ae6584e6ecf946af
MD5 cc4cc7f1d333ee57ba9f05d27310fd3c
BLAKE2b-256 ba8a2b80e36163775c019143ce3a3c8550fdffae8216cd00653c694498aaac95

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_websocket_api-2.13.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.13.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.13.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0bfbb142676cb2ae01542fff8e2baea3506c8fbd561c6cc41279cdec9d8e5bb6
MD5 df2f25c754e604dc5b87a7213ece9378
BLAKE2b-256 b081a83d1238e7f98e3e9443f87c6e84fc1830a322fb1f0dedf0e953768d6052

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.13.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1588c89314d11b0200f51c13f2b53032a07b6236a936f51c64b084ce573bbaad
MD5 5bc1ab7717f7535d6a6c4a6968900601
BLAKE2b-256 8de8367d1c25a0a7ad8f7660f685087dcb2746077240a338571d41f5ab9a8b2e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.13.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 b24818fea1eaed3ff446bcb9a9cfd7da788a66778b63b20adb8d7985fc48c3c2
MD5 d29659e422a23a26e3e88333eec9870a
BLAKE2b-256 353b873066de49d38d6574fb1a7ebf5d2cb14da79da60c70ff0e8f57978c0542

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.13.0-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 bc9d696293e98f623630792059bfd807cfaabce980d4550f9ba477e3a8134bc0
MD5 43f7bb63bbfa64515848e4b7575d9068
BLAKE2b-256 ff31cded959a4510dd8a21707eb6552173d2db13cae91c65f823d54336b60bdc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.13.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 3a8ec228203ed737f098b225f1eb06bb8d5b3867452c5169139fa258ca8e2e8b
MD5 504d32dbfbe8241c8d4de921cbc356d6
BLAKE2b-256 3c905dd6863ce1313de4466099a1498788c27017b8f96224819a2fdec43b0cda

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.13.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 69181198029aaa53a1970739e30a954c9e359519b104d500e61edc2a96c68a34
MD5 bb57fe02c6c9d956d689d94d00a515cc
BLAKE2b-256 4234247f68492c95bd23b9bd80878dd3f1125b61a9ae6bdc9decfbb2197a6e00

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_websocket_api-2.13.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.13.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.13.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5c6f1bf2cef62cea1d47e3b08b9079e42e2a9746e975fcd341cbf6f961e6f348
MD5 13e5c51fd7bd2cf921198a7917ad0016
BLAKE2b-256 b86d791e44d53a678717a3221a2f44bc2e6a4d47ea8c351cbe49d448cd6d5fb4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.13.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 58de75e6b3a567fd35c7fa41b607d0c808e9bf68e37c5078910136d2586d9a3a
MD5 095d828a18c1a6e92a3d238828563c46
BLAKE2b-256 9d4ee320b720d2daa7c2b856f74e4afd5a4b43c1c13c5fb82756aee431c667f0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.13.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ccbf37fc03afa058944f65e62bd8810fe5a411a5e3e81824068e62160c577e5c
MD5 46b28af9ba8cb3cb1040f0cf877b1400
BLAKE2b-256 e4bfc388ad6277d1b52e034be95f79074bb0814071934dd01ac53db8625bfe74

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.13.0-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 9326ac7ed20371ec71985baa299345292978ad13967bb2065d6b34ef5f039ea7
MD5 77ed22b85ebcd6174523862d9436bed6
BLAKE2b-256 44bf7fcfd8e491e4eca23c53410da9934613b290f9925b73e330d90636b7389b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.13.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 17f8808491bac32b7a1d36c47614cf9d55c9a2ba802b3ae07424d69ada95402f
MD5 b3c1ca18787c9b3e6aea73ddaffa1388
BLAKE2b-256 f0027473941a6ecef4039d27da0233609a973560752f90c579cfa197d22acd3d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.13.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f29f98d86c3448d992eb61be4154287374e7c757391e037bfd194d722329267f
MD5 6b7629b39b4c30e4e6d39d39f189807c
BLAKE2b-256 7a3c3a505570c5a1f3ab1c5b10153233550f4002d04eb44cd20234496e68f650

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_websocket_api-2.13.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.13.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.13.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 939bec49cf2f5754c3d0f907eb65d59fb6b2d203729509b6fc0f0f6b442cfc23
MD5 fb91ae13be6c22538456505fbfccdf60
BLAKE2b-256 1cc92e2818889fa8a6cc7b1a411b9ba34d2fdc4cfe4418aa50661e71614aaf32

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.13.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a165447a9a8f09b3f44f92ddbb423d35112bd4186ad8e8e34fb32a7cb528b232
MD5 db935c3fca450e8d3d0cf01e85194c68
BLAKE2b-256 1b20695b6dc00d303c0e76c3362dcb735a3f38b3370debb607ef736072f6afcf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.13.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 23675d9ed5682ae622d977b2acbeca2e51be4a0c5138387e5e6d24faaa93586e
MD5 ab15de60024a124dc473998916eb370c
BLAKE2b-256 344691796988a5025750f7c2991b53828ac8eed5bbd88cca6605967d712fd220

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.13.0-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 92fccff9c9ccdb427c53d386e273325a68f6a69fea70b1c141a9cbd60338e3b7
MD5 62d8e65e47e6767a518484ed1ded7814
BLAKE2b-256 f770b7f922e0c0345a6c8e04013cd3377a0b3d060d5ca889fdaeca4d03bd5aae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.13.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 fa046131060929b299c85aadf9c2f5b30f437830e1135c9c4cf055262a687f5b
MD5 8aff87c50ad378dbaa7757d5d13bcd1f
BLAKE2b-256 78bf41d2c35d2f7b47bf3e34f03cd49a29e3db1d817bc22d6d31bee9f8e649e0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.13.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9b3b26df315bab1f91954399dd24612722f95d811dcb26b6906f65e2ead4fbfe
MD5 16f06fc98465fe1bf6a6e904b1916528
BLAKE2b-256 0396d607d93effa40293349e92dc836a14b9a8de02acac5f550813639b7437cc

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_websocket_api-2.13.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.13.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.13.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2823b09091b16a30cb8f583f84c9373eafb556a6c45af349c52e538068207dfc
MD5 2af8a13e9a3902026c0f7e685229b16d
BLAKE2b-256 cea76874434444335520cd571eef21f9c47e86ed6ee5757d961789806c151b60

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.13.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bd7e65d814d68d4647002b7b5c78b3db7d1d1a784e7630d58d583d73fe30ff53
MD5 72b6ffb794e1d736fae981d6605d3e7c
BLAKE2b-256 a28565539f57c7f9e45bc4f132c4bf324fab329edd4408a92fecb6d4d3ef8134

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.13.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 92f9ecee813dbfe437dda0d7c2b96961c12ccdfd098c02bea5ce5700d3554ff2
MD5 05f78beb67027608a6d6551bac7073b4
BLAKE2b-256 9dabc0c027c6f5dee2fce1d4e0a1724e3d06fca889898fca0382a4fb0c88a977

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.13.0-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 48954c6825e2990bf993c2ed9e0b0e0c01b6574b835729c21a02d969fd5573a8
MD5 787c68df941f78df3c7dd45ce43a3a16
BLAKE2b-256 629af0b5aaa5aa68db3c402edd7dec22597bfcb9e43b43ba059dd608fa72228f

See more details on using hashes here.

Provenance

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