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, com-vanilla-options+testnet, us, tr) in a simple, fast, flexible, robust and fully-featured way.

Part of 'UNICORN Binance Suite'.

Receive Data from Binance REST API Endpoints

Initiate BinanceRestApiManager()

from unicorn_binance_rest_api import BinanceRestApiManager

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

Print a snapshot of an order book

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

Get all symbol prices

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

Get the used weight

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

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

Send data to Binance REST API Endpoints

Initiate BinanceRestApiManager()

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

Buy BTC with a market order using 100 USDT

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

Stop ubra after usage to avoid memory leaks

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

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

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

ubra.stop_manager()

More?

Discover even more possibilities or try our examples!

Description

The Python module UNICORN Binance REST API provides an API to the Binance REST API`s of Binance (+Testnet), Binance Margin (+Testnet), Binance Isolated Margin (+Testnet), Binance Futures (+Testnet), Binance COIN-M Futures, Binance European Options (+Testnet), Binance US and Binance TR and needs to be used with a valid api_key and api_secret from the Binance Exchange www.binance.com, testnet.binance.vision or www.binance.us.

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

What are the benefits of the UNICORN Binance REST API?

  • Supported exchanges:
Exchange Exchange string
Binance binance.com
Binance Testnet binance.com-testnet
Binance Margin binance.com-margin
Binance Margin Testnet binance.com-margin-testnet
Binance Isolated Margin binance.com-isolated_margin
Binance Isolated Margin Testnet binance.com-isolated_margin-testnet
Binance USD-M Futures binance.com-futures
Binance USD-M Futures Testnet binance.com-futures-testnet
Binance Coin-M Futures binance.com-coin_futures
Binance European Options binance.com-vanilla-options
Binance European Options Testnet binance.com-vanilla-options-testnet
Binance 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.10.0) you determined here:

pip install https://github.com/oliver-zehentleitner/unicorn-binance-rest-api/archive/2.10.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.10.0.tar.gz (611.6 kB view details)

Uploaded Source

Built Distributions

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

unicorn_binance_rest_api-2.10.0-cp314-cp314-win_amd64.whl (922.7 kB view details)

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

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

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

unicorn_binance_rest_api-2.10.0-cp314-cp314-macosx_11_0_arm64.whl (913.5 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

unicorn_binance_rest_api-2.10.0-cp314-cp314-macosx_10_15_x86_64.whl (949.7 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

unicorn_binance_rest_api-2.10.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.10.0-cp313-cp313-win_amd64.whl (924.3 kB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

unicorn_binance_rest_api-2.10.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.10.0-cp313-cp313-macosx_11_0_arm64.whl (911.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

unicorn_binance_rest_api-2.10.0-cp313-cp313-macosx_10_13_x86_64.whl (952.0 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

unicorn_binance_rest_api-2.10.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.10.0-cp312-cp312-win_amd64.whl (925.0 kB view details)

Uploaded CPython 3.12Windows x86-64

unicorn_binance_rest_api-2.10.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.10.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (3.0 MB view details)

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

unicorn_binance_rest_api-2.10.0-cp312-cp312-macosx_11_0_arm64.whl (913.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

unicorn_binance_rest_api-2.10.0-cp312-cp312-macosx_10_13_x86_64.whl (954.1 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

unicorn_binance_rest_api-2.10.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.10.0-cp311-cp311-win_amd64.whl (927.8 kB view details)

Uploaded CPython 3.11Windows x86-64

unicorn_binance_rest_api-2.10.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.10.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (2.9 MB view details)

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

unicorn_binance_rest_api-2.10.0-cp311-cp311-macosx_11_0_arm64.whl (924.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

unicorn_binance_rest_api-2.10.0-cp311-cp311-macosx_10_9_x86_64.whl (960.0 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

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

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

unicorn_binance_rest_api-2.10.0-cp310-cp310-win_amd64.whl (927.8 kB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

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

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

unicorn_binance_rest_api-2.10.0-cp310-cp310-macosx_11_0_arm64.whl (925.4 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

unicorn_binance_rest_api-2.10.0-cp310-cp310-macosx_10_9_x86_64.whl (960.5 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

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

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

unicorn_binance_rest_api-2.10.0-cp39-cp39-win_amd64.whl (928.4 kB view details)

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

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

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

unicorn_binance_rest_api-2.10.0-cp39-cp39-macosx_11_0_arm64.whl (926.6 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

unicorn_binance_rest_api-2.10.0-cp39-cp39-macosx_10_9_x86_64.whl (961.3 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

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

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

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.10.0.tar.gz
Algorithm Hash digest
SHA256 933bb24463eb6bba5f581eeb6c8346be01f206d8451d1542abf8d92430b95058
MD5 b8341616b885908643e80a4103cb40d7
BLAKE2b-256 5bbe6c1d8fdb820c1a212d2729a348677b27f11ac565d1d4aaf083758f60631b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.10.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 fae7ce1b086cfe079095e479bfbc34eec7c0b8ec641b1b7373a9886be87efba7
MD5 f406dda959eb9a00059a66bb19b687c8
BLAKE2b-256 0550f09442f9bee76035becf560cdbff90b530f09d9215940e4297f5dda93e77

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.10.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a44debd6a6a7ba6ff0345f1413991d0c5f00910e242304826102b84717dca750
MD5 bef4e15f7d2545314c908a4a0c763f83
BLAKE2b-256 023291c62c4e35b488a5e4be91d437e6d6c1d7d05efc440de40a667a5005fda1

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_rest_api-2.10.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.10.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.10.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c5c7714455b4f02c9ae530e37402238cd5f170eb173b398e809d7b47cf2bc49d
MD5 7997196165561e41e8037ba5bc8e9604
BLAKE2b-256 175d463689b6116cdef20fa9ae229dbd6d8b3eef97a5305444457830fcd0c188

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.10.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e2bdaff6ac2f2ca185227829871f745943f9bd0d9dd105c21c68390e9dfe7edd
MD5 2fd261fec8db3e22301a25ab506805d1
BLAKE2b-256 3ff791d3c441d0e7badc1b7eeae42509e62e09903cc50adf8b0c109806b296c1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.10.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 0cf3dde32b1fc70dca1063d53a0fa89836992d5d85c6bd57fd100e55412130ec
MD5 7bfbe66649a2a6f9ff17c6bc0af8b80f
BLAKE2b-256 7da3d6da9180970380abf8875e23e11254fcaad0b48edf3de3e28a72f58511c7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.10.0-cp314-cp314-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 92a1461214e9b28f64facd310514d9c9b1b6aa13ad933def96952edd65a44d2a
MD5 ac0f7c45b0d8d0139969ec5861e0fef8
BLAKE2b-256 bcd62da75c1a94d92e26a2d67526ce99082dad997663f58e50a7dc191e2293f4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.10.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 20b49babbc8f4fa4cce61e737f9782f7611028744b39f15dda4a71dd753777b0
MD5 91625e492814987ab24bad7dbaef0c70
BLAKE2b-256 679cefebe69329124214a0af32bddf662b13a0f068f9df1727e2b52d8de70b9b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.10.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5b19a606bf0bcd60033884327d1664cbbdb5957fc30f1c4ac52c76f7f03e2c67
MD5 bdb8672b87e23df2c35427190b04fad4
BLAKE2b-256 85083f485c6b2f4015b56f462a3032c561e79066f461360c573184e85ee3326d

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_rest_api-2.10.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.10.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.10.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 853c2737b23efea960d1360e2e5d9e4889089358621067abd9a542d4bf236a79
MD5 e4e5406de8a560dbe9051e708ccde239
BLAKE2b-256 857c0e934ea4469f0a11c510deb31c54981d19635aa779883c416fcc23c1a712

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.10.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4568325186509ca8696a8fee9cdb6bdad22f97912c6e814740f021656e31e6bf
MD5 dabefe8860c3150e000c18aa7691e741
BLAKE2b-256 25e847469b2ccb628cb5be6de3b4e1b3ddb5301f7b283d656bd295a8ec583502

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.10.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 ed2aadb7b1a567b9d358b3722817f7dd7c298db036c3d0e1e7279013036167a0
MD5 528efe2f4d3c8dbb805ca0991406ac7b
BLAKE2b-256 bdca13af347a51eee28a9d353d03754b02e628eca95bdaae3dc2dbafbb422e15

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.10.0-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 9b3b00b5879b774463222824751d973539601272338db103587bf86f71cd2278
MD5 721f4e6affa85ede1065222213faeb88
BLAKE2b-256 b8956d1d0aa9c4ee0bb319be4acbb0cf7f0d0dcee94f7a794a5dc21d35b520ec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.10.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 9c57136b96b9d23d5ece513b9d02aa94f29feb0fe89d302a185a2327e520eed2
MD5 030b8fe047bf347bb69bbbbe58e4a404
BLAKE2b-256 600980fdbcf77acb9bdc8e03053131b49f84100c06ae38ecc8f52bd71f90aadd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.10.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d11ea1a67a6f13cb15131c790e4e0a6bc1563507fab9bf07347f457bfb3af755
MD5 8505573af1e6ecb23ffce99bb319e2ac
BLAKE2b-256 baac66bfcd1edbcb4a2e0f5b5a7cf0d9049317f69e5c118273e4d85035979032

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_rest_api-2.10.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.10.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.10.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a5261a597623da8238f77b3f4b72824972fa787c6ab86835efeb9dbf7062d6ef
MD5 7400a87eb3d42b7d2dca5c8d08970f33
BLAKE2b-256 9eda36af0b9ee7fdfcfe4da24df08156448f1281ddf8e66be474994fef9d9d3a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.10.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bc8546cc3b235b6360f95492e27f7bf32e769d4eae8d19ccd4d5b0978fb63fe0
MD5 66ca5644af9997c467a5b0badd6fe5de
BLAKE2b-256 d5a4b8c15faa0ddd88d8373ac110a10e91e6af5a1081ac305d7107713b2268e6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.10.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 1ec91bec0b4bd21d3d6b788703dc61764baa2770a605c85525f5692c4ae389aa
MD5 f9a16e35dd757cb67660a80f3dbc6b8a
BLAKE2b-256 8834d9346ca836f1e76dc8cfc7ad02c90943c37e9420738ceab6a230748aad59

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.10.0-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 e22ab56095e8fe5876979c71551324e9b7bb728803c254710dcea9fa30953453
MD5 eb648eccb884b3851148e87d09325244
BLAKE2b-256 af276630552578560d203893db1e7b5c66246c3f0e2ec259579e4fbced6f2965

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.10.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 5fa944fe87c0fc04c3b07e0b04e32b6dda5c3e4647bc5d7c4925543f22b42cf3
MD5 20f2b3e8ee08dd91b1b4ec2180cdf0de
BLAKE2b-256 0368cfbba917c6255365532dcee44ad3fa2ff74381a8b08b3265a830a796d615

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.10.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c6dc174142a280b1655c00aedc1cdf65cdedfb89b7d41a45b54e50244ed53870
MD5 23131e55608b099d9b66d55485969b9c
BLAKE2b-256 5c8a81b3449009e1b06aa23ec7265a7a261f5af811e73399fa36e84ce0d699c4

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_rest_api-2.10.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.10.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.10.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 469abe601771612a545aa797b099450696c3b10180cac2e3242387a818d03752
MD5 98faaed6d907113a284047df52b46b6a
BLAKE2b-256 de1c56f05163b99a29a4d1fe164f5b87911eed47078b9159182dfaf743cc7e80

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.10.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 15b8664386a75555ddf0578c89af718a84dbb4ff9c815ffbbae8c7f48128e647
MD5 1525ad1e8ac68b712be23cf09d1c58a6
BLAKE2b-256 b6d67b6669f6d1316a9aa543ab303a52c0909c11e7ee7b1d753caf9258522267

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.10.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8c6e33d72a74c0451cbe8a53d83f9e3fac9c47061c649032c0fa3f1b3fbb993b
MD5 fdf82724e1ad05f98fff0c3f9f84cf09
BLAKE2b-256 8ccf70b6c56dfe56af369f70f294a199cbb878ceb80053bf27998ab403f3c78b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.10.0-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 128531dbf931840c328996251d85140faa1fc54309cb438831520222aa26592d
MD5 4075439ea036737b40fa18a6264ebe60
BLAKE2b-256 738bfc7750de27231cae638aaa564e9d9059358563ed33ade60645f1b5f0b152

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.10.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 c209a7081576e20dd0f8c51f3f4aad72909ca7e4290c2490dad0033f4dcd91b9
MD5 6a12a9144257a75db6f0fa5fec7d292b
BLAKE2b-256 e290db91021bd9f3b010ef4893ba3a186481460f6dc149904b5bdc6d56f04ec5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.10.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f345534f0c789b925222e92bd98f52f29011e1711b971cfc7b6990049491c9b7
MD5 29b4f5bd3aced9c952e9b6ffe787b394
BLAKE2b-256 5902a3421f78f62473bcfc9a2e38b20bc0e417600373c5d0ecce28f4b154dbe5

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_rest_api-2.10.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.10.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.10.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0ad91ba055eca30d713b8d48afa94e2735bef990fd685ae23e8151d9f0ad6b8e
MD5 1a8e61263e4790c371437bc604581e29
BLAKE2b-256 91a40c222b0b6aef3dea8f2da91bc60c8d80600eb2f7af73b6e8df6e161abf0c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.10.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 365d85cf7c72c516321534f8dae78cfcc90b976f60b988d2fb53a25e8a10c2b6
MD5 960678e93d8f0cb6812c5e7caa742454
BLAKE2b-256 bbd31b360d8b5407557182832f0d4576ac8d0470e17fdd0ebfaa9c988cbd6997

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.10.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 298829ee3fa6a2b3168d5c268419caa52990be3561c4933c740eeb59dff90351
MD5 fbeb6fd68398d32d57d5bcdda262af03
BLAKE2b-256 8d985d3be3ec983213fa54674e7c35151a8e72663b0d00e4d2b7d8b99d23c6ff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.10.0-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 5f3460505b5ef7a97141bc66f3a22126d5ca64597553efc4f58fafa6c227efa6
MD5 f831dd641f17387ebcb4e1fdd7e74645
BLAKE2b-256 a0948dcae57224bb2a8e806c94cf524efe1e715a7df7f90153306d7923ca7411

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.10.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 cfb30c2d828fe6acd9cc76323e9e00f5a564d7963eb1266293b1c32750f91645
MD5 04795e9f9a7524be1d17e0c70bf7998c
BLAKE2b-256 d0500245a5facb076a971a1e48ca51b5e1e23b1029272b9241fc9cc97cc125cb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.10.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4d82b646934bb475edaaf6e87014c42dd7aa25c29bc6646f9d81d400bd1c76e8
MD5 65bf882451f10645ee28eef32aceca28
BLAKE2b-256 d9a97a2ba4800977716d610629e4e8171d30698dca98bd529a3ff01e0aa627bf

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_rest_api-2.10.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.10.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.10.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0eb48c5cbe158e7ce61729e5749d47222d3546ab11f89b71a736d1f23f639f11
MD5 d060e2ebc93de52917dc38901641bc7c
BLAKE2b-256 3362418a88490f5559e42abb667f2115923e9b0fc551fc941361b2a1f3d0a2ff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.10.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6f8d61497704dcfe9776c30efeab04ffe6cee7cea558d0730bf46648423221e3
MD5 34173796545bbbb04d35277a98e45a5c
BLAKE2b-256 1aeffc377bca1f51145efa9ed3e6a5871565959fded1ee6bed788621adc63096

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.10.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cde909f61b1f5eedcd01cbc2ea9b5d6ca5a523f7ed08877adce23bbd910a4989
MD5 fd8ce166221532ef36908124a7f886ab
BLAKE2b-256 4fcd5f84ed870826b87eceee522b1bb1c88fe14e7ac9125687d8364a15ab4443

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.10.0-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 6ec41ab8598f40682f0f297b386a49cc8a36c3e89d412c2ad48bb99acc00dd0e
MD5 94daebd9e3fd5563aa6fcc98929d90a0
BLAKE2b-256 ccd1e40b3cfe2dc04285ed2a6bbe2312b8d9afb85097d0ae28fabccedc654c24

See more details on using hashes here.

Provenance

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