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 License Supported Python Version PyPI - Status codecov CodeQL Unittests Build and Publish GH+PyPi Read the Docs Read How To`s Github Telegram

LUCIT-UBRA-Banner

UNICORN Binance REST API

Description | Installation | How To | 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, 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 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 US binance.us
Binance TR trbinance.com
  • 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.

There is no conda support until the migration to conda-forge.

For the PyPy interpreter we offer packages only from Python version 3.9 and higher.

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 to be created, we start two GitHubActions:

Both start virtual Windows/Linux/Mac servers provided by GitHub in the cloud with preconfigured environments and create the respective compilations and stub files, pack them into wheels and conda packages and then publish them on GitHub, PYPI and Anaconda. 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

A Conda Package of the latest version with conda from Anaconda

There is no conda support until the migration to conda-forge.

The unicorn-binance-rest-api package is also available as a Cython version for the linux-64, osx-64 and win-64 architectures with Conda through the lucit channel.

For optimal compatibility and performance, it is recommended to source the necessary dependencies from the conda-forge channel.

Installation

There is no conda support until the migration to conda-forge.

conda config --add channels conda-forge
conda config --add channels lucit
conda install -c lucit unicorn-binance-rest-api

Update

There is no conda support until the migration to conda-forge.

conda update -c lucit 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.9.0) you determined here:

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

Howto

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!

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.

Project details


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.9.0.tar.gz (603.0 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.9.0-cp314-cp314-win_amd64.whl (907.3 kB view details)

Uploaded CPython 3.14Windows x86-64

unicorn_binance_rest_api-2.9.0-cp314-cp314-musllinux_1_2_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

unicorn_binance_rest_api-2.9.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (2.8 MB view details)

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

unicorn_binance_rest_api-2.9.0-cp314-cp314-macosx_11_0_arm64.whl (898.4 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

unicorn_binance_rest_api-2.9.0-cp314-cp314-macosx_10_15_x86_64.whl (930.3 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

unicorn_binance_rest_api-2.9.0-cp314-cp314-macosx_10_15_universal2.whl (1.2 MB view details)

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

unicorn_binance_rest_api-2.9.0-cp313-cp313-win_amd64.whl (907.1 kB view details)

Uploaded CPython 3.13Windows x86-64

unicorn_binance_rest_api-2.9.0-cp313-cp313-musllinux_1_2_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

unicorn_binance_rest_api-2.9.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.9.0-cp313-cp313-macosx_11_0_arm64.whl (896.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

unicorn_binance_rest_api-2.9.0-cp313-cp313-macosx_10_13_x86_64.whl (933.2 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

unicorn_binance_rest_api-2.9.0-cp313-cp313-macosx_10_13_universal2.whl (1.2 MB view details)

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

unicorn_binance_rest_api-2.9.0-cp312-cp312-win_amd64.whl (908.1 kB view details)

Uploaded CPython 3.12Windows x86-64

unicorn_binance_rest_api-2.9.0-cp312-cp312-musllinux_1_2_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

unicorn_binance_rest_api-2.9.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (2.9 MB view details)

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

unicorn_binance_rest_api-2.9.0-cp312-cp312-macosx_11_0_arm64.whl (898.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

unicorn_binance_rest_api-2.9.0-cp312-cp312-macosx_10_13_x86_64.whl (935.6 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

unicorn_binance_rest_api-2.9.0-cp312-cp312-macosx_10_13_universal2.whl (1.2 MB view details)

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

unicorn_binance_rest_api-2.9.0-cp311-cp311-win_amd64.whl (911.0 kB view details)

Uploaded CPython 3.11Windows x86-64

unicorn_binance_rest_api-2.9.0-cp311-cp311-musllinux_1_2_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

unicorn_binance_rest_api-2.9.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (2.8 MB view details)

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

unicorn_binance_rest_api-2.9.0-cp311-cp311-macosx_11_0_arm64.whl (907.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

unicorn_binance_rest_api-2.9.0-cp311-cp311-macosx_10_9_x86_64.whl (943.4 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

unicorn_binance_rest_api-2.9.0-cp311-cp311-macosx_10_9_universal2.whl (1.2 MB view details)

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

unicorn_binance_rest_api-2.9.0-cp310-cp310-win_amd64.whl (910.9 kB view details)

Uploaded CPython 3.10Windows x86-64

unicorn_binance_rest_api-2.9.0-cp310-cp310-musllinux_1_2_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

unicorn_binance_rest_api-2.9.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (2.7 MB view details)

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

unicorn_binance_rest_api-2.9.0-cp310-cp310-macosx_11_0_arm64.whl (907.8 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

unicorn_binance_rest_api-2.9.0-cp310-cp310-macosx_10_9_x86_64.whl (943.7 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

unicorn_binance_rest_api-2.9.0-cp310-cp310-macosx_10_9_universal2.whl (1.2 MB view details)

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

unicorn_binance_rest_api-2.9.0-cp39-cp39-win_amd64.whl (911.5 kB view details)

Uploaded CPython 3.9Windows x86-64

unicorn_binance_rest_api-2.9.0-cp39-cp39-musllinux_1_2_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

unicorn_binance_rest_api-2.9.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (2.7 MB view details)

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

unicorn_binance_rest_api-2.9.0-cp39-cp39-macosx_11_0_arm64.whl (908.6 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

unicorn_binance_rest_api-2.9.0-cp39-cp39-macosx_10_9_x86_64.whl (944.7 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

unicorn_binance_rest_api-2.9.0-cp39-cp39-macosx_10_9_universal2.whl (1.2 MB view details)

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

File details

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

File metadata

  • Download URL: unicorn_binance_rest_api-2.9.0.tar.gz
  • Upload date:
  • Size: 603.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for unicorn_binance_rest_api-2.9.0.tar.gz
Algorithm Hash digest
SHA256 10fb3efab104121f51f565a8206ce28b58833ca3e9460be3bec146b9be4447a2
MD5 4cafa876b57ba242c812441937e06e87
BLAKE2b-256 3161230f4416b72713e0a164f5297b2fad672ff9ad7d14ac4c9a1fea372c17a7

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_rest_api-2.9.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.9.0-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.9.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 e17d1569244036183163a29d3713a58af4773bd0b6c8d98cb5cbaded38a3ed67
MD5 3bb0c0feb562055d9ed61df8c8d8db37
BLAKE2b-256 7846ea7f03c3b5bd0bb757cc8451b7c1ca995435a438b4fcfa09f41837bcaffc

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_rest_api-2.9.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.9.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.9.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9f527fd928147ad220396f65362f52362bacef084627197a1800fe0957e402cb
MD5 b69b33e923649cf097921443c1947007
BLAKE2b-256 af7f7183cc8c1a699b97cd50ccafebc3a9385107f83c71a6be3df3b8e092040f

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_rest_api-2.9.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.9.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.9.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ee07e5dc22ba0b9af02fbcc8d5bdd78c2e549706e0b15260b5813b83a14dec95
MD5 26f38e36a8885a49dc06ba6579aed593
BLAKE2b-256 8df8ead9c9eb2b8a402331cb24f43cc073a3b0e28e117edb9d70b69e8eac6083

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_rest_api-2.9.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.9.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.9.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 baba01c279664a21efa6884640510a3bb04cfdcb2176a81f88fbf8f553521cd2
MD5 d7069440df1bea5acb8f0676a0063813
BLAKE2b-256 6bce79f635676eac7b8bd0be8e519a9c01445e7f1a414fa8a3f0025793d939ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_rest_api-2.9.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.9.0-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.9.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 5729715d86ee720521ea5d2b4713c1504208ec574a085e991795dc6c37fac583
MD5 e09f82fc946b3b9ea3e7c849529f2d8c
BLAKE2b-256 9b139d8c0e4d774e40f44eacd1a6a753f85cb540b6c8f7fcf7956eba2380c9a4

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_rest_api-2.9.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.9.0-cp314-cp314-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.9.0-cp314-cp314-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 251fb7275cf565cd0bb67d0903fa652ccaf2c2fba9b91729dcfa7875b957a3d4
MD5 53ab814039d4dc6d1f4cf0ee0f14ca87
BLAKE2b-256 6b2df4409ca5eb66d6c4ed302c81d9f62f2d751a970b683823264517f71a1238

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_rest_api-2.9.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.9.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.9.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 b1cd7462f797caa337ddc7d5e0251f5fa91c88a8b399761e1d289187255db9fd
MD5 b6b3c51c8d94ca58575080d176a87363
BLAKE2b-256 95f53de262beaa875f600a8375bd74863ed80f2c94ddc7e42c3c6329d4edd05a

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_rest_api-2.9.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.9.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.9.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 29fdaf70674b58440a2dcbc523381cf1c91346c6051c8e5eb577dc526d61b270
MD5 f1ac70abd00d58bd5f9948d84da1de7c
BLAKE2b-256 ef2347c928b47074c1dde8eef2e834c1103b98e883f59f31e6fddc606a4ac47e

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_rest_api-2.9.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.9.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.9.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 715d6d5042b85ffc79e0d710d5f492778ce04481ed6c077c186fe9e3af57c72f
MD5 12c193c6a532101406046ac98f9af66d
BLAKE2b-256 ad47e64a27c1809c25bc433531dae1e33082766eb7965e5e499b5ecb3e54ac6d

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_rest_api-2.9.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.9.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.9.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7e3ce44350abc028a1c3882fc2ac2405ec9a048539bb93ced418cfc958109a3a
MD5 f11e49b571067409c169b5f2f9f86c68
BLAKE2b-256 f3bc9bd3e74bd551e0e6da7a54799a20c95975a02631eed19069878e0005e9e9

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_rest_api-2.9.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.9.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.9.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 e4196151292b494453f848e177bf74429ef603a22329f10de6be9ebc7b41472a
MD5 fd32c8bee7ab42e63679826a03e15147
BLAKE2b-256 37b76824c198f2067d071bf3c382e3946b244ac7703d3efd9cc5c0f8b1667873

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_rest_api-2.9.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.9.0-cp313-cp313-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.9.0-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 0b3fb7d15d2ac5c2387ef08dc9b3a4e40bcdb57fa308513e3e04beb0a29c8f86
MD5 b5475a6ad12d5b57a0ff1feca6852ede
BLAKE2b-256 d657dba3df91a69d7f11d66d9f3a2749a4d9587ce0be618dbbb1380fb9b96b0b

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_rest_api-2.9.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.9.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.9.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e954fc3f067f90583631cde38770d8911880d0368c182738d3367edb02ecf5f7
MD5 77a5adbf3b4cf704939ff22e3d7fbdcc
BLAKE2b-256 1ad916dcef7c3e994bac90a2f06fd63bb412efefdb4bdb89c23e4f6fa76bf7de

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_rest_api-2.9.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.9.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.9.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f496fe8fc8a178ba800ca9c9574282cdc2828f57910ba06b10ccb60b72b4951e
MD5 20cf1d1431c63ba5202f9eda9b7e4306
BLAKE2b-256 a6582eb5ba1f17707a745b73007622d8592944b5849f4320c4fe95f10c4d7f49

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_rest_api-2.9.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.9.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.9.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 36baa924028aa541029927712252fba985d288a826f7712a859281e34de26cb1
MD5 b633e5eeaf7ca9d5ea74743a935a3011
BLAKE2b-256 44ef97a6433937563a19b64a4a6cb0ad766eb480adfb03b1e5aa4745989d400f

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_rest_api-2.9.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.9.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.9.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2089975439f83295141c4fff2a2d44cedd066a100ac2126c3d070db0d45290ee
MD5 8280c63fb48cfa360e982eb7cc7919c7
BLAKE2b-256 b07d01a50526c57992837122113ebc5ddac3f86650ee05031480888354bc65eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_rest_api-2.9.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.9.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.9.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 be73e44066d3c2a0eef3e2ebf866ae8077eb14cfeb6c3038893a57ee6895b1e8
MD5 9b6fec763d48be86b158fecffb581216
BLAKE2b-256 c40513c139ea929eeb19daa50bb774c44780f533ee8e4d768966d82c94775831

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_rest_api-2.9.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.9.0-cp312-cp312-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.9.0-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 8f41c559e573f1919da3a67104662a090bc087f1b7e5a4501b7eb1825eaf9b51
MD5 1f8ae973398d425ee0254357ee7d647e
BLAKE2b-256 24a588c7affbb4f567e252c4b4a1412452af909d73f3cb74a5454931af7ed314

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_rest_api-2.9.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.9.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.9.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 352f032aa2d5e8ee8ff9fc7a44b599f2fe826705617aa1ff42e811adc5c6a7e6
MD5 50633296c57b60c3622d8e27a8ef1ce3
BLAKE2b-256 97d498e0ec6591911b59e1b64623a70b7483ab8a7d7a5997235aa2d45499bcdf

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_rest_api-2.9.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.9.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.9.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 17f3579fb3512feeecc9e2d8c8971c97a369601955021936ffec8666fd64e5be
MD5 3ead9ceccf5c751b1e5c1f1f5b8438cf
BLAKE2b-256 5228372329be261ebfe49e04cf703cee22aef9307523021fdff5cd3c7300bdad

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_rest_api-2.9.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.9.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.9.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ecd4b9394aaa374d6e9a48091b4c589b15fc680ea3080b5d12fa9284ddf3631c
MD5 9e01ba563676e867da9ec81c50e74e5f
BLAKE2b-256 76d6f6631ab91f2f73ae9123c95ac4da0eb94341ceab62ce95ed3175cc20ccdb

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_rest_api-2.9.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.9.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.9.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 07907b859021f8b2f9b01f5930637eb67b462cf66a50b60e5b122f9bf6e5baaa
MD5 ed39b83b4e72ea08a0a3c8829248271a
BLAKE2b-256 0f4dc422247405cc8904803f599fccc675e576cbc8f46e7826f71c7df3d26299

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_rest_api-2.9.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.9.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.9.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1d3c421eadf1d32d372f1bcd97f845454b247da77ace529b6f74451acebd1ed4
MD5 f8c2185f0fbac7962f0042cf0b11da36
BLAKE2b-256 384e8dda48f5244e8dc7de50e0d35c1e7b477d3c6db7d1526477337e18031033

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_rest_api-2.9.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.9.0-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.9.0-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 80d2cb768ab3d887058d89c465e0b825f3c4b9551307a43278a2a2aa4468b111
MD5 377e1d7949840c6ed3ea49426f7ecd63
BLAKE2b-256 f6729124441c002891a1a7f721920a35ea45be09e355809dbef6887e5dcf3cab

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_rest_api-2.9.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.9.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.9.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 58d7533ecb62bf8f564a96defdb150a6487886dd6f3dd963ac567d154a8b7fb5
MD5 a3ca4b70f050d3b7e3f997c08226816f
BLAKE2b-256 fbabdfe4712916d13528bcfaa3fea8f7ec96f9c6e68db3439228935fd332bbcc

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_rest_api-2.9.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.9.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.9.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7ebdba9098d08046c544af400891a4d06e31364cec3250359f26bf47f54436cc
MD5 0aec6bac241cd4b025707af4ed195651
BLAKE2b-256 fd5f3a74f48faf3ffc4655f8d4313407c4378fcdfd91f6c4621d10e2a34244a3

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_rest_api-2.9.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.9.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.9.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9b8ea41e2893c7c25423935f79eb117d6d0aae59a884773635487ea44ab671fc
MD5 25f50f35460a6853cbd059347293268f
BLAKE2b-256 46f9954698246ecfb5535204eaa2a0001367da59b43b194a74503561e117cc94

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_rest_api-2.9.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.9.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.9.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 200070581deb13a273c75f0317233b532c25638311f96fbe1461b74086ebff6e
MD5 e7e1f9b2a29f001f09aa9bc3de1c1533
BLAKE2b-256 321c32055dde547b1496c5ecd6950e5050168c8ca8310fb47892bf65bd572f85

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_rest_api-2.9.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.9.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.9.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7943346d6a66ba73d3dda2e5b97b6813814e6059076591483089eaf4351c271e
MD5 5aadf4a2d7743198aa4919988f2e98ac
BLAKE2b-256 c1544d01bd263754eee409da1773c116f87a2609431dc79fc2d08cec507350c3

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_rest_api-2.9.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.9.0-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.9.0-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 b40c37c77e0405ca5374de82c6030d9ebc6a74bfa4e2e96423dd78be20e01a3e
MD5 ecbd54a4b73aee8882af604f795108c3
BLAKE2b-256 33df40b2916b5a5463086cc4404287bcd6c76aff0a3a01bc5dd6404724c62fd9

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_rest_api-2.9.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.9.0-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.9.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 430ebbdf232ae38ccb867d49283093095160acd1038a9afe3005bb7133b33cdc
MD5 8c17830a59e49945f98493b5046cd8f4
BLAKE2b-256 b332b648525457c49556e0191e3b30651aa16be9fce58544c6f7d3b6f69e3fa8

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_rest_api-2.9.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.9.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.9.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 92b924abce5da2cb4485fadcbf7dc0138e896f7dd69cee9b754b86824a4f8549
MD5 a08b7bca4266f655ee506e94b54f88cf
BLAKE2b-256 bd61d2d6f742819f8153a4f60ce72a65f492bb68590680d9cecc70dbbc8b0704

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_rest_api-2.9.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.9.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.9.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8702c43bb280723719502c9765faae919da5a13e3ca1f000c42eb30eccfd99ec
MD5 5e5bc967077a942228e830adffd7fb97
BLAKE2b-256 733c326bc5dbbeea3edb8871a5397c4aa0cfa78b450622561de2d8539f7b5a03

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_rest_api-2.9.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.9.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.9.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0899614f5fba8a19b5f9a5ab6402c2d65cc8b9fea2c634b9c0bccd0f1bfe1c1f
MD5 c63edf40a35094ff11264abd88c0d3d2
BLAKE2b-256 134abffb489b3cd106c56a16a8b41cf0142fc13a16e86b019dc7f39c2b1da4ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_rest_api-2.9.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.9.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.9.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ecaa88e4e6e4cf4f29165e5bddc0731e46e497ddda2ac0b4d36b0243efd34f9e
MD5 eee0c3acdca231e3770645fdbd905a75
BLAKE2b-256 21ba57b6336f9d647b510746e2ac2767c4b9251258950166b746e45b3e71121a

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_rest_api-2.9.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.9.0-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.9.0-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 d361020c9bbf08a76ad2be79baf4e0b805dada50f723eaa23fce0d71bc68aeb8
MD5 e2a612a96d59a8dc624c469f6b0fbc71
BLAKE2b-256 2c92d9867c852d0b041c0b7c4b68dc35204b2589e07d894ee373d78f39e911ce

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_rest_api-2.9.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