Skip to main content

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

Project description

Get a UNICORN Binance Suite License

Github GitHub Release GitHub Downloads Conda Release Conda Downloads PyPi Release PyPi Downloads License Supported Python Version PyPI - Status CodeQL Unit Tests Build and Publish Azure Pipelines codecov Read the Docs Read How To`s Telegram Gitter

LUCIT-UBRA-Banner

UNICORN Binance REST API

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

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

Part of 'UNICORN Binance Suite'.

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

ubra.stop_manager()

Get the right logger:

logging.getLogger("unicorn_binance_rest_api")

Description

This is a fork of Sam McHardy`s python-binance 0.7.10 - package. Extended, cleaned up and reduced to pure REST tasks, with PRs added and improved. No asyncio support!!

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

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

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

A conda package of the latest release with conda from Anaconda via CONDA-FORGE.

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

conda update -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/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.0.2) you determined here:

pip install https://github.com/LUCIT-Systems-and-Development/unicorn-binance-rest-api/archive/2.0.2.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
  • ./pyproject.toml
  • ./requirements.txt
  • ./setup.py

Change Log

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

Documentation

Examples

Howto

Project Homepage

https://github.com/LUCIT-Systems-and-Development/unicorn-binance-rest-api

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 Twitter or on Facebook for general news about the unicorn-binance-suite!

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!

You want to say Thank You?

We hope you are enjoying using our libraries and that they are proving to be useful to you. If you have a moment, we would greatly appreciate it if you could leave us a review on Google. Thank you for your support!

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

Uploaded Source

Built Distributions

unicorn_binance_rest_api-2.0.2-pp310-pypy310_pp73-win_amd64.whl (314.4 kB view details)

Uploaded PyPy Windows x86-64

unicorn_binance_rest_api-2.0.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (343.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

unicorn_binance_rest_api-2.0.2-pp310-pypy310_pp73-macosx_10_9_x86_64.whl (323.4 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

unicorn_binance_rest_api-2.0.2-pp39-pypy39_pp73-win_amd64.whl (314.3 kB view details)

Uploaded PyPy Windows x86-64

unicorn_binance_rest_api-2.0.2-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (350.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

unicorn_binance_rest_api-2.0.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (342.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

unicorn_binance_rest_api-2.0.2-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (323.2 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

unicorn_binance_rest_api-2.0.2-pp38-pypy38_pp73-win_amd64.whl (314.8 kB view details)

Uploaded PyPy Windows x86-64

unicorn_binance_rest_api-2.0.2-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (347.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

unicorn_binance_rest_api-2.0.2-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (340.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

unicorn_binance_rest_api-2.0.2-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (321.2 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

unicorn_binance_rest_api-2.0.2-pp37-pypy37_pp73-win_amd64.whl (314.9 kB view details)

Uploaded PyPy Windows x86-64

unicorn_binance_rest_api-2.0.2-cp312-cp312-win_amd64.whl (337.6 kB view details)

Uploaded CPython 3.12 Windows x86-64

unicorn_binance_rest_api-2.0.2-cp312-cp312-win32.whl (290.1 kB view details)

Uploaded CPython 3.12 Windows x86

unicorn_binance_rest_api-2.0.2-cp312-cp312-musllinux_1_1_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ x86-64

unicorn_binance_rest_api-2.0.2-cp312-cp312-musllinux_1_1_i686.whl (2.0 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ i686

unicorn_binance_rest_api-2.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

unicorn_binance_rest_api-2.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (2.0 MB view details)

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

unicorn_binance_rest_api-2.0.2-cp312-cp312-macosx_10_9_x86_64.whl (398.9 kB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

unicorn_binance_rest_api-2.0.2-cp311-cp311-win_amd64.whl (339.0 kB view details)

Uploaded CPython 3.11 Windows x86-64

unicorn_binance_rest_api-2.0.2-cp311-cp311-win32.whl (292.0 kB view details)

Uploaded CPython 3.11 Windows x86

unicorn_binance_rest_api-2.0.2-cp311-cp311-musllinux_1_1_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

unicorn_binance_rest_api-2.0.2-cp311-cp311-musllinux_1_1_i686.whl (2.0 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ i686

unicorn_binance_rest_api-2.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

unicorn_binance_rest_api-2.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (2.0 MB view details)

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

unicorn_binance_rest_api-2.0.2-cp311-cp311-macosx_10_9_x86_64.whl (399.9 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

unicorn_binance_rest_api-2.0.2-cp310-cp310-win_amd64.whl (337.5 kB view details)

Uploaded CPython 3.10 Windows x86-64

unicorn_binance_rest_api-2.0.2-cp310-cp310-win32.whl (292.3 kB view details)

Uploaded CPython 3.10 Windows x86

unicorn_binance_rest_api-2.0.2-cp310-cp310-musllinux_1_1_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

unicorn_binance_rest_api-2.0.2-cp310-cp310-musllinux_1_1_i686.whl (1.8 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

unicorn_binance_rest_api-2.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

unicorn_binance_rest_api-2.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.8 MB view details)

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

unicorn_binance_rest_api-2.0.2-cp310-cp310-macosx_10_9_x86_64.whl (393.4 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

unicorn_binance_rest_api-2.0.2-cp39-cp39-win_amd64.whl (337.6 kB view details)

Uploaded CPython 3.9 Windows x86-64

unicorn_binance_rest_api-2.0.2-cp39-cp39-win32.whl (291.9 kB view details)

Uploaded CPython 3.9 Windows x86

unicorn_binance_rest_api-2.0.2-cp39-cp39-musllinux_1_1_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

unicorn_binance_rest_api-2.0.2-cp39-cp39-musllinux_1_1_i686.whl (1.8 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

unicorn_binance_rest_api-2.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

unicorn_binance_rest_api-2.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.8 MB view details)

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

unicorn_binance_rest_api-2.0.2-cp39-cp39-macosx_10_9_x86_64.whl (393.6 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

unicorn_binance_rest_api-2.0.2-cp38-cp38-win_amd64.whl (338.5 kB view details)

Uploaded CPython 3.8 Windows x86-64

unicorn_binance_rest_api-2.0.2-cp38-cp38-win32.whl (292.4 kB view details)

Uploaded CPython 3.8 Windows x86

unicorn_binance_rest_api-2.0.2-cp38-cp38-musllinux_1_1_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

unicorn_binance_rest_api-2.0.2-cp38-cp38-musllinux_1_1_i686.whl (1.9 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

unicorn_binance_rest_api-2.0.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

unicorn_binance_rest_api-2.0.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.8 MB view details)

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

unicorn_binance_rest_api-2.0.2-cp38-cp38-macosx_10_9_x86_64.whl (386.9 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

unicorn_binance_rest_api-2.0.2-cp37-cp37m-win_amd64.whl (326.4 kB view details)

Uploaded CPython 3.7m Windows x86-64

unicorn_binance_rest_api-2.0.2-cp37-cp37m-win32.whl (282.2 kB view details)

Uploaded CPython 3.7m Windows x86

unicorn_binance_rest_api-2.0.2-cp37-cp37m-musllinux_1_1_x86_64.whl (1.8 MB view details)

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

unicorn_binance_rest_api-2.0.2-cp37-cp37m-musllinux_1_1_i686.whl (1.7 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

unicorn_binance_rest_api-2.0.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

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

unicorn_binance_rest_api-2.0.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.7 MB view details)

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

unicorn_binance_rest_api-2.0.2-cp37-cp37m-macosx_10_9_x86_64.whl (377.0 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

File details

Details for the file unicorn-binance-rest-api-2.0.2.tar.gz.

File metadata

File hashes

Hashes for unicorn-binance-rest-api-2.0.2.tar.gz
Algorithm Hash digest
SHA256 73d1c425e235c4588fb551111c0c0943c821a3b158a8524a8e9cf20ed76bb2a1
MD5 0a92d46a24f5e1b7ea2da2840bb496c9
BLAKE2b-256 e2f3f1092f774de7bc41bb4d84c848b7a5d746f4c99729f2f14fd792b10890df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.2-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 af31101ff14eefdf6dc15349fc90347afb10d812cb0f94c63bdf2f3fbbc5eca9
MD5 34256d8483976ed1ff1a9f947ff824f0
BLAKE2b-256 3bad82267e4a183409087d5b6194e5074a75541efaae50dc31c1e96dca489f73

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.0.2-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.0.2-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fb6de41a4686b6fffe8178c962c01080af8333bb6f201c3723b3e2d0c81d9238
MD5 714b0aa3e3987cc96c726c421e924fbe
BLAKE2b-256 ac41c41a541c77590e4cc0aa3d1bb6666922f9235f6b8dad9b20526a61633629

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.0.2-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.0.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6a0000e7de4a415b3c24b86f6ae3be6cf0d094495405bfd3ec6368374bf5c3d8
MD5 09d75e0f6edaa3539de37114df216ba0
BLAKE2b-256 7ad0e8880539bb786de3d72983c7976bb9168aa81fb5c24549d6fd33dd95592e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.2-pp310-pypy310_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f96f79f4af9063e868b9e1df3ab5f729c83777cd56a87f3ea98c226ccc8c7368
MD5 e127997dc79ab76a99d3420967a041cf
BLAKE2b-256 c5bfc0a30ec2106cf64ec3b197932fad90ea6f62c90173ffaf548b0055408977

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.2-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 ba5b60e429123dc71aea379602863694c80875a65b7c1e846adef674df933105
MD5 03a20118af6fb0ddb4568d4264836e26
BLAKE2b-256 bb56f46e4f110a69827852908c9fa9e89e04b952fe9407cfffddf87848cffad0

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.0.2-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.0.2-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9a1030d86e15653f98c0090024babca7eb9498615c1da0590a1d18bb9ca7784e
MD5 b389ee2d08af1b27f01f794982004e48
BLAKE2b-256 a29f094e2e73fb1572c5d9e5f6f04ed2c62832f7b2309bad3bd919becc8d9e74

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.0.2-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.0.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ebf69d93a162c4704b70ac35ce1d9a5796b0ab8d543e11bdd8b4e95fdaa23411
MD5 5e9033d910be770ccdd9d0bf16d368df
BLAKE2b-256 3d8f547281008fbad775f45d0755be562436bc2f1eec18d21f07c579de979caa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.2-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 be59dff4a25c89278d19433641064328a9f54a337d4c1490d0424e78122c6ef0
MD5 46656320e14fb3ffe9d7f220661876fd
BLAKE2b-256 d2275fa60e2435eb9263f9a9b619639092cd71b0883ca3e2be18bc49d68f552e

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.0.2-pp38-pypy38_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.2-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 f67d5d9d5e48f778d941072cf42551bbd0a65d77e251928d8170256c654730eb
MD5 303b72699607e28badfc3855c99289c0
BLAKE2b-256 653123e25af95f9fddd676f27e9402f3892cb8b59166fce89f0cd38bd7fb7181

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.0.2-pp38-pypy38_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.0.2-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3175d2c83aba478e967e440afc82907d0dff27f455c2cfc16d4a6a89fcdd168e
MD5 b4ca720793ce663df133f7306f804c4e
BLAKE2b-256 0a6c7fbbf50fd2dad6818ccf57b316acb0aa2b0599a1e2cf8edc584254453ed2

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.0.2-pp38-pypy38_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.0.2-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 820590df4b644091ea3d243d909a8c4b7cf71a80fb06b3d9997a2a2dee3b37ab
MD5 c2fb7ad0b0994c03b448b7f159c37dc0
BLAKE2b-256 c2f264106b04913a2ef288fd7775c691208036bea6ae5e8e5410d1b6f7c52b98

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.0.2-pp38-pypy38_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.2-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d39cca5feec3edc3de9383a04c645fe99d6d2c92818e86612373838cc593cefe
MD5 1a00a4c9072de796c192ef7e617fd725
BLAKE2b-256 bb28fa29799a481a488bdd3a17ba96a7d3e30ae6b36f51d25e5f4a9ada07c409

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.0.2-pp37-pypy37_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.2-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 1f9f0fb1664d43b14033a6a8d8f53d218fa28c3f1f84bd28b9cd2c6e7b3e0221
MD5 e3648591573c0104e689ae7a413cd0c1
BLAKE2b-256 64a9cdee1aca182ac51a89f4f426b6c4577aba82545941642d8b0c2f1f34ff46

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 7edb65113ef1870c5cbf3af390f0d2998daff6c0d9fdbbf72e36e41931a69a79
MD5 87e3ed2417e26ad20fe8e625bdd37bbe
BLAKE2b-256 ed69720a56b9c4f4118aa029c117e5047ac16a03f85eea62f01d4fa0cde16b68

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 9eca96b87be96d62e99ce9f6b4e20e28495c89712473a1bcf8f2524492f0e5e7
MD5 5002ce0b2f4150ffdb38e45fa5395ea4
BLAKE2b-256 e03fe41e8a919d2ca4fc0b05d12d7667c84da159161433b9fcfc9165174e4eab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.2-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 a78931ba40ea6a03082a0974ca31e15f988c311fbc82c50bbf98e1948b0eec84
MD5 f31f6eb1c62e915cc66d48db5fa10b65
BLAKE2b-256 ebe9adc87a0c57db9b63712f63502d27708ef9725b7d5aa1628496256a4925cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.2-cp312-cp312-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 b3f40118f3618d887cec7c6cd0e91fed9496d9caf6c6d13a54ba74f260d1fce2
MD5 72872b76a579f75328b3eb3db8b77048
BLAKE2b-256 e2ba645f11724908e4a286ba58cbc4814ca3b060d76770fce3aa5851d9f9ab90

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6c7c8809b07faa12e6837e31f33767c528506681cf300191aea4d5310468bd9d
MD5 d5ccdc14492a4139bfe8123b33e25970
BLAKE2b-256 3fdc585e30b8f45137b9ab91ca1631afc5b34d9ac0dd848bc204ecf58a5dca1f

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.0.2-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.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7fef5ba33b31b9844900e6fa67d6f865ab568c81ea9affb100c0943d9719b3dd
MD5 30f1da417fce1766fe6dda841e8f1479
BLAKE2b-256 bfe412d7ed14d2c56372fde4ed32cc2bf3f4c2737e79306aa5938a1c7be32446

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.2-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 70ad60edf76ffa269e3a4f3e53eab5c66f154afb145e31354cfc6a8541d982c1
MD5 8dd6f63ef75c340281c64d1ecb65282d
BLAKE2b-256 0c7a278f9573db306d13e348dea80284d31272fb2d752bfed27dde11bf8c7a95

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 f9380336d15e1b4fc9839f3e01083ca13471b2f2bebe32fe56a8fa29fdca57e8
MD5 5e190e5160bdc6dcc5d6924326b63a0a
BLAKE2b-256 6dbe3006e9782c3c3fd2ee010db57f8843f9b940e24496ee4d284910d3b122d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 c9cbbca57f1ddf2105b2c0034281cd2a47989b051117b5ccee20356ea60c0489
MD5 078abcb04695410fbda2dcc994a60890
BLAKE2b-256 9a2181c6293101129d3dfd2d209cb9aafb260355ee53ef071513e7c98d7285ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.2-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 9e9cf6b00b97943e8958d3ae261374d7f4a21d07ffc4491188c65a95c16c728b
MD5 16c1671c0f967fd7fab98fd04cc80352
BLAKE2b-256 78a9ee8ff30d0138c9175bb1c8507d197f9277c96dc1d2eb8e87a97104f5cf87

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.2-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 a906e154df51982a9c590ef2e195f771766ec97ef56f0a61dcc704d089cef6fc
MD5 84df79be0fc9e0f795bfb68f7373f140
BLAKE2b-256 1cffc2b370794154f31dd45540c4ee838842e7a48b1fa6017a76d4616fd3c2d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6899f83077ff298501ee0cb92fb07073d1508dee4c21cf5ab2e8c961036d464e
MD5 26379ebd36d2e09c4800c4a81e1146bd
BLAKE2b-256 ea7912a9527b84ad6839e30f09067b4c584c8b973cc639b2a1335d292f32d949

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.0.2-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.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b2ec1a8a4930b2cc4879487b3fa9f56b058ce65599eb680c288e39f68550973e
MD5 d02fde61fecb7c77a5bd24d5588185ea
BLAKE2b-256 86d45ce253c5d8500277a400c202ad7fc8c7409031ba717bac519179aa6b5dd7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4206ec206072f01e9e6e5a09ecc0300777592ac93c0c817fb22e0944ec68c523
MD5 8a6a5a3e542a7cb17d8ab44fe0851def
BLAKE2b-256 9a2d74a3ddaec7ff151d8e8a9a8266ce798b7e8997cf16f28307ebb7e39d6bd6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 948bf0f973dd39e115f6ecc69c4fcb405cd6b1edc0138e21c3bcbd3e0ce5104b
MD5 8d3a1d8c73359d3954a2e155cf533a33
BLAKE2b-256 8e37ee400a71b83e1d4460d34123809a4e9bbfc72ae56ee81790c0cb107ebb0e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 4b95997df2ef8ebdd9df50799112a848ebc331e9bb363083346f03a442659ff7
MD5 dc10b00e5c91271427bc18fffb67c565
BLAKE2b-256 cda6f19e4beaf3e76ecd0883b3cf9443898d3fb215d7d4f52350aff220f14fab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.2-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 4de8219ff5a9fa4d58b59c20d93daddaa74b00328b71c66c49de260fcf03dbea
MD5 31f7ec83f8860c84661f2995f7a6478d
BLAKE2b-256 a5aba43344a1abd3152db8ba93c5e8da1d43d090985e1c5fb2359fd3143dcb67

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.2-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 3da584c3bd81384ec65e44ec7f4ddbbd4e1c34549cc11a98f561fa41d0f0e687
MD5 ba1947cc4528ab3f48bdca4e4427bfbd
BLAKE2b-256 659224e1f38af9fc21263d69acaefecd2bb3a4e5b767831c88f7792e239e3863

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7b9e8a650a336cc15a336f6586d528844e998650ee507c417d20764dfe443ba7
MD5 329f2bdf8984ade522e1823a979c1067
BLAKE2b-256 76cc7e0a73c1200c08da2e7101c6bb23942777016a10c654ae0f3bc8fe209325

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.0.2-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.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 07b70d2feb959f7b540d04fb41e842d2acc34fc7115e18c8e603cf5f9303e5fa
MD5 c5e5460e4f0c9c817128a254bb89c578
BLAKE2b-256 3ba6895808b27a63f689442c70d979d65b74e7ca583881b4d573ae6308d14790

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c8d21de44ee08727d8476e3d822bd3a9628e84d56ea587b24a4b86d1024bd818
MD5 602da89a0f5fb8d49cdc6cc0c7a583c3
BLAKE2b-256 844afafe1765b4543429579a1237d02c17562b72ef2fec5506e5ce3011d6b3c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 2aa3e38bdbda4bda21d859770e3adbeee738db2ba407dce3a3b48cfc720f35f5
MD5 0226c111329d643b423a50da6752f62a
BLAKE2b-256 03ed2867617b49f36c96773448acf2adc446f47635e5c0f7c8e0092323756f73

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 d30ac2b1dc77c4ea4650f0c7c9952651861be440e87fec000b1c61d5d7dbd10b
MD5 653eb9f96a4935a9da4e14ddb439996b
BLAKE2b-256 117ec0627914cd2e1129d816cc8bc19533eaf2060b7074ecb7e7ff762a0229ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.2-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 078b0ba2388b61ef1637550883aad4d2275686c2d231a22ed14d65a2513f9edc
MD5 4c53c56de3656464292ad9ae4ee3ac73
BLAKE2b-256 6810ca539da35bd9d704a9df39f7ccf8c49c5cecb6bcbed73b23a677c2c0eb03

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.2-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 89aebfc0f0e6952966cc225bbe512612f4e3f566f3742121b0335eaf58ae1977
MD5 c94591bba0f78b6843cb04cd4cfecc2e
BLAKE2b-256 d30ae790830cda3ea62f17ff0f021446be9f00b9be227f344fd2e55571e85734

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d495dd026a1d2d675ac7f82c71842ea82431747a5f0dfe4eb771130da6b22dc8
MD5 15fc692f65a8e203c70c90fa01db4198
BLAKE2b-256 f6203f5cd1dabdb8998264cb755bd0ba9d611aded5b2a44580be8d8869c1fd3c

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.0.2-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.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0ffdb7ad1aac55b0ba2c02c063b7b488a0439028063b6a74af13666eee4b3a59
MD5 131cd12b0ed14f229dffeb1f37052bb7
BLAKE2b-256 1e05bcbb1b4a1f661162d320dd3ee163bc9fa5325b72f79bacd263e4539b8c98

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fa9e05c0e89be390e42d64234d6df9523265759af38d895a2028f14791fde36f
MD5 48bdae1003d3893675ba8a4bea224048
BLAKE2b-256 c4db7332aca014e58a0e63675d7f829fbd0262aa54a9d510aae76d7f9dd33e40

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 ce6a4ec253e49daeefcb4fe11ff5c60b76c7cb2f307a76167e5549a53b1771a4
MD5 db2b04c5f0082809fccd5124a1587624
BLAKE2b-256 6631db7fd54d86931a85234bc817cf99978862878e9453c2ff842495f555ae52

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.2-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 bb63f86300db5117bddb994bed3da38a227caccdb72517071bff3fcd694f030b
MD5 93ea70320c4c077ef5b5f73d416a2ca3
BLAKE2b-256 f078cde19f428dcd6be93fdce64e959ae66b78a107d4a5ef3f98a31f1da0c187

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.2-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 8e10cfb35c80c24e97704a6eadfc743e193eb3b5a55f59887539b5d61bff9a2d
MD5 0f62017eb270c0444b9c27c012471d03
BLAKE2b-256 2d7b06cc296be6ae02ca51b6c689a39b5b86d2875b9a7f9be7c8a8a80702a1d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.2-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 7d42c5968942273b6b3368f7f7e3b99a950a623ad548f1e614a2e9a5b263ffb8
MD5 f3afe35bf653b3c61f70aaaf4dac7728
BLAKE2b-256 e3e1f28a8a28fe9ffb12bc4e2f26c73dfb0e48eb8b9905262b892cc818d8b7ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f1237003dd8e9ba82daf041f689f804492ea49ab9e897fdd0a2d204dcd74018c
MD5 619ea697bd06024d4d7488b6d2383e4d
BLAKE2b-256 22b3e756241acb46702c677a934912104baee10e23ca03a294118ca8eb7a0efa

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.0.2-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.0.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 202a7f0757c5681bfae42387366feaf4f3c9bdcfa137ed7fd410fbbca261f14a
MD5 8ad12a9381abd93e1e9beb78a44a5ca6
BLAKE2b-256 b7f44b93938b7a3c7731e4297afe8ecb2ba4f0e5d3c433b3680a0e297883c707

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.2-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 19665cf9afc92205bc09c2314f9855d1c6247ad9a2cafdb989f5d3509382db7f
MD5 e95c7d29b7df4a16758161719123ad49
BLAKE2b-256 3b7823a70446a64e302d96989012b78fc406f0d82ab5d40fbac412191703fb25

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.2-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 65c3d8b26982e222303edc6a1f46873c3b7458224853ad175fb72fb9911d9b43
MD5 86efa20baedea53033f450bcfadff561
BLAKE2b-256 ca156d263574417a39324ef88a828c9bd479039e179f8e9b53b34f9a5b834557

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.2-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 198056954ba52b99c5fff24ab8c6f232a166cbaafc4a61e2fd1a72d62d62ed74
MD5 8f7ba6b59595d415470ac2b704dd47f7
BLAKE2b-256 64705286a112bf457ce0957fae8018982ee45928e77d36c7f4ed1412425bc997

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.2-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 0d9b9347b78aad53652216a3bd0f281e1d1e13f56795a33f98906128110b756f
MD5 3c4ec0b410bd22674fc7afd1ea847ecf
BLAKE2b-256 4d43947c41662684758c8ab19baf99aa3cde23b258839e3e3d6285cb21d643a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.2-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 e2564cc41770e908ae7cb23f3db99fe7f11213b3b9dac874d630dd4587ee07a7
MD5 f360b53fb976fe93ff1d55c68f540e7e
BLAKE2b-256 9cd8b00aac22cd80fcb96752ca36fc01f8150d19c9bdfdfb1aae10efa3673884

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2e2fe575843560f90b502708b3e7a1fdcd38f8dec23d8c1eeb38b4e3cc5d6207
MD5 de128b13ec9773d27c85cf456c946826
BLAKE2b-256 1def44c6e6fa5411a086ea244c7227bcf918d53180b5463858bead47cbf05017

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.0.2-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.0.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 872615804c767fb69811852959f8c8b28bad73e5045a4e7e71502245efdbe6ff
MD5 59c6d632dad2764b08bf02e17fe61bf4
BLAKE2b-256 504b6928c03ba347d33637d6cb9e3a1c445e36b0408833e99e1345ca574f7a26

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.2-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 feb97342074d6f4927d19a91ed27a56ef5cb3e2c24dea50e93ee254ffd2d76cb
MD5 303f92627238974bbc89458938e37403
BLAKE2b-256 90483e531c2e7c8d37c86b896308fcb520d3885edab5c106461dd77c77a671df

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