Skip to main content

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

Project description

GitHub Release GitHub Downloads PyPi Release PyPi Downloads Conda-Forge Version Conda-Forge Downloads License Supported Python Version PyPI - Status codecov CodeQL Unittests Build and Publish GH+PyPi Conda-Forge Build Read the Docs Read How To`s Github Telegram

UBS-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.

PyPy wheels are available for all supported Python versions.

The current dependencies are listed here.

If you run into errors during the installation take a look here.

Packages are created automatically with GitHub Actions

When a new release is created, the Build and Publish GH+PyPi workflow spins up virtual Windows/Linux/Mac runners, compiles the Cython extensions, builds the wheels and publishes them on GitHub and PyPI. The conda-forge feedstock conda-forge/unicorn-binance-rest-api-feedstock picks up the new PyPI release automatically and builds the Conda packages on its own infrastructure. This is a transparent method that makes it possible to trace the source code behind a compilation.

A Cython binary, PyPy or source code based CPython wheel of the latest version with pip from PyPI

Our Cython and PyPy Wheels are available on PyPI, these wheels offer significant advantages for Python developers:

  • Performance Boost with Cython Wheels: Cython is a programming language that supplements Python with static typing and C-level performance. By compiling Python code into C, Cython Wheels can significantly enhance the execution speed of Python code, especially in computationally intensive tasks. This means faster runtimes and more efficient processing for users of our package.

  • PyPy Wheels for Enhanced Efficiency: PyPy is an alternative Python interpreter known for its speed and efficiency. It uses Just-In-Time (JIT) compilation, which can dramatically improve the performance of Python code. Our PyPy Wheels are tailored for compatibility with PyPy, allowing users to leverage this speed advantage seamlessly.

Both Cython and PyPy Wheels on PyPI make the installation process simpler and more straightforward. They ensure that you get the optimized version of our package with minimal setup, allowing you to focus on development rather than configuration.

On Raspberry Pi and other architectures for which there are no pre-compiled versions, the package can still be installed with PIP. PIP then compiles the package locally on the target system during installation. Please be patient, this may take some time!

Installation

pip install unicorn-binance-rest-api

Update

pip install unicorn-binance-rest-api --upgrade

conda

conda install -c conda-forge unicorn-binance-rest-api

From source of the latest release with PIP from GitHub

Linux, macOS, ...

Run in bash:

pip install https://github.com/oliver-zehentleitner/unicorn-binance-rest-api/archive/$(curl -s https://api.github.com/repos/oliver-zehentleitner/unicorn-binance-rest-api/releases/latest | grep -oP '"tag_name": "\K(.*)(?=")').tar.gz --upgrade

Windows

Use the below command with the version (such as 2.11.0) you determined here:

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


AI Integration

This project provides a llms.txt file for AI tools (ChatGPT, Claude, Copilot, etc.) with structured usage instructions, code examples and module routing.


Disclaimer

This project is for informational purposes only. You should not construe this information or any other material as legal, tax, investment, financial or other advice. Nothing contained herein constitutes a solicitation, recommendation, endorsement or offer by us or any third party provider to buy or sell any securities or other financial instruments in this or any other jurisdiction in which such solicitation or offer would be unlawful under the securities laws of such jurisdiction.

If you intend to use real money, use it at your own risk!

Under no circumstances will we be responsible or liable for any claims, damages, losses, expenses, costs or liabilities of any kind, including but not limited to direct or indirect damages for loss of profits.

SOCKS5 Proxy / Geoblocking

We would like to explicitly point out that in our opinion US citizens are exclusively authorized to trade on Binance.US and that this restriction must not be circumvented!

The purpose of supporting a SOCKS5 proxy in the UNICORN Binance Suite and its modules is to allow non-US citizens to use US services. For example, GitHub actions with UBS will not work without a SOCKS5 proxy, as they will inevitably run on servers in the US and be blocked by Binance.com. Moreover, it also seems justified that traders, data scientists and companies from the US analyze binance.com market data - as long as they do not trade there.

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.11.0.tar.gz (611.3 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.11.0-cp314-cp314-win_amd64.whl (922.6 kB view details)

Uploaded CPython 3.14Windows x86-64

unicorn_binance_rest_api-2.11.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.11.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.11.0-cp314-cp314-macosx_11_0_arm64.whl (913.3 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

unicorn_binance_rest_api-2.11.0-cp314-cp314-macosx_10_15_x86_64.whl (949.5 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

unicorn_binance_rest_api-2.11.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.11.0-cp313-cp313-win_amd64.whl (924.2 kB view details)

Uploaded CPython 3.13Windows x86-64

unicorn_binance_rest_api-2.11.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.11.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.11.0-cp313-cp313-macosx_11_0_arm64.whl (911.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

unicorn_binance_rest_api-2.11.0-cp313-cp313-macosx_10_13_x86_64.whl (951.8 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

unicorn_binance_rest_api-2.11.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.11.0-cp312-cp312-win_amd64.whl (924.9 kB view details)

Uploaded CPython 3.12Windows x86-64

unicorn_binance_rest_api-2.11.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.11.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.11.0-cp312-cp312-macosx_11_0_arm64.whl (913.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

unicorn_binance_rest_api-2.11.0-cp312-cp312-macosx_10_13_x86_64.whl (954.0 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

unicorn_binance_rest_api-2.11.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.11.0-cp311-cp311-win_amd64.whl (927.6 kB view details)

Uploaded CPython 3.11Windows x86-64

unicorn_binance_rest_api-2.11.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.11.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.11.0-cp311-cp311-macosx_11_0_arm64.whl (924.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

unicorn_binance_rest_api-2.11.0-cp311-cp311-macosx_10_9_x86_64.whl (959.9 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

unicorn_binance_rest_api-2.11.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.11.0-cp310-cp310-win_amd64.whl (927.6 kB view details)

Uploaded CPython 3.10Windows x86-64

unicorn_binance_rest_api-2.11.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.11.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.11.0-cp310-cp310-macosx_11_0_arm64.whl (925.3 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

unicorn_binance_rest_api-2.11.0-cp310-cp310-macosx_10_9_x86_64.whl (960.3 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

unicorn_binance_rest_api-2.11.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.11.0-cp39-cp39-win_amd64.whl (928.3 kB view details)

Uploaded CPython 3.9Windows x86-64

unicorn_binance_rest_api-2.11.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.11.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.11.0-cp39-cp39-macosx_11_0_arm64.whl (926.5 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

unicorn_binance_rest_api-2.11.0-cp39-cp39-macosx_10_9_x86_64.whl (961.1 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

unicorn_binance_rest_api-2.11.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.11.0.tar.gz.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.11.0.tar.gz
Algorithm Hash digest
SHA256 20facae9fbff75ffe9690b10c699411d52fae4bdacff5c4d1d4b5324c1c7b433
MD5 8f8bde6e803b4645fb8bfb5f75e26405
BLAKE2b-256 ffe878d668835761a7f238470a4541dee1e4517880b19118197c57dd5b0cfad8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.11.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 dc0bd9855852c1f8a63c4c970f64f2cda8b2b2ea3879e0e5fa3e31b5402fd331
MD5 4f3867bb3e23a0da04f8a59927d54d4d
BLAKE2b-256 c660d6f5c1bd20062e96edc56337f26f2b95288d7595dc3fa98346e94573ee61

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.11.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 054087da66225f312bba46bf4d57b0a6ee40b30e92b7df46e9f317064ad84e65
MD5 7ab4c1efb4c7de5c73feb8d6ad5b8145
BLAKE2b-256 ea5adb0ea4770a63f3ad29725ec2fbb91c8c1ea716df18bea85b86041a0a46f4

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_rest_api-2.11.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.11.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.11.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d1e8c7253ff092e43acc5f1c5d34a6909d1227a63247b910fff953c7662b9f9e
MD5 2f4d8b770bde3fe6c83bc3bb1cc602f9
BLAKE2b-256 2e2185e9de5e1628ccf14d759a0a15cbb0f61a644f0013fed7799b1b3701d14b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.11.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4b4a844772f792d81103f9e961f01f4233f10804e13709233da93bcf143175d1
MD5 d99c9bd7d08904cde5c554656d01e2ad
BLAKE2b-256 142b54b2751e03c061d0e6a2612cae07c05eb65a9a40b385344e15fe133e0be8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.11.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 656d10a79016f77d026d62eb9d18edd031b195463c7ba47688cccd4c67407dc2
MD5 1d036edcb8133fc487b0aff8a63ea677
BLAKE2b-256 109adf0e97f9eec423e9fb505a4ba2efd70bf43d6e614435c75adb057dd2141e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.11.0-cp314-cp314-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 c6fb31c9f4f719e8060b38dff0cc962b92f0cc248c79c5bd0733d02c198765f3
MD5 4b4ae06508a9ad3ec6a4d22e02975960
BLAKE2b-256 59713b12b66482ae8979d6faa40a518d23ead6ec3371bc9181e0d1ac0c046b91

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.11.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 ec01bdebfed4febce5c83580c5ff139273fcdaa99c3e267e3f6f652258df488f
MD5 1df2eac7e96986510cba0f77e57dd381
BLAKE2b-256 2c2e3acd92317600e77a729fee96c7f02abdc0ae747af3b479fd5ee72492a0e8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.11.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 64207009955bc9cd738e13059a40d7704d818c043ee624361708d6ed6a72cf3d
MD5 8cf7c11af66689f88966024149460fea
BLAKE2b-256 8e3297d6508f95d92e7aba3ec319a4fc0f6bcc8a4f344f0b6690c217a6727d7d

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_rest_api-2.11.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.11.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.11.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 37e3e89a3085a96fa2dd19dc9372801f389e64814811bebe366b6d15283684a8
MD5 ecebea6c032f6b60e682fa08e29fc231
BLAKE2b-256 8b298f67461734d103f253707d06e4741c55f816485491fc2279eb60108aba69

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.11.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0bcf9ff8d150dbff6e2ea675a1f536a663576a9c757cbd2792f0b2254ed01bf6
MD5 9ab8b55d5c32537bfa8490637a4d2dd2
BLAKE2b-256 800550df5331bde7e4d05335c38b392c8752c6a63a6736c810c91e3bf8b46908

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.11.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 bb92cce2ba725a6bca235e8c6ac69d039f1c5c8f825085c239ae72c727226b10
MD5 37c0c329210ddd9d87b10a8eacc5cb49
BLAKE2b-256 5560b4d0e80588273383289f23aee2d8d74988642f3f318141a110deeb70c087

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.11.0-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 3627d3300a7658b3e80d4e81297656b9e7ae67b5099de93cf6b662b28c1b2f08
MD5 8230f71c1834d3b5b5e9c43ac8292d11
BLAKE2b-256 48e86e7c7df0f04cd0c0c9670befd8f89df59f3b55add452bc5d1230a8b43aad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.11.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 f1e2d0119303aab6848cadf59999c6a955ddf26221619d96598977c246e5f08f
MD5 37b023e4d7f119194f898a0d0b75c68e
BLAKE2b-256 a2f82989e669397bd4b8329c2f40681ac31634bb9be756ee0b6f28459ab7f7f8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.11.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 77b8dd38f6236fff149f1cf81357b6c3176fb9ad63e68af21e54e7afb5008e00
MD5 b751c67821945cf48e70159d668fa242
BLAKE2b-256 13b38b5377c54998cb0a0c8b54e1b692cd2a9298dd4fedf947e9ef882ce03c42

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_rest_api-2.11.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.11.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.11.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ef9f8bbb8b8ff16af0f3b616f0e3cc88c04bf8f14eca9f81d2a7440ff4751750
MD5 37d4b9810454cae8983dae02daf6eb02
BLAKE2b-256 e2d5d8c9b5ea04f3f0b60bb46f980585bc086f3a889a257672bfeced571a06cb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.11.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 418d3287e73adfa8f771789093f78647c24b3c06b79308517e78efe186df0475
MD5 07dd2dfefae819db093a009c5db80ac4
BLAKE2b-256 474fac96c9badee924914c8b7a907016cb9626021c0d407ebc77ae4cc9abd3a9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.11.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 abe571bbf786f6f3bc5c1a172d5ca26e72dfc4a1b688dfd1a89bae91c222018a
MD5 22b91955640b54427af0dbbbd8d211d4
BLAKE2b-256 07a7acdbfb6b51f48a05212dde3ba7e072040f1394242423d701733f96094f78

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.11.0-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 7e2822a3444ba18a0761fc0b4fb287c293f859e53e51e4d7780072e33ea6e0a3
MD5 3f230526475ec55a4a6fe871ac994fe3
BLAKE2b-256 00bc5aeaafb15abc531e8ebb303d5444db4ff7cc21866b760a6e000e3bdc0a48

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.11.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 24e323ca4c4d7e96665749ba98f83ec762f1d5c048c04306675935f439ad36cd
MD5 af4ac6084baf845aafb8a30af5fd154a
BLAKE2b-256 bc852574985136c96de9278c224dcae24c638ef0575d763eaa3b44d39d33e906

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.11.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9af38698d93dbccd8b51c6394b37eb16dc6179dc350ea0f42c718baea7863da6
MD5 8b95533568da6c7b37875467bac69ac3
BLAKE2b-256 a17ef65c1b7188520ae06aa458aee34876a8893e48e8c34c7410481ab514880b

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_rest_api-2.11.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.11.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.11.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9d1a9229221fe9f6cea856c6b241351e0435dfe23e8f027a58a00acfb2e1e7af
MD5 585adef0894fd9397ed0a82006fd0299
BLAKE2b-256 469ee25f072662cffd050d04cef2bcc40ce07b1b06ae5783e6a98ced89050a6b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.11.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e907a43bcffe7e69eeaa24b530583004ad8ac9decd2dd295c5c5a063248316dc
MD5 ddd37b1c612b3dd197a7cac8df6a5797
BLAKE2b-256 5ffcab9e936a6db568407c318ebd9190d8d3f6438856a9a389ebbd058443f69c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.11.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ed69c0173ebbc97054e40277ed8013ba436536fde1ca4123d8716370ccff8855
MD5 f43eb61242501ce1f032b96db55d2dd0
BLAKE2b-256 9b114b3d7851e1219d449d9ff3243d8345aac24e39cda847ba0f4f46d94f2afb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.11.0-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 467eb307244056f9516506e0ca8e11f84c7161b84a3c7614d0e660b52c2d0f00
MD5 4cb6dc6d238dcbe266844d9718f2eb1b
BLAKE2b-256 6563ded31f049115d346bfd957d39447b6db5391a425d2286345d83f43d818f5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.11.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 1e0f4c01efa96c5eb255f2c3a493597cc8b3aaa596f5004833ad943a74d5928c
MD5 d73f3d6c0f634835fd7d487495f8be62
BLAKE2b-256 e93cc799f1341f1e09b9c585431380b1241aed0a702b0338b2d99531e201ebc3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.11.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 906b4a63618b383dd691628d39ac222958f27bdd20aaf39769b1b7f70e2234be
MD5 796ceeb875f4d7bcf503d92e69c0dec1
BLAKE2b-256 3b3acfb544512d882ed830ba3fa24fc19bbc9287e6480bfe150312b06a4f3c3a

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_rest_api-2.11.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.11.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.11.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 43ebad6f510b2f269ff3b2c23cfea0603d96eb43b6a5c1a18b4fcc60e0aceb00
MD5 47bd1e78c7a8d75a913f3d38481dcfbb
BLAKE2b-256 0f3ec6a2ad73efda689c234d3d165ff245afdd2a0c8d4aa0d808af88e1862f53

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.11.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6c51e90867af01a65ce3cf37ff4fda681c98bae4f1bd29a96ebe0f2fb8d10087
MD5 162aee500240bda1604def9cc1d33490
BLAKE2b-256 965e74c4b46a051ac479eb318c80c23d3dfeadf1250779d2bf9c211c1cc5c910

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.11.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 752d56eb4f429b62a215c03d193ae18980dbf49e788f52ad67105dfb4a11b18b
MD5 a608b383c98a1e80fe61e57e4d364127
BLAKE2b-256 ed76a2f50ac72dcefd97f81d8087e06027df0455689954fcb329e61928e29440

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.11.0-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 ef9ef9390d54c857bb5d1446a5850c5eb49467651f9e84005797b1c774361039
MD5 99868a263745e747fa1bb4a86cd301f0
BLAKE2b-256 17f93e29a9ac0d7420bb5140f8d40628e49a2bef0e86e052c4fca5b02390709c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.11.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 566efcf3c6271b63bb799789c6f78dc268d8bbba49872158dc2b0f5a70aa3738
MD5 4bd8ab7c5a0947e3386cfd856661828b
BLAKE2b-256 33f6ad5a49fbe0c2de0337d3165040f3104403a1f9073b49e2cf80cc1a58b610

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.11.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 96f3a23e865ea0fad198e8f97f9d094a12ceaff62903fe18deae501dfa8b9f69
MD5 1f7ba60a72be88407d572c88267dff3c
BLAKE2b-256 ae1b521d9c17a2a4b824a7a64e4318681b44a2ea1665e2d194a880e2c05388b3

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_rest_api-2.11.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.11.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.11.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 28d76466c9a44ea15f190cb567c641ab2c55e19545e14b3dfff78ad505fddf80
MD5 0c0253cf162b8824b43a58a9d646eb1e
BLAKE2b-256 87e87a97863cdc8c4bfcbd0f71b71f39c9d44cc2646dde78419dfc25fbb3878e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.11.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9026d0db085abcc78445c5d4ce7b05c1afc109812eb82fa21cd809f660c3141a
MD5 230b3dcf53ceb37a56c22027ea3d1d1b
BLAKE2b-256 c3b5725a2ac35c935eab04ba8c1f6cb9e57db6b0f2ae1cb6023fb7b625a00d52

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.11.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5df7e7827a4be99a301efd662b80d3dddfbe8f395c955a3099595039b3ee6cc9
MD5 8a3af23fde5c58538da713c8574a4cd3
BLAKE2b-256 68862540d0885286606b8db6128ace625b76ef5cead8e3cfe6d928ea77be09b1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.11.0-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 f703d809fd63b13bd3b4d2db5331d2f25761847521b210ab6827e3792f4b8cda
MD5 869fecb81f7b8aba1dae4e5da70034a2
BLAKE2b-256 699db6fe421db0cbfbfaf26ec3ac3e50d1085ba179525d69735c67eff5294b35

See more details on using hashes here.

Provenance

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