Skip to main content

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

Project description

GitHub Release GitHub Downloads PyPi Release PyPi Downloads Conda-Forge Version Conda-Forge Downloads License Supported Python Version PyPI - Status codecov CodeQL 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.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

unicorn_binance_rest_api-2.12.0.tar.gz (618.6 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

unicorn_binance_rest_api-2.12.0-cp314-cp314-win_amd64.whl (927.9 kB view details)

Uploaded CPython 3.14Windows x86-64

unicorn_binance_rest_api-2.12.0-cp314-cp314-musllinux_1_2_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

unicorn_binance_rest_api-2.12.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (2.9 MB view details)

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

unicorn_binance_rest_api-2.12.0-cp314-cp314-macosx_11_0_arm64.whl (927.0 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

unicorn_binance_rest_api-2.12.0-cp314-cp314-macosx_10_15_x86_64.whl (964.4 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

unicorn_binance_rest_api-2.12.0-cp314-cp314-macosx_10_15_universal2.whl (1.3 MB view details)

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

unicorn_binance_rest_api-2.12.0-cp313-cp313-win_amd64.whl (928.2 kB view details)

Uploaded CPython 3.13Windows x86-64

unicorn_binance_rest_api-2.12.0-cp313-cp313-musllinux_1_2_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

unicorn_binance_rest_api-2.12.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (2.9 MB view details)

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

unicorn_binance_rest_api-2.12.0-cp313-cp313-macosx_11_0_arm64.whl (925.3 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

unicorn_binance_rest_api-2.12.0-cp313-cp313-macosx_10_13_x86_64.whl (967.6 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

unicorn_binance_rest_api-2.12.0-cp313-cp313-macosx_10_13_universal2.whl (1.3 MB view details)

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

unicorn_binance_rest_api-2.12.0-cp312-cp312-win_amd64.whl (929.4 kB view details)

Uploaded CPython 3.12Windows x86-64

unicorn_binance_rest_api-2.12.0-cp312-cp312-musllinux_1_2_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

unicorn_binance_rest_api-2.12.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (3.0 MB view details)

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

unicorn_binance_rest_api-2.12.0-cp312-cp312-macosx_11_0_arm64.whl (927.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

unicorn_binance_rest_api-2.12.0-cp312-cp312-macosx_10_13_x86_64.whl (969.8 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

unicorn_binance_rest_api-2.12.0-cp312-cp312-macosx_10_13_universal2.whl (1.3 MB view details)

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

unicorn_binance_rest_api-2.12.0-cp311-cp311-win_amd64.whl (929.9 kB view details)

Uploaded CPython 3.11Windows x86-64

unicorn_binance_rest_api-2.12.0-cp311-cp311-musllinux_1_2_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

unicorn_binance_rest_api-2.12.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (3.0 MB view details)

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

unicorn_binance_rest_api-2.12.0-cp311-cp311-macosx_11_0_arm64.whl (939.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

unicorn_binance_rest_api-2.12.0-cp311-cp311-macosx_10_9_x86_64.whl (973.0 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

unicorn_binance_rest_api-2.12.0-cp311-cp311-macosx_10_9_universal2.whl (1.3 MB view details)

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

unicorn_binance_rest_api-2.12.0-cp310-cp310-win_amd64.whl (928.5 kB view details)

Uploaded CPython 3.10Windows x86-64

unicorn_binance_rest_api-2.12.0-cp310-cp310-musllinux_1_2_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

unicorn_binance_rest_api-2.12.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (2.8 MB view details)

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

unicorn_binance_rest_api-2.12.0-cp310-cp310-macosx_11_0_arm64.whl (940.1 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

unicorn_binance_rest_api-2.12.0-cp310-cp310-macosx_10_9_x86_64.whl (973.6 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

unicorn_binance_rest_api-2.12.0-cp310-cp310-macosx_10_9_universal2.whl (1.3 MB view details)

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

unicorn_binance_rest_api-2.12.0-cp39-cp39-win_amd64.whl (929.0 kB view details)

Uploaded CPython 3.9Windows x86-64

unicorn_binance_rest_api-2.12.0-cp39-cp39-musllinux_1_2_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

unicorn_binance_rest_api-2.12.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (2.8 MB view details)

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

unicorn_binance_rest_api-2.12.0-cp39-cp39-macosx_11_0_arm64.whl (941.5 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

unicorn_binance_rest_api-2.12.0-cp39-cp39-macosx_10_9_x86_64.whl (974.3 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

unicorn_binance_rest_api-2.12.0-cp39-cp39-macosx_10_9_universal2.whl (1.3 MB view details)

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

File details

Details for the file unicorn_binance_rest_api-2.12.0.tar.gz.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.12.0.tar.gz
Algorithm Hash digest
SHA256 35e1f3aad3aa7080d8386e8231c226d8c7a7c1bbde56182a6f7fd449791ab3cf
MD5 ae70d6492c106161ac5afb7ca1ad00fe
BLAKE2b-256 aac506414be4962194b83c5202befa48afce786b4b7c641381b6e9b756005c56

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_rest_api-2.12.0.tar.gz:

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

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

File details

Details for the file unicorn_binance_rest_api-2.12.0-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.12.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 9665d4e9ebce1c73bb434e967047ee399004baa4cc3d09377acd62d1c39d200b
MD5 e1b3a4700b4e38ca154cf4a7943321fc
BLAKE2b-256 d1b6b5eee204096648eac5a74baae5eb16a7a8c83f242113b5dc55fc3a2ca137

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_rest_api-2.12.0-cp314-cp314-win_amd64.whl:

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

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

File details

Details for the file unicorn_binance_rest_api-2.12.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.12.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b89a2df6a78a16cf92f0d6b26b3951897c53b00b88000a0447754cf9903dc80e
MD5 0678c6da25d38ea2a33bf164e24ad67e
BLAKE2b-256 88b45766979613e08c9c42d00b3506354056c4548ef1285598a97d427501f2a3

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_rest_api-2.12.0-cp314-cp314-musllinux_1_2_x86_64.whl:

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

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

File details

Details for the file unicorn_binance_rest_api-2.12.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.12.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1f1c8842bb16bca31da9b08a35181c878979bf3c43486a26343d6ac6fc72f462
MD5 4e54b67d39a54ec1bf5be69a44d8921a
BLAKE2b-256 58f783a2859eef1c6332e0326f467d29e976208fdac602c926304436947727e9

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_rest_api-2.12.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

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

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

File details

Details for the file unicorn_binance_rest_api-2.12.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.12.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9d86730d8671f7e3c8aeacbed99acea12a7d90146355f62e120ac07f962ce114
MD5 80534a8f5bc1a4346563c329aa14ce3c
BLAKE2b-256 c7808f272ca52c83cafbc7425e222776adefba2dd4dea1a1b4fd8751e888385d

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_rest_api-2.12.0-cp314-cp314-macosx_11_0_arm64.whl:

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

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

File details

Details for the file unicorn_binance_rest_api-2.12.0-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.12.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 79cee44b3e34ab876e93a9cf1924e024f2800864ce1e8a86c7ae4be66fbf492d
MD5 5bf5e044e498f2c5b8172e20c515c12d
BLAKE2b-256 99d3d947008857ae270d2d2836a20ad5681022b31d134f7e81b18b864fa916a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_rest_api-2.12.0-cp314-cp314-macosx_10_15_x86_64.whl:

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

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

File details

Details for the file unicorn_binance_rest_api-2.12.0-cp314-cp314-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.12.0-cp314-cp314-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 1302e5ecfb9d97a989d5302ede7ed5ef53ed07ee2c8d08f977e5fa6b77e6b94e
MD5 65596ef10f706c43850cbc258c1ff2d7
BLAKE2b-256 71196706c98d2e05779c873b1803b3b620d2d167e5e2af618ca55f0f6c375c05

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_rest_api-2.12.0-cp314-cp314-macosx_10_15_universal2.whl:

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

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

File details

Details for the file unicorn_binance_rest_api-2.12.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.12.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 48c98bbe8efd890bfb32a27dab15433324c3fd34907b2509f1324c517d4c7bb8
MD5 81ee034fd7c85891be0003714991eb4b
BLAKE2b-256 b72c6129c4afd29f7268d3da7ade946e6fe12666e83b48a5c7dc39b34b7f75d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_rest_api-2.12.0-cp313-cp313-win_amd64.whl:

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

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

File details

Details for the file unicorn_binance_rest_api-2.12.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.12.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4affa4762fea2762d4ecf479e7e8c9b8bf5db39490d8778b713060928736dcaf
MD5 9d9e44153eb5d40ec08ab74f93126387
BLAKE2b-256 73702d4a6ac3ef7cf40950bbfba920b2171c1d657fef121b0ac47625ca0fd5bf

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_rest_api-2.12.0-cp313-cp313-musllinux_1_2_x86_64.whl:

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

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

File details

Details for the file unicorn_binance_rest_api-2.12.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.12.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 dabb0baf0fba8a807372c2364f99e1ac31aa93f47b5bc3fe1be3cf8892ec4853
MD5 312c720e6cb3819f720c6b8621eb20a0
BLAKE2b-256 eda80c27453be3d4c42766ebfc40ef971c6444224dc72b1dc8990c8d9697917b

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_rest_api-2.12.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

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

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

File details

Details for the file unicorn_binance_rest_api-2.12.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.12.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8aa29c2cd56c81ecadba15afce59d5cac2640e744473a83241b56c1e4e1fd354
MD5 1e82ebc9538eaabb81a697ca7a9bb341
BLAKE2b-256 ab0cc7f41df6faa399d69b54cb77439c6a31498ca7e769cef874fcad895cd872

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_rest_api-2.12.0-cp313-cp313-macosx_11_0_arm64.whl:

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

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

File details

Details for the file unicorn_binance_rest_api-2.12.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.12.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 b4bc74acf43029a4955d4de7a9ab845e5d9d1e8107f4c4727c93e505b62587de
MD5 c06cd860ce8faf31ea417df16b407b14
BLAKE2b-256 612cb7ea054bfa1dc83cd96d000a950652d1606499bd63842ed0c0a4049ede14

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_rest_api-2.12.0-cp313-cp313-macosx_10_13_x86_64.whl:

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

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

File details

Details for the file unicorn_binance_rest_api-2.12.0-cp313-cp313-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.12.0-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 db8308ce5c337a105f250ed510d4c1ce12ae57fd58b8e5f13c69665a96732bab
MD5 91bcc7f1be5cdc68583eec1b42bfb038
BLAKE2b-256 0f1fe65a6186cf036b748bd121d5dc62e1389e12e1365136eeb38a576b072d2c

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_rest_api-2.12.0-cp313-cp313-macosx_10_13_universal2.whl:

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

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

File details

Details for the file unicorn_binance_rest_api-2.12.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.12.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 24192ea4b542e95226608924d77f2f26e3adc4e780409cfc6cf7e979d6308c91
MD5 006baf35f1580d0504a5d9eee4aaec01
BLAKE2b-256 4b4b09738cdcc77dd4bd4690952aded5a32c9cc1b71c11fb4ce471a594cafec6

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_rest_api-2.12.0-cp312-cp312-win_amd64.whl:

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

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

File details

Details for the file unicorn_binance_rest_api-2.12.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.12.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6b29e81bff88e45e1cdd98bc82c85a830bfbad7f878123d6d665ca4e9729f00d
MD5 5f2d468a59d905b7efb348cbbac4e398
BLAKE2b-256 997fb72f2c465493d3a05b7ac5b8d9dab26fb1f4d750225031ac453b7359c0e0

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_rest_api-2.12.0-cp312-cp312-musllinux_1_2_x86_64.whl:

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

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

File details

Details for the file unicorn_binance_rest_api-2.12.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.12.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a56af2b38260d3796e3785d05cd11ccdec18f50145829a631e042df8cfe23e06
MD5 e0332cdfa96ffca25cd04b95d9cd4a66
BLAKE2b-256 3fd61477ca30b3f9dedaa540ffda2fa15a69be4418704189dcd1c8133d9f9d81

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_rest_api-2.12.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

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

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

File details

Details for the file unicorn_binance_rest_api-2.12.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.12.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4ac68446e1b999ddd6db14db504c592ff1019d5df0578c3fd0f8ba3de3443ebe
MD5 77c3f9fc4e6c3971104e826cce22c744
BLAKE2b-256 4672beda45b2710831f7d7a10ea18e314848e166a06c9a363c1859cdcd4357af

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_rest_api-2.12.0-cp312-cp312-macosx_11_0_arm64.whl:

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

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

File details

Details for the file unicorn_binance_rest_api-2.12.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.12.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 be35797db3266092ec13564c4f7888bfdbd45785ddd88209893f1169eb3ffa9a
MD5 adaa2f36c6f1ffb7d361f91a22a8c60d
BLAKE2b-256 fe599561c648e249399307a4219b7bb0d398033dc65dfa4584b8ebe9ce7ab35a

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_rest_api-2.12.0-cp312-cp312-macosx_10_13_x86_64.whl:

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

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

File details

Details for the file unicorn_binance_rest_api-2.12.0-cp312-cp312-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.12.0-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 0c336efd9104f2f00c439f43b2e302be5b3f4aa3a6618cf2affe02d64328bded
MD5 51e0f5d1b8899bd1fd74fe722da33a1a
BLAKE2b-256 38245c9ed63439c440aaacd4290f593c302983d59db03d0468988aee2a967c3f

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_rest_api-2.12.0-cp312-cp312-macosx_10_13_universal2.whl:

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

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

File details

Details for the file unicorn_binance_rest_api-2.12.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.12.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 3526f22142569ee9ecd2f76fa00c2baa201ce6507ef97cb20d811c0c11416694
MD5 509935c68d0842044941cdbe1f14dcba
BLAKE2b-256 1bbad42501394a25b16419f42c47ab2b2063c7a8051abffef13a5c5bc7dccc57

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_rest_api-2.12.0-cp311-cp311-win_amd64.whl:

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

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

File details

Details for the file unicorn_binance_rest_api-2.12.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.12.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 83a8c022a12645d2642e40d418195a1a80fca479a2023b190b8ae64f44f784cc
MD5 9ed1dbf5a5606b72937c138bcf8c16fa
BLAKE2b-256 65a0b6fa98b3c3d0919386db152b48bf839a6392d8e74d517d7489209e24f3cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_rest_api-2.12.0-cp311-cp311-musllinux_1_2_x86_64.whl:

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

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

File details

Details for the file unicorn_binance_rest_api-2.12.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.12.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 380f6368e1322b31909daf8e0fd37aad61d744f4d53cb3e3964cad844a63bff0
MD5 3d9936d1b0a60879bc0f46f4c5f61e40
BLAKE2b-256 89ca65384df5d04cd2ddc1d9858362151706fa84276d38b3ffa12f6ccd4fd05e

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_rest_api-2.12.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

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

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

File details

Details for the file unicorn_binance_rest_api-2.12.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.12.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6a84fc3269f905930cf94067f739321f8a122630e32a470479d7daefb4bd8eff
MD5 66618491e85a33db63397ac8b39a2114
BLAKE2b-256 d776e604de23febbb2efc09141159c7e452332e698a9ec2b16e6984cc1995ba0

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_rest_api-2.12.0-cp311-cp311-macosx_11_0_arm64.whl:

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

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

File details

Details for the file unicorn_binance_rest_api-2.12.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.12.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 90aa7d6deeee44dcf3a3ad157007157056e86e9125a8ae54acfd8097cc069512
MD5 29d2ab24da0daea4e9ef767043a4a491
BLAKE2b-256 e470cd56f599e451452c88b2d34f098d88bc8ee8e6b8dd1f79df7155e29dc2e0

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_rest_api-2.12.0-cp311-cp311-macosx_10_9_x86_64.whl:

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

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

File details

Details for the file unicorn_binance_rest_api-2.12.0-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.12.0-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 e4617bfda43bd9491e71336fdc0262ac2769c9fd8757f11ded92e11aafa43029
MD5 604d3100c4621caba461b9c732fca89d
BLAKE2b-256 cb5ea9c491968fa42457ed6e987e42b677a73ba68aaf63f7e07ab8c74d44d547

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_rest_api-2.12.0-cp311-cp311-macosx_10_9_universal2.whl:

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

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

File details

Details for the file unicorn_binance_rest_api-2.12.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.12.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 3ad4879dbf1518f468145ae83077639a6326c42cd0ff64d060f32c49d51d5d5a
MD5 1af0c0ce77635556e2d5f7bfc213aadb
BLAKE2b-256 0254a58da28783b07b0ddccd6eaca8dc659174c5b822d7356e278dbde2b4f559

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_rest_api-2.12.0-cp310-cp310-win_amd64.whl:

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

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

File details

Details for the file unicorn_binance_rest_api-2.12.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.12.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 417d2daf7e632835ec3e6440e30e70cc7878d2fe31b6225f90ee3a28802e0366
MD5 400477fa28aaf33c1f1cc9f0fdf3cb1c
BLAKE2b-256 fd5244b71610690ae1f020feb6df0a2bf46adb57081dddda89f34aba7d371c69

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_rest_api-2.12.0-cp310-cp310-musllinux_1_2_x86_64.whl:

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

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

File details

Details for the file unicorn_binance_rest_api-2.12.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.12.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 996444fbb6f8dc404750c9f3ba7a9938e346b03948c052a9391660910b42be04
MD5 aec6d86409a8c94ccd86da26793c7466
BLAKE2b-256 55a0b04c8893413d5952b6413b6ca278d35deab89a0fd91f62d1dd0b540a3420

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_rest_api-2.12.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

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

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

File details

Details for the file unicorn_binance_rest_api-2.12.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.12.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 104fa24b4acbc41089eb6962323e26c1052fde36a15ca2cdd5b8b29f5711bd2c
MD5 a2cdf1771686dc258810915de4936c72
BLAKE2b-256 690f4c558fb8fb9fcc4f28383b050495fa6264dca397ea03f89846d190f1ca91

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_rest_api-2.12.0-cp310-cp310-macosx_11_0_arm64.whl:

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

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

File details

Details for the file unicorn_binance_rest_api-2.12.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.12.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1debb9427eca5526fc8d0d8b183d2487f25408cd4df39b45b65b7a67beff2422
MD5 a523020716af68caa36f20a4ee95a39e
BLAKE2b-256 2ea830c15a21e8c49a5201bd8c34018b41828aa3cf30252e540797f8a2abf455

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_rest_api-2.12.0-cp310-cp310-macosx_10_9_x86_64.whl:

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

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

File details

Details for the file unicorn_binance_rest_api-2.12.0-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.12.0-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 c517a44de07ed0bcbd6b1baef7f0fdf349032ab6eb3c7cab1699899cc8b5e31f
MD5 0d69c385c3997c03aa14ed0d65790167
BLAKE2b-256 65f4892b29afe9939e5bc357462a7b4ba7bcfdb794b7bcf936b4192a5ee19716

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_rest_api-2.12.0-cp310-cp310-macosx_10_9_universal2.whl:

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

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

File details

Details for the file unicorn_binance_rest_api-2.12.0-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.12.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 26480cd6c987c5eea2e6d19f2be207b9389fe1a7be20953416658cece843109a
MD5 f8c5376df34a4ce1345b75491848a232
BLAKE2b-256 88f0bf71ebaafaa158e9584f85853e1ec0a98f30990834ee564c8ac7a83371a5

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_rest_api-2.12.0-cp39-cp39-win_amd64.whl:

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

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

File details

Details for the file unicorn_binance_rest_api-2.12.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.12.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 55f8df18d3cbb2d2aa977c3b5142f0d36069ec19cd31386412ee3cd0655636e1
MD5 83faeb2a979bd33da00c9f83f470476a
BLAKE2b-256 b05582ccbb897f01e215066b0a934a75fc3dfa861fbd1bb844d3cc743646b827

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_rest_api-2.12.0-cp39-cp39-musllinux_1_2_x86_64.whl:

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

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

File details

Details for the file unicorn_binance_rest_api-2.12.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.12.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 31225773f09fd0e430a7d9bc043f0d327c432fddd62dfcf4e93c1488243be623
MD5 dc0a1666608010b8e33005f9fb1fd1ad
BLAKE2b-256 48fde602ee188412076cf1350e4dcf6499a894ceacc36b4744b7582216efbbd8

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_rest_api-2.12.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

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

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

File details

Details for the file unicorn_binance_rest_api-2.12.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.12.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d07e7e0b5abdd3f92f1448a600ed288a7f04e5ffc4ac0f12af7621c33d64a861
MD5 22ae87bcb3282f6aa0aefaeb407cdf8b
BLAKE2b-256 141edc5be5ef918bade9cb5b3e54d380aeae4a8c63041f352e9304a35c89e514

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_rest_api-2.12.0-cp39-cp39-macosx_11_0_arm64.whl:

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

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

File details

Details for the file unicorn_binance_rest_api-2.12.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.12.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fb60e593ade451fe082235a62ac639874210d2e690f6e48a1e82f7076264bc3f
MD5 bf5cf981c52aae3daf1441d023e97191
BLAKE2b-256 28ae61b6ff36e03a641c05914680faea9e083305073dff450af7ab5f3fbae233

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_rest_api-2.12.0-cp39-cp39-macosx_10_9_x86_64.whl:

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

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

File details

Details for the file unicorn_binance_rest_api-2.12.0-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.12.0-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 e666ac55ee7fa357363968e44fb9bbc548bd0a88b9038787ff44cc24b3599ede
MD5 6d372a83e157c8f64e0a4b629afff039
BLAKE2b-256 ed6f673619fbc7d69dd149e5c74f4e1156f0a7c71d6172533f6f252e8262d13f

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_rest_api-2.12.0-cp39-cp39-macosx_10_9_universal2.whl:

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

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

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page