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?
-
Fully managed websockets and 100% auto-reconnect! Also handles maintenance windows!
-
No memory leaks from Python version 3.9 to 3.14!
-
The full UBS stack is delivered as a compiled C extension for maximum performance.
-
Support for Binance Websocket API, send requests like create_order, cancel_open_orders and many more directly over websocket!
| Exchange | Exchange string | WS | WS API |
|---|---|---|---|
| Binance | binance.com |
||
| Binance Testnet | binance.com-testnet |
||
| Binance Margin | binance.com-margin |
||
| Binance Margin Testnet | binance.com-margin-testnet |
||
| Binance Isolated Margin | binance.com-isolated_margin |
||
| Binance Isolated Margin Testnet | binance.com-isolated_margin-testnet |
||
| Binance USD-M Futures | binance.com-futures |
||
| Binance USD-M Futures Testnet | binance.com-futures-testnet |
||
| Binance Coin-M Futures | binance.com-coin_futures |
||
| Binance European Options | binance.com-vanilla-options |
||
| Binance European Options Testnet | binance.com-vanilla-options-testnet |
||
| Binance Portfolio Margin* | binance.com-portfolio_margin |
||
| Binance US | binance.us |
||
| Binance TR | trbinance.com |
* Portfolio Margin support is currently limited to the user data stream (!userData), see the
Portfolio Margin example
and issue #452.
-
Streams are processing asynchronous/concurrent (Python asyncio) and each stream is started in a separate thread, so you don't need to deal with asyncio in your code! But you can consume with
await, if you want! -
Supports subscribe/unsubscribe on all exchanges! (Take a look to the max supported subscriptions per stream in the endpoint configuration overview!)
-
UNICORN Binance WebSocket API respects Binance's API guidelines and protects you from avoidable reconnects and bans.
-
Support for multiple private
!userDatastreams with differentapi_keyandapi_secret. (example_multiple_userdata_streams.py) -
Pick up the received data from the
stream_buffer(FIFO or LIFO) - if you can not store your data in cause of a temporary technical issue, you can kick back the data to thestream_bufferwhich stores the receives in the RAM till you are able to process the data in the normal way again. Learn more! -
Use separate
stream_buffersfor specific streams or users! -
Watch the
stream_signalsto receiveCONNECT,FIRST_RECEIVED_DATA,DISCONNECT,STOPandSTREAM_UNREPAIRABLEsignals from your streams! Learn more! -
Get the received data unchanged as received, as Python dictionary or converted with UnicornFy into well-formed Python dictionaries. Use the
outputparameter ofcreate_stream()to control the output format. -
Helpful management features like
clear_asyncio_queue(),clear_stream_buffer(),get_binance_api_status(),get_current_receiving_speed(),get_errors_from_endpoints(),get_limit_of_subscriptions_per_stream(),get_request_id(),get_result_by_request_id(),get_results_from_endpoints(),get_stream_buffer_length(),get_stream_info(),get_stream_list(),get_stream_id_by_label(),get_stream_statistic(),get_stream_subscriptions(),get_version(),is_update_available(),get_stream_data_from_asyncio_queue(),pop_stream_data_from_stream_buffer(),print_summary(),replace_stream(),set_stream_label(),set_ringbuffer_error_max_size(),subscribe_to_stream(),stop_stream(),unsubscribe_from_stream(),wait_till_stream_has_started()and many more! Explore them here. -
Monitor the status of the created
BinanceWebSocketApiManager()instance within your code withget_monitoring_status_plain()and specific streams withget_stream_info(). -
Available as a package via
pipandcondaas precompiled C extension with stub files for improved Intellisense functions and source code for easier debugging of the source code. To the installation. -
Nice to use with iPython: "IPython (Interactive Python) is a command shell for interactive computing that offers introspection, rich media, shell syntax, tab completion, and history." (example_interactive_mode.py)
-
Also, nice to use with the Jupyter Notebook :)
-
Integration of test cases and examples.
-
Customizable base URL.
-
Choice of the WebSocket engine:
websockets(default) orpicows, see WebSocket library. -
Proxy support (HTTP, HTTPS, SOCKS4, SOCKS5), passed natively to the WebSocket library:
ubwa = BinanceWebSocketApiManager(exchange="binance.com", proxy="socks5://user:pass@127.0.0.1:9050") ubwa = BinanceWebSocketApiManager(exchange="binance.com", proxy="http://127.0.0.1:3128")The legacy
socks5_proxy_server/socks5_proxy_user/socks5_proxy_passparameters keep working. REST requests (listenKey handling) follow asocks5://proxy only. Credentials containing@,:,/or%need percent-encoding in the URL;websocketssends them without decoding (python-websockets/websockets#1761), so UBWA rejects such credentials forwebsocket_library="websockets"at construction - use plain credentials orpicows.Read the docs or this how to for more information or try example_socks5_proxy.py.
-
Excessively tested on Linux, Mac and Windows on x86, arm32, arm64, ...
If you like the project, please 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.
Background, benchmarks and the 24 h soak in the article
picows in UNICORN Binance WebSocket API: Up to 2× the Throughput, Opt-In for Now.
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.3.0, x86_64 Linux (8 cores), 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 | 199,732 | 380,421 | 1.90x | 5.1 | 2.7 |
| medium_kline | 0.3 KB | 150,000 | 197,460 | 369,367 | 1.87x | 5.3 | 2.9 |
| large_depth20 | 1.0 KB | 60,000 | 167,888 | 315,078 | 1.88x | 6.5 | 3.6 |
| xlarge_depth_diff | 9.1 KB | 30,000 | 100,373 | 117,231 | 1.17x | 10.9 | 9.4 |
| huge_ticker_arr | 453.9 KB | 600 | 4,540 | 3,904 | 0.86x | 281.5 | 318.5 |
| multiplex_mix | 0.2 KB | 120,000 | 184,102 | 347,272 | 1.89x | 5.7 | 3.0 |
- Up to ~1 KB per message (aggTrade, kline, bookTicker, depth20, ...) picows delivers 1.7x-2x the throughput at
about half the CPU per message. At 9 KB (full
depthdiffs) picows is 1.2x ahead, and on the 450 KB!ticker@arrpayload it is behind. That row is an artifact of the local replay (a loopback firehose feeding a consumer that is slower than the wire, so picows drains a multi-MB socket buffer in one read): driven directly picows wins at every size, and with--rcvbuf 131072(client socket receive buffer capped, closer to a WAN link) it is 1.4x-1.55x ahead through UBWA as well. Details incontext/websocket-library.md. - 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
picowsfor high-throughput consumers (many streams,depth@100mson hundreds of symbols, CPU-bound hosts), stay onwebsocketsif 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.1) you determined here:
pip install https://github.com/oliver-zehentleitner/unicorn-binance-websocket-api/archive/2.16.1.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
- The Complete Binance Python API Guide 2026
- How to create a Binance API Key and API Secret?
- Create and Cancel Orders via WebSocket on Binance
- How to Download Klines from Binance using Python?
- Passing Binance Market Data to Apache Kafka in Python with aiokafka
- How to Connect to binance.com Websockets using Python via a Socks5 Proxy
- When IP Whitelisting Isn't What It Seems: A Real-World Case Study from the Binance API
- UBDCC Deep Dive: Building a Trust Layer for Binance Order Books
- picows in UNICORN Binance WebSocket API: Up to 2× the Throughput, Opt-In for Now
- UNICORN Binance Suite Article Series
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
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:
- https://t.me/binance_api_announcements
- https://t.me/binance_api_english
- https://t.me/Binance_USA
- https://t.me/TRBinanceTR
- https://t.me/BinanceExchange
How to report Bugs or suggest Improvements?
List of planned features - click 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!
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
We 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.1
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| unicorn_binance_websocket_api-2.16.1.tar.gz | 2.1 MB | Details |
Built distributions (wheels)
Total release size: 221.7 MB
Release files / unicorn_binance_websocket_api-2.16.1.tar.gz
| Download URL | unicorn_binance_websocket_api-2.16.1.tar.gz |
|---|---|
| Size | 2.1 MB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
5d0eb0b2b5fcb71e64705691ced6178a129b31fee8f8a94c15d94297194eba87
|
|
BLAKE2b-256 checksum How to use checksums |
2f6cfda493cdc91380c6c56d9d962ccbf2ad02a5512e949327b8dca6da4a530c
|
| 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 21, 2026.
Transparency logRelease files / unicorn_binance_websocket_api-2.16.1-cp314-cp314-win_amd64.whl
| Download URL | unicorn_binance_websocket_api-2.16.1-cp314-cp314-win_amd64.whl |
|---|---|
| Size | 3.2 MB |
| Tags | CPython 3.14 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
1b282a88d2d7bf90b88bce0a14511216b514a8639196222772ec4343ec36a227
|
|
BLAKE2b-256 checksum How to use checksums |
57c3c6c263d1695f4b96176d28fec65dd332f61c0510c40260dce09459e770a1
|
| 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 21, 2026.
Transparency logRelease files / unicorn_binance_websocket_api-2.16.1-cp314-cp314-musllinux_1_2_x86_64.whl
| Download URL | unicorn_binance_websocket_api-2.16.1-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 |
da466c24c0e0e699a2ba3d19a16d64fbb446175314a53af0b9429489d9bf6a48
|
|
BLAKE2b-256 checksum How to use checksums |
ca769725aa43d6d0e28c202aaaf0d4b7a9faa65b5a19d01d0c71da44f3b1933b
|
| 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 21, 2026.
Transparency logRelease files / unicorn_binance_websocket_api-2.16.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
| Download URL | unicorn_binance_websocket_api-2.16.1-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 |
c7088793e00b3eb148bfc3652167dad79b31a094bc071f4e317339ecae6f4f46
|
|
BLAKE2b-256 checksum How to use checksums |
c3048294fc8a2b8ce86876672c796af9751c3faf6b5313be9ff134e7a13805be
|
| 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 21, 2026.
Transparency logRelease files / unicorn_binance_websocket_api-2.16.1-cp314-cp314-macosx_11_0_arm64.whl
| Download URL | unicorn_binance_websocket_api-2.16.1-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 |
280eb58cb7199bc0ab4fbc545a44f31fd30d722ccf1ff061b8da9843e5996ee1
|
|
BLAKE2b-256 checksum How to use checksums |
3b74a4a016e449aad195a00ccdb06a4173e3a1e00d3d73051cbb53cbc7e56023
|
| 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 21, 2026.
Transparency logRelease files / unicorn_binance_websocket_api-2.16.1-cp314-cp314-macosx_10_15_x86_64.whl
| Download URL | unicorn_binance_websocket_api-2.16.1-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 |
d3ad04f3fbfc24635376682e0c4a8df90ab29ec6e53653758ec90bc97d37b165
|
|
BLAKE2b-256 checksum How to use checksums |
390aecf38801d0721ee4fa4a1daa24ff7d74821acae9fdc51e5578307aa87b4c
|
| 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 21, 2026.
Transparency logRelease files / unicorn_binance_websocket_api-2.16.1-cp314-cp314-macosx_10_15_universal2.whl
| Download URL | unicorn_binance_websocket_api-2.16.1-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 |
88502185dd7239e34f31db92ada347929f325228f8f3b15aad2dd57706d9346b
|
|
BLAKE2b-256 checksum How to use checksums |
6a8e3c3768f23cbddb41d29383d1757dd0d009b793859878404fe2478035d14e
|
| 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 21, 2026.
Transparency logRelease files / unicorn_binance_websocket_api-2.16.1-cp313-cp313-win_amd64.whl
| Download URL | unicorn_binance_websocket_api-2.16.1-cp313-cp313-win_amd64.whl |
|---|---|
| Size | 3.2 MB |
| Tags | CPython 3.13 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
b276c325782000a6d2cdf4eedcf0f2624f5d8d4dbc63570a64cefe0989b5c384
|
|
BLAKE2b-256 checksum How to use checksums |
7fb21cce2dcbe9121e655969b6e4139460da14406c2174ae510b85ade888dfc0
|
| 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 21, 2026.
Transparency logRelease files / unicorn_binance_websocket_api-2.16.1-cp313-cp313-musllinux_1_2_x86_64.whl
| Download URL | unicorn_binance_websocket_api-2.16.1-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 |
56a5e4dcb37c099c40ab9fef7af9b1a526ca3f901b176225513525559ca62020
|
|
BLAKE2b-256 checksum How to use checksums |
d914b5625e1841378f7047973db1fe81e00d653efb2f2d2461b3104f09562e9b
|
| 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 21, 2026.
Transparency logRelease files / unicorn_binance_websocket_api-2.16.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
| Download URL | unicorn_binance_websocket_api-2.16.1-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 |
fd116fd3fcaf31a81df43ce7bd8d91e226b4d158712ac0c496d5d768004e918e
|
|
BLAKE2b-256 checksum How to use checksums |
e6b12dae252deca5b02d71bce16079a44c5974e66b6d8e239bd0d008b9132bed
|
| 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 21, 2026.
Transparency logRelease files / unicorn_binance_websocket_api-2.16.1-cp313-cp313-macosx_11_0_arm64.whl
| Download URL | unicorn_binance_websocket_api-2.16.1-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 |
95e09020155ce29d4668aea4df130368aa9a1fcc5b41c85763b031e0a1a77417
|
|
BLAKE2b-256 checksum How to use checksums |
1d13be74fc68c737d103a41566e07224dfaca8f4c3ce33d818a5d123ebf47d76
|
| 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 21, 2026.
Transparency logRelease files / unicorn_binance_websocket_api-2.16.1-cp313-cp313-macosx_10_13_x86_64.whl
| Download URL | unicorn_binance_websocket_api-2.16.1-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 |
bfd13bc7a48b96b2cad68a82b9e9d6fef995f34725f61eef338f87028261d86c
|
|
BLAKE2b-256 checksum How to use checksums |
8c9a3eb9d9cf1e7ef94444b566b1c75752ab2e624be4ad019a3f08b686cdf232
|
| 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 21, 2026.
Transparency logRelease files / unicorn_binance_websocket_api-2.16.1-cp313-cp313-macosx_10_13_universal2.whl
| Download URL | unicorn_binance_websocket_api-2.16.1-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 |
e0441b358c68e543642ecf9318d02ee53b642e1a6d3652fc2a4719ac77b31007
|
|
BLAKE2b-256 checksum How to use checksums |
7a87d80e333fea6b98de6a750ef86520cb3d4118d97d7833cd37b8b34811978b
|
| 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 21, 2026.
Transparency logRelease files / unicorn_binance_websocket_api-2.16.1-cp312-cp312-win_amd64.whl
| Download URL | unicorn_binance_websocket_api-2.16.1-cp312-cp312-win_amd64.whl |
|---|---|
| Size | 3.2 MB |
| Tags | CPython 3.12 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
f5a2c8c26dcba2f53770c78c35b29f7a355973e9e9fc237cc6c7d580999e853c
|
|
BLAKE2b-256 checksum How to use checksums |
198a9205c88e1af3f1acc0371c11a50daa0ba3764562a84ab64853210742777d
|
| 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 21, 2026.
Transparency logRelease files / unicorn_binance_websocket_api-2.16.1-cp312-cp312-musllinux_1_2_x86_64.whl
| Download URL | unicorn_binance_websocket_api-2.16.1-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 |
d335f9caa86f24d3911b18ce6b8fe881ef672baa2d5d8c99fd5b39885e199688
|
|
BLAKE2b-256 checksum How to use checksums |
cf779f826088d404d5232d14f6063b41d875c1771333cd7ce3bb5273f1a26779
|
| 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 21, 2026.
Transparency logRelease files / unicorn_binance_websocket_api-2.16.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
| Download URL | unicorn_binance_websocket_api-2.16.1-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 |
c05b2b1cf1e9ebcd8a95263b8259d98f8275c91b360c500955785fadba4b4f13
|
|
BLAKE2b-256 checksum How to use checksums |
9bf833321e9cd4ba33d569da713653cf7248267c90f3d97971ac7e7b7dce99c4
|
| 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 21, 2026.
Transparency logRelease files / unicorn_binance_websocket_api-2.16.1-cp312-cp312-macosx_11_0_arm64.whl
| Download URL | unicorn_binance_websocket_api-2.16.1-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 |
d6b3f8ad980e7d300b4aad4ddf6ed4452296489939bbbe7c31ef8cf5f85a9729
|
|
BLAKE2b-256 checksum How to use checksums |
2748c776c65fe7bd18673685156fce86bb305d8e3ccfd7e27decd534eb5017f2
|
| 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 21, 2026.
Transparency logRelease files / unicorn_binance_websocket_api-2.16.1-cp312-cp312-macosx_10_13_x86_64.whl
| Download URL | unicorn_binance_websocket_api-2.16.1-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 |
59d0a1b68b669383d86d2d94f880511bf6211f40f8c89503b522e7d96f4ac5a2
|
|
BLAKE2b-256 checksum How to use checksums |
1525b69788e9a3097824b24064d7a81f80c60de89c88c36fcef055bb89fd7077
|
| 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 21, 2026.
Transparency logRelease files / unicorn_binance_websocket_api-2.16.1-cp312-cp312-macosx_10_13_universal2.whl
| Download URL | unicorn_binance_websocket_api-2.16.1-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 |
f91894edbb0ba185879bad530e8219a80fbfc9c540455d3fdb7f142eae0af2f7
|
|
BLAKE2b-256 checksum How to use checksums |
4f291a5e4c867fdb8ad2c7f3ea15deaf320731cdd79bfc695fca2078e9112532
|
| 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 21, 2026.
Transparency logRelease files / unicorn_binance_websocket_api-2.16.1-cp311-cp311-win_amd64.whl
| Download URL | unicorn_binance_websocket_api-2.16.1-cp311-cp311-win_amd64.whl |
|---|---|
| Size | 3.2 MB |
| Tags | CPython 3.11 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
87e04d043fea2c70cdfc006007328c2b2f86f7b7221069178d50f71e5996b3a6
|
|
BLAKE2b-256 checksum How to use checksums |
cf0d76b6c218e9a9cb164fb37937a2cbea8a8b9ce525ce7e9e649794ee47611d
|
| 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 21, 2026.
Transparency logRelease files / unicorn_binance_websocket_api-2.16.1-cp311-cp311-musllinux_1_2_x86_64.whl
| Download URL | unicorn_binance_websocket_api-2.16.1-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 |
6432b6e35ce2f3d819e3646fee1b5f63b3304ee34faf65a505c33bd680fea04f
|
|
BLAKE2b-256 checksum How to use checksums |
ec452e19a1cdc0d00a0c1fe4f7fc4ca254c8e7f3f9f60368025daa9a35d4a617
|
| 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 21, 2026.
Transparency logRelease files / unicorn_binance_websocket_api-2.16.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
| Download URL | unicorn_binance_websocket_api-2.16.1-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 |
cf5675fec893e5cd4e5c9ada90811feed72a9a27c7756cf127b78de463177326
|
|
BLAKE2b-256 checksum How to use checksums |
add6a0abf23dbd8ef372150a029fb07e01b305ee7502f3189b952ad497aec4f5
|
| 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 21, 2026.
Transparency logRelease files / unicorn_binance_websocket_api-2.16.1-cp311-cp311-macosx_11_0_arm64.whl
| Download URL | unicorn_binance_websocket_api-2.16.1-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 |
00b99add9429060b66e236d3d9ab36e4af8ae55d4204b641e7e6c3c119172d94
|
|
BLAKE2b-256 checksum How to use checksums |
e0776e14fbd8ace88bd0b0c5408ffcb4e5ad94868354b82a49281fc2261a45ef
|
| 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 21, 2026.
Transparency logRelease files / unicorn_binance_websocket_api-2.16.1-cp311-cp311-macosx_10_9_x86_64.whl
| Download URL | unicorn_binance_websocket_api-2.16.1-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 |
395ad552833f2c0bc88540c090af3d1dbdff152b5d0cd613df7f88ce64429e58
|
|
BLAKE2b-256 checksum How to use checksums |
81a549737886f12cc1eea0e9a5b978ba78b10ade0fc0a9d88b6e5db1cd7ca993
|
| 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 21, 2026.
Transparency logRelease files / unicorn_binance_websocket_api-2.16.1-cp311-cp311-macosx_10_9_universal2.whl
| Download URL | unicorn_binance_websocket_api-2.16.1-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 |
ebf2ade0fa924616a58d0912fca78bff0e4b0fbf7687f2face95dadde810f42c
|
|
BLAKE2b-256 checksum How to use checksums |
303c9894a3b01f01e83f41721a20b766b4ac0f313bda0bc0f4f21f6222e46b22
|
| 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 21, 2026.
Transparency logRelease files / unicorn_binance_websocket_api-2.16.1-cp310-cp310-win_amd64.whl
| Download URL | unicorn_binance_websocket_api-2.16.1-cp310-cp310-win_amd64.whl |
|---|---|
| Size | 3.2 MB |
| Tags | CPython 3.10 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
d9f0dc065e32eeddc7a60857e0e1ea5f5e45984b0438853d43734d94ba69c11a
|
|
BLAKE2b-256 checksum How to use checksums |
321c4a5331446fb6f1cdd8e0746f95ba294c26a5f7562ed0bb8e1ae5f8d1a794
|
| 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 21, 2026.
Transparency logRelease files / unicorn_binance_websocket_api-2.16.1-cp310-cp310-musllinux_1_2_x86_64.whl
| Download URL | unicorn_binance_websocket_api-2.16.1-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 |
bb9ce06e3e479761044dca3a319ca7dffb1cc0a3cd02c02837ca0720bb59feb0
|
|
BLAKE2b-256 checksum How to use checksums |
4960c78667da61ff87dcea64c73c77f30b8f9a39d53002ab1892ae88b488137b
|
| 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 21, 2026.
Transparency logRelease files / unicorn_binance_websocket_api-2.16.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
| Download URL | unicorn_binance_websocket_api-2.16.1-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 |
67d7310c67342816a66c5ea0b6b5e6961af85cfb271af1d30ff829401b231030
|
|
BLAKE2b-256 checksum How to use checksums |
bd6f7c7a170db9f51a7ab6613dc5563107394ffd4a0903aef27f3fd0d2529fff
|
| 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 21, 2026.
Transparency logRelease files / unicorn_binance_websocket_api-2.16.1-cp310-cp310-macosx_11_0_arm64.whl
| Download URL | unicorn_binance_websocket_api-2.16.1-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 |
b43e5f3cd8226742c91b7f8685dff1bb55e7d7ec13557ca6ca3f3bc909fcbe31
|
|
BLAKE2b-256 checksum How to use checksums |
847eb753b465c3b42d87ee13d94a19b9396cd53c18a7be159fbacdbeed64e716
|
| 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 21, 2026.
Transparency logRelease files / unicorn_binance_websocket_api-2.16.1-cp310-cp310-macosx_10_9_x86_64.whl
| Download URL | unicorn_binance_websocket_api-2.16.1-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 |
b611651d43a63b513ff898c1a1a77656e2226dc053d5be9c00b8e5b571627fac
|
|
BLAKE2b-256 checksum How to use checksums |
08b5545f7f5e55be32eb80ea9d5d1bae4c5a369f569aa178e8e65e032792ef23
|
| 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 21, 2026.
Transparency logRelease files / unicorn_binance_websocket_api-2.16.1-cp310-cp310-macosx_10_9_universal2.whl
| Download URL | unicorn_binance_websocket_api-2.16.1-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 |
160fde54c183c53e595a650fdf95d1a18a34fe9ce353a90e447175f84f1b8e24
|
|
BLAKE2b-256 checksum How to use checksums |
1f3fe48e5a2b6889de4dc7663422e0b695924a4e2958ab372e09781120199a29
|
| 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 21, 2026.
Transparency logRelease files / unicorn_binance_websocket_api-2.16.1-cp39-cp39-win_amd64.whl
| Download URL | unicorn_binance_websocket_api-2.16.1-cp39-cp39-win_amd64.whl |
|---|---|
| Size | 3.2 MB |
| Tags | CPython 3.9 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
cb0341973f82d610be10731eb3eac3dff7e6b6e105504b5160c66c57149dcd22
|
|
BLAKE2b-256 checksum How to use checksums |
8e1d46d13ea9db402f739973f8e51c50a0a232cd095d8578c15dbe4daf4d52bb
|
| 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 21, 2026.
Transparency logRelease files / unicorn_binance_websocket_api-2.16.1-cp39-cp39-musllinux_1_2_x86_64.whl
| Download URL | unicorn_binance_websocket_api-2.16.1-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 |
0f1f7e0a76ed8926a8e8bbb6c9dd1905c1ffddc01f67e942f2ad0b5be3631851
|
|
BLAKE2b-256 checksum How to use checksums |
fd8cb0569bd70b71b8b071c6cb2a4bb59ce4b598e5be6b83657cbdea737afe0d
|
| 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 21, 2026.
Transparency logRelease files / unicorn_binance_websocket_api-2.16.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
| Download URL | unicorn_binance_websocket_api-2.16.1-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 |
d48f368ff8a09d40434172310610d1dff1b6181057ee9b8cade6382a386eb03a
|
|
BLAKE2b-256 checksum How to use checksums |
9fcf2e51341c18dcbc5bb5dc2948eaa5a9b520aa848b941118a5506c37364ad1
|
| 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 21, 2026.
Transparency logRelease files / unicorn_binance_websocket_api-2.16.1-cp39-cp39-macosx_11_0_arm64.whl
| Download URL | unicorn_binance_websocket_api-2.16.1-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 |
61a7bbb917c7ee99115ee0d928a561dd764fc5a64719d690c2e3c95f5eb07f98
|
|
BLAKE2b-256 checksum How to use checksums |
6c9a96de2e985ca4b17f8a91ea4013380caec627f48477e151b6e707965774dc
|
| 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 21, 2026.
Transparency logRelease files / unicorn_binance_websocket_api-2.16.1-cp39-cp39-macosx_10_9_x86_64.whl
| Download URL | unicorn_binance_websocket_api-2.16.1-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 |
6052eaf70ae9e0d48b4578cc078da92a989b9a426c5dad7d77c0d0b838e74177
|
|
BLAKE2b-256 checksum How to use checksums |
3108c77516a64a4cf8f15b4f8581cacd1a8e26c3e6fa1fa16635d3e92eab6592
|
| 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 21, 2026.
Transparency logRelease files / unicorn_binance_websocket_api-2.16.1-cp39-cp39-macosx_10_9_universal2.whl
| Download URL | unicorn_binance_websocket_api-2.16.1-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 |
f16d8fe0ed038d668839ebee5fb56030a51858456ce8866360886096694e48bb
|
|
BLAKE2b-256 checksum How to use checksums |
29fe47a3463150c850b96e7ad5e39d7c22eed223b71fe34e34040d38c6a86c24
|
| 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 21, 2026.
Transparency log