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, com-vanilla-options+testnet, us, tr) in a simple, fast, flexible, robust and fully-featured way.

Project description

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 Reddit

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 Portfolio Margin* binance.com-portfolio_margin yes no
Binance US binance.us yes no
Binance TR trbinance.com yes no

* Portfolio Margin support is currently limited to the user data stream (!userData), see the Portfolio Margin example and issue #452.

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

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


Release history Release notifications | RSS feed

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.15.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.15.0-cp314-cp314-win_amd64.whl (2.8 MB view details)

Uploaded CPython 3.14Windows x86-64

unicorn_binance_websocket_api-2.15.0-cp314-cp314-musllinux_1_2_x86_64.whl (10.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

unicorn_binance_websocket_api-2.15.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (10.4 MB view details)

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

unicorn_binance_websocket_api-2.15.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.15.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.15.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.15.0-cp313-cp313-win_amd64.whl (2.9 MB view details)

Uploaded CPython 3.13Windows x86-64

unicorn_binance_websocket_api-2.15.0-cp313-cp313-musllinux_1_2_x86_64.whl (10.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

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

unicorn_binance_websocket_api-2.15.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.15.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.15.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.15.0-cp312-cp312-win_amd64.whl (2.9 MB view details)

Uploaded CPython 3.12Windows x86-64

unicorn_binance_websocket_api-2.15.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.15.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (10.6 MB view details)

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

unicorn_binance_websocket_api-2.15.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.15.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.15.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.15.0-cp311-cp311-win_amd64.whl (2.9 MB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

unicorn_binance_websocket_api-2.15.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (10.8 MB view details)

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

unicorn_binance_websocket_api-2.15.0-cp311-cp311-macosx_11_0_arm64.whl (3.0 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

unicorn_binance_websocket_api-2.15.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.15.0-cp311-cp311-macosx_10_9_universal2.whl (4.2 MB view details)

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

unicorn_binance_websocket_api-2.15.0-cp310-cp310-win_amd64.whl (2.9 MB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

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

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

unicorn_binance_websocket_api-2.15.0-cp310-cp310-macosx_11_0_arm64.whl (3.0 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

unicorn_binance_websocket_api-2.15.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.15.0-cp310-cp310-macosx_10_9_universal2.whl (4.2 MB view details)

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

unicorn_binance_websocket_api-2.15.0-cp39-cp39-win_amd64.whl (2.9 MB view details)

Uploaded CPython 3.9Windows x86-64

unicorn_binance_websocket_api-2.15.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.15.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (10.3 MB view details)

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

unicorn_binance_websocket_api-2.15.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.15.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.15.0-cp39-cp39-macosx_10_9_universal2.whl (4.2 MB view details)

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

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.15.0.tar.gz
Algorithm Hash digest
SHA256 cedbfaa5b2a770faa5cd1639fe51ba667196e75bdc2c07e2c507d6e43ac44516
MD5 9d32c1b41394fe9991523ef9c88e2958
BLAKE2b-256 eededf5baa2bc881ad30cf2d8c3297e90bb8a1c497ded8c94fc0b60caabb3154

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.15.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 b2ee4a8de9e9b0a29eee7f704f66f3ae4cac58cea68bdf6d5514eac0f9855755
MD5 f7bd768d222b8eeba7d48d32ecd63777
BLAKE2b-256 38ecfec0fd2f8843ad7f69b1fae45e0069c4a92e52af804b087b3e8e756ef2c4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.15.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b006e3fa1b98e07f6d9f00b1a8ee3defd20c4268185583145ef6c8dbff3d59f5
MD5 76ab2c76a3ea83b10c49b5a59add9b1e
BLAKE2b-256 d5edd614d33b9643e824413d8a513b11b56364e4d2727ea3e52fc07f7623fb6a

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_websocket_api-2.15.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.15.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.15.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1fb2a6733d7658008abc32169e5e1bdc7ffb34647365f40b63497335434d1db4
MD5 b362d7ae882b07aae39060ae16583667
BLAKE2b-256 817522f9c62cee33d25a196f4a698fb2dd266410eba215b5244ae2cf6e821ad8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.15.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 03efce2473e52e44bbaf20538385436cb453ccd25e082250b9a02f270b785256
MD5 cd3086c7519ec1b26875d279d6729433
BLAKE2b-256 29f0a388b3f66adfa17eb402d7fd5997fc51cb361ccb9c8499db4cc590933c17

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.15.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 93b40b3ecf6bae65af8956a9d72702d0836fce92af33764f3850afa19b4473b4
MD5 cc6eff1ed4e7c42e265cd4a9f5dda5c8
BLAKE2b-256 c0659c08e7ee42324884cacc38c4557d54c20dd77a8a827f17d7bc572ebaa675

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.15.0-cp314-cp314-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 800730c120d5ab1d4835459f9ee6b82f22df697b874f937dbdd32d251958b6b1
MD5 5779c698e461b6d049cba369752b6dba
BLAKE2b-256 611506008a4a7f1169583bb5e6b2b989c579812f0f0b3c4dc8ec463ccffcdc79

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.15.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 071ed46b144f38b765e05daa6915620ece8c164f626ae7e551cfb0513f5dc788
MD5 62aa69ad93232f74b24aafe723013e61
BLAKE2b-256 ead7f6454ff9c33033d1f631cfe2e09857052bb43009fc1dc796a19c65b875f9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.15.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 76f6632c7f8a53b89612f5396aea207141591e263452ab9573e9d8909c94a141
MD5 dcd981c80995b966d62511f637cc3b31
BLAKE2b-256 a1bee9307881c3270672adacbfa56fb38fa6794e9cc034c9a1c27ebb42d36e3d

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_websocket_api-2.15.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.15.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.15.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3b966775c1404f88dafc9391bf6614e3ec916cb37244585a6603fa7da653bbcf
MD5 56eda262e318959ecd2018b4f4ca2567
BLAKE2b-256 f3b8ec5f032b9983140bd26d97f5be41a7fcdcdd37536c3faf554fbb15563706

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.15.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6800d572e4183e267512e8eceb5e497c97de6af11254c2fb7fee6ee833854236
MD5 ccd0c4b3db14fd88f0f9ede598c0950b
BLAKE2b-256 9243ef04f110866292401cf2457336174067a7fe86ca4f913000e2e0925da5d2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.15.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 4a156b49c8647304e7ea9fa8bbb6f387f27db90deb6ddd684679268c32a4b73b
MD5 038f1377dab208a1616855ac05478f35
BLAKE2b-256 83b27211f611c87a43ea345d9df85a6ad661e55115e7d98413aa880663a16d1d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.15.0-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 ec92f8cf8ffe3cb6959a86ab25565faa0c81800e69c0489435cbe1ea4d24170a
MD5 4dc4324d125c2a6d2a2b858ecfdc753f
BLAKE2b-256 47d374426d01497912a8fd12cd5e1605ffb83cd6fde8188708db378cb800975b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.15.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 10a82cbae87feb7d004a387e72502aca02c9299b899b3c4ecd219353700ee9ea
MD5 3657603a17f7e866d2bd93a6ef25c59a
BLAKE2b-256 c481076151f31810b614fdec9b31b36dda02d8fa039b434b57a8cffffa4559de

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.15.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 54bf4075df66b40b956e9d0418f7ac4c6202338a6aa0283da5c378e5d5451dbd
MD5 445d9d65a57e546f43bb9cef3f939d92
BLAKE2b-256 6c6d539a21611d5dc94fc9dd013d56477b986b04be2fd1591fe60c1f604d9ee6

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_websocket_api-2.15.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.15.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.15.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9604a5db6fd1b5089194b1866ee216db7cb74670f3874b7500fd6b502c33ff94
MD5 31e0d9e3bc4a7f33a787b4b3c62ca1c8
BLAKE2b-256 743c6ca73ce4918c76a41430d92f03a7e46afb0c6b4f3b3b1687b85eef7fc0da

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.15.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 30ee481704a67040b3ff44a648d1c9fbeef32d4081f9bab90ffdb6db1598e428
MD5 c56888cf474bf939deafba57aad8142f
BLAKE2b-256 2cee41f8ed36939dfe3366d353df86899548921efc1e260849b2bd1a6368b0f4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.15.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 06d336a9f059e9e4dc2b5b892c7e59ffa8ffd3e9ec7349de8c300a7abe26ba69
MD5 d9c911c3608161c597a645eb4bf1d264
BLAKE2b-256 bb8ba51a8d940a36f3779936de3213b97b11d82cbb6b432bbacdc639f78fcb25

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.15.0-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 8ba6c930015b2cf0f923dd52fe37b553a38ab1dbff056ed770d34680e182e39b
MD5 26188f14fd72f86b32d08fa4d50888b9
BLAKE2b-256 8987f0a18878787938a53c28120502800aa7e3306e2b12e4542fe1bb843bf75e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.15.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 6b98a9de9b7daf6d7156a697977cf00d25bce1c48cc98b5c90fbc03e5f990d8a
MD5 0eb792d951f480e8aa83551ddcffa8d0
BLAKE2b-256 f43d586cc453dedb4128240df0b41ece18216b53a69677e675f5b589e25335cc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.15.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6d1da76f71f0bcbdc8c2381db445f737ff0e614e184c470a10418d5683e02d95
MD5 5f1398d0e131f30d897aa2db7fa68ea9
BLAKE2b-256 a482cda98c5d4f91f010e75f5b265a3d1028bdcd3cb8804165a144b2a28e39b6

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_websocket_api-2.15.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.15.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.15.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 495e7a1051654e9bf8dcedbc333b32575ae440369f38c13459be11ff214c79b4
MD5 3ddffe00c637e0c4f296f0727d767059
BLAKE2b-256 cb7bdc4113f6a65dce1e06da86a5ce8a2dfb7a588ad8c0823ceea909f99d5260

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.15.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b4fba95a441847e1c4d630b799d2f3f1b7d6f0bf8886f0ac179aee26c04a3095
MD5 73d8fee5fdcb0e31e82590ca21576db0
BLAKE2b-256 05881317a6197941186e20630f1bfd59eaae3d2d928a847574e811b63660ee0b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.15.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 dae871ba184fb33451325bafff7d9e87ff1608b1b1fa7bcb7638ae8e937a3be9
MD5 2b56044437ab3c9e584787069ed8b7cb
BLAKE2b-256 3b17e1d3f4a62d5217b0aa7bee6d2ed88c8f9dcd6024eb640db46d4a81af3612

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.15.0-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 fb3f24e6b1ad19c6ebffd15dfbb498dfe56ea2c2feafc4f957ac4a68b0dbc20b
MD5 2a265ba8ecbe1309f64844defef2c0b0
BLAKE2b-256 fb7ee94afc7bf664b5a33ff9e24111b5e24b0a7d5f5cb4a627c7a15060314ce4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.15.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 1631f6b740033580f7d2b307062e9589a450efc91f2412abdac9784413c799a4
MD5 ead42751950c56d92b1045e090b5e980
BLAKE2b-256 2a304b600f01e4a2ad10fb4c1d02c30b80f88ccea87ea59e0a1e7a8f0557eb8d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.15.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7e1d2ae26833bcdc687dcb6647619b2f4adff961f1ff1fb8f3cb43bbafe5b05b
MD5 8358408d95acffc32dd4e25aa188b8d4
BLAKE2b-256 235f08f4eee0b22577042685a748c4c02a8335992fe7ef6dd14f4af525001886

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_websocket_api-2.15.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.15.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.15.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ad5599cdc229586c75dd9d858a19bdd0453230ce841785519f4fc86ed35e22db
MD5 b71e9120349538f42fa651129d4042ef
BLAKE2b-256 cef7a6533de77337c9bb14e7949f8e4e119f372f191efcfd312354d14dbedf3a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.15.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a3617e74244ec15292a1d5a64d63dd9eb90eba8a66b0fa2723232bdcf4a222e9
MD5 490d8ffd1a06583db741fb6ef744a419
BLAKE2b-256 c10a0dc7618904e8d9892cc59c9af54b8503d061ffb3ed5fb809e6de1e0e7f67

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.15.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 84b29bcf9977f9686b9261bddc245d38d8c650f7109ecbb4dc31e0e9cabc131e
MD5 5d0f393b94d3f7237a490b2c2d6fa657
BLAKE2b-256 2ebc23fc7613db650462c766a284caec0db58575cf2b0037c9b65302547f1e71

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.15.0-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 639513fe091800c52764e4ed59bf2d7faf830302727fdef92e7029b8c4427128
MD5 feab0530b0f6c3c79b9b3ad17d24f692
BLAKE2b-256 7f176543a002553e8eebffae592dbafa86817574a189556297a938aa62202a0a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.15.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 fd24a0f8e798043cf1c5b12735ea0db02af47967010e68a5bfa68f8671af0b55
MD5 ca0c881aaa963ea5d3d1a90259708352
BLAKE2b-256 bea63193301ccc2d8fbd0e154d5480e8f1278cdc0e48abe41023a83bd3d1ccab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.15.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 71e3327887ae74787aa54dac94539c55e894d0cd9bca33a89df94843ae6e41dd
MD5 37fd33f9b3ffa50d27c41e2321e5cb8d
BLAKE2b-256 5896ec03e57238582dba8663893a216a3d5049a06797b0efd1dc0dbf46525724

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_websocket_api-2.15.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.15.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.15.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 30d134d81f2643939cfb08a42b42af5e64ccfd7f55b2177647023611ee9bda32
MD5 0f52eae871a22936bc77516003818047
BLAKE2b-256 edddf660f571369c5d52912acd1c2d046832d307ead4785362ed8164bbafe123

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.15.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 606a3ed43486aad67973d97b2750d1afab71b9e83fa5b5d78de687a8ebc82289
MD5 795579eccd6c87568e4b07cd007463a1
BLAKE2b-256 2c951c0fc9e8e22eec2018c98a455a2f383f01676b7fa091b6e629ea4616fb49

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.15.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9446bfbb1b40e9d62e89eeac136e8a6a60325b596c91c2787ca926c5d5827090
MD5 13198c3c4fcb4dada22a5a0e23ab67c9
BLAKE2b-256 4ec950c9af858a10de13d7cce3d1b2bc5ce7f5ff91cea9b2e96b3ba0fe12dca2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.15.0-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 c8f1dee352bbdbc0690171e9f9eb834b28c6ca9f7ec798eca2ec62da30f6cdee
MD5 aca46da39bd0314665f0708530e35beb
BLAKE2b-256 7790ec526fbe809bd6e20e99c44bd8125d92082a031f6af22ffa6cb339359551

See more details on using hashes here.

Provenance

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