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

Uploaded Source

Built Distributions

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

Uploaded PyPy Windows x86-64

unicorn_binance_rest_api-2.0.3-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.3-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.3-pp39-pypy39_pp73-win_amd64.whl (314.3 kB view details)

Uploaded PyPy Windows x86-64

unicorn_binance_rest_api-2.0.3-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.3-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.3-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.3-pp38-pypy38_pp73-win_amd64.whl (314.9 kB view details)

Uploaded PyPy Windows x86-64

unicorn_binance_rest_api-2.0.3-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.3-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.3-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.3-pp37-pypy37_pp73-win_amd64.whl (314.9 kB view details)

Uploaded PyPy Windows x86-64

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

Uploaded CPython 3.12 Windows x86-64

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

Uploaded CPython 3.12 Windows x86

unicorn_binance_rest_api-2.0.3-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.3-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.3-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.3-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.3-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.3-cp311-cp311-win_amd64.whl (339.0 kB view details)

Uploaded CPython 3.11 Windows x86-64

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

Uploaded CPython 3.11 Windows x86

unicorn_binance_rest_api-2.0.3-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.3-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.3-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.3-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.3-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.3-cp310-cp310-win_amd64.whl (337.4 kB view details)

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 Windows x86

unicorn_binance_rest_api-2.0.3-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.3-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.3-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.3-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.3-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.3-cp39-cp39-win_amd64.whl (337.6 kB view details)

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

unicorn_binance_rest_api-2.0.3-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.3-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.3-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.3-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.3-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.3-cp38-cp38-win_amd64.whl (338.5 kB view details)

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

unicorn_binance_rest_api-2.0.3-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.3-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.3-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.3-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.3-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.3-cp37-cp37m-win_amd64.whl (326.4 kB view details)

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

unicorn_binance_rest_api-2.0.3-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.3-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.3-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.3-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.3-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.3.tar.gz.

File metadata

File hashes

Hashes for unicorn-binance-rest-api-2.0.3.tar.gz
Algorithm Hash digest
SHA256 2ae7e7414945a2e8a9836b85c43a3f001964184a04b1affe45dc5a27848f2840
MD5 0bef6a36c7c1a22f59e7da45fd42fd18
BLAKE2b-256 564a525a6971ef61b7a77e4c681d10370f6f565769852218012cdd1d08388691

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.3-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 e5864602d8a7381404da4a5888f3783a1aaafb743cd2ea9004564c88c7c3766a
MD5 2588ea38c326e2a9e57cf647f519d0dc
BLAKE2b-256 bbe5307632ab8ce4048097caa1f306b1bfb0a751d5f0720a2566f3ada47ec2c7

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.0.3-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.3-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c60f132e1f1d92ab3519cfffd6c0a021ebe46babeb1e7f5d0cee6074e406d52e
MD5 4953d3098959f7c938b9999894a20c39
BLAKE2b-256 a23542db284f604b0347291640725fe2708be3d49d41de3ffb3d1b09a6dc24cf

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.0.3-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.3-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8ae00a98895ef065e165e7b92dac4e874e9806c0e387ad01a4ff2fe6ef41f916
MD5 c43916fe9ca4f4689d2b8dc33e120b3f
BLAKE2b-256 13f3b1a49d59e6a71ee477d23093e05cc283773ff6ad4cfb0912091ef8a632b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.3-pp310-pypy310_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0a9cc8dc26c3fdbfea10e2e390d7772390f6647904c412b4c69e4bb9e4cce8d7
MD5 862f9eca076f675a3d713d95a8efee21
BLAKE2b-256 9e3b4967c9dd48ae59b95cd325453b25e1fd5c1a7f7de9cf961fe2053e3e25ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.3-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 2743676a8ccce385d019c751453296fc2962d12d81e7ea1766f79de38a20b51d
MD5 c2cb702c358693029570b9ea5ecba148
BLAKE2b-256 dcc0f93cb6a779e43233af888bc084f2ec7027590c7ca09f2f4569101c25aba1

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.0.3-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.3-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6263bf871744a2375f4868ff25c377e66f9362b1f9b119060ae254d8302b70ec
MD5 aae626619d2a4a89c40560d286a00741
BLAKE2b-256 72ef3dee6fd0351b7866a3404b9e8c68977081d877128210abb456c65f224138

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.0.3-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.3-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ce54373202e285eaf1732dd0d2a8671821c9208581caeed00f64fbb8e6624872
MD5 f7c82ef6e39998f20f9c38c168229aea
BLAKE2b-256 12549a3335d27020854c52f9e84d98486553ff9b1380b70ffc685b09973b2f8e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.3-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 375df5b881d9e4dba16f49a77e88fba47896362e1eea83b89a2bdc89046d5829
MD5 5cd7898062d6e10f39b0b4a3bfd9fea6
BLAKE2b-256 0a12ba60a6de61d5867206901243e0ca448f75f5f401d3303298d9d5cf40f64e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.3-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 473aa2820f7eb478e5010665f96228258c3f54148bc9ce200eb2b811a470defc
MD5 8e23994b7a182a49a34180c804eec4c0
BLAKE2b-256 0e23c8562f2bebdb485e67ed241de1a63682ba252cfc4a8534a0260418dd77d6

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.0.3-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.3-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 975271df5102f8802458a841666c48855b601dfa3ce725c5eadf60a382c15ecc
MD5 2f4367b786ced12cf400fd0e53811c3d
BLAKE2b-256 20dbad512d22601e780f24fdee1d107876c382e0fdd1526b98a53eda5220ec26

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.0.3-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.3-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 328cdd5f00c46693281be736859e7aae1994a12d9abeb6cb9390d6e4c4bff33e
MD5 7235f1933ab0c59f63ed3179472da660
BLAKE2b-256 383648ffd6d24f2a21733141b148e080573b2a43abc270fde5c2ccb53bb0897c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.3-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4af0c904db6e2149dfd3bd2c573b364372632df9ddb8d7c0324d10e7a2e3cc8c
MD5 5e5cd461aabbcb0cc7697bfd1892d5e4
BLAKE2b-256 664edeb433cc1a634af96d58e9274962e9409e6b242e1bedde7da2456a1f1de8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.3-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 da25c186ba22bb369b540f4d858a9e3d56df8690f7c2671ee3cf061506b7cf96
MD5 9b64337d10207e7514ce6f2564486761
BLAKE2b-256 90f58df201edbae3ecee18fb358688e88ee063ecfffc4548e9918f915a91dc80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 24bbaf7144a4edb6ba79e06924f970e64b2b065856ba8730c77a22999a708180
MD5 54aeef9f9045d16b8427e8496aaa75d3
BLAKE2b-256 5b6bafac0cce8a5b4c1767e712bcfa2c5ef1ae623d2e29fe12a789dfdeb8a09a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.3-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 c7cc019077c27f3757e94ba3317fc3273ae4dde2b970ee90f7aa3feb90c66f1c
MD5 66e922fa8f212f3d9c8b35f05b04a827
BLAKE2b-256 b0706cc61dfffdf2449b3b5c33c03ecf7d3420069b79a7bdbea50f447b8f797e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.3-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 37668f71ea731f079c284939b01e8e7fada2c788ad0a253c01de9e8ecd6f308d
MD5 b93ae278396e518bbaae05a3eed9e14b
BLAKE2b-256 4a0331f9f2f7ddbc828b4244e9ce5430786c849a26e8ce3a81b1b18f5728110f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.3-cp312-cp312-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 81a5ebaaabd7107d4aff0a8aeb4e0daa0946faf4f339905dcc32c5b06b2c6495
MD5 1fd5cc0044af726111f68cf38e172dea
BLAKE2b-256 425b3de3e276b83fafc85fc39e9d4f8f83ae18cb5753aaecf34340bcb53285d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b6ed300f294151894841fb696e34663278773754121ab3e4b52fdd3e59ae28b1
MD5 453600f902b0e8b4c18fa380d782672a
BLAKE2b-256 e21bfa60d18e6f6a1d17a496793f9c6cbaa8631d1a1141fa419ad1267cf04b96

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.0.3-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.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 bbfa791e9e6288382b3592aac5c53eebf3bb6009ec76173728a9fb847c142d5f
MD5 447ab16b4c4319e8de3def0829f72a77
BLAKE2b-256 39470dc4fe404002cbeaaec3659080c143d8a9fbc4a4e0cc1d8920fe7c9473a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.3-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b5decebcbe73f9573c00f81de667b5815a0693e7a1cd8e612f2b20f5759f7825
MD5 6cc2e6e43c0ebf279ffaaef183d25ceb
BLAKE2b-256 3d175dce1aedf37087e80b404a27e0f01af796437948e783be6f74136e6a7506

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 68f540bb92c9604094c1759a0372d28b14ac254b339cc454db1bf1534940ff03
MD5 e5b8e59c0fd42d4cc4c928ac52d580c1
BLAKE2b-256 613b92e4d1da83c57f7e061b4f295adf37361fc9c8dc5b4ea9689651b7a1bf1a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.3-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 633660e54da7f8bf98a14d3b7316fb6147614f33f97e43ea688b18a49c332949
MD5 e814bf06767eb7b74d04ddeb6ae44dde
BLAKE2b-256 f5633d8137c24a45ccd93e63ce6c92d0a81cd4335a3c92a75bb11471631cf969

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.3-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 42becbdfb62218b598b9083ded0a9a3c7f753d7bb8e83b48b47a4b43c274839d
MD5 534b816ee3d59f5164c28eb0a20364ed
BLAKE2b-256 0596363c0bae2951e9ffbe2ca808cac3b11dc209cb9c166b81022524e2ca5fff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.3-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 e01a1ed7725d0a0ab9a8a7fd225d098118b0c016fcb6bbe57d8f208ae9fbbbe4
MD5 f2e7165a5fca50241f9cfb95b66fb40c
BLAKE2b-256 0f817cb0ce2ed64a062ffc29a68bae68e028562ff6825a551eecfbf5c61f447a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 592475bb43c861aafee1d697606867a5d3ab9eee754956d9c2b1fe7813325422
MD5 b43b41f1d5e02ac4d281b44df7dd1c29
BLAKE2b-256 f35c4c41d86807fcc1b31c26ffdc08d2bbd6b3a56fde673cc4a2e45912046971

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.0.3-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.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9125d2ad3f52c0082a54f29829823e5227a1e5a8113177bc9167115ecd9febb4
MD5 cd0919f9c67721b26847d0a4fb0d1da6
BLAKE2b-256 5084ef9673490fd5263d224cfe7faae4a31e6157786757dee7b374deef8b945f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.3-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 39bc6663b1373e5651f94596441bd41f8eeafba03c51a855b8cba48aa5b9a1b6
MD5 49f49271ad35d6ac775df1ab87057338
BLAKE2b-256 aece637a071da6e46b7db1961e356dbce6b825545e16373c6b9abae4067de49f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 9a171465d329ce6a0be7ab4f80660b02333ec656d5f71b0b62294c02200e22ec
MD5 9083363d1a13c70ff71ccd14a175510e
BLAKE2b-256 0dea2abf446fbd48a1fe81e3ec9ef69615d242cd2595fc2977ae05d1e9b8f79c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.3-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 7a3dcf199221d483ea864eb7d4d5d022454892f89eeb45f7771ec4c9fab656d9
MD5 73442a380c4dd64540ca54a8621c9462
BLAKE2b-256 2b561428b3dd4ad23ce794c0dbe7d8d969e0ab9f5737aac9dcb3555677cf2da5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.3-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 caa70b8e998168fd41e86627dfa4fa06cf440b3c0bc231f41c8f5771e3bee827
MD5 d6a1aa4b82aec3df95748d9287ecf598
BLAKE2b-256 f5a972230a2cc56600a569116b77067241eb9d79ea9bfc2168cb7fde2346f83e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.3-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 585b8f235aef92afa77de615f66b9aadb6b88a90b795b17b3ee3fd4339d92ad8
MD5 aa3e6c3be9510c3d2be721d8886babb5
BLAKE2b-256 f17ac1ba8107de0cca783ab6088ada9acf51db7d8ae281f8c9064c96f7fcdf0a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f2b48895985c86fca22e2abbec91f8f180cf8ec06471aa3d4186f79ea25112c7
MD5 daf16f4a3ed176958b5f32e33e5dcf95
BLAKE2b-256 5b101509e472109a4416f4796f3d514b9c9bc28ee6c846179368c1e22ed48c6a

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.0.3-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.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c8191483de1fa8928a10f777bd243484cf40f83edfa259f9b24f66f82ea66c59
MD5 03dc20ef80bee0b7fc6866f656c964e0
BLAKE2b-256 50ee4472400494abd181f359e37d8e1c62c5ebef4e177a6048e84585f50e1ab1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.3-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8f7de23b1eb272dfb0aa352a4dcbdd6d081a85dec9b5f838b211e5fab77539f0
MD5 f1d7da160b9e8b56e5ce5ecfdad36195
BLAKE2b-256 2ee80e3e92cdd6f32cd2d0bb8f93c091330bb21d5e2fbee7095c4fc92bf7761e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 f2542b683541a2fe1201e8d61e764af20cfba74b53eb260c6ed5a7b9afe7cd19
MD5 fc9b47a3201f0bc65f9f72df9b268106
BLAKE2b-256 30f338c47fc4314e482e98b0250b175e4f3e226cbc6b08fcfaf7bc8e2f26eb59

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.3-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 e1f7e2c65b077bdd1185fee5d257167bd1263e885a67efd13ac930bba1531aa5
MD5 3095fa3d7f914ff96139322685d71e13
BLAKE2b-256 57ef5199f8d4c60e463660a4abb0715c9ed485c0d547ebef4bd511d2c56d616a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.3-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 a99f8f535a77d94cdd86f8103c8e0d96cbfe6935968a1b755f968d04e114ec2f
MD5 3a6c199c4e6d0b532272c051e8dda1c3
BLAKE2b-256 58101527f58fca9d8b7f03f3e302482c425a638f456b1cfc78ab61921c1af2e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.3-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 4f6956cbc1c7b9932925c2d22cdfda5d4b96f23dd9063a7d9d2b68085144654c
MD5 4e4e1d9ff684fa461a12c5e5f9b94633
BLAKE2b-256 418e57954d7f732c24344383735b890bfef8b5dfc4d010c6433543572909996b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fd3c809dbce8d382c33a513dc546a405ccc1cdb139b010bec1485d70bc269fce
MD5 0d71a30be5c54c14b5b763c779caf2ec
BLAKE2b-256 0917c0f2a19e66e0b3f1f90ca9b945abbf7ef041fb2ec99ea106766e9ee36963

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.0.3-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.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6a61f720b7e933e452f50995cebe446ac5938ed2169c85589fbb8fd7650cf322
MD5 d8c2b32a702e8d5af0699b272e7e2bca
BLAKE2b-256 608137338c31d614c1e4f288fc95b87e4ba4378cbbbcb565349ed72718944038

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.3-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f25c2876e9edb676d9820a9edcaa5d6da000cbf988a1805af06bae64a6980e3d
MD5 9ee50a4f4964788fd0aa1d363c944eac
BLAKE2b-256 84d6908d0b6ea22e2b5a548f0267d5cb0db8855aad78965b6a82abac49d4d8ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.3-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 0b80802925544abe2ec69f9bff80d4ef64b4cc9d72990563b518f7bc8d071c19
MD5 5447850bd16778caeb9477428b83f1f4
BLAKE2b-256 7ecdaa953b49c1acffa75abd94276f2e6648623c71d7376a6e6c2147f46c4b9b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.3-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 d3415e70373ca8559ff3e2bb2871da62228bc12585980640a1e69a2cdd32aab6
MD5 1ca8fd01aad0bc42348db78991c78638
BLAKE2b-256 38d16a2ea04b1c177979470a1b43f2b8af690c6356cacc3e83e0327075bff943

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.3-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 46c067ff8509d7c82c73d176603cee0a2cd1cfd36cd017912867ad4e64c466c6
MD5 08534fbb886eee98276ac2b72ab5d554
BLAKE2b-256 d084f9d7ae48de9e1575c5cb67bfff345c0850c67599dc6d91cc16a0c0b2e7af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.3-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 255e3d17f34d7547804c3bda6c2b91f0a37821e0f0d026ee8f69b86513cc6fa1
MD5 55176a0fc826c8caddb075e938c9200d
BLAKE2b-256 c93a441a29997c7bb5ca8722c8b056a22f9999bd453ea6e379e933e3ea79a849

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3f60ddec0a23fd57ca960334f789f6fbbf314dc61ded449adf689ca399d7cf43
MD5 7833e2f5bba2435698ee940c830460aa
BLAKE2b-256 a160afb26ea62df2267777aaab64b2a8b3c9d65b0466138d749fab724e13aa06

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.0.3-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.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 fd150ce89bfe6b0545e5331f921022b84a7b154f96ef674be413e83e0c9e4608
MD5 fabbb1f71ae6f07ad8e138dba6d0742f
BLAKE2b-256 f17ed8cd43d736d6c22ce5d843aa8dd4e254468e018c631737f9781a1760259d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.3-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fcbcf802e82fa9917b4d94a95c3afc91807832fe7011731fc859dbc56263f035
MD5 209838c950d3d3cb5625878b0239c95d
BLAKE2b-256 01e2cc33e905a146b273322833c59b7b99a9d80587abf218cfcda8d21081cbb0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.3-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 afa79354c6416bb7df20dcff1e279fa23d34d3ef8b46298618aafc597f027485
MD5 e4eb70dfc37f3c3e39df2b1bd3bfc5a7
BLAKE2b-256 6b5c0ec310a55a9ba37451d62398117074fa32af2a4e0c636f016571b450dd58

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.3-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 571de3f59e23fb1fc9375c86cea5cacaaab966f1a05c181480e6c37def97fa24
MD5 55bbc3a7350c96a688f8a82c0bc8189e
BLAKE2b-256 aac3f56e90517a34014f99b9b110f504a299f03163e6edf297da4ffffca7bcd3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.3-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 1eed71879ec2236cfe0459e4d5f01283c5445440e3f59f56771cb9f612dc79fc
MD5 a409a2b9626c3f82a6dbace428a1fc1a
BLAKE2b-256 1b13ac7ce709e9e139a12e87334ba3b8df9cffd80721d2205fff5e8796f15a29

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.3-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 0854134f2931e8c2c2e5e46188f01757739db90cc478f13074db1bd491c61009
MD5 8ae683a45520e0bbd8bee2bcdc0f1909
BLAKE2b-256 136f265729c716c7ce0d450b4eac4e69e9a9bf1d413712c84ce1299bc7776fb0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 66cace85e736863b6df91a914f027255b8deb5e4cc25002a91988b99a0b7df83
MD5 850fbb374ca9fd38e3cd35786a260c7b
BLAKE2b-256 c8c4a99ede5df5a489c3729457f3a80d8c4c758115f0f4ff31b74b82f6776927

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.0.3-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.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c601c53074b5c5ca3116652661fa98d2b0db78e08014e2fdfa1db38c4b5132e8
MD5 d2eb5bbcfb72dd01908ea4751939b978
BLAKE2b-256 3dc26b9bf338c75586330006b5b6cc5be4abba432ff503ab32c7a1a75e77ae89

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.3-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ee5ada16a04310aa4599e3656d96f6594cbe9d9db91481cbd55c98d4eb0690b8
MD5 0ffbc0a4fbe1727f9d8c23a0e156b3aa
BLAKE2b-256 2f02aaea9df43c7a9fe4956cf5cfc50282e6a21c604988e5bd4de13d76170f81

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