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.8 and runs smoothly up to and including Python 3.13.

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

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

Uploaded Source

Built Distributions

unicorn_binance_rest_api-2.8.1-cp313-cp313-win_amd64.whl (885.1 kB view details)

Uploaded CPython 3.13Windows x86-64

unicorn_binance_rest_api-2.8.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.8.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (2.8 MB view details)

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

unicorn_binance_rest_api-2.8.1-cp313-cp313-macosx_11_0_arm64.whl (889.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

unicorn_binance_rest_api-2.8.1-cp313-cp313-macosx_10_13_x86_64.whl (924.7 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

unicorn_binance_rest_api-2.8.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.8.1-cp312-cp312-win_amd64.whl (886.0 kB view details)

Uploaded CPython 3.12Windows x86-64

unicorn_binance_rest_api-2.8.1-cp312-cp312-musllinux_1_2_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

unicorn_binance_rest_api-2.8.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.8.1-cp312-cp312-macosx_11_0_arm64.whl (891.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

unicorn_binance_rest_api-2.8.1-cp312-cp312-macosx_10_13_x86_64.whl (927.2 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

unicorn_binance_rest_api-2.8.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.8.1-cp311-cp311-win_amd64.whl (889.1 kB view details)

Uploaded CPython 3.11Windows x86-64

unicorn_binance_rest_api-2.8.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.8.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.8.1-cp311-cp311-macosx_11_0_arm64.whl (902.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

unicorn_binance_rest_api-2.8.1-cp311-cp311-macosx_10_9_x86_64.whl (932.7 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

unicorn_binance_rest_api-2.8.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.8.1-cp310-cp310-win_amd64.whl (888.2 kB view details)

Uploaded CPython 3.10Windows x86-64

unicorn_binance_rest_api-2.8.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.8.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.8.1-cp310-cp310-macosx_11_0_arm64.whl (893.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

unicorn_binance_rest_api-2.8.1-cp310-cp310-macosx_10_9_x86_64.whl (924.9 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

unicorn_binance_rest_api-2.8.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.8.1-cp39-cp39-win_amd64.whl (888.7 kB view details)

Uploaded CPython 3.9Windows x86-64

unicorn_binance_rest_api-2.8.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.8.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.8.1-cp39-cp39-macosx_11_0_arm64.whl (893.4 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

unicorn_binance_rest_api-2.8.1-cp39-cp39-macosx_10_9_x86_64.whl (925.3 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

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

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

unicorn_binance_rest_api-2.8.1-cp38-cp38-win_amd64.whl (891.7 kB view details)

Uploaded CPython 3.8Windows x86-64

unicorn_binance_rest_api-2.8.1-cp38-cp38-musllinux_1_2_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

unicorn_binance_rest_api-2.8.1-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (2.7 MB view details)

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

unicorn_binance_rest_api-2.8.1-cp38-cp38-macosx_11_0_arm64.whl (896.0 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

unicorn_binance_rest_api-2.8.1-cp38-cp38-macosx_10_9_x86_64.whl (923.3 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

unicorn_binance_rest_api-2.8.1-cp38-cp38-macosx_10_9_universal2.whl (1.2 MB view details)

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

File details

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

File metadata

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

File hashes

Hashes for unicorn_binance_rest_api-2.8.1.tar.gz
Algorithm Hash digest
SHA256 290fa2321c0273ca0100e087e1fc8a991d0397395d37c9204511d8838ed2ade4
MD5 2d349e57a6c78eddd50d4eab724c2ba3
BLAKE2b-256 c14749470647ced6734e026bb93090bf5494036c423a1d42ec998fe2b3da8df2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.8.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 eeb2cfe492ca6b694efe80e3ee8be1b61e9cfcceaddaf8886b547a59a633ed5a
MD5 7cd2b601f64c82a1937b4bb853cd5f69
BLAKE2b-256 a885968d88833feb9f2c417e5c2f565f10c08ca42e0354b12e49b6eee1ffd23f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.8.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e7beb27ac0e07492861d0aa43265e48c44263f0898f90368cb6fe0093c7e8fe7
MD5 0fc55e57702866e1097e17bb1d387e12
BLAKE2b-256 b23f13ea8327fc10d28967be43939a29c1fadca6ebac7ab586e5afe46a5d0e40

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_rest_api-2.8.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.8.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.8.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4b31d45418159bb79a02bd8f16f816c56be8e845fe67b3eba44dac1b0044264a
MD5 f77d1521b86600e8a4c9984a17e87d37
BLAKE2b-256 5302f336a17106456d855d9a98244965cf5483e5fff6c18765bd589806966e3e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.8.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 967c4b283a5e6be69b725ce17e3dfa8ed3be8a94a616d9177ebad2e428351c58
MD5 8c35880c515916ac5261e9212d8ea006
BLAKE2b-256 735ec5154e5cfaa951e9aef4596eaf979a1ae19b45b6faff7fc790c6d614998c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.8.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 9551d7828d639721753e2bb88e1e291b6c3dc046bfff23c21a8c6df439751d1e
MD5 d4e59fda95b223aa3afa4aa730d1056c
BLAKE2b-256 560f722e1af28595584f7f7ccbbee4840f15048037fa834ea57187c81db7b0cb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.8.1-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 2e83691f608491f16790f0763b0d5607b2ffafeec13baf94ff712e84169b934c
MD5 baf62a0c17766acc50bbf098f1a583ee
BLAKE2b-256 ad004daeb7ff2d1fb3d6354fa7f1549c9718caae04e967f22299ba872cb720c0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.8.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 58a1c737e405870acc39a6b7839e4cf480d9b2a60a0b8f664e0fec403212c549
MD5 a420982e8d04932beb2c7e51c7cc0d23
BLAKE2b-256 1ff3d31f1e0e0bd900f553be546013031c80b612f269c6dc3edfa4ad61df2388

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.8.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5a420dd372202c229f30746b8572f794e0e7512e4c1b4cb3a2be03273fd9dea9
MD5 169bf6a600e2585f22cf9c338966e6c2
BLAKE2b-256 7fd08d2307c96f5038faf13f9d93c6ac57dc7493abf544c6eb7120f446ccf248

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_rest_api-2.8.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.8.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.8.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c5b8397c81a4102531d0638ff8467c62108eb7af79cb250d72473d7a56bb117c
MD5 37d8106aa561d7980651546de6feb8c6
BLAKE2b-256 57e8b3431136127688bd8c20e1cd168867bcc2bd2a2f4d045331ada770e78757

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.8.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5c9d35300b7d4534b32ef6926a8fd52c0640857fe25e83cb073990945443bbe9
MD5 679ccfa5a3a5beb8cb1f2e5ddcd5cfd2
BLAKE2b-256 0fd16ca23c106f2106620dbb1a487f5dfd7ea9ca67f6d4ab8f1fc229f5bc2774

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.8.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 e81e9e5e0813d0de3b72246fa0de2db2bcd8af1cf053ec12c91df83c4939a27a
MD5 afc16a70ca21e6a174a9bcaa9b839054
BLAKE2b-256 aa130a4cffbe16e07b41d921518ccfe06e16f6f7275851d5a3cec47e4a7f93b3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.8.1-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 d7fe86fcb386e3e464287ec40dba702096ebf5b413d89f1fb9446405409d350a
MD5 591623ddd1888655d997051bf74d8d27
BLAKE2b-256 a3b827ac2f09a4de9a9e683b4c7ba2a663c20066acd0e6fd5d3321bc110d37d5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.8.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 500e47fa595d237d568820a5244326296f227a4fb6fdea947dbc7b4b233a6664
MD5 836d1a22146c4b6d6aa9b5252999d4dc
BLAKE2b-256 0cd7f479a58b6f725ceafdd62e357269ce623ce5887d14a86140431616e9d535

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.8.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 821f7be803e581728fd8219d18c9ad54d0230660b0f2e25b3fa95f54533c50ea
MD5 6755bd123658194f1ee9999bf2375420
BLAKE2b-256 1a8dfc32009204405a4f31fa8dbd7beb746a3409f6b5adec3c594368439a84c7

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_rest_api-2.8.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.8.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.8.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d630ffab8286f69f7646641ae957e26b2821c9ef026b510d7fc3f3e404fc7485
MD5 5a0add18b63a7dd5be6f1f8d7c461fca
BLAKE2b-256 1182a71f27a2a39e8a02a81b17fdd258725d1db0007bbc7f83d9e92200a3fdff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.8.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 76b7473de16b32be1e8c364a8c15ef9be159bf4689a1bda81cd87d8f55a4f743
MD5 ef3b44eda3ba861d61eeb8ffbb1145d5
BLAKE2b-256 09ef069406bbce4e476e9bda27c3fc61b1e8773cc9748e6a874b85c667049135

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.8.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 087f83ba568c4c9ddc879c0c160a744a97d5765e6712cc0d7fc5053654b5fb0f
MD5 3950a29e9f0e1da4e1dc06d342a7e68e
BLAKE2b-256 52aade02d024ada2d08d6a73c80e9c5e4dd9b066fc59faf4abef790e352faf2d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.8.1-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 aadbdbdc50a18559466b4294ddf4e66cee98a153307db4c9d148fefcfd7ec211
MD5 7c1a6f49a20c66b65763e881ceb33dd0
BLAKE2b-256 ed879d9b8535fc5d6b8f4fcf5b900e9ac24eb696952cff1cded26eaa6c3c2b06

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.8.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a07bfe113cf1cd377d81c4cd9cfd8ffc80096a6c217b06fd212435382073f023
MD5 7aa4a40f46b47d04c99b6740ad4f1f61
BLAKE2b-256 99d41666d379699351af48d65ef24049a0017b2bb496f70024334fca66b6fb88

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.8.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 28a1e31107c29d91032c0de3c88029053769d2a7ca93573a62e63fa89269ae5c
MD5 ab8aba18ba04e1afa1a227ed3183f048
BLAKE2b-256 6aa97226a524d07e36a2f048d5d076fdef68f9b88d44a0233c8dc9cbbb788389

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_rest_api-2.8.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.8.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.8.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4ec452d6509751bcd48c10ef0437320e3186be00ffabc3de029e72698ba14a82
MD5 85d1317717efe9b47dd8537a02d9ddca
BLAKE2b-256 f3ae62d8417810256ab1f7c6934a4bdd7c103c6fbd84c938e934f734251c218a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.8.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 30c0fcfb5479fd2fdd07d271bd1e1fd642d11c537483b3384f3106c8d99e5f17
MD5 6b08d525f734c7b55a09455c4fdb0917
BLAKE2b-256 d669839e9349aec7def04a70f68f87c4d25a8f7d80aface782ef5aff56b10ca4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.8.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ca8853596c8e58a3102cb95093f1cea12992737ee39281692fece3b946e8074a
MD5 814d75e5832d9bc130bf299fed9ad828
BLAKE2b-256 e66eb09087362da7416f7090b0ff29f38ae3e0ff0cc1303a1610ea81494a6bf0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.8.1-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 6e637737df9f84b1291888e9c6a128337b80ee1daaacaabce708845cd713c430
MD5 1b73796c46b8173fc0851baa17d557bc
BLAKE2b-256 29f6010caf2466392e1f728ac238b40d37d172b4ed98b985dc04939408b0623a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.8.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 fda47a4886830aaa486ebb0f0b606166a5f9cb420d9ecb1171c8d35dd8534c96
MD5 6d56ddaf474e68831be5305ba9cb34e4
BLAKE2b-256 b9e665ef2db209b9d26bba3d13db6a0d78d006fcbe9e9262f0c651b99dedebb0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.8.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6284737ad99e06cbbd410c67424ecce10f335364e7632dadbae0a3c9e0965000
MD5 0858e47a0ec5d64b11a9bbafe2109e83
BLAKE2b-256 4a942153c75d0fbec2099a5c9625ac2091506d2f331b933c003aac7d90527476

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_rest_api-2.8.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.8.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.8.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 dde86516e6e663c37bec120660a9595e1ea15bd3ce6905bee81a197afbd1f986
MD5 80c704a9db6b790c2c116aabd0f02ecf
BLAKE2b-256 7fdf8178a8926dde66a2c8c0f74970ffb431906cd1e86b8717e5f0c70529ac43

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.8.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c4ca20eb8170542ffe613b2ace8e24c44a5d91701bf3830b1480b1367ae1a3a3
MD5 ee6b44880f66001ec540616616f40cb8
BLAKE2b-256 ca13c5013b808431f3ed86aa7d9b49a6428fadf53e2d1a4ade9a0d23cba48bbf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.8.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9749e5b3bfff17acb983c6386b5bbb306fc0694b6233efdf5817db23012b3c8e
MD5 f69637e71d00f7059aeaed0f5ec8fade
BLAKE2b-256 15ea5dfceba2e31ff5b8bfdf0b24710749488e7f136f48dbe771995f740de3ba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.8.1-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 1555ac41be59da28a9fbae302e4f4874f11fd2f38f26fb4ac94875647c782d3a
MD5 678847181a5ef97036a3b85278411a2a
BLAKE2b-256 ebefa72095b9421298c449e5bec60d5226391ac20044dbecc1d2a6b034d3a594

See more details on using hashes here.

Provenance

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

File details

Details for the file unicorn_binance_rest_api-2.8.1-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.8.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 54cf7a9385d81ded79239d92b003dc056378286f6f13e536074ad86e4f55d593
MD5 9a67647c9ed026f6f31657075ef0352a
BLAKE2b-256 495e47b365b553fd5805629453537eaa9326b8bed640c8b7fd9d013922ac4b32

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_rest_api-2.8.1-cp38-cp38-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.8.1-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.8.1-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 63993cc0e5335760d25029a024801935e21c65b95b324a4aacf464b4d037aa1e
MD5 95a21d2bf3c4780ada40db2272f08908
BLAKE2b-256 7ea0cec2e398d333667f587398f9edd30c47a7d1bab76218833032e473e01636

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_rest_api-2.8.1-cp38-cp38-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.8.1-cp38-cp38-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.8.1-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4ebeab63a591fc183cc1333f5c71cec9a043b9ce1171fe42f390a6e10a2bf854
MD5 e26ca512f98ee9f1f39f77d4e0f9d6b0
BLAKE2b-256 1cff5003d1f20c4c9a4b6b75d855dcff04e4e1cafd5b2d1df868e27ce5f2f34d

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_rest_api-2.8.1-cp38-cp38-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.8.1-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.8.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 485628b164297317ae629ed3e6aace850267c0fc19a4d5ef196f8fba01cfef92
MD5 81c2ee6397502eeeabcecbcbc61233ba
BLAKE2b-256 f1f95d3c03b6d55bb3fec620d095a6bc3840aac399af65fe73c50c29f85c567d

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_rest_api-2.8.1-cp38-cp38-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.8.1-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.8.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b49cf490eb1869e043420f3b649aa16517254ee59aac177dfb15a3a487c00476
MD5 1a4092d284bb68f462137102e41a5395
BLAKE2b-256 3df877508bc3dc2bc1730674665734f46dc699e8d6106d6f5442e193e70c4361

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_rest_api-2.8.1-cp38-cp38-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.8.1-cp38-cp38-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.8.1-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 cec045630239937fd3ab3d663ac67410b5d7c91f826ec5e10958aa1d16ee5f3d
MD5 55d88df86136fd44f1f8f6e74885f3b6
BLAKE2b-256 8f1e7746828a532fc9abd668e77854afe1c17419a9a7eaf42d9735ec4a8c70a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_rest_api-2.8.1-cp38-cp38-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 Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page