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

Uploaded Source

Built Distributions

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

Uploaded PyPy Windows x86-64

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

Uploaded PyPy Windows x86-64

unicorn_binance_rest_api-2.0.4-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.4-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.4-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.4-pp38-pypy38_pp73-win_amd64.whl (314.8 kB view details)

Uploaded PyPy Windows x86-64

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

Uploaded PyPy Windows x86-64

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

Uploaded CPython 3.12 Windows x86-64

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

Uploaded CPython 3.12 Windows x86

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

Uploaded CPython 3.11 Windows x86-64

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

Uploaded CPython 3.11 Windows x86

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

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 Windows x86

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

unicorn_binance_rest_api-2.0.4-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.4-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.4-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.4-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.4-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.4.tar.gz.

File metadata

File hashes

Hashes for unicorn-binance-rest-api-2.0.4.tar.gz
Algorithm Hash digest
SHA256 30b7cd83b94ab767c228dac4936b5eaacc1da01c3ab1d3d45f92788316816387
MD5 81fd1b7e9edc2d238ab5bba4c6d3a7ae
BLAKE2b-256 2ccb671f3d1547681fd8fe850b3aa0eeeac90f8738d4bfb6a3baf0d2cafa644a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.4-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 cc9fde2e9240bf1faa65f93564d89c9834bec6259e0db2c0184d3d78495dc8f3
MD5 f72470d8a2245fc9e8664fa9a3f999bb
BLAKE2b-256 42911c14b21b14b417069c6f0fcfc0b64e0a13f6c31786b53d392fab4784f036

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.0.4-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.4-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f383692e1ab266a98f65361a95216d0396e41f7f9c89ddb2f10142b67e465236
MD5 2c81cf36ec8e057248b887177b691c75
BLAKE2b-256 d1e59538d8a7080bf914fbae6e544ee66d93c39f3493fa9318cfa3c57fe1ff24

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.0.4-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.4-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 baa4609384eda59becfc399f49b471425f4640584945b76824b25e9a98ed0fe5
MD5 a1301b82ffd3f64bf04a2e8b41f077d1
BLAKE2b-256 75e351655cf206f09df0f1f8523e4c769716b3bb1200fee2eaa3a7358d3bfddb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.4-pp310-pypy310_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 228af39ae7885a6621ec6a0179ef61295924437a4817c40e0eaf0eb262179e1d
MD5 3e48424bf8b0ab50f708a396b94ff83a
BLAKE2b-256 89c745e669180a0abc3df0b085c4b4103f7345c4c39a043581c069982d907418

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.4-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 5035e829385029bfde9ad14b2d66cf5f8c4c71c4a047cc4efb2f0ec5ca0102db
MD5 8de1eeb420f9e7b66d273018762a7fa4
BLAKE2b-256 f5f3fb90de73dbbb7887de0557986a045c9a66ea944cf406031828c98964ed7f

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.0.4-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.4-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ad0ecbf75c9ce4eaf0d6697967dd53b05209d02f8dc34eabcd7bb528f1f4202b
MD5 f393fe8b11589ab98ad890cb54db68cf
BLAKE2b-256 f3792f9e6dc470562f2b1c55298b0ef72e4aa3f4d2e804225b3da5a8491adcef

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.0.4-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.4-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1f1a58f12554839c6a5bd62bca5487f351e4a309fa4d64613c21d6ea546335b2
MD5 2ccfb4447a68c71b9aa77df465bbc5d3
BLAKE2b-256 735ddd3467b7965f5fd37ef19a49fd58b4b7072013418a07229d62800f85f37f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.4-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 705e0a055bd39f4f128ee3d895acab1e246e24ed0ff15c976b542a625c7cb7cc
MD5 e0c6062eff5a60c02dfddc737f96cffa
BLAKE2b-256 7edbea99d3da5bec7873832d076fc20694ad13a2b56c4693c97839de7b6e3925

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.4-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 395bff58854545e27729cee234ff8ae3395009521bc3ae11fa8234263ef6d322
MD5 7d4bb68acf8a1f549a522205d4841325
BLAKE2b-256 21cdb18f903857c9fe1071e1e102357b5fcb932792d349d9ed1a694d81e2135e

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.0.4-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.4-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a83043f7c3d3e142ea6bfb4d5a363cdb898c0ac4d71af5f49070e0d15099dba3
MD5 7ab6b0c41aa4903c257fb681f3262e34
BLAKE2b-256 4b7c80f78962855bf8b1c143360729da6e07cdf758a31b07e77f842c08194114

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.0.4-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.4-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f594d0697516160046f0c9fecd1271183c1f4a45817ffe8043cbd10728b9ce5b
MD5 0c09dbc4201e220e6ac4ce0dc3565e28
BLAKE2b-256 762a8d77c498db8e543656b1633380569527096c60c25469ddff95d006797f24

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.4-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f721a224d98036de358c3f0148af881d7d8d4bf93b9da9ae543fca8aaae4f0c7
MD5 c8302ab15c5278f0b5875462906f7274
BLAKE2b-256 108ee63b28a1b468fa0ed78093dd21d556366e08c2eee8265c0bb8e501b471d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.4-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 375fbe952ea4557f253c224ef7d42609c524b90f6114866b34c722492081eaa5
MD5 3a5f9836bc8a9f7c15f83087d0234695
BLAKE2b-256 dff00923d0f0f538715afca657e015c1d2e3d9b2a51f44be7f035f90fa1ba858

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 fc5e20ffc559be2cf685d3fd415c6f2dc14bee70aafedb72bcbccdf32f14e5ac
MD5 b4462d8420585ede9231258cdf0929ad
BLAKE2b-256 711a441ec8acf433f6baaf5f289cc7a627625b96571f5ef06fe9dd0c8b12e18d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.4-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 778651115c241c1af853719768d4d701771285576fba7eed325fc5bb5e7a8afd
MD5 0a3de6155ecec9230212122481314d08
BLAKE2b-256 dd597e6fbbfa5cebaf6388b6d9d46255bc64bfc0db14e7c599fe322f4bb9e35b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.4-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 12b034ea46feded2c0406017b4753435c097e2cc0b92097ed3e9736d3d8ced2c
MD5 4b795ba55e61c2f605f5a3b140113d1f
BLAKE2b-256 873d76ccfafd1055daef4caf6f7ffc115b40a63fb2b5c7a66363a78aa94976c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.4-cp312-cp312-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 a0c4bd87bb716619049a13fb9e07a332a139b14ead4a0e1c246f27dd822130d2
MD5 f0bd8ab122f7522e9a1b646732d0bcde
BLAKE2b-256 65b861467ab9c4ed23d36b457f668e3cc5a855d3b99764d51f83f4c91d083aec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1558f52bdefd092ca9b5c4c67f3bca31e22a4beb508173d0c2cc250aa4561ad8
MD5 af660049c2fc17042beb5a49ee128522
BLAKE2b-256 a8b41de800b4aadda9e105a3fa618d80c73dc27de4ed130778ab137615d000dd

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.0.4-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.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6d137f23459ed8e8fb8e74d6af041d84334022775e28c9109915f1d98ca9ea2d
MD5 cb5098528950758997410bba09f9faf4
BLAKE2b-256 4b6d598caf025fe8c33fbab8cbda439c06bbf965ebdf194affc74476833874b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.4-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 dba75bb6766f4d2794273b79ae22cd417a8b4503d14724b4c992b00635f4978c
MD5 b80515f2809b342302cf222e72fa5f95
BLAKE2b-256 b43a2fb78c4b772c1e25436420d004e40b82c42448257cfa0d8c37b1a6985437

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 118dbf4ad5d72edd89dd207161e06c52730f929a64ea94b4d7551e9a4ba47565
MD5 015b6b242dbf0cebe6afed5b336a88ae
BLAKE2b-256 8e6c00e5843cbbae995f2f5d2196505a9d25f6080f8c9dc563ead002e0649925

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.4-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 af698142e506e2e73ceb4cc80d8e580aba9b38e352b42c78c074a2d4474f901d
MD5 ef33faf27fec3f1fcec8c5900e7320bc
BLAKE2b-256 213d8c62b8fb584ca27236b4e243c4c38330fa70075ed3478f89a252d1c33c7f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.4-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 36c04c0814900d6e51c2b10d52bf2249274530db32d08d29ed8117929544babb
MD5 a2ac10ea8a191271389838f0705e5c0b
BLAKE2b-256 cc9b266174003a176efed905bf9c734cc3a7b565f3f92427a7d390a5c43cfe12

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.4-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 f060b9c151d7b9f222f6cc37be22b7664fc2a049842613de1b01f43f1e450da3
MD5 12c79078f53ed46f2159cc34e9cc9657
BLAKE2b-256 e0f0fc2c7a96e462916ecba862b16bcafdb1a992da30c0d8aa499c34f56b87d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e8b73edd4c31d478b2ab26262f74a1334d6a9727bf5cc28f4053173858d7f965
MD5 c860e086a2d74d891e9d57880308bb2a
BLAKE2b-256 959188e6b1b43477e73428d5d7eeed5f858276a3f9a241f35d8c03ac2e750411

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.0.4-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.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 06d5a46eb13f047709f367d40f628e94014247706ed55cba2a0482f8ceab5878
MD5 4ebe2314e7830c0665dc93bbf96bce5d
BLAKE2b-256 133ff1bf2c454fb5a9b75714cecb65a87a30b276e3c451717c38ff0824161642

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.4-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c4c62de0531ef4eea10e67a7bac624dee1424758d423b732e4ab29f656aec866
MD5 646380696016be07d81c4f40d0f9fd38
BLAKE2b-256 b56d5795a5568b544c9957200c09f586c26961fd88a9ebcffdf1f05b0579eb74

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 ccc77ecec5bc6409e8493dac138df29900a4e608e12010dda0a2c02c4d19a96b
MD5 7f73ea0712db99f03c4935276d1d7266
BLAKE2b-256 5b36bd7d2da18b219109cfe78ae797d03534b28aaa9261ca8191d8cc84413820

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.4-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 ae9b2bbe986a94fb909252f924e15a09f3d9fd6ba6fc49d27c9d20d8374cf604
MD5 f6c7d8031bcb99d804758797a0caab4b
BLAKE2b-256 9ebdc589f0bcde28ea650ac25455d8ac4f2f59b94d8b1f9bb9a91ec46f544e08

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.4-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f6c5612235e7716f727f226ae4ba89b25a02dfa071748364e5f3f7ea0789c164
MD5 8b10792a26523577f7adb5baf6011691
BLAKE2b-256 2be892d782f62ef534c638170fe1ae0411acec1fbd9fcd2f7504b3b8cbc65b85

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.4-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 44a77039ecb7ec2b8a75eaabc9f0ff61751807df5c29f51ae322d4c147f8e10c
MD5 88c274ee78ff5c53a0e5220528579ce8
BLAKE2b-256 b006a5c3d9014c40b4bceb48fe57c32c8bbb3f0cd9830c39d5678d36b53d9607

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 413777b52e9285ae36c9e5eec7c0d0510ac69553bbbcfe83122252b3c827e9bc
MD5 3f7efeda72d24a925d7e01ce17dfce45
BLAKE2b-256 74ee995b1c659cceb5a4fcf1498097e06c2e6fa474cc808fd781523d45fcc336

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.0.4-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.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 933706338f85c6e9d4ac9ca7897935af82283d6cdf7de1b1dfc989855720d411
MD5 cc2509235db388714e4b284db286fac2
BLAKE2b-256 584e725390c79f46f7bbd693ef769fea01842bb06a9ba0d0b08b737aa53e2c13

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.4-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bbdd9b24c821d546c8ebb9dea17b89c4f9b2d5ce109bc46fa96d437ee52f12e5
MD5 dfbbdde4d667f74964e81303b2b0228e
BLAKE2b-256 457803474db040d8b9b13fdd1fa0046c34fe8d31719265c768605e6ff6325a06

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 bc7e0a51fc87659e5d23868c34c208884730eee73f9d8bd10566ce8502c86266
MD5 e08839eb19cdca0cbe0d4722c8be6307
BLAKE2b-256 c80c22500375e8f1d2a343f88c3e562786efac0f814f2e26606625303e3864df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.4-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 e0cab51c70d6ac08a5e43793949b0f10cbcb668699660867605752ebe3454d8e
MD5 e7cdc2a448b72db97f626d2f21780d5f
BLAKE2b-256 481479fb1b909139c23b44b9cfe4f688f477273d14a9b3f5299f55d0ed7b72f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.4-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 42b2e2be85ad6bc84b05c3c05350e188fa1032ffe6f2e6cc1c155272847de4fe
MD5 0d094c065972b92c7f359c34cb0767af
BLAKE2b-256 d12a156535896fe93d5076dad574c0c8094a0b51be3a1dd7714fdecca7effbe7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.4-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 5636e1c0dfef98b93634b397d22964b96913edde1053454c2a64256671a409be
MD5 eb8eefc5baedd6f6cb1c5fb014377953
BLAKE2b-256 b8e107ccc4c32729bfab08cab75db736b60356984f6f14da17d1d004e44b4b56

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e9bec759bf159472d06ccd9444a81e08685ffdddb055f02c68f377680ba5b92c
MD5 d2b497bc1e08a3b46e5ae93dd34feccb
BLAKE2b-256 b759e5c554917bda82c0b298ad78d4f317fedb025dca51347403a93e4fabba18

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.0.4-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.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 71a2e43edfae467335f602be0b578610154ddb82de8426f82952c10b33db01db
MD5 3b7fd554aec292805c30ef40a2abc5d9
BLAKE2b-256 3b67a2e02ac1213ddfd38a8ce336cf10949f26e1e8ce78a16bdccecac2905e6d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.4-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c6821d22ad7656a73918c15606e3cc40256e9a0dbf454f405945ed72232cf5a3
MD5 400c0089b0afa4443d0bd81e16b15833
BLAKE2b-256 47abb17b2aad175287b029186953e1d6e10566bf3a339132da31fc088756e4c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.4-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 c0f9414c5ac124881b121d15351a19c43168b413fcb9dae688fad06df6fd842d
MD5 3ba0cf7b7675f696805232d0f76e2129
BLAKE2b-256 bd4f9b071d55a72b4f0dbe1667c8d20d460d1f30e874c88ca8c15901b7f3c9f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.4-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 12ccb522b6753a2a6e7bebdd1554f4255970d9c4a7a47b918d94f7557e1e66bd
MD5 a08203ae3165a78acaeae74f91a17f0c
BLAKE2b-256 b718caa42b5e8662c328d33291ee9104fe10ad485553e73ecbab6af7a981f20a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.4-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 dbe199ef2d781afaddda6910e5282c9088a5ad23adf29f71c7b7998a2d7be672
MD5 94075e883db972455af230d6ee7e6daa
BLAKE2b-256 8443492a82752f92c10cfa0fcf1413eaa3a5714c6d2483552132e51c026c55d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.4-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 5ff0ccab4f96ec65f2fd5abf5235cd01baeaa2b283686c16887d76d1fe4bbb1e
MD5 038331f6a03bae0cf0287fb9de7d4ecb
BLAKE2b-256 ca0027171c2f244630bd255ffb05a810a152111027b160af6a400d4cca7c1bb2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f63dc85a13aa1388995d464f0d2d969ca1eeabffe66f607c165886f874bbfa6a
MD5 d59e59a79f9ecf6472d3abaa75a2b253
BLAKE2b-256 561d91dabb5e62067a9dbff33bbd52924bfc90e0fc034f6ae9071314cf60cca6

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.0.4-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.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 909cf8bb78ddc4dd1e0740f5f14e1c135f48d0220615d960ca55a28d1ba507ac
MD5 28392133c98dc0fa59d50a896f867ffe
BLAKE2b-256 fc1e277e7acb668d05b46b500beacb7b707f75b2942f02b06d60d86d5d3a0a1e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.4-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7dc186d23c71a372c8c6cfd54cfcb372e3c8e4a7fdf08a73c1ededd106f6546f
MD5 13ae36727c0513ecfbd7ca8335e4178c
BLAKE2b-256 0763fd74f7ece7fb4563577b0c5d05561e2ea8fc11919663bc3f705ec328afac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.4-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 7cd356df9b594d6011681723177c0af3ebbfd628b9ecb43fa50f67dce1a7fd68
MD5 46dee7add3541a49621cd3a7c1a00e4c
BLAKE2b-256 8cf912367dd470efc0df7dd660961cb6c96d503d093d75a349533aa5e5e6ca5f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.4-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 5b84c01171756e05a54fea7411439d34822b0b6df04f5a3a1898358fc110276d
MD5 1505b19d98bdeedc4341a511390c6466
BLAKE2b-256 4c95c9bfb95023a1a815c3a57bbca219e1458f752f1cef6ba6a42ca3d108bb1f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.4-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 39c9b1f998762b3e1977945abb7b597201a65ce2ee21cde1c8955119efd3c99d
MD5 3bb75981dc97ff1d110bf123e5795a6f
BLAKE2b-256 f3d3907d3359d76cc0aec1be1be6215466f8c1778820022bb8a26e4e83963372

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.4-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 1b740658708d12dd127717fed03f4b27fd685816c386aa729bbf73b8ec34fd1d
MD5 13db1ccd96af053d8d31301c3e7e2229
BLAKE2b-256 2addd3fec7b1dbe72fab975d55ac8bcd508164a90673d935ece2dc4c4e485f03

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 312568bf4334f2ffd2cea88f766d1d8ccd8479f2d9b52c25a4e14226da68f0d1
MD5 9bb7e61bb531babd328cd1ae9e22e671
BLAKE2b-256 15f398706779322a71de06e43bdc8cd3b6e0eb22b6d316bdeacc3cf614cb7ed0

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.0.4-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.4-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f9590d8926fada45dd81d2d80cb3cdbcefb3da82c9577d461fbccbf8edd7dcfc
MD5 48968737a3dd079c415f8ec0f3c5c07b
BLAKE2b-256 ab3599ad3a7b70de7953b00e61f7a0b5666a6ad9f6d320c1b9342b43bb5b2627

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.4-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 057886d7294618154801d80db93c51139b8da327e44614ff5d1a7e4f2197cae1
MD5 913eed50aa035017c983e252a5b0be8e
BLAKE2b-256 4beb51ad65bcd018c241010865ef744a05cda090c406fb4dad63d7e8e05dcd69

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