Skip to main content

GitHub Release GitHub Downloads PyPi Release PyPi Downloads Conda-Forge Version Conda-Forge Downloads License Supported Python Version PyPI - Status codecov CodeQL Unittests Build and Publish GH+PyPi Conda-Forge Build Read the Docs Read How To`s Github Telegram Reddit

UBS-Banner

UNICORN Binance REST API

Description | Installation | Documentation | Examples | Change Log | Wiki | Social | Notifications | Bugs | Contributing | Disclaimer

A Python SDK to use the Binance REST API`s (com+testnet, com-margin+testnet, com-isolated_margin+testnet, com-futures+testnet, com-vanilla-options+testnet, us, tr) in a simple, fast, flexible, robust and fully-featured way.

Part of 'UNICORN Binance Suite'.

Receive Data from Binance REST API Endpoints

Initiate BinanceRestApiManager()

from unicorn_binance_rest_api import BinanceRestApiManager

ubra = BinanceRestApiManager(api_key="YOUR_BINANCE_API_KEY", 
                             api_secret="YOUR_BINANCE_API_SECRET", 
                             exchange="binance.com")

Print a snapshot of an order book

print(f"BNBBTC order book: {ubra.get_order_book(symbol='BNBBTC')}")

Get all symbol prices

print(f"All tickers:\r\n{ubra.get_all_tickers()}")

Get the used weight

Please Note: https://github.com/binance-us/binance-official-api-docs/blob/master/rest-api.md#limits

print(f"Used weight: {ubra.get_used_weight()}")

Send data to Binance REST API Endpoints

Initiate BinanceRestApiManager()

ubra = BinanceRestApiManager(api_key="YOUR_BINANCE_API_KEY", 
                             api_secret="YOUR_BINANCE_API_SECRET", 
                             exchange="binance.com-isolated_margin")

Buy BTC with a market order using 100 USDT

buy_order = ubra.create_margin_order(symbol="BTCUSDT",
                                     isIsolated="TRUE",
                                     side="BUY",
                                     type="MARKET",
                                     quoteOrderQty=100)
print(f"Buy Order Result: {buy_order}")

Stop ubra after usage to avoid memory leaks

When you instantiate UBRA with with, ubra.stop_manager() is automatically executed upon exiting the with-block.

with BinanceRestApiManager() as ubra:
    depth = ubra.get_order_book(symbol='BNBBTC')

Without with, you must explicitly execute ubra.stop_manager() yourself.

ubra.stop_manager()

More?

Discover even more possibilities or try our examples!

Description

The Python module UNICORN Binance REST API provides an API to the Binance REST 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 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.

Be aware that the Binance REST API is request based. if you want to send and receive high frequency and high volume data, you can use the UNICORN Binance Websocket API in combination.

What are the benefits of the UNICORN Binance REST API?

  • Supported exchanges:
Exchange Exchange string
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 user data stream listenKey management (portfolio_margin_stream_get_listen_key(), portfolio_margin_stream_keepalive(), portfolio_margin_stream_close()) — needed for UBWA to open Portfolio Margin user data streams. The full set of Portfolio Margin REST endpoints (account, positions, orders, etc.) is not covered yet — contributions welcome!

  • Helpful management features like get_used_weight(),

  • Available as a package via pip and conda as precompiled C extension with stub files for improved Intellisense functions and source code for easier debugging of the source code. To the installation.

  • Integration of test cases and examples.

  • Customizable base URL and request timeout.

  • Socks5 Proxy support:

    ubra = BinanceRestApiManager(exchange="binance.com", socks5_proxy_server="127.0.0.1:9050") 
    

    Read the docs or this how to for more information or try example_socks5_proxy.py.

  • Excessively tested on Linux, Mac and Windows

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-rest-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-rest-api

Update

pip install unicorn-binance-rest-api --upgrade

conda

conda install -c conda-forge unicorn-binance-rest-api

From source of the latest release with PIP from GitHub

Linux, macOS, ...

Run in bash:

pip install https://github.com/oliver-zehentleitner/unicorn-binance-rest-api/archive/$(curl -s https://api.github.com/repos/oliver-zehentleitner/unicorn-binance-rest-api/releases/latest | grep -oP '"tag_name": "\K(.*)(?=")').tar.gz --upgrade

Windows

Use the below command with the version (such as 2.12.0) you determined here:

pip install https://github.com/oliver-zehentleitner/unicorn-binance-rest-api/archive/2.12.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-rest-api/tarball/master --upgrade

Conda environment, Virtualenv or plain Python

Download the latest release or the current master branch and use:

  • ./environment.yml
  • ./meta.yaml
  • ./pyproject.toml
  • ./requirements.txt
  • ./setup.py

Change Log

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

Documentation

Examples

Related Articles

Project Homepage

https://github.com/oliver-zehentleitner/unicorn-binance-rest-api

Wiki

https://github.com/oliver-zehentleitner/unicorn-binance-rest-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_availabe().

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 REST 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-rest-api 2.12.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-rest-api 2.12.0
File Size Uploaded
unicorn_binance_rest_api-2.12.0.tar.gz 618.6 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for unicorn-binance-rest-api 2.12.0
File
unicorn_binance_rest_api-2.12.0-cp314-cp314-win_amd64.whl CPython 3.14 CPython 3.14 Windows x86-64 Details
unicorn_binance_rest_api-2.12.0-cp314-cp314-musllinux_1_2_x86_64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ x86-64 Details
unicorn_binance_rest_api-2.12.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_rest_api-2.12.0-cp314-cp314-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 macOS 11.0+ ARM64 Details
unicorn_binance_rest_api-2.12.0-cp314-cp314-macosx_10_15_x86_64.whl CPython 3.14 CPython 3.14 macOS 10.15+ x86-64 Details
unicorn_binance_rest_api-2.12.0-cp314-cp314-macosx_10_15_universal2.whl CPython 3.14 CPython 3.14 macOS 10.15+ universal2 (ARM64, x86-64) Details
unicorn_binance_rest_api-2.12.0-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
unicorn_binance_rest_api-2.12.0-cp313-cp313-musllinux_1_2_x86_64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ x86-64 Details
unicorn_binance_rest_api-2.12.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_rest_api-2.12.0-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
unicorn_binance_rest_api-2.12.0-cp313-cp313-macosx_10_13_x86_64.whl CPython 3.13 CPython 3.13 macOS 10.13+ x86-64 Details
unicorn_binance_rest_api-2.12.0-cp313-cp313-macosx_10_13_universal2.whl CPython 3.13 CPython 3.13 macOS 10.13+ universal2 (ARM64, x86-64) Details
unicorn_binance_rest_api-2.12.0-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
unicorn_binance_rest_api-2.12.0-cp312-cp312-musllinux_1_2_x86_64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-64 Details
unicorn_binance_rest_api-2.12.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.28+ x86-64, Linux glibc 2.17+ x86-64 Details
unicorn_binance_rest_api-2.12.0-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
unicorn_binance_rest_api-2.12.0-cp312-cp312-macosx_10_13_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.13+ x86-64 Details
unicorn_binance_rest_api-2.12.0-cp312-cp312-macosx_10_13_universal2.whl CPython 3.12 CPython 3.12 macOS 10.13+ universal2 (ARM64, x86-64) Details
unicorn_binance_rest_api-2.12.0-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
unicorn_binance_rest_api-2.12.0-cp311-cp311-musllinux_1_2_x86_64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ x86-64 Details
unicorn_binance_rest_api-2.12.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_rest_api-2.12.0-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
unicorn_binance_rest_api-2.12.0-cp311-cp311-macosx_10_9_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.9+ x86-64 Details
unicorn_binance_rest_api-2.12.0-cp311-cp311-macosx_10_9_universal2.whl CPython 3.11 CPython 3.11 macOS 10.9+ universal2 (ARM64, x86-64) Details
unicorn_binance_rest_api-2.12.0-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
unicorn_binance_rest_api-2.12.0-cp310-cp310-musllinux_1_2_x86_64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ x86-64 Details
unicorn_binance_rest_api-2.12.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_rest_api-2.12.0-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
unicorn_binance_rest_api-2.12.0-cp310-cp310-macosx_10_9_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.9+ x86-64 Details
unicorn_binance_rest_api-2.12.0-cp310-cp310-macosx_10_9_universal2.whl CPython 3.10 CPython 3.10 macOS 10.9+ universal2 (ARM64, x86-64) Details
unicorn_binance_rest_api-2.12.0-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
unicorn_binance_rest_api-2.12.0-cp39-cp39-musllinux_1_2_x86_64.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ x86-64 Details
unicorn_binance_rest_api-2.12.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_rest_api-2.12.0-cp39-cp39-macosx_11_0_arm64.whl CPython 3.9 CPython 3.9 macOS 11.0+ ARM64 Details
unicorn_binance_rest_api-2.12.0-cp39-cp39-macosx_10_9_x86_64.whl CPython 3.9 CPython 3.9 macOS 10.9+ x86-64 Details
unicorn_binance_rest_api-2.12.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: 58.9 MB

Release files / unicorn_binance_rest_api-2.12.0.tar.gz

Download URL unicorn_binance_rest_api-2.12.0.tar.gz
Size 618.6 kB
Tags Source
SHA-256 checksum
How to use checksums
35e1f3aad3aa7080d8386e8231c226d8c7a7c1bbde56182a6f7fd449791ab3cf
BLAKE2b-256 checksum
How to use checksums
aac506414be4962194b83c5202befa48afce786b4b7c641381b6e9b756005c56
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

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 Jul 2, 2026.

Transparency log

Release files / unicorn_binance_rest_api-2.12.0-cp314-cp314-win_amd64.whl

Download URL unicorn_binance_rest_api-2.12.0-cp314-cp314-win_amd64.whl
Size 927.9 kB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
9665d4e9ebce1c73bb434e967047ee399004baa4cc3d09377acd62d1c39d200b
BLAKE2b-256 checksum
How to use checksums
d1b6b5eee204096648eac5a74baae5eb16a7a8c83f242113b5dc55fc3a2ca137
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

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 Jul 2, 2026.

Transparency log

Release files / unicorn_binance_rest_api-2.12.0-cp314-cp314-musllinux_1_2_x86_64.whl

Download URL unicorn_binance_rest_api-2.12.0-cp314-cp314-musllinux_1_2_x86_64.whl
Size 2.7 MB
Tags CPython 3.14 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
b89a2df6a78a16cf92f0d6b26b3951897c53b00b88000a0447754cf9903dc80e
BLAKE2b-256 checksum
How to use checksums
88b45766979613e08c9c42d00b3506354056c4548ef1285598a97d427501f2a3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

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 Jul 2, 2026.

Transparency log

Release files / unicorn_binance_rest_api-2.12.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL unicorn_binance_rest_api-2.12.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 2.9 MB
Tags CPython 3.14 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
1f1c8842bb16bca31da9b08a35181c878979bf3c43486a26343d6ac6fc72f462
BLAKE2b-256 checksum
How to use checksums
58f783a2859eef1c6332e0326f467d29e976208fdac602c926304436947727e9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

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 Jul 2, 2026.

Transparency log

Release files / unicorn_binance_rest_api-2.12.0-cp314-cp314-macosx_11_0_arm64.whl

Download URL unicorn_binance_rest_api-2.12.0-cp314-cp314-macosx_11_0_arm64.whl
Size 927.0 kB
Tags CPython 3.14 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
9d86730d8671f7e3c8aeacbed99acea12a7d90146355f62e120ac07f962ce114
BLAKE2b-256 checksum
How to use checksums
c7808f272ca52c83cafbc7425e222776adefba2dd4dea1a1b4fd8751e888385d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

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 Jul 2, 2026.

Transparency log

Release files / unicorn_binance_rest_api-2.12.0-cp314-cp314-macosx_10_15_x86_64.whl

Download URL unicorn_binance_rest_api-2.12.0-cp314-cp314-macosx_10_15_x86_64.whl
Size 964.4 kB
Tags CPython 3.14 macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
79cee44b3e34ab876e93a9cf1924e024f2800864ce1e8a86c7ae4be66fbf492d
BLAKE2b-256 checksum
How to use checksums
99d3d947008857ae270d2d2836a20ad5681022b31d134f7e81b18b864fa916a6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

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 Jul 2, 2026.

Transparency log

Release files / unicorn_binance_rest_api-2.12.0-cp314-cp314-macosx_10_15_universal2.whl

Download URL unicorn_binance_rest_api-2.12.0-cp314-cp314-macosx_10_15_universal2.whl
Size 1.3 MB
Tags CPython 3.14 macOS 10.15+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
1302e5ecfb9d97a989d5302ede7ed5ef53ed07ee2c8d08f977e5fa6b77e6b94e
BLAKE2b-256 checksum
How to use checksums
71196706c98d2e05779c873b1803b3b620d2d167e5e2af618ca55f0f6c375c05
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

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 Jul 2, 2026.

Transparency log

Release files / unicorn_binance_rest_api-2.12.0-cp313-cp313-win_amd64.whl

Download URL unicorn_binance_rest_api-2.12.0-cp313-cp313-win_amd64.whl
Size 928.2 kB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
48c98bbe8efd890bfb32a27dab15433324c3fd34907b2509f1324c517d4c7bb8
BLAKE2b-256 checksum
How to use checksums
b72c6129c4afd29f7268d3da7ade946e6fe12666e83b48a5c7dc39b34b7f75d1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

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 Jul 2, 2026.

Transparency log

Release files / unicorn_binance_rest_api-2.12.0-cp313-cp313-musllinux_1_2_x86_64.whl

Download URL unicorn_binance_rest_api-2.12.0-cp313-cp313-musllinux_1_2_x86_64.whl
Size 2.7 MB
Tags CPython 3.13 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
4affa4762fea2762d4ecf479e7e8c9b8bf5db39490d8778b713060928736dcaf
BLAKE2b-256 checksum
How to use checksums
73702d4a6ac3ef7cf40950bbfba920b2171c1d657fef121b0ac47625ca0fd5bf
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

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 Jul 2, 2026.

Transparency log

Release files / unicorn_binance_rest_api-2.12.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL unicorn_binance_rest_api-2.12.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 2.9 MB
Tags CPython 3.13 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
dabb0baf0fba8a807372c2364f99e1ac31aa93f47b5bc3fe1be3cf8892ec4853
BLAKE2b-256 checksum
How to use checksums
eda80c27453be3d4c42766ebfc40ef971c6444224dc72b1dc8990c8d9697917b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

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 Jul 2, 2026.

Transparency log

Release files / unicorn_binance_rest_api-2.12.0-cp313-cp313-macosx_11_0_arm64.whl

Download URL unicorn_binance_rest_api-2.12.0-cp313-cp313-macosx_11_0_arm64.whl
Size 925.3 kB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
8aa29c2cd56c81ecadba15afce59d5cac2640e744473a83241b56c1e4e1fd354
BLAKE2b-256 checksum
How to use checksums
ab0cc7f41df6faa399d69b54cb77439c6a31498ca7e769cef874fcad895cd872
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

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 Jul 2, 2026.

Transparency log

Release files / unicorn_binance_rest_api-2.12.0-cp313-cp313-macosx_10_13_x86_64.whl

Download URL unicorn_binance_rest_api-2.12.0-cp313-cp313-macosx_10_13_x86_64.whl
Size 967.6 kB
Tags CPython 3.13 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
b4bc74acf43029a4955d4de7a9ab845e5d9d1e8107f4c4727c93e505b62587de
BLAKE2b-256 checksum
How to use checksums
612cb7ea054bfa1dc83cd96d000a950652d1606499bd63842ed0c0a4049ede14
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

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 Jul 2, 2026.

Transparency log

Release files / unicorn_binance_rest_api-2.12.0-cp313-cp313-macosx_10_13_universal2.whl

Download URL unicorn_binance_rest_api-2.12.0-cp313-cp313-macosx_10_13_universal2.whl
Size 1.3 MB
Tags CPython 3.13 macOS 10.13+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
db8308ce5c337a105f250ed510d4c1ce12ae57fd58b8e5f13c69665a96732bab
BLAKE2b-256 checksum
How to use checksums
0f1fe65a6186cf036b748bd121d5dc62e1389e12e1365136eeb38a576b072d2c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

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 Jul 2, 2026.

Transparency log

Release files / unicorn_binance_rest_api-2.12.0-cp312-cp312-win_amd64.whl

Download URL unicorn_binance_rest_api-2.12.0-cp312-cp312-win_amd64.whl
Size 929.4 kB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
24192ea4b542e95226608924d77f2f26e3adc4e780409cfc6cf7e979d6308c91
BLAKE2b-256 checksum
How to use checksums
4b4b09738cdcc77dd4bd4690952aded5a32c9cc1b71c11fb4ce471a594cafec6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

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 Jul 2, 2026.

Transparency log

Release files / unicorn_binance_rest_api-2.12.0-cp312-cp312-musllinux_1_2_x86_64.whl

Download URL unicorn_binance_rest_api-2.12.0-cp312-cp312-musllinux_1_2_x86_64.whl
Size 2.8 MB
Tags CPython 3.12 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
6b29e81bff88e45e1cdd98bc82c85a830bfbad7f878123d6d665ca4e9729f00d
BLAKE2b-256 checksum
How to use checksums
997fb72f2c465493d3a05b7ac5b8d9dab26fb1f4d750225031ac453b7359c0e0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

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 Jul 2, 2026.

Transparency log

Release files / unicorn_binance_rest_api-2.12.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL unicorn_binance_rest_api-2.12.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 3.0 MB
Tags CPython 3.12 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
a56af2b38260d3796e3785d05cd11ccdec18f50145829a631e042df8cfe23e06
BLAKE2b-256 checksum
How to use checksums
3fd61477ca30b3f9dedaa540ffda2fa15a69be4418704189dcd1c8133d9f9d81
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

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 Jul 2, 2026.

Transparency log

Release files / unicorn_binance_rest_api-2.12.0-cp312-cp312-macosx_11_0_arm64.whl

Download URL unicorn_binance_rest_api-2.12.0-cp312-cp312-macosx_11_0_arm64.whl
Size 927.1 kB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
4ac68446e1b999ddd6db14db504c592ff1019d5df0578c3fd0f8ba3de3443ebe
BLAKE2b-256 checksum
How to use checksums
4672beda45b2710831f7d7a10ea18e314848e166a06c9a363c1859cdcd4357af
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

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 Jul 2, 2026.

Transparency log

Release files / unicorn_binance_rest_api-2.12.0-cp312-cp312-macosx_10_13_x86_64.whl

Download URL unicorn_binance_rest_api-2.12.0-cp312-cp312-macosx_10_13_x86_64.whl
Size 969.8 kB
Tags CPython 3.12 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
be35797db3266092ec13564c4f7888bfdbd45785ddd88209893f1169eb3ffa9a
BLAKE2b-256 checksum
How to use checksums
fe599561c648e249399307a4219b7bb0d398033dc65dfa4584b8ebe9ce7ab35a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

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 Jul 2, 2026.

Transparency log

Release files / unicorn_binance_rest_api-2.12.0-cp312-cp312-macosx_10_13_universal2.whl

Download URL unicorn_binance_rest_api-2.12.0-cp312-cp312-macosx_10_13_universal2.whl
Size 1.3 MB
Tags CPython 3.12 macOS 10.13+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
0c336efd9104f2f00c439f43b2e302be5b3f4aa3a6618cf2affe02d64328bded
BLAKE2b-256 checksum
How to use checksums
38245c9ed63439c440aaacd4290f593c302983d59db03d0468988aee2a967c3f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

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 Jul 2, 2026.

Transparency log

Release files / unicorn_binance_rest_api-2.12.0-cp311-cp311-win_amd64.whl

Download URL unicorn_binance_rest_api-2.12.0-cp311-cp311-win_amd64.whl
Size 929.9 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
3526f22142569ee9ecd2f76fa00c2baa201ce6507ef97cb20d811c0c11416694
BLAKE2b-256 checksum
How to use checksums
1bbad42501394a25b16419f42c47ab2b2063c7a8051abffef13a5c5bc7dccc57
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

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 Jul 2, 2026.

Transparency log

Release files / unicorn_binance_rest_api-2.12.0-cp311-cp311-musllinux_1_2_x86_64.whl

Download URL unicorn_binance_rest_api-2.12.0-cp311-cp311-musllinux_1_2_x86_64.whl
Size 2.8 MB
Tags CPython 3.11 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
83a8c022a12645d2642e40d418195a1a80fca479a2023b190b8ae64f44f784cc
BLAKE2b-256 checksum
How to use checksums
65a0b6fa98b3c3d0919386db152b48bf839a6392d8e74d517d7489209e24f3cf
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

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 Jul 2, 2026.

Transparency log

Release files / unicorn_binance_rest_api-2.12.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL unicorn_binance_rest_api-2.12.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 3.0 MB
Tags CPython 3.11 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
380f6368e1322b31909daf8e0fd37aad61d744f4d53cb3e3964cad844a63bff0
BLAKE2b-256 checksum
How to use checksums
89ca65384df5d04cd2ddc1d9858362151706fa84276d38b3ffa12f6ccd4fd05e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

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 Jul 2, 2026.

Transparency log

Release files / unicorn_binance_rest_api-2.12.0-cp311-cp311-macosx_11_0_arm64.whl

Download URL unicorn_binance_rest_api-2.12.0-cp311-cp311-macosx_11_0_arm64.whl
Size 939.4 kB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
6a84fc3269f905930cf94067f739321f8a122630e32a470479d7daefb4bd8eff
BLAKE2b-256 checksum
How to use checksums
d776e604de23febbb2efc09141159c7e452332e698a9ec2b16e6984cc1995ba0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

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 Jul 2, 2026.

Transparency log

Release files / unicorn_binance_rest_api-2.12.0-cp311-cp311-macosx_10_9_x86_64.whl

Download URL unicorn_binance_rest_api-2.12.0-cp311-cp311-macosx_10_9_x86_64.whl
Size 973.0 kB
Tags CPython 3.11 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
90aa7d6deeee44dcf3a3ad157007157056e86e9125a8ae54acfd8097cc069512
BLAKE2b-256 checksum
How to use checksums
e470cd56f599e451452c88b2d34f098d88bc8ee8e6b8dd1f79df7155e29dc2e0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

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 Jul 2, 2026.

Transparency log

Release files / unicorn_binance_rest_api-2.12.0-cp311-cp311-macosx_10_9_universal2.whl

Download URL unicorn_binance_rest_api-2.12.0-cp311-cp311-macosx_10_9_universal2.whl
Size 1.3 MB
Tags CPython 3.11 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
e4617bfda43bd9491e71336fdc0262ac2769c9fd8757f11ded92e11aafa43029
BLAKE2b-256 checksum
How to use checksums
cb5ea9c491968fa42457ed6e987e42b677a73ba68aaf63f7e07ab8c74d44d547
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

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 Jul 2, 2026.

Transparency log

Release files / unicorn_binance_rest_api-2.12.0-cp310-cp310-win_amd64.whl

Download URL unicorn_binance_rest_api-2.12.0-cp310-cp310-win_amd64.whl
Size 928.5 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
3ad4879dbf1518f468145ae83077639a6326c42cd0ff64d060f32c49d51d5d5a
BLAKE2b-256 checksum
How to use checksums
0254a58da28783b07b0ddccd6eaca8dc659174c5b822d7356e278dbde2b4f559
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

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 Jul 2, 2026.

Transparency log

Release files / unicorn_binance_rest_api-2.12.0-cp310-cp310-musllinux_1_2_x86_64.whl

Download URL unicorn_binance_rest_api-2.12.0-cp310-cp310-musllinux_1_2_x86_64.whl
Size 2.6 MB
Tags CPython 3.10 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
417d2daf7e632835ec3e6440e30e70cc7878d2fe31b6225f90ee3a28802e0366
BLAKE2b-256 checksum
How to use checksums
fd5244b71610690ae1f020feb6df0a2bf46adb57081dddda89f34aba7d371c69
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

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 Jul 2, 2026.

Transparency log

Release files / unicorn_binance_rest_api-2.12.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL unicorn_binance_rest_api-2.12.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 2.8 MB
Tags CPython 3.10 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
996444fbb6f8dc404750c9f3ba7a9938e346b03948c052a9391660910b42be04
BLAKE2b-256 checksum
How to use checksums
55a0b04c8893413d5952b6413b6ca278d35deab89a0fd91f62d1dd0b540a3420
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

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 Jul 2, 2026.

Transparency log

Release files / unicorn_binance_rest_api-2.12.0-cp310-cp310-macosx_11_0_arm64.whl

Download URL unicorn_binance_rest_api-2.12.0-cp310-cp310-macosx_11_0_arm64.whl
Size 940.1 kB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
104fa24b4acbc41089eb6962323e26c1052fde36a15ca2cdd5b8b29f5711bd2c
BLAKE2b-256 checksum
How to use checksums
690f4c558fb8fb9fcc4f28383b050495fa6264dca397ea03f89846d190f1ca91
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

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 Jul 2, 2026.

Transparency log

Release files / unicorn_binance_rest_api-2.12.0-cp310-cp310-macosx_10_9_x86_64.whl

Download URL unicorn_binance_rest_api-2.12.0-cp310-cp310-macosx_10_9_x86_64.whl
Size 973.6 kB
Tags CPython 3.10 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
1debb9427eca5526fc8d0d8b183d2487f25408cd4df39b45b65b7a67beff2422
BLAKE2b-256 checksum
How to use checksums
2ea830c15a21e8c49a5201bd8c34018b41828aa3cf30252e540797f8a2abf455
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

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 Jul 2, 2026.

Transparency log

Release files / unicorn_binance_rest_api-2.12.0-cp310-cp310-macosx_10_9_universal2.whl

Download URL unicorn_binance_rest_api-2.12.0-cp310-cp310-macosx_10_9_universal2.whl
Size 1.3 MB
Tags CPython 3.10 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
c517a44de07ed0bcbd6b1baef7f0fdf349032ab6eb3c7cab1699899cc8b5e31f
BLAKE2b-256 checksum
How to use checksums
65f4892b29afe9939e5bc357462a7b4ba7bcfdb794b7bcf936b4192a5ee19716
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

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 Jul 2, 2026.

Transparency log

Release files / unicorn_binance_rest_api-2.12.0-cp39-cp39-win_amd64.whl

Download URL unicorn_binance_rest_api-2.12.0-cp39-cp39-win_amd64.whl
Size 929.0 kB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
26480cd6c987c5eea2e6d19f2be207b9389fe1a7be20953416658cece843109a
BLAKE2b-256 checksum
How to use checksums
88f0bf71ebaafaa158e9584f85853e1ec0a98f30990834ee564c8ac7a83371a5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

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 Jul 2, 2026.

Transparency log

Release files / unicorn_binance_rest_api-2.12.0-cp39-cp39-musllinux_1_2_x86_64.whl

Download URL unicorn_binance_rest_api-2.12.0-cp39-cp39-musllinux_1_2_x86_64.whl
Size 2.6 MB
Tags CPython 3.9 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
55f8df18d3cbb2d2aa977c3b5142f0d36069ec19cd31386412ee3cd0655636e1
BLAKE2b-256 checksum
How to use checksums
b05582ccbb897f01e215066b0a934a75fc3dfa861fbd1bb844d3cc743646b827
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

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 Jul 2, 2026.

Transparency log

Release files / unicorn_binance_rest_api-2.12.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL unicorn_binance_rest_api-2.12.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 2.8 MB
Tags CPython 3.9 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
31225773f09fd0e430a7d9bc043f0d327c432fddd62dfcf4e93c1488243be623
BLAKE2b-256 checksum
How to use checksums
48fde602ee188412076cf1350e4dcf6499a894ceacc36b4744b7582216efbbd8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

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 Jul 2, 2026.

Transparency log

Release files / unicorn_binance_rest_api-2.12.0-cp39-cp39-macosx_11_0_arm64.whl

Download URL unicorn_binance_rest_api-2.12.0-cp39-cp39-macosx_11_0_arm64.whl
Size 941.5 kB
Tags CPython 3.9 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
d07e7e0b5abdd3f92f1448a600ed288a7f04e5ffc4ac0f12af7621c33d64a861
BLAKE2b-256 checksum
How to use checksums
141edc5be5ef918bade9cb5b3e54d380aeae4a8c63041f352e9304a35c89e514
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

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 Jul 2, 2026.

Transparency log

Release files / unicorn_binance_rest_api-2.12.0-cp39-cp39-macosx_10_9_x86_64.whl

Download URL unicorn_binance_rest_api-2.12.0-cp39-cp39-macosx_10_9_x86_64.whl
Size 974.3 kB
Tags CPython 3.9 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
fb60e593ade451fe082235a62ac639874210d2e690f6e48a1e82f7076264bc3f
BLAKE2b-256 checksum
How to use checksums
28ae61b6ff36e03a641c05914680faea9e083305073dff450af7ab5f3fbae233
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

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 Jul 2, 2026.

Transparency log

Release files / unicorn_binance_rest_api-2.12.0-cp39-cp39-macosx_10_9_universal2.whl

Download URL unicorn_binance_rest_api-2.12.0-cp39-cp39-macosx_10_9_universal2.whl
Size 1.3 MB
Tags CPython 3.9 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
e666ac55ee7fa357363968e44fb9bbc548bd0a88b9038787ff44cc24b3599ede
BLAKE2b-256 checksum
How to use checksums
ed6f673619fbc7d69dd149e5c74f4e1156f0a7c71d6172533f6f252e8262d13f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

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 Jul 2, 2026.

Transparency log

Release history Release notifications | RSS feed

This release

2.12.0 This release

37 release files

2.9.1

37 release files

2.8.1

37 release files

2.8.0

44 release files

2.7.0

44 release files

2.6.1

51 release files

2.6.0

51 release files

2.5.1

51 release files

2.5.0

51 release files

2.4.0

51 release files

2.2.1

59 release files

2.2.0

59 release files

2.1.2

59 release files

2.1.1

59 release files

2.1.0

59 release files

2.0.5

59 release files

2.0.4

56 release files

2.0.3

56 release files

2.0.2

56 release files

2.0.1

56 release files

1.9.0

2 release files

1.8.1

2 release files

1.8.0

2 release files

1.7.0

2 release files

1.6.0

2 release files

1.5.0

2 release files

1.4.3

2 release files

1.4.2

2 release files

1.4.1

1 release file

1.4.0

1 release file

1.3.0

1 release file

1.2.0

1 release file

1.1.1

1 release file

1.1.0

1 release file

1.0.1

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