Skip to main content

A Python SDK by LUCIT 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

Get a UNICORN Binance Suite License

GitHub Release GitHub Downloads Anaconda Release Anaconda Downloads PyPi Release PyPi Downloads License Supported Python Version PyPI - Status codecov CodeQL Unittests Build and Publish GH+PyPi Build and Publish Anaconda Read the Docs Read How To`s Github Telegram Gitter Get Free Professional Support

LUCIT-UBRA-Banner

UNICORN Binance REST API

Description | Installation | How To | Documentation | Examples | Change Log | Wiki | Social | Notifications | Bugs | Contributing | Disclaimer | Commercial Support

A Python SDK by LUCIT 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'.

Get help with the integration of the UNICORN Binance Suite modules!

Get a UNICORN Binance Suite License

To run modules of the UNICORN Binance Suite you need a valid license!

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()

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(),

  • 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.7 or above, as it depends on Pythons latest asyncio features for asynchronous/concurrent processing.

For Anaconda we offer packages only from Python version 3.8 and higher.

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

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

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

Update

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/LUCIT-Systems-and-Development/unicorn-binance-rest-api/archive/$(curl -s https://api.github.com/repos/lucit-systems-and-development/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.5.1) you determined here:

pip install https://github.com/LUCIT-Systems-and-Development/unicorn-binance-rest-api/archive/2.5.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/LUCIT-Systems-and-Development/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://unicorn-binance-rest-api.docs.lucit.tech/changelog.html

Documentation

Examples

Howto

Project Homepage

https://www.lucit.tech/unicorn-binance-rest-api.html

Wiki

https://github.com/LUCIT-Systems-and-Development/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().

Follow us on GitHub, Medium, YouTube, LinkedIn, X or Facebook!

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

Commercial Support

Get professional and fast support

Do you need a developer, operator or consultant? Contact us for a non-binding initial consultation!

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.5.1.tar.gz (739.7 kB view details)

Uploaded Source

Built Distributions

unicorn_binance_rest_api-2.5.1-pp310-pypy310_pp73-win_amd64.whl (1.2 MB view details)

Uploaded PyPy Windows x86-64

unicorn_binance_rest_api-2.5.1-pp39-pypy39_pp73-win_amd64.whl (1.2 MB view details)

Uploaded PyPy Windows x86-64

unicorn_binance_rest_api-2.5.1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (1.2 MB view details)

Uploaded PyPy macOS 10.9+ x86-64

unicorn_binance_rest_api-2.5.1-cp312-cp312-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.12 Windows x86-64

unicorn_binance_rest_api-2.5.1-cp312-cp312-win32.whl (1.1 MB view details)

Uploaded CPython 3.12 Windows x86

unicorn_binance_rest_api-2.5.1-cp312-cp312-musllinux_1_1_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ x86-64

unicorn_binance_rest_api-2.5.1-cp312-cp312-musllinux_1_1_i686.whl (3.4 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ i686

unicorn_binance_rest_api-2.5.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

unicorn_binance_rest_api-2.5.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (3.5 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

unicorn_binance_rest_api-2.5.1-cp312-cp312-macosx_10_9_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

unicorn_binance_rest_api-2.5.1-cp311-cp311-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.11 Windows x86-64

unicorn_binance_rest_api-2.5.1-cp311-cp311-win32.whl (1.1 MB view details)

Uploaded CPython 3.11 Windows x86

unicorn_binance_rest_api-2.5.1-cp311-cp311-musllinux_1_1_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

unicorn_binance_rest_api-2.5.1-cp311-cp311-musllinux_1_1_i686.whl (3.5 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ i686

unicorn_binance_rest_api-2.5.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

unicorn_binance_rest_api-2.5.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (3.5 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

unicorn_binance_rest_api-2.5.1-cp311-cp311-macosx_10_9_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

unicorn_binance_rest_api-2.5.1-cp310-cp310-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.10 Windows x86-64

unicorn_binance_rest_api-2.5.1-cp310-cp310-win32.whl (1.1 MB view details)

Uploaded CPython 3.10 Windows x86

unicorn_binance_rest_api-2.5.1-cp310-cp310-musllinux_1_1_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

unicorn_binance_rest_api-2.5.1-cp310-cp310-musllinux_1_1_i686.whl (3.2 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

unicorn_binance_rest_api-2.5.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

unicorn_binance_rest_api-2.5.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (3.2 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

unicorn_binance_rest_api-2.5.1-cp310-cp310-macosx_10_9_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

unicorn_binance_rest_api-2.5.1-cp39-cp39-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.9 Windows x86-64

unicorn_binance_rest_api-2.5.1-cp39-cp39-win32.whl (1.1 MB view details)

Uploaded CPython 3.9 Windows x86

unicorn_binance_rest_api-2.5.1-cp39-cp39-musllinux_1_1_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

unicorn_binance_rest_api-2.5.1-cp39-cp39-musllinux_1_1_i686.whl (3.2 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

unicorn_binance_rest_api-2.5.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

unicorn_binance_rest_api-2.5.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (3.2 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

unicorn_binance_rest_api-2.5.1-cp39-cp39-macosx_10_9_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

unicorn_binance_rest_api-2.5.1-cp38-cp38-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.8 Windows x86-64

unicorn_binance_rest_api-2.5.1-cp38-cp38-win32.whl (1.1 MB view details)

Uploaded CPython 3.8 Windows x86

unicorn_binance_rest_api-2.5.1-cp38-cp38-musllinux_1_1_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

unicorn_binance_rest_api-2.5.1-cp38-cp38-musllinux_1_1_i686.whl (3.4 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

unicorn_binance_rest_api-2.5.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

unicorn_binance_rest_api-2.5.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (3.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

unicorn_binance_rest_api-2.5.1-cp38-cp38-macosx_10_9_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

unicorn_binance_rest_api-2.5.1-cp37-cp37m-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.7m Windows x86-64

unicorn_binance_rest_api-2.5.1-cp37-cp37m-win32.whl (1.1 MB view details)

Uploaded CPython 3.7m Windows x86

unicorn_binance_rest_api-2.5.1-cp37-cp37m-musllinux_1_1_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ x86-64

unicorn_binance_rest_api-2.5.1-cp37-cp37m-musllinux_1_1_i686.whl (3.0 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

unicorn_binance_rest_api-2.5.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

unicorn_binance_rest_api-2.5.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (3.0 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

unicorn_binance_rest_api-2.5.1-cp37-cp37m-macosx_10_9_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.5.1.tar.gz
Algorithm Hash digest
SHA256 283bdf44ea704c01c31ad8130c1daebb3eeb3d9778c2e9a8f6c5e8f0b2b87f03
MD5 41893630d0c901c5cc2cd9eec74da35f
BLAKE2b-256 0538d990828972cb94ca10edab5ed05aa0b4ad29ee7989c24014cc329cae78d3

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.5.1-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.5.1-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 9a07cda5c14484b4f91df5df893bfcbde44b22c4f22674c65281c8756c3ad97a
MD5 345e5a50398cb2f962a528bc0a9c6571
BLAKE2b-256 ff5ed21c964cf9fa825f7ee906a2e5134494133b31a022278205e137ac68df19

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.5.1-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.5.1-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dd15f21f211648fc8160e977f89c393e3fccec2aa26c2d932e03f743f14ffa02
MD5 09a8b4bcbbea7ca36a8972961ab1aab5
BLAKE2b-256 753dc8a964da56a4d9f75852d11b53220d689d00460ffb0a1e891392345c0683

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.5.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.5.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e855698fcb10056697c6540d024bd49000cb824e8ddca2849f1982a6cf8bb75e
MD5 14d7b0b00141fd6da51f81aec02a28bf
BLAKE2b-256 49566cac7f0ebc50df1fc4e3c720df708b60458ac4544c9dfda9301eaa11d837

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.5.1-pp310-pypy310_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.5.1-pp310-pypy310_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9195f47c5df4503ec856f70606de99363b3a8b368cce9b28986f527c3a3d9c87
MD5 70c2d1ec256193d43888961bbfc5062b
BLAKE2b-256 73b9bd72d551a1df87e2d7c315b914f722703a228612829ba65312e4b288987d

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.5.1-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.5.1-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 99bb993412b2b5785e942d23464e6ac276b27a1fee8950190b673d6ca52f093b
MD5 15bbda7cc6073b3e6dd2bea5f775f895
BLAKE2b-256 d6fddcaf7f5b96654e903b0f8c2da359c1792708e73a096973d5e8f7461dfb31

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.5.1-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.5.1-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 04eaea663b63c6b1d805b0e2a0920407e4e3e93ed6d36c1b7a81eaedf61a5572
MD5 938468095c09bfa91ec9893dfe5b17bc
BLAKE2b-256 1041c3b6abd36513dad1be905e751fb1a15a5bb405f6950bfaf3647bc795a75c

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.5.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.5.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 817dd897caa661b452f904f0add5e26ad88ea980c869825bb1a8e848b5f40dea
MD5 6134896a89c9f38a450094cc1fbe684b
BLAKE2b-256 f24b00f0dade00a44b4c3934f68961c37a37aeff72de90e27afe522e8d107811

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.5.1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.5.1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a9ee9975364bd173816b2b0eb8ace60319ae2ff3cc72f18e9ebee33b26d3611e
MD5 5d57ce03de3d8ee2be57a67cdf7a4c28
BLAKE2b-256 c0cc04fc75e237eef27d3700cfed83c06ac3e243e238b042f01f1a082c7a8dbe

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.5.1-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.5.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 64f4ed6e95f3f51e205bede595275971e2d14be996f4d9fc7bac2c1178c25403
MD5 92137d2d13f4188e56ac1daa7f064fe5
BLAKE2b-256 aa8bd3001a57fad2235d38846ec9ea00d69eaf2bd18016bdde12d665a7b3ff62

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.5.1-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.5.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 9a3e1ae4f40e5547942130a9eb8f2b47f926ad3217f08eb5a372d2de7149f305
MD5 beb1376db3dde2ba4f630a639675a1b9
BLAKE2b-256 9549f071711c0e978c5178853b7ccc7a90add6f3aa2980a7a27a247e8cb85a04

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.5.1-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.5.1-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 0f72fa79cbdfccaf029935bdcc12460752eecae6772958fc51ba8f008e73fbc2
MD5 b14b6abd8ace0317062d2a1da01ecf37
BLAKE2b-256 dcbbb552b422c12e16353b9800d0c264396f3b4107e360f373c7a62a32a95ab2

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.5.1-cp312-cp312-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.5.1-cp312-cp312-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 383a6d602b521446fc4de877c30aa18d6b67bdc70a6e024522684feb66d8d473
MD5 8f9655f24ea2214b3ff7513155616cfb
BLAKE2b-256 97f1119d988ae90512f1e9ffa577b1950f2328d070a68832291b63e9ca1a3181

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.5.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.5.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e3ddbf6806ead00f9381c0746b587ba879c399853582a23d3a396dee8e6d2bbb
MD5 b46ab19850b542d913cc60c687ef1573
BLAKE2b-256 a0ba560c20b53faa3859fa679da9974e9edc28c2c03e367e2d0bbbdcaf601dea

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.5.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.5.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cb19de2f318a39b847b5c8f05aec34432b51946d7244ae240b813cda62ac4c52
MD5 1c0cf339c079878a4304ad52b49b2165
BLAKE2b-256 fc9d15f7248b377f89b9d4536bca8cd93343608a1ee3a70d1c16ee0442ff5c73

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.5.1-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.5.1-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e1e4bc1f1be3a66968a5532dc648655805c61092945173f5f2e491598f26c695
MD5 b792e732ef8d03408f06435ea29daea7
BLAKE2b-256 71af92fdc4023ec33dc09fd6305e419fc6ddc3ea4c8179b7004dab64c5fc56f9

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.5.1-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.5.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 5fad7a56daaff5dfe65f29cf04c8d083e20b079adffe0f3b26a953506cdcb991
MD5 074b19645843e5fafebf8360c016f592
BLAKE2b-256 6965abe6d07139c6b0abb44c04280634f81e93d8f18b1016254e5c040b577698

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.5.1-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.5.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 1d08c71298d3984d1be6a330e68d336e9a6f428957b2c7dbf74b4d750447298d
MD5 aee5c77ac9d4504a9ba4722e8d7e27e9
BLAKE2b-256 3365d099ef07248b14bca2f097aea723927d8808241744e691c4db81b405af5d

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.5.1-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.5.1-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 7754085aceebc9e5bb6a12d66ea67e7308f65a9152beda67ddf7e6664f3fcf9b
MD5 d3a028dac1cb458f451efca9852e9b76
BLAKE2b-256 e681f837464ad8da7e074a74d96d73a60f0ee040c2c4836b12aab7257ea930f9

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.5.1-cp311-cp311-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.5.1-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 797b327c3b600861a2afe82b147d057f805ab41251b1427405d3ae05ae143ea1
MD5 13563e9ba80c81035241f35f11d4fc25
BLAKE2b-256 d8fd4502cb8703870da21c542240e1da4870a29a2fadc0d7985a1a99eaa1803f

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.5.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.5.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0462060c4f11851da5409fbcacefff81bc8f3c599f74da2c157b6b8fe53f108a
MD5 c92c702c91135c80b4874b723c4f0645
BLAKE2b-256 fef955f19e708d0d87661a620a775022533fcbadc07c67f2e6e471dbfd734005

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.5.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.5.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 04c56029e23151317ba2a5f73a33f22bb1526d3df314a1ef1a7d2b67decbc68e
MD5 1f19cce0c491959f2ca8c35ee67bb354
BLAKE2b-256 849b3829d993ce78ddfada8845744fbfffbe1297985052a91321824bba07fb8c

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.5.1-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.5.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6294cac9fe91c9616b8405493ab7cc1f345e8456cdaf3a0e5e52cb5a3517d1e7
MD5 85716b298442a7ed32fb3ceda8b4fceb
BLAKE2b-256 4bc475422caa48d9a5ea91adaa503bfab7e82a457cab77e07cb49dbf340d126f

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.5.1-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.5.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 84977d1a6375455745026d0ee339c105abe45a28f01680c1f3697ac29a74be8c
MD5 e9ea005afb5f3bac571202a015accd3b
BLAKE2b-256 7d3eb0c95461d9c9b0a0ef364c85b5fe792845d0e0b3fc2fed673a480bce5cba

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.5.1-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.5.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 acd86cea3f6f154700faa39ebba27d4bc4449616d1c21ca5d8823a7f9eb049a8
MD5 e2d93598df16d5e1c8c6195d6b504faf
BLAKE2b-256 2f1092aecc548c826959e523840ba10625479b2ad202d7d18a8e69ff93745a10

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.5.1-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.5.1-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 89bd065e9c5b07572a952941055625c17f6d6cef1bb47e1fb374a270ec8eb838
MD5 81069f68e81ffe9fee4ca652658bab74
BLAKE2b-256 8cf9e3dc74b56a22efae44bf9d56ebd3617c132d7d584d4701d3292f846891ec

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.5.1-cp310-cp310-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.5.1-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 01175381e8942623defe351630f7029c475f7168606e97c89d9f42df1f804ecf
MD5 57f381f4c05a6280dc852002533da3ba
BLAKE2b-256 7f722dc6dff6c07dbad578458be46ce4386f4391884138e1f5cc43417be2f520

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.5.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.5.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c5bd9aec3aa8899834b8dcea28312c5384a99f100325b3b75bc506784b1b0c3c
MD5 3b13336ad9999514f23754b059d43b33
BLAKE2b-256 5bbfec2de1af8952bce5568c79480e04b7632f0971a93603627d7bb8a44bffc4

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.5.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.5.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0919ab99e3203261eea88fba7e14abc8c1183cad60adadecc7bc0beb02e9a3c6
MD5 5eda55d191f67a55b7e81e62333c43d0
BLAKE2b-256 4ac713a37c534fff17e914bbbf9262fbe4d002825428c923642607a29997052b

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.5.1-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.5.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bf2a1421e9f4f70bdc1ee05b20c0e9493a09f40dd7dc85c8fc9568a04eb174a2
MD5 b59d96244ecc260c053c32883631af88
BLAKE2b-256 fb6c65cd9ed95c175b6d3430974997c17297bd866f025ec74ad6005b8e197a8d

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.5.1-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.5.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 cab9c5fff96578207d88763fd90cf4c20a23116854e64c974b47164cbcc5d6eb
MD5 f3f39c4b9ba1976fb1c9fbb7c8f80128
BLAKE2b-256 8e5574d1716ddbb2ffa1f67e87cbbdb951718cc4932294b92e7a9a72a4ac5d35

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.5.1-cp39-cp39-win32.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.5.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 30436902866059f5209e173c7874c226fcf2197997c7a0b4ef21fffa3abe4943
MD5 c524d8239d41637f49e5b9b9b0fecac8
BLAKE2b-256 e77bec14794f3a14525263c2cc6a444556190935315bf7f9dc51451acf88a6c4

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.5.1-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.5.1-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 eaceec80e64742eef76e8bccaac2ba549abf57980fed19dfee30a0f5f376e7ad
MD5 0e71e2c6617da040baf8238a6fa14adc
BLAKE2b-256 f9e17706867be5f76b0786ab2a72e56c4dbf2c4830b603925550e6a6713a0806

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.5.1-cp39-cp39-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.5.1-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 5895f5ff73cd36db91f14a62cdddeedd8c740871744c94c0fd93bcb577561641
MD5 d81b90007f849ea19c7665dc188df5ae
BLAKE2b-256 c755e330b9673e2ba091baf32d070c395d398e845f434bd2cd794b9cc793d55e

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.5.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.5.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a9cb03b3d167fd0a9515f0c9095437c9ffde74d28f10846df40621465521e727
MD5 6a371a9e3633658cf61b591ca8028136
BLAKE2b-256 2e2ad24ea8555116cc25cf5f085f13fd018e1301414434fd6a03eef76d0116a9

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.5.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.5.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 da4b08549b48ddef1b3d8969affda35e2a8f2e5dbecf0e4b7159877fa0b197bb
MD5 9b125d3608397382c70d356c8847f286
BLAKE2b-256 3f9da6c01c71168cee0f4026ca49073d61c560943414632f589981d065a2abfe

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.5.1-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.5.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e7fea0c3b744b2ce80aacb86baca376feac4d3bf3f5745f9d2b0fa3dcd7cc68c
MD5 6cfe988cffb3eceb2ac0a8c19874d7f4
BLAKE2b-256 6f888518cfc33c6fcf52b3bebd752ca5494259d00950d7f0b72762429993885b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.5.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 9122188d3b4a46e68d2442e6a095e2dd8db18840453835fd551230f70b5a233c
MD5 04d05cb89d1c67f04cc19354f51f11a9
BLAKE2b-256 10fd894751ef91438f32bb4f6cd0d28c0b343c9b5646361238fde61dd63b5d4d

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.5.1-cp38-cp38-win32.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.5.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 9bc21c0112b2d699e64f1a4ea4244230914e3e4c41dcf95c91ad5e54a8ea32f4
MD5 4737c5adf37dec521a3cc3b8c36c4270
BLAKE2b-256 d4dbff9ebac30dd65730276308391ba540ad8ce7c955ea1227bdefc0d47ce359

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.5.1-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.5.1-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 ea53d4324c4ec8581fa08bf544353e0bd8fb26297410a8c3e10407519f81e2a4
MD5 71aa9093a56b207b4488f7d7e4fa0a7c
BLAKE2b-256 f81c42e21acba36a3b5a9201f9dced229e459108cbe39adf31f1ea93c4f54a30

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.5.1-cp38-cp38-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.5.1-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 7bec7a9a6a5c91049baa9f5be29b086fdd8fbf359bd3e7096cc954cfb53d2876
MD5 5be36b33d38b7cd9417d8613e439b1e2
BLAKE2b-256 c9d3221c5aa77d78ae4df6d5b98240fe9ef8840e96038260dcc71d9b5e64b193

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.5.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.5.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 342e4355569b03ffefcfe31dd048a3bd613b8a621dbb33fb6cacd5d498abf2d7
MD5 135f760bfd72b1711bd6b42dceaf796d
BLAKE2b-256 9cdb13caa6d344eaf92d8a1310d8ac4c7200b97f7947e09195f2d6d9a8b6354b

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.5.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.5.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d1bffbe74547e3bda31e545cf95a97b00b5bf222aee2096f0adcff55da1d8b99
MD5 5071c10cdff29269880447a222b7d84c
BLAKE2b-256 880d580e3d8f58be2fe31cdb03518b4d300d654b93ca6e94980c987f45dc0efa

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.5.1-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.5.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a25d97109806395ea0aa356d9a3c31976363d02d79324f6638db080f4cfd865f
MD5 6b6e08bc6e0c1d77e58c6bce4381afd0
BLAKE2b-256 d47eef2eda4c8c3676db91bb4c0f927ce3b1d52c710f77e6739d3df593cc6871

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.5.1-cp37-cp37m-win_amd64.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.5.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 ae605f8c4fbcb1f0ec640b51428f94decc1371e7df6f9774b8174dda24351a4b
MD5 bdba8eca5cd167da7967a8ecdde197ce
BLAKE2b-256 b706acc2d2075aea04b587f95e5bccffd744318214f5e1e4633724106dd7a6f3

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.5.1-cp37-cp37m-win32.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.5.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 69c9b57c78f30ab7a668108532b0d2708d61027d9cf9e557c4d4fd2875b80fbc
MD5 14323fbedca780f138999264b6cf5994
BLAKE2b-256 97b907af5e372fe7f3376dcc8d44b85b4ff867e62b75184bc20b3f33d8f919f0

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.5.1-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.5.1-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 60a5430e7311df18800e650e2202751cdb976ee8748a63640f53ec567b6d3ada
MD5 50629f2f1d0b84472a082249b1e09605
BLAKE2b-256 cb8f16fe5ac0616f7a42059da7855674a647b8968205b90af5a5f93b1f65979a

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.5.1-cp37-cp37m-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.5.1-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 711891ef5dd8db035066d595c6665bf19cfe932a0c9f776540044700d126b2ea
MD5 510f118e2f8393c494d5d7fcc81c7bc0
BLAKE2b-256 b177214e9bb230048bc8fcf35ae5f96346aacc694ead18cfcc0ff1f5659d6a24

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.5.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.5.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bda96af4c8024530ffd6f7e6a4b42090b776a06fecaea5f10c794a7e6f5fe511
MD5 aefdfa8fadeec557187d897117876ae1
BLAKE2b-256 8f706cd3800d659e77bc2866fabada12c457420898fc1038a7490c4da27641fd

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.5.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.5.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 96ac30efd108b01393b848b3d0e3608e575b955f5b627b9bdbd91a4b1add2cb6
MD5 fa52ae435dd7b64a032ae6b748021ebf
BLAKE2b-256 b4616cb7cc69fd79f783a05c4534b8821afb0498f95a299513aa6ecc7d603a54

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.5.1-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.5.1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f43c3fb40cfcf7bb68ec30373581abbd25f34280784ba00aa322490453e62b01
MD5 96a2d8c7cebf26489b2a4ae739044c7a
BLAKE2b-256 6e40c0de9d797029f42168f15b2da9e20f98b53cf349d31a378c66e94b921870

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page