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

from unicorn_binance_rest_api.manager import BinanceRestApiManager

ubra = BinanceRestApiManager(api_key="aaa", 
                             api_secret="bbb, 
                             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()}")

Get the right logger:

logging.getLogger("unicorn_binance_rest_api")

Send data to Binance REST API Endpoints

Initiate the manager

ubra = BinanceRestApiManager(api_key="aaa", 
                             api_secret="bbb, 
                             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}")

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.0) you determined here:

pip install https://github.com/LUCIT-Systems-and-Development/unicorn-binance-rest-api/archive/2.0.0.tar.gz --upgrade

From the latest source (dev-stage) with PIP from Github

This is not a release version and can not be considered to be stable!

pip install https://github.com/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.0.tar.gz (512.2 kB view details)

Uploaded Source

Built Distributions

unicorn_binance_rest_api-2.0.0-pp310-pypy310_pp73-win_amd64.whl (311.4 kB view details)

Uploaded PyPy Windows x86-64

unicorn_binance_rest_api-2.0.0-pp39-pypy39_pp73-win_amd64.whl (311.4 kB view details)

Uploaded PyPy Windows x86-64

unicorn_binance_rest_api-2.0.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (339.8 kB view details)

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

unicorn_binance_rest_api-2.0.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (319.7 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

unicorn_binance_rest_api-2.0.0-pp38-pypy38_pp73-win_amd64.whl (311.9 kB view details)

Uploaded PyPy Windows x86-64

unicorn_binance_rest_api-2.0.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (337.5 kB view details)

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

unicorn_binance_rest_api-2.0.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (318.7 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

unicorn_binance_rest_api-2.0.0-pp37-pypy37_pp73-win_amd64.whl (312.0 kB view details)

Uploaded PyPy Windows x86-64

unicorn_binance_rest_api-2.0.0-cp312-cp312-win_amd64.whl (334.8 kB view details)

Uploaded CPython 3.12 Windows x86-64

unicorn_binance_rest_api-2.0.0-cp312-cp312-win32.whl (287.6 kB view details)

Uploaded CPython 3.12 Windows x86

unicorn_binance_rest_api-2.0.0-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.0-cp312-cp312-musllinux_1_1_i686.whl (1.9 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ i686

unicorn_binance_rest_api-2.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

unicorn_binance_rest_api-2.0.0-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.0-cp312-cp312-macosx_10_9_x86_64.whl (394.4 kB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

unicorn_binance_rest_api-2.0.0-cp311-cp311-win_amd64.whl (335.0 kB view details)

Uploaded CPython 3.11 Windows x86-64

unicorn_binance_rest_api-2.0.0-cp311-cp311-win32.whl (289.3 kB view details)

Uploaded CPython 3.11 Windows x86

unicorn_binance_rest_api-2.0.0-cp311-cp311-musllinux_1_1_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

unicorn_binance_rest_api-2.0.0-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.0-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.0-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.0-cp311-cp311-macosx_10_9_x86_64.whl (394.4 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

unicorn_binance_rest_api-2.0.0-cp310-cp310-win_amd64.whl (334.0 kB view details)

Uploaded CPython 3.10 Windows x86-64

unicorn_binance_rest_api-2.0.0-cp310-cp310-win32.whl (287.9 kB view details)

Uploaded CPython 3.10 Windows x86

unicorn_binance_rest_api-2.0.0-cp310-cp310-musllinux_1_1_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

unicorn_binance_rest_api-2.0.0-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.0-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.0-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.0-cp310-cp310-macosx_10_9_x86_64.whl (390.5 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

unicorn_binance_rest_api-2.0.0-cp39-cp39-win_amd64.whl (334.2 kB view details)

Uploaded CPython 3.9 Windows x86-64

unicorn_binance_rest_api-2.0.0-cp39-cp39-win32.whl (287.8 kB view details)

Uploaded CPython 3.9 Windows x86

unicorn_binance_rest_api-2.0.0-cp39-cp39-musllinux_1_1_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

unicorn_binance_rest_api-2.0.0-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.0-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.0-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.0-cp39-cp39-macosx_10_9_x86_64.whl (390.7 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

unicorn_binance_rest_api-2.0.0-cp38-cp38-win_amd64.whl (334.9 kB view details)

Uploaded CPython 3.8 Windows x86-64

unicorn_binance_rest_api-2.0.0-cp38-cp38-win32.whl (289.3 kB view details)

Uploaded CPython 3.8 Windows x86

unicorn_binance_rest_api-2.0.0-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.0-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.0-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.0-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.0-cp38-cp38-macosx_10_9_x86_64.whl (382.3 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

unicorn_binance_rest_api-2.0.0-cp37-cp37m-win_amd64.whl (322.9 kB view details)

Uploaded CPython 3.7m Windows x86-64

unicorn_binance_rest_api-2.0.0-cp37-cp37m-win32.whl (279.0 kB view details)

Uploaded CPython 3.7m Windows x86

unicorn_binance_rest_api-2.0.0-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.0-cp37-cp37m-musllinux_1_1_i686.whl (1.6 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

unicorn_binance_rest_api-2.0.0-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.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.6 MB view details)

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

unicorn_binance_rest_api-2.0.0-cp37-cp37m-macosx_10_9_x86_64.whl (371.4 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

File details

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

File metadata

File hashes

Hashes for unicorn-binance-rest-api-2.0.0.tar.gz
Algorithm Hash digest
SHA256 8719ed65dbc9ac13bff801a2a247fa2e83c8e178498a538dce299e0b0d099572
MD5 8c36c51a767f34d1bdf5edfd1aebd9a0
BLAKE2b-256 ccbfe1de3acd08c30dd50c51a92d51f7d198a81a7f6f81079c1c28a83072f6d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 475c7845fdf4a8a47d25a7ad962b5956ad537cfac4ef2669876a73c6e8436505
MD5 90b4e35c8d5324ff7d240602543f76f7
BLAKE2b-256 c89c0f64fc2360af8cad07cd295d1e95a8765ef8a74bd146198928a1a8977eed

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.0.0-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.0-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 89bc7ec51ffc19e9282d1fc313ee8470b9341e28ba8855a1c8c444f2f2e4d37a
MD5 c49ade3b9edd5bdf8437876e9b6adf44
BLAKE2b-256 1fe5ecb0971ae2e4ca580f063f29cc7aadbedf0b95817cb4c9f506a240ed7af6

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.0.0-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.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1571c1bcc1e5cd29f26b0e8aaf0394ca3a4f63c943e7584794cf216710f8d605
MD5 6392d93e8a7b53ffdeea8d9975a203ca
BLAKE2b-256 04ef581fb9bc84a3d2b9febc1167aae5c12ebc920e6409c3d4e3fcd13a810530

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.0-pp310-pypy310_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f97c8bb1f87639d2ee77fd0d3ae771d852e217d618d02ad43018ac1e03e0037b
MD5 7c577efc1d1f5a69a1bccbaa67aed4cf
BLAKE2b-256 4e54f6e22e6eb995b331cad08e437eb76a5fbb5f79546441035f44492f9fedb3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 630bf1694f647076ac20d501fd341fb954b663c17c1dd931402410b89173b1ff
MD5 9c2bdda78414b8c70846f6c979ff3da1
BLAKE2b-256 96125b50f20c37dd220e21c84c2534922f7bedd66fae826ff7803b1ebc10819d

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.0.0-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.0-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0dfb3cbe8bc8465dcd231326e591ee8665ae71592a76b30cecba65dec3759e9a
MD5 16b139c64e6ab4578d3b645e05fb0bd3
BLAKE2b-256 5fe302a1bdf7b78a865f3cf9543665ef5f8e80c29e4eb0f0f0e76bec019fb0c3

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.0.0-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.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1ed1b12a7b6e4bef8b1c7043ca60838cfa817998834a4c05285ec7db797a350d
MD5 6ec00323f13e17cfac89e67b27bc7f58
BLAKE2b-256 b7443464f85be62ec391aad405524f7e758f1760a0fe76896be858d73d2411f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 15605a62ccf1f2bf971cdffbf5b5af01d87af0736874348b575ec3b9e1c9b0bd
MD5 463bc5fa91ad79a5c05c42978ba260f3
BLAKE2b-256 148e81b0ded518893324831bb6fca6b9f15b6b73f14a45888fb93715fcb9e9d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.0-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 45615fa8f5b195a1028dd2a2cb9d73a31c463eb4e26ee041ece804edea41f8f6
MD5 a9e77063df54bce86eea2c9cfd3a2a44
BLAKE2b-256 87d31fbd91bf2a4c51a296c568b259fa12b4440a39a5e5025fefd564bc4f47fe

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.0.0-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.0-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8c1a9dbc9e0d8003da8386a6145ad76a3818d41c24e3520ee3462e9fedb86956
MD5 fa89ac6588fa3a1e18ef6cc14c1668ac
BLAKE2b-256 fdf13ff6a11197a8fdbccfcd93303574355e946224c81796fb668ffc9dff335a

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.0.0-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.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ed86cce608c12bc23828b0021c8b219034881cfae167b732469fe13db4235d32
MD5 e1297843bf9b1cd9800c8836faeedd95
BLAKE2b-256 fce957e1de08036e87b9cca2d83a1f5affc160c787382dda329921920221cb6f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fbc52edecc3013dcf13d4b852e971a0fe3fa12159c44febe4ed419b71896e390
MD5 3e9403bf7dfd19f7603a3e0a6ddae6c7
BLAKE2b-256 3e01b6b8f1258a54c19313584de0dbbc0b5fbbfbb5141fc3fedf43891c4bb5bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.0-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 e933a1acc3ade08c81f7fa654c2ee1268fd976b4809ffa224d1d0fdfef5bb561
MD5 3e6320671bfc0981ba6e7d468738685f
BLAKE2b-256 0121d484426e6d02c26ff8ef2e98592127e3608eff623a2b18a9a4651b30fd2a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ff548bedd15b8bd4d2292912df9a62f95734cede34f6d02f658506bafe5f3b76
MD5 ca5dac30c799f40086b40b60c5554d16
BLAKE2b-256 442c46143238fdf9afc2ad264591af792f8fab5f9e385d298454130643588376

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 264574367f9e68a93659a74188f33aeed3ba226fb331b6483b684fd643a0d1b0
MD5 fc58d70b32ef320a950707c2a779b67b
BLAKE2b-256 0b4a634086bf12d626a140f1e83a0801d228431f531b37fad193a4d6b8eab441

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.0-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 b605ae3eb7ef623551fb246d9198e5673974c7921e3ee8351b257578defbe598
MD5 c94679c575b91d5ca5fa712d7f5575a7
BLAKE2b-256 b7fcf21c2ab92905f69d339ecad25d1bd7625aef8b93d07072780402b2bd6aa1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.0-cp312-cp312-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 149f04aa36112de39db2bb62f36fc53010d4420cdd790a2d2277982a3ff55287
MD5 3625b7ebd80472c723caebe8a1c6a813
BLAKE2b-256 6091d8fa4437b2b5a8b92e1d54771ca214960e0d523be38edc873ae3ea2ad9e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 69c6b33e7936d2d4494e690efd644ad83a9c2d0ce0e3458b88481f418477e468
MD5 43fd1f393734c796cf26b761ae70b672
BLAKE2b-256 dc0145c6df4d386292bc5400ab9f0cd1fc8263cfe8eb3cbf6a4c7cda0695cdab

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.0.0-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.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e922a7bd9df55a67821a40336ae9cbe9a27fb17e3feb71499d50c7c6a09b15c5
MD5 de9c599758942de119b03794bb4f8ea8
BLAKE2b-256 11dab2bba4249fc1fef0d852b67a217ee4dee429f95699db0baee015743b5e6d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.0-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1df3ea4b148dc6ce36f89b3fb499030bd4d68d79babc3df71f4e292e016f3f37
MD5 6616a51daf9cbc90cf531bd638f75430
BLAKE2b-256 5f05c10e6939e69484144658c7eb350df43daa946baceaba7cd945d2f8b71743

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 8515a40f92142457a494b455388751abb038a21cd11ec081f6fe2dcf815585e0
MD5 c78d9848668b4973b643d65a42eee1ad
BLAKE2b-256 2312fd1f884d3a5546d197506bd2e3d73d437f43b0fa01e68443f2f74b501d43

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 dab092ab409f2780f10d7255ddc9a92fc771ceb30c45e3c469f4dbe7ca3faaaa
MD5 81b6264bce3aa6cef57c122b8731bec8
BLAKE2b-256 9a761671c318faa33f7ce61a650ce9be0a83b2fad9aee490d2a2669d6435c563

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 5ae6f6739191436b0bb1773d52d7671a8e1c58756d108698f3613ce721799fcf
MD5 10923c6367007466705137464a293dc3
BLAKE2b-256 2755302882816da917b97bbcf45e9f6d93771199b2b377632ee30972eb0f986b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.0-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 f7e92cd5fe4c876e5e9c20b72de24189558e11ff63c9e6cff822e2252d1e9aa6
MD5 af97a73c48cf636c6ecaa7c13f6ce9f1
BLAKE2b-256 cba3bb157daeaa1c78f72850023d1715212a7c6909365ea581c6584cf7607e6c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bdc71a9987dfcef7684647197b0d1ba3b360477dd48de5aef610697f197ce106
MD5 aa6db2029c1772fefdf3189d4f30870d
BLAKE2b-256 0776ab02ee84dc3467d0ed381be5337803fba912df4e22f2c2e68fe99d9e99b5

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.0.0-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.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6384a8c427739ff4fa4a04cad5497e8cac2397715c7a64ab95ec193803244050
MD5 ebb35a6e46f4a5e14314ffe20bbc6e2b
BLAKE2b-256 a330e5d35c16dd2741a38972c3b6afae78eb3a165cc584db9f969cae8a568b58

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 130456b80393642c57801cbec2d34f8e76b4889ba4676026d92a3cb9d1fc6371
MD5 ba54331bd00437ce23631cf40aa06286
BLAKE2b-256 a881b0899c486a1ae2a54b46e2843ca6d1a37017f3e7bd64009dd4c8067acd2a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a552fed9b87254e9f82840aa250e587b9fee2a41be41ca287448aee5dcec6ee4
MD5 9227b1fbb4f3c79ff631a52198b84047
BLAKE2b-256 c62ace4c8e023da5ea285076c7b3cd76593440105f49530cb3fccf97f96361d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 52c0c71cf424d939f65796d6492e1d2f5a7ef7afff05bd262f513dfbc9b3718b
MD5 7fa7bdf9909c2b0ea7b1a44f9faad420
BLAKE2b-256 34d7456bfb89eb8c802f30a9526961731073846c253ecb27dd989730ee7725af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 150ebec3b1668df4e98c8bc6df2fb2993f3c7f6e37a2d4d2493251bc21a3a25a
MD5 d8e91b0780fccf6db777486b5f853f01
BLAKE2b-256 20abdf0f2534fc3a2c5375726a5973a2c736ded47820787e9667eb9d7e89b892

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.0-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 ecfcf291e615fe69a4f66cad008d088c0eede132dd0eb4abce6ebf1f7c1b091b
MD5 4052066d8270e1c44a5af23e8846e0ae
BLAKE2b-256 6f082dea5558126b25f82894156cd3ee30ce709228d1998b25a082bf9df528c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 93ad8466ff3cac04f2e1d3483061343a344db7be85879ed84a6edc80d6360d15
MD5 c410d8e8c779a2e86d97b082fa793aa1
BLAKE2b-256 af512424c6dd2bbaa55b1d098e6574dbef71ecd0db69a22c67f4e71ffd42c1c7

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.0.0-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.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 833dc3998bd4bd36420b172e1043b912033998988ad49214d00d327767f9d223
MD5 8435f81858958f02df5cfcb6f5ddc72a
BLAKE2b-256 cf6b44ed4bba1a0ff65e9dd0cefe6579a775c06eb4bb3df4bcae170f6715da42

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2c734410dd42aac4340206651ec823e149c30aa836feff5b131d1f7fc9707660
MD5 465f5ca7124488185ccd4434c059a635
BLAKE2b-256 c69e9c23c3d0d664aaae4050c630670c4b974753c1020c09f26b319c44cc6ca7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 8f67bb48bb1ea75ab69fd4f77906df01794d08a44004b454833cb9a066f8f550
MD5 e8bed70a346182ac95aca321725c5689
BLAKE2b-256 5c3ad4c801a7311b9492d11dd35cbcebf8e7ff71db1aab9d13ec6ed872d9c963

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 474eba041e6e02da8a95a29aa214e2d587579509a483580190e5bc9c3b0ea52f
MD5 c5e3d41531e217b3b0dfa7d0caa14f47
BLAKE2b-256 21b084444936ce6adc422366c3679abd52564c934a2168f2d66c324419f7f762

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 3a620d9c44669610bca6e230487991073da58b1232eeb6820241f3f71bc3bf4e
MD5 39d9f0d0349495191371232f5560146f
BLAKE2b-256 cd4411e422ceef4a2d8ebbae37a31a1806add7a7742e820a2992c0a2011764ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.0-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 fa77256f0765dfff027706c6e7cc0665af4a4f36e8e369b102272917732ada55
MD5 aa71bc07f6702b6e1dca6d28fd0438d7
BLAKE2b-256 46812478346e637e724cfec569eec2737da9529104c18491bdc7b56f0374b3fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9c2ee572a4ed0563d8ff0e48eb7427c0114c87c96ad20a9aa1c48bffc79a8f52
MD5 24d980bd98afed2309fd8cc7da48476a
BLAKE2b-256 f8021e7759e7dd924a87bafd099d67f35178426d76b17aac93b8e7eddb35dab1

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.0.0-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.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 42427840231cd6655c19f3438252a7d25b692bb164cf634e791977e5be9c31cc
MD5 b0e41be6564f64119c697e91fc44bfc6
BLAKE2b-256 9b6ad72103fd413eea03b795aced0e6ce69f910e9fe1aaead7c2efc517b06853

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3535c9199d9dc9ef812b0ff922a9e658a018d5ac21c0cd56584d27d5be51eb58
MD5 3128479acce5945629585398356e802c
BLAKE2b-256 98d8c8900cdb9a4d440409d504a9bd0a579f623599b0971af842c0688460f46f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 946ff6ee1c3569ff9817e1c07146730f047957a2c87edf2704bd123e00b714ff
MD5 f2d16fe9cfd1ee05ac86bc2edca864c2
BLAKE2b-256 8ba20f0a931551d735a18e9511a6666d2997cc5873b9822cf418415e0160479d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 e68c6db5d708423d40372071f501d27e7e9bb4b153d4b2e5dc9244922987b8bf
MD5 f72aa0ba82cefa22f927cf99b4a10bb8
BLAKE2b-256 e932152cdde3aca34dc543aca01db799b872465f85a52ab0daa202e44d30e456

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 ae9d41042bb658700168686c28a6c279e724283912d68cc009a51e9a463ae46a
MD5 c4e43b8b6aaff07169513c04e629461e
BLAKE2b-256 dc00069cc7e143a2b4aedc7591db226b4a1b3853e02f7fad2682ba4833e329e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.0-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 f4e9638860ec80f6d7f9811dac097fa301cc5df16dec9ff11d0d48ad8e819937
MD5 6be5b1993d1891b90fa185b43b4e66ca
BLAKE2b-256 fb8fc81fb750906ad28257b92d80ea9ee2c75e3e0261b2c3b6bd279ef8aaa8de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b26f2ca972dd080b4ae526876eec96fe071cbfd39cee8c1ba6e5682fb5eac90f
MD5 4811fbe340ebe9e86fc25f59620b6f2e
BLAKE2b-256 63d27cc8a406b249f5c39453b5235c57b695875609a381d92b65e2cfa581b9d0

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.0.0-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.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 96307fea7c6eacf1f8c669cdf48c0778f99c0137f10cb0d8cf4e70bd9cd52ad3
MD5 8452e00f6d44bfafd58dd4499b6668f1
BLAKE2b-256 eebbd933faa2366b56fff032617ddc7cb11800330f3a60e16cc75f922ea08552

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b2d57c90966b2eb986797ecfe95ca8def65cb88986b770870df151f06468e013
MD5 5e354a01308a5fe39b913d0b4e8de2ff
BLAKE2b-256 03711ee9e7ad09fdd9ce5688c6d4871f9164490e1fc0b6aa0e3ba6207605073c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 34ecae137a05ba83506b44b8c9fc2a2b2bc045e18fcb3420aed255f97ec46c34
MD5 93b7ebb8afc19b61d648728026fe6863
BLAKE2b-256 3a5abb0bd095a083ac28662524966800898a8be4a9bcfe1d89b72c808f692205

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 807afcc3cef44d9de76d03a1ef8d25bc963e047b2940e2bd18898be0059cf893
MD5 a705c4d502dc37aeeaf57d7559a6ae2d
BLAKE2b-256 28d8cb5701290fe41f79ef02b5f32b3fee6534ebd60bfd886365e03a2ed46851

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.0-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 17425f3269c65c4e2e327ae7f6b450c1c66ae34327f422d31151268cc6431a47
MD5 082308a1f38d94807d11a8523c1f355b
BLAKE2b-256 9d6f2445076509275cdf2215213b19371b85be03d71bc7374c19a00dc1685741

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.0-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 793b42d5534c4a12fb583c7c9a04a86be8d3c025de597095766bbf04687a6b6e
MD5 d7bbc297f64eda970fb2e884af31143a
BLAKE2b-256 11f50569955056653bae8492307572f7304716a10fc6b05ef0e62ffe1df53795

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 045d2c318a1fbce99d980034e269d974c537c426e054ee606b80a8549f6e9c01
MD5 de6eedb526f412baf0fdf70273448f57
BLAKE2b-256 24d61cef6276b2c3713ad3b89df967c0bdfec743da82453515a0481948dc424a

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.0.0-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.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8c5afbb314a037cc196bd258781fbb60506a02b1cbc81c9aeb7d7166b6be711f
MD5 8cf81803fdc459a15d4c0c0e3c1059f6
BLAKE2b-256 bb470a8e3128d9b87d3a14a6d8d1dd8af369e5663ea03fd70fa5649653f425d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1e23e1d1f286160c4508afd42870b4418d479e405b680cda7c61727f41ece755
MD5 a80a1cbd0bc43ff6973de56847442ef2
BLAKE2b-256 c2e943d8e42a8a8792c5f4fc7aa7bd9fd87edc0d6b05903f854cff1530f6ccd1

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