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

pip install https://github.com/oliver-zehentleitner/unicorn-binance-rest-api/archive/2.9.1.tar.gz --upgrade

From the latest source (dev-stage) with PIP from GitHub

This is not a release version and can not be considered to be stable!

pip install https://github.com/oliver-zehentleitner/unicorn-binance-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.1.tar.gz (603.1 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.1-cp314-cp314-win_amd64.whl (907.5 kB view details)

Uploaded CPython 3.14Windows x86-64

unicorn_binance_rest_api-2.9.1-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.1-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.1-cp314-cp314-macosx_11_0_arm64.whl (898.5 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

unicorn_binance_rest_api-2.9.1-cp314-cp314-macosx_10_15_x86_64.whl (930.5 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

unicorn_binance_rest_api-2.9.1-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.1-cp313-cp313-win_amd64.whl (907.3 kB view details)

Uploaded CPython 3.13Windows x86-64

unicorn_binance_rest_api-2.9.1-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.1-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.1-cp313-cp313-macosx_11_0_arm64.whl (896.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

unicorn_binance_rest_api-2.9.1-cp313-cp313-macosx_10_13_x86_64.whl (933.5 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

unicorn_binance_rest_api-2.9.1-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.1-cp312-cp312-win_amd64.whl (908.3 kB view details)

Uploaded CPython 3.12Windows x86-64

unicorn_binance_rest_api-2.9.1-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.1-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.1-cp312-cp312-macosx_11_0_arm64.whl (898.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

unicorn_binance_rest_api-2.9.1-cp312-cp312-macosx_10_13_x86_64.whl (935.9 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

unicorn_binance_rest_api-2.9.1-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.1-cp311-cp311-win_amd64.whl (911.2 kB view details)

Uploaded CPython 3.11Windows x86-64

unicorn_binance_rest_api-2.9.1-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.1-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.1-cp311-cp311-macosx_11_0_arm64.whl (907.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

unicorn_binance_rest_api-2.9.1-cp311-cp311-macosx_10_9_x86_64.whl (943.6 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

unicorn_binance_rest_api-2.9.1-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.1-cp310-cp310-win_amd64.whl (911.1 kB view details)

Uploaded CPython 3.10Windows x86-64

unicorn_binance_rest_api-2.9.1-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.1-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.1-cp310-cp310-macosx_11_0_arm64.whl (908.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

unicorn_binance_rest_api-2.9.1-cp310-cp310-macosx_10_9_x86_64.whl (943.9 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

unicorn_binance_rest_api-2.9.1-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.1-cp39-cp39-win_amd64.whl (911.7 kB view details)

Uploaded CPython 3.9Windows x86-64

unicorn_binance_rest_api-2.9.1-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.1-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.1-cp39-cp39-macosx_11_0_arm64.whl (908.8 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

unicorn_binance_rest_api-2.9.1-cp39-cp39-macosx_10_9_x86_64.whl (944.9 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

unicorn_binance_rest_api-2.9.1-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.1.tar.gz.

File metadata

  • Download URL: unicorn_binance_rest_api-2.9.1.tar.gz
  • Upload date:
  • Size: 603.1 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.1.tar.gz
Algorithm Hash digest
SHA256 3a53d356921ac0adf5fbebcd960d71a45f76a6717463ca4112caad4dc8cf13b3
MD5 4fb6b61f2e30ba66210afdbfaa588301
BLAKE2b-256 2132548a8baf35c44ef7b8e81a3ca5c7211ff19c8228ef851c0ebccf65465f88

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.9.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 986795d5b1d67c17841e86d04a3ee659968f73874908bf760c71b7f5ea2d9cbd
MD5 8fe8067da7a02bee1beaf74b7f69ab2c
BLAKE2b-256 00c892b02aacd40069c123a34c746f64e3fef62b4d1fecc0ba143e1da4b37f22

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.9.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fd6fb7df0e28bd4da21e09e8fd7fb0cc84d510f8976f66d750faac718ec82f93
MD5 f30b10eb5e21d4b4b9312b53d563533f
BLAKE2b-256 c3ba82cadd5a20e370da9970e529c878e3d482040052b03edab1b9e0ae38ba62

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_rest_api-2.9.1-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.1-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.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 26ea93d5ea7ada67da5d759016236753aa0c1c6792ebb36ecf7130e8e86a9317
MD5 6656595e662e283c1a52d399232ac160
BLAKE2b-256 2edff575ec9cfa20182d6022b1c59931a20faabd124170c469dcb9b09eb096cb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.9.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 83f016131622219b16a2f8b00b246de9863f9258293731e30781d3fcdcf51652
MD5 bb517d920ca3bf9488a6f253bdd8c576
BLAKE2b-256 4c011cc837e2b88c6dd3aea64c3caba7dc58ccf8fe916d6c56fd57a829992779

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.9.1-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 cd9f6aa6a24af0e6bc875f5d62f45af713b2c63229f5890390d5bc0207bfa046
MD5 728534b557bf45315625c56fc5115ac6
BLAKE2b-256 d8e416cdf3c935952d7851c66e3bfe342c06cfd63d620bc16af093287963a379

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.9.1-cp314-cp314-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 98888a16e7ec5486c7f67d49f305086e0fa8562a2bfab4a654dc3e11ee10cd57
MD5 e01fcf3db7f6059b64044e773b4ac05d
BLAKE2b-256 90812de07deaeff9c3becd5eadc9af900f4633ad0f12754114bca9d96dbee5c7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.9.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 cdb22a4f85375640fb6f65499ee87a698526a89cf3f8d7279d60de93679a8a31
MD5 0a83967acf959474a8fa99dd1e24b921
BLAKE2b-256 4cab41c3a7f121160f1fba06fda9597ac395b92a2dcea13b05a127415085a774

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.9.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1ccc8ebaa5dc50c6f599a8801b9e25a93bf543114ff00b68349bc7a7d173aebb
MD5 9a372d0d20e976db1ade7ab44eba3284
BLAKE2b-256 34d57ae8c7808dcf0b77ca162ecab5650168383f8e0a6d295932599bb93b6916

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_rest_api-2.9.1-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.1-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.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d781351f54b71d6e88dfe6212bd62bc4c5ef0a052e24d739bb5451a7c7ecd02c
MD5 7bc2fd2561ef4bb05c615272278bbcec
BLAKE2b-256 51b8ce5d4c996b08f28dfdf33e31a48ccc530318244a2295dcce26e0e0b94e90

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.9.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2108f1c0c345d32ca298a1fc0ae8ce24b3689064fc0d5f12a528938e2b9fff2a
MD5 5ecb9c9fa57b9579c4a25f4a5776703b
BLAKE2b-256 5469990d7f4f4f7c102349a1831fde82a391de20272efb275e152419e989ce8a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.9.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 02efd93e7606691ec29f22524853da2c02ab92ca1f369f61226ddc300b132e11
MD5 5ef92949dca39a91391b834a6fafec4b
BLAKE2b-256 a963d7aee21555302288fe9bef5634d31c7b13891ef05f40ab518dd738143245

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.9.1-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 79b96693ab81e98d186a2288119f82f206f851c3600aca28f56b28ac2ef16ec1
MD5 0697ba45ae73f7f51f053feca1c3a93b
BLAKE2b-256 d01f98454a9e4fd71edec9bbad88a361ffe25048758eb5a086bd21d781be1bd4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.9.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 3cea33309076a480adf1a835cd9c92e2170317ed98803de8b75b9992f24f5f85
MD5 34e315a7f5e5053186ae1b2828649b5a
BLAKE2b-256 29dea528578849a5f6569c4184815d571811794b2776800a194f57d901aef314

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.9.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 999d9c2a8d50567cedbedae4cefd9563e46e80686f33b31fe0743f27f309aa77
MD5 dac4da9bbc4b3c6b631788029938c1da
BLAKE2b-256 c4a4014236c4c53a2a864ced006c49efa65db201cf6de8ce9d6735f2ac2dae9c

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_rest_api-2.9.1-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.1-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.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cd58a07034d25e42dd42bfcb195e57e508adc0308c4e6848364bf111fa4c2fa4
MD5 622a62d33cbf0793b9ad183829f40d55
BLAKE2b-256 6a42e75619b75e266344698963dba163e1f02baaf577a1008e88e732a4b652b1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.9.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ccd7354b8b6dc2ced8403057954d7e2d7a47767fb982c7f219b22530de6d2839
MD5 0120e89eb2308059473a25c688e25abc
BLAKE2b-256 0b6e42bd597b0f932fe7d9c1a261c071973826e473573ee6b0ec7ddad77fb87c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.9.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 b25bef67c3415372ad049900a841f0659c35b4e2ede484f3f84521eeab3a3c6a
MD5 3580cfd61ce68ce29a56b304dbe39ba8
BLAKE2b-256 7ff57ee56e2a34406e9444b5335dd3f8764e34c4a3b1188f6bb290ea1669d77a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.9.1-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 99f977e931bc4c30d7cd8def15e84f818b76fae2a83ca765c4e40a1ab9456cc6
MD5 3f90a75c3fc887f1b46c46e8c7d117d1
BLAKE2b-256 57e30bad52352b5f2ff9d388f1d4b4ba012f75dd370c49f44fd04fc87e3513c7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.9.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 0f6ccee9b3c23e1a0298bdb62e8da1674142dd2390a60f4cc56d8b09d1ca93f2
MD5 03f2fab6fd37cf38aaf2ed3977c89321
BLAKE2b-256 8f60561311ed4092ed0d1ea2381bd88dc562047c794974966750a32a0ddb9475

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.9.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 51ac8fad26d3dd63dc0adc035ae1855329903ed23bc326c3c724600ca00136de
MD5 fe9868a6e955afddc70d454004e3de4f
BLAKE2b-256 04c4fdbd65a4ffc4a867999d22af8919cd4ae0488fb928b85d9535eea9286f13

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_rest_api-2.9.1-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.1-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.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 db12d1af9eff05eb164194731d5161cd4f8ae69177369aaa26da30fb30ed4e55
MD5 7db6a0ddc5a0904d96c21c7e57792ecb
BLAKE2b-256 495a5507a4ea99a972835d29cc0477beec408a82a60fc543110ef6dd8225af2a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.9.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8a5db2662be08496436d2c5a95b258747a604e1a7f632570a2e46617dfd0248e
MD5 96736814cc26b6e8eb1f72c048ae5edc
BLAKE2b-256 d7465a0b46bda0da359f401f7136ccff45699c83e96acef935c1d9a75825dcbc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.9.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 978ef7cc94d579cf0d434b47ca374ddd5f26ea8489a6b8d60f3603bbb3125a77
MD5 26282e7b717f456005b06d60590aca43
BLAKE2b-256 6a8d39b555fb2570b44a36663ee0b549eba5023a0b677a5b6d5506c96392af01

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.9.1-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 20dbca5626f2a609f01696f40fabed52c05304edc61d3b1402bef9cca0557c11
MD5 87627ab288e806a9f26cdd892eb3254d
BLAKE2b-256 effd24886a5be2641d637d781460fd93f4582237dc6d21a4b38d85b537386b18

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.9.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 bd6f065193607a36ae8ee884264188908939ee99190670d415745d1c671a238a
MD5 a64bdb69fe5a3bbce5eb8d51e8fa6d11
BLAKE2b-256 e48ff727c3529ebf235d4a9661474151c9611463bee374acc540d6b4dac4c4a1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.9.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3cd33aa9851f21969851cbe2e69dcf1518c17731655c62af3e8ebdb73614dfc1
MD5 c319e68df3d0f9eb271b9ec465e61a08
BLAKE2b-256 8839349c1a64546f9725c6422b3eb3e7c5d59c8247451d362a5f0bc902717202

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_rest_api-2.9.1-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.1-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.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9a7df5f5cbcc78611b66d1f715006706ff1f2718416841e80d48f6cb400261fd
MD5 aa968f127eb3fb34149a3589f758f884
BLAKE2b-256 9c27914b22efea2b002033d2ddf30deb3e150408972cdb660fc7df502a2f6690

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.9.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a2e3fa8ffcbae94d243017ffb4ada6af2941b6314583c24135e9bd1d4dd7046a
MD5 93eaaeea254a721f9c5a807e241938ba
BLAKE2b-256 54dfcbeca801238e40837ef7bbb9925c082af305534ef09c6b6ec86bc51ce8af

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.9.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 76c77ab2aa82da4e6f2ae3f1026c11d085178c17673284d1c26dbcb0803c6d71
MD5 9e1326885787d5d89274e28ef52810b5
BLAKE2b-256 41fef671ec698301c7c60cc1240cd2592b9035ab906802efabada78434d30dbf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.9.1-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 b7b82ef9e39f5e507e1f249ca62fde7fe6515b4690b7860a0b5604542f0b2339
MD5 4246d24c4e40dc07fe7fd93d32844dce
BLAKE2b-256 ecb49224ab3c0cdc85e6871bd7bd9a4421088afb0340489a35a501d93e5e0b4d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.9.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 c1375d19e4027c4e60180f898b8d60d38b3123624085eb1d1c2b8af4c09f75d6
MD5 348de99fa578b30a9bc9f41553521d27
BLAKE2b-256 ea329328be8f66b014f65ea5b15410aa39f8c28043bcfb06a985486b0d7d4204

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.9.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c69280b4fc19037d495a65bde5119bdd1df23621c7fb1f801b7102e16ed73579
MD5 cb3bd783322c1f9d760b7fe17ac130ab
BLAKE2b-256 da5105c0ee9ac9791c7f2baac4fb56d3d30e5eca6daa0c5ec9439b31fc5b86a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_rest_api-2.9.1-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.1-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.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3fcbddd18b4e75da508f402d67141a98c193cc71f83f58ca3f4a3cf0260eac31
MD5 e6f7d267e88f655524a78cc03394cd63
BLAKE2b-256 311ec7eaa5d75e849886c0039c5eb7ae492021a35c35374f37cb10edd0c3cb2d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.9.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f535bdd2a7b66cb0517c2098a1e0f76d32f4fd41f2aaf4ad29a71bc1f79bbc3f
MD5 1d20df2a2bf86f0e9ca8d5e29e8b9fea
BLAKE2b-256 81eb03bdb2c7baf12efa9a74654041ffb31e18ff00d840a737a0e4085717353e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.9.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 92d1f3b039b2f3b86a854dcaa9a0d118c0e094849d22ebde05cc02cc7cd35c5e
MD5 f349f5f8535294880d62d994831d3fa5
BLAKE2b-256 44e5689bcb2a4ff6a87320d08c184d0b8d24073ce7515c2ef5ac6328c9d20a85

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.9.1-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 287710d42be8360606b9e3bb7dee3ef3f28e77de66a5500e33a8640a8e30198c
MD5 8dee8d07176823fc1e9158437e5d2829
BLAKE2b-256 79f1d569fa86f5eb98de1f58e672ef275a05005454e876795c820f1309227073

See more details on using hashes here.

Provenance

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