Skip to main content

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

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, com-portfolio_margin, 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.2) you determined here:

pip install https://github.com/oliver-zehentleitner/unicorn-binance-websocket-api/archive/2.15.2.tar.gz --upgrade

From the latest source (dev-stage) with PIP from GitHub

This is not a release version and can not be considered to be stable!

pip install https://github.com/oliver-zehentleitner/unicorn-binance-websocket-api/tarball/master --upgrade

Change Log

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

Documentation

Examples

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.

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.2.tar.gz (2.0 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.2-cp314-cp314-win_amd64.whl (3.0 MB view details)

Uploaded CPython 3.14Windows x86-64

unicorn_binance_websocket_api-2.15.2-cp314-cp314-musllinux_1_2_x86_64.whl (10.4 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

unicorn_binance_websocket_api-2.15.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (10.6 MB view details)

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

unicorn_binance_websocket_api-2.15.2-cp314-cp314-macosx_11_0_arm64.whl (3.1 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

unicorn_binance_websocket_api-2.15.2-cp314-cp314-macosx_10_15_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

unicorn_binance_websocket_api-2.15.2-cp314-cp314-macosx_10_15_universal2.whl (4.2 MB view details)

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

unicorn_binance_websocket_api-2.15.2-cp313-cp313-win_amd64.whl (3.0 MB view details)

Uploaded CPython 3.13Windows x86-64

unicorn_binance_websocket_api-2.15.2-cp313-cp313-musllinux_1_2_x86_64.whl (10.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

unicorn_binance_websocket_api-2.15.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (10.7 MB view details)

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

unicorn_binance_websocket_api-2.15.2-cp313-cp313-macosx_11_0_arm64.whl (3.1 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

unicorn_binance_websocket_api-2.15.2-cp313-cp313-macosx_10_13_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

unicorn_binance_websocket_api-2.15.2-cp313-cp313-macosx_10_13_universal2.whl (4.2 MB view details)

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

unicorn_binance_websocket_api-2.15.2-cp312-cp312-win_amd64.whl (3.0 MB view details)

Uploaded CPython 3.12Windows x86-64

unicorn_binance_websocket_api-2.15.2-cp312-cp312-musllinux_1_2_x86_64.whl (10.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

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

unicorn_binance_websocket_api-2.15.2-cp312-cp312-macosx_11_0_arm64.whl (3.1 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

unicorn_binance_websocket_api-2.15.2-cp312-cp312-macosx_10_13_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

unicorn_binance_websocket_api-2.15.2-cp312-cp312-macosx_10_13_universal2.whl (4.2 MB view details)

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

unicorn_binance_websocket_api-2.15.2-cp311-cp311-win_amd64.whl (3.0 MB view details)

Uploaded CPython 3.11Windows x86-64

unicorn_binance_websocket_api-2.15.2-cp311-cp311-musllinux_1_2_x86_64.whl (10.9 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

unicorn_binance_websocket_api-2.15.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (11.0 MB view details)

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

unicorn_binance_websocket_api-2.15.2-cp311-cp311-macosx_11_0_arm64.whl (3.1 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

unicorn_binance_websocket_api-2.15.2-cp311-cp311-macosx_10_9_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

unicorn_binance_websocket_api-2.15.2-cp311-cp311-macosx_10_9_universal2.whl (4.3 MB view details)

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

unicorn_binance_websocket_api-2.15.2-cp310-cp310-win_amd64.whl (3.0 MB view details)

Uploaded CPython 3.10Windows x86-64

unicorn_binance_websocket_api-2.15.2-cp310-cp310-musllinux_1_2_x86_64.whl (10.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

unicorn_binance_websocket_api-2.15.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (10.6 MB view details)

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

unicorn_binance_websocket_api-2.15.2-cp310-cp310-macosx_11_0_arm64.whl (3.1 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

unicorn_binance_websocket_api-2.15.2-cp310-cp310-macosx_10_9_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

unicorn_binance_websocket_api-2.15.2-cp310-cp310-macosx_10_9_universal2.whl (4.4 MB view details)

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

unicorn_binance_websocket_api-2.15.2-cp39-cp39-win_amd64.whl (3.0 MB view details)

Uploaded CPython 3.9Windows x86-64

unicorn_binance_websocket_api-2.15.2-cp39-cp39-musllinux_1_2_x86_64.whl (10.5 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

unicorn_binance_websocket_api-2.15.2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (10.5 MB view details)

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

unicorn_binance_websocket_api-2.15.2-cp39-cp39-macosx_11_0_arm64.whl (3.1 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

unicorn_binance_websocket_api-2.15.2-cp39-cp39-macosx_10_9_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

unicorn_binance_websocket_api-2.15.2-cp39-cp39-macosx_10_9_universal2.whl (4.4 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.2.tar.gz.

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.15.2.tar.gz
Algorithm Hash digest
SHA256 6a61db60dd73ea95d8f10d3ca6bb98609847dcef2cf31b46264b4b7a4e3d0e90
MD5 e11a06097afee933d574469e71628ee9
BLAKE2b-256 cad10304266ac2be5efa349337374d4334de43b4326631c5b2cec24632227571

See more details on using hashes here.

Provenance

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

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

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

File details

Details for the file unicorn_binance_websocket_api-2.15.2-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.15.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 f620f75db067941ff632b1b2c63e99f95ce9e46baed7511297efbc54d357aa68
MD5 2234a4d1213b0fdc5b5bce20727c4c76
BLAKE2b-256 3ce929e86c96e06c707ca8d3993036fe9c35fae87050c0a188ab7e73dd00268d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.15.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d3cf05a06519fbfe3be4fc750da7f12f8547f73a97e6bca12991f53e2e021c3c
MD5 8cb7ad9c3dafd53c13f0035ee75c5dce
BLAKE2b-256 be719d88afa62bb91bd21308cb9e110fcd3a7be565a3f2615dc454a30442765d

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_websocket_api-2.15.2-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.2-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.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 114055e8d6d3a14fb1aa2ded944bf307fa17da2b858a1dc0ce9ceb199c0c9b9e
MD5 68f843d605ec72004919df552aa7653d
BLAKE2b-256 2df669ae56f7785ab0fba43177f372919a927a4c67dcba6ffb09f90c17c189e4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.15.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 470cccf836e828c414afcf851c1e12b1b986adcd73c64154f2f74fe74b491077
MD5 1591899d0436fa96da3b8c45a986d2fb
BLAKE2b-256 30f2d6f88bacbc3c62cfc416834333cb2810e826fda602b91cd8dd5f200576fb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.15.2-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 c92fa631b672f16b85b98bf50be4e9d6fedbc1593ba70a807ced3f904083610d
MD5 150bcf3c2cab89bfc5d53c8187e60d6c
BLAKE2b-256 a0c8dc129df5418cdcc3129b22b22f65c37d3e4a2cace68f1f4e2d6153eab3e0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.15.2-cp314-cp314-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 abb9ff1ec5356967e75b158a8a92f05a4d521e7809296923d2f844a826a12643
MD5 c41a226909f247308cfc5272b813abc1
BLAKE2b-256 4c755ff3f0345b9291264071ef8cd560c3d031718a66a81ece513a283da007f4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.15.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 98b863f5b2db65db6cffa6a24b57ca7fde16d887f0853af7c37f1c956351c899
MD5 6a80c6ec1f74dddf74ec53ba2c934d59
BLAKE2b-256 9ac23bb703a34155924b633d275c4ef54549ca4f425174025c386efb3197ecf5

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.15.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 eea146bea3525b3cca3fcf1b355194902519849796c6529d9fc846019e2860a5
MD5 9039dbb31f79c3ea45c00d73e71ae0c5
BLAKE2b-256 cfecf86e593366cedfcf798c9d3e56073d1a5dc2ef9bbfd03d3f26f68657b086

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.15.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0f6cccdb8e474f35b6617720d19bd9a2c4cc53e0cdf3e995fcfdbc9f182d08bc
MD5 7ed930c2d9ddcae65bc6a26584aadd06
BLAKE2b-256 e3853a2ac6cd1af99c9b8a72ace88c39b7d073269978f64697bfa79aa464b560

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.15.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fbf911c0b864031e26cdec8314d5d70fd167cd7d5c488886645c4008cb9d8c3f
MD5 0716ee83706cb221aafd9cb20f73218b
BLAKE2b-256 313113471fc32cd4ca423c0605bf5358eba0430751470dc4e47ff099e1a67c9f

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.15.2-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 15db2a464a0cce9ad0adb14ac5d1158766a3d7cdd54b67b60cc5b9efa0facce4
MD5 fe9fde8aab14fdfd8ed97c410ba66210
BLAKE2b-256 5d98c27c86d991dba9669cfb8e0518f1ea470d7952fdf3ccfaa226a398a36e86

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.15.2-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 0016f8caec82d890cb8b5887ea8b82336ba6d0f5d00bf6d7fd7ae578e8572cb7
MD5 ad5e4cb64aa60c6a563e1b60ad460a1c
BLAKE2b-256 cd18c0d36d6fc1df12703cc768e7b88671f3fbe3f4918afdd16a9e445692ecac

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.15.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 cd6ce51d3117ff775ead57f2785e689a4df45072e7dd647af420672baf2651e8
MD5 d9d0b7c079f4f28442de69616690844c
BLAKE2b-256 84a64f417e013f485c1da89232c2565fa777377031bfd0af40fbdcbae10f9b9a

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.15.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ab246c92bbdfa7c4afb9b059204872bb525b247d0df90e7fce5112804f72aa05
MD5 5ceb5517b1518a66b88536e85dec6ca4
BLAKE2b-256 f89f9812f42a8baa20d64c1c4db3596f9268e963e422c582899517230dd6bc92

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.15.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 dd62536679f70b8f29947de6277ff35d46527b5144139f38d44d3054941c7f55
MD5 81fdd5292a75ead36d62c35ba3e34ff9
BLAKE2b-256 966d39e15d05888702e8ee1ad99e077c5edb49a18cbcad91c7c3e023c218409a

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.15.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 af91b38516b625536c1ebd1bd2412a4c01b0c2eac29853af481a9927baeca935
MD5 3c5c8a44df209df9eb264be1730a1b0d
BLAKE2b-256 c6279772a8a3be3a02d690f9d54241ff9a2bb181c9be283295192541e81dd664

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.15.2-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 fe17391e2f269f5820e0f25386116d07a9a0f54b487638eb0a53dd5dd2ab1f4f
MD5 2ac62d7da429f815e7205e32a6f5d8a7
BLAKE2b-256 99f2951f2f64ad43ae48a3eeff1982661fb254d3efc76c4976f67a282accfaab

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.15.2-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 4400237db2a8a5186d8a9130af2c676a8a2a18c42f9fe17750cc4a1dc49a4449
MD5 47e1fafefe1f3d2680ccb339dc146450
BLAKE2b-256 b30b36daf01b2db9cac7fd3e12a30cba096f95d7acff213617b0c8bd9d793a9b

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.15.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 283446cfd2d2da597a0ff79f1bccc00cb90a8352a9c9b219071e7e23c87f0240
MD5 556b877962d062057da8680b91819ad1
BLAKE2b-256 ab5292011432a5b2a103624aafa75f679491a12d516efccc2531a8831ae8d354

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.15.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0a551a5fe2b0dc95e89f9f46d7990797cd32c58574d4711bce0373399f9be639
MD5 8e63ff603542bca6311640fe4dd3f1fa
BLAKE2b-256 eb5d01a598f36377f52eddb930668e315e80784d2402ccd0fe6d8e0acaa6be4b

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.15.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 65cf31839696019baae6bda03fb0a942a5a90699ca5e6ee41ee038a59819b3d1
MD5 43750f591697b5463ce7be177d865a25
BLAKE2b-256 4899274617cd9babc6038b0828bf1b23999725f361246da3d132aa1e248ca075

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.15.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3a46af8e7c2fc70b02a44f90523f3041f36c51582e0dcad34c6778382a1106b1
MD5 2eac72e887c8d960a615ff2aadc5941e
BLAKE2b-256 38c317c28bdfdc4212773aed8d2ef2300825e0e509cf052cc5b70a935f3c82f8

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.15.2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5ab3dc5ebf52ce8ff4125482c8a20abc4797e050a740cead3e872a596f1d6011
MD5 451fffadfaed85cd86db839dc1486e98
BLAKE2b-256 2aa4f6e4fc33bc5b48f354a74c7015492fa48321c56d841e3618730f550a6a97

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.15.2-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 0622d7a61d630b7f02670ace07eadd07ad5440b25407164b6a45fb19e3aa38ec
MD5 94827ab99b94b9de1070e060e1ae2efe
BLAKE2b-256 aefc334206f84dc7cf1d48502f5915536908388a6d05a415b7b4819000a675d1

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.15.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d43806c10545cb8d170dc4b0ee1cf44a7901c08411e065c266860347ce48c5c1
MD5 6e4bf9a7f6c5b41ca3a5e1606ce55c01
BLAKE2b-256 2e7c85a241dd2c08d0529e0fffdb4bae78e0b946b4b9cfb7f260bdde97dc1e86

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.15.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6fed0d45a36784a08fcb5ace520d7d10ff5534d88af96cd678a065df6d4fa9df
MD5 cd7d15b236abb014698f6479f4e7e688
BLAKE2b-256 c8118573d5a0d964587eaad8c7d9ec17b8fbc89ab6b84fdb2413b0b83ef152bd

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.15.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1174e5b7f5b818aafa86b85245c78c3755122a0d8c90376636abf682767bc1d5
MD5 149e5378e6e8546e0d65702bf5416ebd
BLAKE2b-256 fe957b4284ec06f22e6d644b8f4c4300da12e911d25875857686d54a0e444d43

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.15.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a11644f72e3b14c026cf894bfb1c29402048d9947a203e0d102597434e8a606b
MD5 15108e8d0d82976372ab4a4d199c8882
BLAKE2b-256 0ffd3849733f7249b58bc4359fb266ea3a10f2e72f016d1d2d9e37a0288dfff4

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.15.2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 08a11ae0b64eddf0cb653fb11900b74cd447c65122f342f89c1be16597e18015
MD5 15ce0d97ae7315f8523f0798a03468e8
BLAKE2b-256 b7ea1a7ba8185030d78d4cbe391501a159cab95a0ef8abeac88c0d7a70afff67

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.15.2-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 6197242135cc292f0fd9178e9bda49dfa60aff4086522dadca306d8c69a3412e
MD5 be78439a5bd971118978ad9d3f104b5a
BLAKE2b-256 32cb8ac6aa24f3a1072ec2a81a39da3d222b956e7c37f00a17fb5d2352f3f2b3

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.15.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 e6da8194cea0e3e46fcceb075cc368487f7518065d4799408753a02acaca1eb6
MD5 ed04c31440454bd8e3261b6b0dbf453f
BLAKE2b-256 e9d0a5b0f9cad1a0118eb72a241064063f4f543b7a66d2475c48df0777c8c1cc

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.15.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a85d53752386284cac609a94aaf501613d8b4ff59d3af164ab05989455153a63
MD5 a5aaffb87891526f8502639804249b56
BLAKE2b-256 6f754a7521d261e1ca8ff52f00dab81b80b014f2946486a582fd4fd314f33113

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.15.2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d5c9f56bb6a6f165ceef06024c753d8ddf55a719ff38054a38d11fdb54ce256c
MD5 e22bb8a3d5486a300e47180cea54ad91
BLAKE2b-256 6c0638830633faa25a30f69b58a06bb447b2da4c9da61dab3a2d383571e97efe

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.15.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b222f137ef70ce85cc487d3340498ef7189de698e28166b25d427c625dd908e7
MD5 6ad0d6ae60b9fa7474f8c6a052f2db68
BLAKE2b-256 3e2fc620c4d8a6c964c240e38eea36983130fea6972238c901c0bea7b7adc3f7

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.15.2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5ddbb9dba4a1cf332c12ea76628ee222ecb969adb6ab701e6f53d92334e25e46
MD5 7d14c035d64bac92fda0e71fdbb6d9f1
BLAKE2b-256 2e0e1284f69cdf9d9f4b28bdb6cf0296f0eac8f976531d27590fd28253631239

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for unicorn_binance_websocket_api-2.15.2-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 8c1014753d403d8fd9381ee4d45bf44db6b26641eea003a0e5e38cd16bf88605
MD5 cd7c1a0363935dbb2dbe0320416ee0cf
BLAKE2b-256 1d957fd98454aafcff7e757303d0e4afc6c6b9c5d8215f1fccf7d360f23d04b7

See more details on using hashes here.

Provenance

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

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

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

Release history Release notifications | RSS feed

This release

2.15.2 This release

37 files

2.15.1

37 files

2.15.0

37 files

2.14.0

37 files

2.13.0

37 files

2.12.2

37 files

2.12.0

37 files

2.11.0

37 files

2.10.2

37 files

2.10.1

37 files

2.10.0

44 files

2.9.1

1 file

2.9.0

24 files

2.8.1

24 files

2.8.0

51 files

2.7.2

51 files

2.7.1

51 files

2.7.0

51 files

2.6.0

51 files

2.5.0

56 files

2.4.0

56 files

2.3.0

56 files

2.2.0

56 files

2.1.4

56 files

2.1.3

56 files

2.1.2

56 files

2.1.1

56 files

2.1.0

56 files

2.0.0

56 files

1.46.2

2 files

1.46.1

2 files

1.46.0

2 files

1.45.2

2 files

1.45.1

2 files

1.45.0

2 files

1.44.1

2 files

1.44.0

2 files

1.43.3

2 files

1.43.2

2 files

1.43.1

2 files

1.42.0

2 files

1.41.0

2 files

1.40.7

2 files

1.40.6

2 files

1.40.5

1 file

1.40.4

1 file

1.40.3

1 file

1.40.2

1 file

1.40.1

1 file

1.40.0

1 file

1.39.0

1 file

1.38.1

1 file

1.38.0

1 file

1.37.2

1 file

1.37.1

1 file

1.37.0

1 file

1.36.1

1 file

1.36.0

1 file

1.35.0

1 file

1.34.2

1 file

1.34.1

1 file

1.34.0

1 file

1.33.1

1 file

1.33.0

1 file

1.32.0

1 file

1.31.0

1 file

1.30.0

1 file

1.29.0

1 file

1.28.0

1 file

1.27.0

1 file

1.26.0

1 file

1.25.0

1 file

1.24.0

1 file

1.23.0

1 file

1.22.0

1 file

1.21.0

1 file

1.20.0

1 file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page