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 ktw-lint 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

WebSocket library: websockets or picows

UBWA uses the websockets library by default. Alternatively it can run on picows, a Cython implementation of the WebSocket protocol that ships a drop-in replacement of the websockets client API (picows.websockets). picows is an optional dependency:

pip install unicorn-binance-websocket-api[picows]

Select the library per manager instance, everything else stays the same:

ubwa = BinanceWebSocketApiManager(exchange="binance.com", websocket_library="picows")

Selecting "picows" without the package installed raises an ImportError, an unknown value raises a ValueError - there is no silent fallback. Proxies (proxy="http://...", https://, socks4://, socks5://) are passed to both libraries natively. The conda-forge package is picows.

picows support is new and opt-in: websockets stays the default until picows has proven itself in real-world use and enough reports are in (the first upstream finding, tarasko/picows#108, is fixed in picows 2.2.0; the extra requires picows 2.3.0 for its native proxy support). Questions, experiences and your own benchmark numbers: issue #477 - WebSocket library: websockets vs. picows.

Is picows faster? Measured, not assumed

dev/test_websocket_library_benchmark.py replays Binance shaped messages from a local server (separate process) through the complete UBWA stack (connection → stream loop → process_stream_data callback), 3 runs, median. Python 3.13, websockets 16.0, picows 2.1.3, x86_64 Linux, output_default="raw_data":

Scenario ~msg size msgs websockets msgs/s picows msgs/s picows speedup websockets CPU µs/msg picows CPU µs/msg
small_aggtrade 0.2 KB 300,000 201,912 403,316 2.00x 5.1 2.5
medium_kline 0.3 KB 150,000 195,460 371,019 1.90x 5.2 2.9
large_depth20 1.0 KB 60,000 153,187 259,960 1.70x 6.8 4.1
xlarge_depth_diff 9.1 KB 30,000 64,172 67,972 1.06x 16.3 15.4
huge_ticker_arr 453.9 KB 600 1,768 1,662 0.94x 608.7 641.0
multiplex_mix 0.2 KB 120,000 180,406 334,188 1.85x 5.7 3.2
  • Up to ~1 KB per message (aggTrade, kline, bookTicker, depth20, ...) picows delivers 1.7x-2x the throughput at about half the CPU per message. From ~10 KB upwards (full depth diffs, !ticker@arr) both are on par - the cost there is UTF-8 decoding and JSON handling, not the WebSocket framing.
  • With output_default="dict" (orjson parsing included) the gap is 1.4x-1.7x for messages up to 1 KB.
  • Against live binance.com with a 20 symbol multiplex (a few hundred msgs/s) the choice makes no measurable difference: the CPU load is dominated by UBWA's fixed per-manager overhead, not by the transport.
  • So: pick picows for high-throughput consumers (many streams, depth@100ms on hundreds of symbols, CPU-bound hosts), stay on websockets if you need the default, its broader ecosystem or PyPy. Full tables including the raw-library baseline and the live run: context/websocket-library.md; what UBWA itself costs per message and how that was cut: context/stream-loop.md.

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

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

Release files for unicorn-binance-websocket-api 2.16.0

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for unicorn-binance-websocket-api 2.16.0
File Size Uploaded
unicorn_binance_websocket_api-2.16.0.tar.gz 2.1 MB Details

Built distributions (wheels)

Table of built distributions (wheels) for unicorn-binance-websocket-api 2.16.0
File
unicorn_binance_websocket_api-2.16.0-cp314-cp314-win_amd64.whl CPython 3.14 CPython 3.14 Windows x86-64 Details
unicorn_binance_websocket_api-2.16.0-cp314-cp314-musllinux_1_2_x86_64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ x86-64 Details
unicorn_binance_websocket_api-2.16.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
unicorn_binance_websocket_api-2.16.0-cp314-cp314-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 macOS 11.0+ ARM64 Details
unicorn_binance_websocket_api-2.16.0-cp314-cp314-macosx_10_15_x86_64.whl CPython 3.14 CPython 3.14 macOS 10.15+ x86-64 Details
unicorn_binance_websocket_api-2.16.0-cp314-cp314-macosx_10_15_universal2.whl CPython 3.14 CPython 3.14 macOS 10.15+ universal2 (ARM64, x86-64) Details
unicorn_binance_websocket_api-2.16.0-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
unicorn_binance_websocket_api-2.16.0-cp313-cp313-musllinux_1_2_x86_64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ x86-64 Details
unicorn_binance_websocket_api-2.16.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
unicorn_binance_websocket_api-2.16.0-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
unicorn_binance_websocket_api-2.16.0-cp313-cp313-macosx_10_13_x86_64.whl CPython 3.13 CPython 3.13 macOS 10.13+ x86-64 Details
unicorn_binance_websocket_api-2.16.0-cp313-cp313-macosx_10_13_universal2.whl CPython 3.13 CPython 3.13 macOS 10.13+ universal2 (ARM64, x86-64) Details
unicorn_binance_websocket_api-2.16.0-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
unicorn_binance_websocket_api-2.16.0-cp312-cp312-musllinux_1_2_x86_64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-64 Details
unicorn_binance_websocket_api-2.16.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
unicorn_binance_websocket_api-2.16.0-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
unicorn_binance_websocket_api-2.16.0-cp312-cp312-macosx_10_13_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.13+ x86-64 Details
unicorn_binance_websocket_api-2.16.0-cp312-cp312-macosx_10_13_universal2.whl CPython 3.12 CPython 3.12 macOS 10.13+ universal2 (ARM64, x86-64) Details
unicorn_binance_websocket_api-2.16.0-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
unicorn_binance_websocket_api-2.16.0-cp311-cp311-musllinux_1_2_x86_64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ x86-64 Details
unicorn_binance_websocket_api-2.16.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
unicorn_binance_websocket_api-2.16.0-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
unicorn_binance_websocket_api-2.16.0-cp311-cp311-macosx_10_9_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.9+ x86-64 Details
unicorn_binance_websocket_api-2.16.0-cp311-cp311-macosx_10_9_universal2.whl CPython 3.11 CPython 3.11 macOS 10.9+ universal2 (ARM64, x86-64) Details
unicorn_binance_websocket_api-2.16.0-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
unicorn_binance_websocket_api-2.16.0-cp310-cp310-musllinux_1_2_x86_64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ x86-64 Details
unicorn_binance_websocket_api-2.16.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.28+ x86-64, Linux glibc 2.17+ x86-64 Details
unicorn_binance_websocket_api-2.16.0-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
unicorn_binance_websocket_api-2.16.0-cp310-cp310-macosx_10_9_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.9+ x86-64 Details
unicorn_binance_websocket_api-2.16.0-cp310-cp310-macosx_10_9_universal2.whl CPython 3.10 CPython 3.10 macOS 10.9+ universal2 (ARM64, x86-64) Details
unicorn_binance_websocket_api-2.16.0-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
unicorn_binance_websocket_api-2.16.0-cp39-cp39-musllinux_1_2_x86_64.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ x86-64 Details
unicorn_binance_websocket_api-2.16.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
unicorn_binance_websocket_api-2.16.0-cp39-cp39-macosx_11_0_arm64.whl CPython 3.9 CPython 3.9 macOS 11.0+ ARM64 Details
unicorn_binance_websocket_api-2.16.0-cp39-cp39-macosx_10_9_x86_64.whl CPython 3.9 CPython 3.9 macOS 10.9+ x86-64 Details
unicorn_binance_websocket_api-2.16.0-cp39-cp39-macosx_10_9_universal2.whl CPython 3.9 CPython 3.9 macOS 10.9+ universal2 (ARM64, x86-64) Details

Total release size: 221.6 MB

Release files / unicorn_binance_websocket_api-2.16.0.tar.gz

Download URL unicorn_binance_websocket_api-2.16.0.tar.gz
Size 2.1 MB
Tags Source
SHA-256 checksum
How to use checksums
34243ffde514e29d1fc1585c132e7f87eab5705182da7ef47855e05a81f04238
BLAKE2b-256 checksum
How to use checksums
a93fb202aa4c9fbb7d55f1ea43206736da87a79ce7e7bbbb71d6eed00cd8dbc6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 13, 2026.

Transparency log

Release files / unicorn_binance_websocket_api-2.16.0-cp314-cp314-win_amd64.whl

Download URL unicorn_binance_websocket_api-2.16.0-cp314-cp314-win_amd64.whl
Size 3.2 MB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
4ec689e586a38eceb526650b7adb439c6de0f172d507162668e6b2d7c860db7f
BLAKE2b-256 checksum
How to use checksums
bafb2a7f6695f71337e690e628a4fb3656e420296ce5cd75426d95ea74a15d0f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 13, 2026.

Transparency log

Release files / unicorn_binance_websocket_api-2.16.0-cp314-cp314-musllinux_1_2_x86_64.whl

Download URL unicorn_binance_websocket_api-2.16.0-cp314-cp314-musllinux_1_2_x86_64.whl
Size 10.9 MB
Tags CPython 3.14 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
39193dc207dbf77a246e66bab45b42b85752ac67308d348af16595daadb96c6d
BLAKE2b-256 checksum
How to use checksums
61a8fd2c0925bf0f28b9987a538a40ed968d442aa50644061ba7fc7e4887b637
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 13, 2026.

Transparency log

Release files / unicorn_binance_websocket_api-2.16.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL unicorn_binance_websocket_api-2.16.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 11.0 MB
Tags CPython 3.14 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
e4d151a2f03d9f84b80c97579c7c459153ab4c0fa5ba2c4c92a81ecf5e672732
BLAKE2b-256 checksum
How to use checksums
8bac0fa2861f5bf8672fc21f1a6e1bf2f2c0b3e87ca24c3858bd7ae79f8f4119
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 13, 2026.

Transparency log

Release files / unicorn_binance_websocket_api-2.16.0-cp314-cp314-macosx_11_0_arm64.whl

Download URL unicorn_binance_websocket_api-2.16.0-cp314-cp314-macosx_11_0_arm64.whl
Size 3.3 MB
Tags CPython 3.14 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
17a604a598be0d58d9da3b564edb36114e4f0894829db7c19243789ad3db0803
BLAKE2b-256 checksum
How to use checksums
c24b4f1e9829cd5e2b031cae8409398d7300a9bee0481c360947a15699edd6bd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 13, 2026.

Transparency log

Release files / unicorn_binance_websocket_api-2.16.0-cp314-cp314-macosx_10_15_x86_64.whl

Download URL unicorn_binance_websocket_api-2.16.0-cp314-cp314-macosx_10_15_x86_64.whl
Size 3.4 MB
Tags CPython 3.14 macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
5ffed1398c1484ba7bffb24aad78fdfbf896fef4e8f63ca77364b9575a34fff4
BLAKE2b-256 checksum
How to use checksums
9780768074a11c6e3a8ffcd2a9542037a188dfc41d503ca57987cae43508ed92
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 13, 2026.

Transparency log

Release files / unicorn_binance_websocket_api-2.16.0-cp314-cp314-macosx_10_15_universal2.whl

Download URL unicorn_binance_websocket_api-2.16.0-cp314-cp314-macosx_10_15_universal2.whl
Size 4.5 MB
Tags CPython 3.14 macOS 10.15+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
1258e19f0ff55ca2ec0c2de4780bae7144670a40e63cf08ef4c08a1bad97a41b
BLAKE2b-256 checksum
How to use checksums
4d737ae3c075115aa15d08df5f0d67d4529d98a099552ed995eff1f65ce1c067
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 13, 2026.

Transparency log

Release files / unicorn_binance_websocket_api-2.16.0-cp313-cp313-win_amd64.whl

Download URL unicorn_binance_websocket_api-2.16.0-cp313-cp313-win_amd64.whl
Size 3.2 MB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
073c500fe660ad80700e70bec117cfe648ad455cf83de8db4f5e62bdec5ceb31
BLAKE2b-256 checksum
How to use checksums
360f23a71a7be789fe0203b7900a34983ffce0886bcf41fd8769dafc1d3e087f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 13, 2026.

Transparency log

Release files / unicorn_binance_websocket_api-2.16.0-cp313-cp313-musllinux_1_2_x86_64.whl

Download URL unicorn_binance_websocket_api-2.16.0-cp313-cp313-musllinux_1_2_x86_64.whl
Size 11.0 MB
Tags CPython 3.13 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
9609791f24e78d38b5ff93c390c4bc4e7779deedb5367ba37ee46c5797ab9ca1
BLAKE2b-256 checksum
How to use checksums
7d80da0024f6426390b686896cfa2f81eedc51cd6347ebb427cdb4ced4eefe31
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 13, 2026.

Transparency log

Release files / unicorn_binance_websocket_api-2.16.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL unicorn_binance_websocket_api-2.16.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 11.1 MB
Tags CPython 3.13 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
fd421253be88867306e465dc0c4a8b11ff4a7c314f3db55e054fffb4e31a738f
BLAKE2b-256 checksum
How to use checksums
cdef975c77b43aec983a5d2331f5960b46bc02d2345a14f760d9b0f254b8a2ab
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 13, 2026.

Transparency log

Release files / unicorn_binance_websocket_api-2.16.0-cp313-cp313-macosx_11_0_arm64.whl

Download URL unicorn_binance_websocket_api-2.16.0-cp313-cp313-macosx_11_0_arm64.whl
Size 3.3 MB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
2ec6791a1a12f4c3b891df2d3208cd7cd2b449dc3bcedc520505f3dbd0eec47d
BLAKE2b-256 checksum
How to use checksums
f25482a309a09c5c2ddb57a58ecc41beebb59fe11fa190ee8e36bf14075c2a9d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 13, 2026.

Transparency log

Release files / unicorn_binance_websocket_api-2.16.0-cp313-cp313-macosx_10_13_x86_64.whl

Download URL unicorn_binance_websocket_api-2.16.0-cp313-cp313-macosx_10_13_x86_64.whl
Size 3.4 MB
Tags CPython 3.13 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
eca61ffe95da45ec6a038fbf0184dae9083297eae472ce4f19988c2c12875954
BLAKE2b-256 checksum
How to use checksums
044945eb6f4c2f25ee34f714e0ade7c6c89e2ef152a8e6bd49f3f25f02247dc6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 13, 2026.

Transparency log

Release files / unicorn_binance_websocket_api-2.16.0-cp313-cp313-macosx_10_13_universal2.whl

Download URL unicorn_binance_websocket_api-2.16.0-cp313-cp313-macosx_10_13_universal2.whl
Size 4.5 MB
Tags CPython 3.13 macOS 10.13+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
eff2d35a22cfc87dc07ba26ba1df3ca4d65d985127f23e4fa90b3d3b631e6e97
BLAKE2b-256 checksum
How to use checksums
4f8cd50a28125d42ff6eef2fb0760345b1d7b534db24e40d4f51a9fa14179e61
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 13, 2026.

Transparency log

Release files / unicorn_binance_websocket_api-2.16.0-cp312-cp312-win_amd64.whl

Download URL unicorn_binance_websocket_api-2.16.0-cp312-cp312-win_amd64.whl
Size 3.2 MB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
df2acf207dad31692a899a35c4d476f78de1cbdeb4fd13147f292dbe520242bb
BLAKE2b-256 checksum
How to use checksums
bed5e7ced0b718b353b1b348094ac1c28b56c52acca8334fe9c762041c25371a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 13, 2026.

Transparency log

Release files / unicorn_binance_websocket_api-2.16.0-cp312-cp312-musllinux_1_2_x86_64.whl

Download URL unicorn_binance_websocket_api-2.16.0-cp312-cp312-musllinux_1_2_x86_64.whl
Size 11.1 MB
Tags CPython 3.12 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
e7e0a5a24648ce95487212f46dec15ea6670eb83a6f7dba4ac788f8f458893fc
BLAKE2b-256 checksum
How to use checksums
664712bbc410b80f530cd67cfe898d823d739c6146bfaf3a2ace9bdafa98b4bc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 13, 2026.

Transparency log

Release files / unicorn_binance_websocket_api-2.16.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL unicorn_binance_websocket_api-2.16.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 11.2 MB
Tags CPython 3.12 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
d4b1b42b466347a638723f6b03bc00e974a719096d028fea13a71df1ac13999d
BLAKE2b-256 checksum
How to use checksums
4bd24e0b2ed7d3e66308aa12c1d1753f799a2bf3b27eb9842e1afa684318d5e1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 13, 2026.

Transparency log

Release files / unicorn_binance_websocket_api-2.16.0-cp312-cp312-macosx_11_0_arm64.whl

Download URL unicorn_binance_websocket_api-2.16.0-cp312-cp312-macosx_11_0_arm64.whl
Size 3.3 MB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
9214abd4d6588f52bd96cd81068cd86e7c90fee8a65a78462606346193459fca
BLAKE2b-256 checksum
How to use checksums
f2dbd7ff160d118df1030c7571901069073bd12789477a8680b8320e625383f5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 13, 2026.

Transparency log

Release files / unicorn_binance_websocket_api-2.16.0-cp312-cp312-macosx_10_13_x86_64.whl

Download URL unicorn_binance_websocket_api-2.16.0-cp312-cp312-macosx_10_13_x86_64.whl
Size 3.4 MB
Tags CPython 3.12 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
4e622fbfedaf45738eb62302200e6c94bd2c93d4647405cead9914857c872f86
BLAKE2b-256 checksum
How to use checksums
49a93297923da10bcb086e21ff25164ec9084e951ac4d1ee88fa9f9ef80331dd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 13, 2026.

Transparency log

Release files / unicorn_binance_websocket_api-2.16.0-cp312-cp312-macosx_10_13_universal2.whl

Download URL unicorn_binance_websocket_api-2.16.0-cp312-cp312-macosx_10_13_universal2.whl
Size 4.5 MB
Tags CPython 3.12 macOS 10.13+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
f8e05d88bfaef8255c48f3144366c767b088d1b9b7052b176a87f9e042f60752
BLAKE2b-256 checksum
How to use checksums
f30c3e3590c60910aa82555e140c61192c08fba962a745b032894748ac511bce
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 13, 2026.

Transparency log

Release files / unicorn_binance_websocket_api-2.16.0-cp311-cp311-win_amd64.whl

Download URL unicorn_binance_websocket_api-2.16.0-cp311-cp311-win_amd64.whl
Size 3.2 MB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
0fa33af6193ee57d9332a4ea0cdd6dbd1bbb4cefcd6cdb333bed33cba3397b41
BLAKE2b-256 checksum
How to use checksums
bfaf6b465f4cd4a3b3ffd976253abfbfb7fb706510547e0a4aea7a2632e03b3e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 13, 2026.

Transparency log

Release files / unicorn_binance_websocket_api-2.16.0-cp311-cp311-musllinux_1_2_x86_64.whl

Download URL unicorn_binance_websocket_api-2.16.0-cp311-cp311-musllinux_1_2_x86_64.whl
Size 11.4 MB
Tags CPython 3.11 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
26f1aa8d8c469dfcd9fcc74d5369b7b921e77abd9eca3ef976e66f01b8c43537
BLAKE2b-256 checksum
How to use checksums
bb8dcbfc7c82d03ddc613876650134626882db470e9d17308b3ce58c9530642a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 13, 2026.

Transparency log

Release files / unicorn_binance_websocket_api-2.16.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL unicorn_binance_websocket_api-2.16.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 11.4 MB
Tags CPython 3.11 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
5d18abd687ec9d64b62b3163e28ddb4bc9e82cd1202a6a47736dba6b482d6d0d
BLAKE2b-256 checksum
How to use checksums
7c572c4dd979721bdef61d097fe837a469259943e9164b842945bcb315ec66f8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 13, 2026.

Transparency log

Release files / unicorn_binance_websocket_api-2.16.0-cp311-cp311-macosx_11_0_arm64.whl

Download URL unicorn_binance_websocket_api-2.16.0-cp311-cp311-macosx_11_0_arm64.whl
Size 3.3 MB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
dc88017c2e61b9b716e4edff85427ac9c665e3a72416b264f1255e94a0ac60af
BLAKE2b-256 checksum
How to use checksums
c0330c0349643b94f40061a88e82488da9251c0b75ce93d05198a9a0c0c1287e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 13, 2026.

Transparency log

Release files / unicorn_binance_websocket_api-2.16.0-cp311-cp311-macosx_10_9_x86_64.whl

Download URL unicorn_binance_websocket_api-2.16.0-cp311-cp311-macosx_10_9_x86_64.whl
Size 3.4 MB
Tags CPython 3.11 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
a23949a3e2d7ac56934e18023d87f6c6e0c0edaf9d00cdccf5259e4a2d8d957f
BLAKE2b-256 checksum
How to use checksums
01d9cef9a313d014f141edcefddba9fa80b8954c38f43eaae49c0f9b5213b596
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 13, 2026.

Transparency log

Release files / unicorn_binance_websocket_api-2.16.0-cp311-cp311-macosx_10_9_universal2.whl

Download URL unicorn_binance_websocket_api-2.16.0-cp311-cp311-macosx_10_9_universal2.whl
Size 4.6 MB
Tags CPython 3.11 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
9c2a4286ae80efad9cb87d2ffeb4ada9276824e06b03a32e2c70404ab7ed02a7
BLAKE2b-256 checksum
How to use checksums
6a853d34352e0efe1bc7e085bc161918f20166ca0718120a73882da84cca0038
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 13, 2026.

Transparency log

Release files / unicorn_binance_websocket_api-2.16.0-cp310-cp310-win_amd64.whl

Download URL unicorn_binance_websocket_api-2.16.0-cp310-cp310-win_amd64.whl
Size 3.2 MB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
3d44d9599775af207b54c62a5ceee7d53b0024d80f01cd91ce10fdd7777e87d6
BLAKE2b-256 checksum
How to use checksums
935b094f80fe11a8a7c6d7020e46f7e3ae9e2d7356662763bc96c21f9b04f935
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 13, 2026.

Transparency log

Release files / unicorn_binance_websocket_api-2.16.0-cp310-cp310-musllinux_1_2_x86_64.whl

Download URL unicorn_binance_websocket_api-2.16.0-cp310-cp310-musllinux_1_2_x86_64.whl
Size 11.0 MB
Tags CPython 3.10 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
1ad5de719094c3ce6b29d2c068bcf49687c27282fed6962aee7ff34913968608
BLAKE2b-256 checksum
How to use checksums
b88f44fe72299cc6516fc1c76b539806754c803eaa40343acd0e33d40cda4162
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 13, 2026.

Transparency log

Release files / unicorn_binance_websocket_api-2.16.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL unicorn_binance_websocket_api-2.16.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 11.0 MB
Tags CPython 3.10 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
cab2fd259931d8bcd911de127d6e3826b6a4c352034f5d970bbd32a6d54e9512
BLAKE2b-256 checksum
How to use checksums
afab5b88cb68abc6bba3319e42a837990a5820ad514b284a60fa974a893a07fe
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 13, 2026.

Transparency log

Release files / unicorn_binance_websocket_api-2.16.0-cp310-cp310-macosx_11_0_arm64.whl

Download URL unicorn_binance_websocket_api-2.16.0-cp310-cp310-macosx_11_0_arm64.whl
Size 3.3 MB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
304a1618dcadba2d68b5b995417d22eb33852fe7fb9b829a0d48c71f757b3566
BLAKE2b-256 checksum
How to use checksums
69323b12287247fb8ff4f7c42ca0c5ddbb78b40ed30a8d75c0cb8880fbce04b0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 13, 2026.

Transparency log

Release files / unicorn_binance_websocket_api-2.16.0-cp310-cp310-macosx_10_9_x86_64.whl

Download URL unicorn_binance_websocket_api-2.16.0-cp310-cp310-macosx_10_9_x86_64.whl
Size 3.4 MB
Tags CPython 3.10 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
582839c2d97136869201b101081f35af10d01a0726dd73372548eb8f3ff99d09
BLAKE2b-256 checksum
How to use checksums
0b06ed6f5ed793443006cabd4aa0c270447437bfe29599a16148577856c2704c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 13, 2026.

Transparency log

Release files / unicorn_binance_websocket_api-2.16.0-cp310-cp310-macosx_10_9_universal2.whl

Download URL unicorn_binance_websocket_api-2.16.0-cp310-cp310-macosx_10_9_universal2.whl
Size 4.6 MB
Tags CPython 3.10 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
35391510d88a0c310df722252b4c851ba841b3b0ffc53682bc7cefaef9432bae
BLAKE2b-256 checksum
How to use checksums
d4a250d5298575e50340bc77718798511b5a21e0d81e60412a8a47145f244bc8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 13, 2026.

Transparency log

Release files / unicorn_binance_websocket_api-2.16.0-cp39-cp39-win_amd64.whl

Download URL unicorn_binance_websocket_api-2.16.0-cp39-cp39-win_amd64.whl
Size 3.2 MB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
d9b4a5c18a1f4d5f5b9dd58e8478b79b307aa7b77fd2861b54343f063fb896e7
BLAKE2b-256 checksum
How to use checksums
68af7432cce51d7cf46921e6914d7adfa25c360b45b6cb543cb902baea4d18c2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 13, 2026.

Transparency log

Release files / unicorn_binance_websocket_api-2.16.0-cp39-cp39-musllinux_1_2_x86_64.whl

Download URL unicorn_binance_websocket_api-2.16.0-cp39-cp39-musllinux_1_2_x86_64.whl
Size 10.9 MB
Tags CPython 3.9 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
c2e03bd720844d598a13c5b43765ff19c02f20cba0b2b20b79b6e79b63c12769
BLAKE2b-256 checksum
How to use checksums
8de158c6cd153079181ab5c72de95a4261d7488b1f51e982eb701ce2f51be10f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 13, 2026.

Transparency log

Release files / unicorn_binance_websocket_api-2.16.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL unicorn_binance_websocket_api-2.16.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 10.9 MB
Tags CPython 3.9 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
c2125416ed448220942413872bfaa6289045ec255388533cb7dac86d7d9b46e3
BLAKE2b-256 checksum
How to use checksums
ed9c1e124f63178e49b8d7d79abe734e59189ffddcc464a0e47aa651d36f384d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 13, 2026.

Transparency log

Release files / unicorn_binance_websocket_api-2.16.0-cp39-cp39-macosx_11_0_arm64.whl

Download URL unicorn_binance_websocket_api-2.16.0-cp39-cp39-macosx_11_0_arm64.whl
Size 3.3 MB
Tags CPython 3.9 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
034696a573441b4ddb7df619758623699856aba2b0f727c8c7cdf7f83e6961aa
BLAKE2b-256 checksum
How to use checksums
af6fd47213b17bb985c788fad9e92d3c51a96c5b22bbefa0f52fd9e39e284d87
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 13, 2026.

Transparency log

Release files / unicorn_binance_websocket_api-2.16.0-cp39-cp39-macosx_10_9_x86_64.whl

Download URL unicorn_binance_websocket_api-2.16.0-cp39-cp39-macosx_10_9_x86_64.whl
Size 3.4 MB
Tags CPython 3.9 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
d27901eb006b191798adefbd21a5df3b30a7b8b7e6801313a7ed60723e1a5445
BLAKE2b-256 checksum
How to use checksums
4ab48aaa18f5f4b64c661c102e40d61510bcdb45a47c1956b55faf9be1fd3106
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 13, 2026.

Transparency log

Release files / unicorn_binance_websocket_api-2.16.0-cp39-cp39-macosx_10_9_universal2.whl

Download URL unicorn_binance_websocket_api-2.16.0-cp39-cp39-macosx_10_9_universal2.whl
Size 4.6 MB
Tags CPython 3.9 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
21be28301d62a5f80332836600ef529f65250b959c8482985cc0e0ab22408b0a
BLAKE2b-256 checksum
How to use checksums
4e91d71d5c68c80bd368432e43ed79a49ca648d39e54795598102d4ffd4e3382
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 13, 2026.

Transparency log

Release history Release notifications | RSS feed

This release

2.16.0 This release

37 release files

2.9.1

1 release file

2.9.0

24 release files

2.8.0

51 release files

2.7.2

51 release files

2.7.1

51 release files

2.7.0

51 release files

2.3.0

56 release files

2.2.0

56 release files

2.1.4

56 release files

2.1.3

56 release files

2.1.2

56 release files

2.1.1

56 release files

1.46.1

2 release files

1.46.0

2 release files

1.45.2

2 release files

1.43.3

2 release files

1.43.2

2 release files

1.43.1

2 release files

1.41.0

2 release files

1.40.7

2 release files

1.40.6

2 release files

1.40.5

1 release file

1.40.4

1 release file

1.40.3

1 release file

1.40.2

1 release file

1.40.1

1 release file

1.40.0

1 release file

1.39.0

1 release file

1.38.1

1 release file

1.38.0

1 release file

1.37.2

1 release file

1.37.1

1 release file

1.37.0

1 release file

1.36.1

1 release file

1.36.0

1 release file

1.35.0

1 release file

1.34.2

1 release file

1.34.1

1 release file

1.34.0

1 release file

1.33.1

1 release file

1.33.0

1 release file

1.32.0

1 release file

1.31.0

1 release file

1.30.0

1 release file

1.29.0

1 release file

1.28.0

1 release file

1.27.0

1 release file

1.26.0

1 release file

1.25.0

1 release file

1.24.0

1 release file

1.23.0

1 release file

1.22.0

1 release file

1.21.0

1 release file

1.20.0

1 release 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