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 Anaconda Release Anaconda Downloads PyPi Release PyPi Downloads License Supported Python Version PyPI - Status CodeQL codecov Unittests Build and Publish GH+PyPi Build and Publish Anaconda 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

Our Cython and PyPy Wheels are available on PyPI, these wheels offer significant advantages for Python developers:

  • Performance Boost with Cython Wheels: Cython is a programming language that supplements Python with static typing and C-level performance. By compiling Python code into C, Cython Wheels can significantly enhance the execution speed of Python code, especially in computationally intensive tasks. This means faster runtimes and more efficient processing for users of our package.
  • PyPy Wheels for Enhanced Efficiency: PyPy is an alternative Python interpreter known for its speed and efficiency. It uses Just-In-Time (JIT) compilation, which can dramatically improve the performance of Python code. Our PyPy Wheels are tailored for compatibility with PyPy, allowing users to leverage this speed advantage seamlessly.

Both Cython and PyPy Wheels on PyPI make the installation process simpler and more straightforward. They ensure that you get the optimized version of our package with minimal setup, allowing you to focus on development rather than configuration.

Installation

pip install unicorn-binance-rest-api

Update

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

A Conda Package of the latest version with conda from Anaconda

The unicorn-binance-rest-api package is available with Conda through the lucit channel.

For optimal compatibility and performance, it is recommended to source the necessary dependencies from the conda-forge channel.

Installation

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

Update

conda update -c lucit unicorn-binance-rest-api

From source of the latest release with PIP from Github

Linux, macOS, ...

Run in bash:

pip install https://github.com/LUCIT-Systems-and-Development/unicorn-binance-rest-api/archive/$(curl -s https://api.github.com/repos/lucit-systems-and-development/unicorn-binance-rest-api/releases/latest | grep -oP '"tag_name": "\K(.*)(?=")').tar.gz --upgrade

Windows

Use the below command with the version (such as 2.0.5) you determined here:

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

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

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

pip install https://github.com/LUCIT-Systems-and-Development/unicorn-binance-rest-api/tarball/master --upgrade

Conda environment, Virtualenv or plain Python

Download the latest release or the current master branch and use:

  • ./environment.yml
  • ./meta.yaml
  • ./pyproject.toml
  • ./requirements.txt
  • ./setup.py

Change Log

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

Documentation

Examples

Howto

Project Homepage

https://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 GitHub, Medium, YouTube, LinkedIn, X or Facebook!

To receive news (like inspection windows/maintenance) about the Binance API`s subscribe to their telegram groups:

How to report Bugs or suggest Improvements?

List of planned features - click thumbs-up if you need one of them or suggest a new feature!

Before you report a bug, try the latest release. If the issue still exists, provide the error trace, OS and Python version and explain how to reproduce the error. A demo script is appreciated.

If you dont find an issue related to your topic, please open a new issue!

Report a security bug!

Contributing

UNICORN Binance REST API is an open source project which welcomes contributions which can be anything from simple documentation fixes and reporting dead links to new features. To contribute follow this guide.

Contributors

Contributors

We love open source!

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

Uploaded Source

Built Distributions

unicorn_binance_rest_api-2.0.5-pp310-pypy310_pp73-win_amd64.whl (315.0 kB view details)

Uploaded PyPy Windows x86-64

unicorn_binance_rest_api-2.0.5-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (343.9 kB view details)

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

unicorn_binance_rest_api-2.0.5-pp310-pypy310_pp73-macosx_10_9_x86_64.whl (324.0 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

unicorn_binance_rest_api-2.0.5-pp39-pypy39_pp73-win_amd64.whl (314.9 kB view details)

Uploaded PyPy Windows x86-64

unicorn_binance_rest_api-2.0.5-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (351.3 kB view details)

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

unicorn_binance_rest_api-2.0.5-pp39-pypy39_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.5-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (323.8 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

unicorn_binance_rest_api-2.0.5-pp38-pypy38_pp73-win_amd64.whl (315.4 kB view details)

Uploaded PyPy Windows x86-64

unicorn_binance_rest_api-2.0.5-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (348.4 kB view details)

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

unicorn_binance_rest_api-2.0.5-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (341.4 kB view details)

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

unicorn_binance_rest_api-2.0.5-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (321.8 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

unicorn_binance_rest_api-2.0.5-pp37-pypy37_pp73-win_amd64.whl (315.4 kB view details)

Uploaded PyPy Windows x86-64

unicorn_binance_rest_api-2.0.5-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (348.4 kB view details)

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

unicorn_binance_rest_api-2.0.5-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (341.4 kB view details)

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

unicorn_binance_rest_api-2.0.5-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (321.8 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

unicorn_binance_rest_api-2.0.5-cp312-cp312-win_amd64.whl (338.1 kB view details)

Uploaded CPython 3.12 Windows x86-64

unicorn_binance_rest_api-2.0.5-cp312-cp312-win32.whl (290.7 kB view details)

Uploaded CPython 3.12 Windows x86

unicorn_binance_rest_api-2.0.5-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.5-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.5-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.5-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.5-cp312-cp312-macosx_10_9_x86_64.whl (399.5 kB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

unicorn_binance_rest_api-2.0.5-cp311-cp311-win_amd64.whl (339.5 kB view details)

Uploaded CPython 3.11 Windows x86-64

unicorn_binance_rest_api-2.0.5-cp311-cp311-win32.whl (292.6 kB view details)

Uploaded CPython 3.11 Windows x86

unicorn_binance_rest_api-2.0.5-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.5-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.5-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.5-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.5-cp311-cp311-macosx_10_9_x86_64.whl (400.5 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

unicorn_binance_rest_api-2.0.5-cp310-cp310-win_amd64.whl (338.0 kB view details)

Uploaded CPython 3.10 Windows x86-64

unicorn_binance_rest_api-2.0.5-cp310-cp310-win32.whl (292.9 kB view details)

Uploaded CPython 3.10 Windows x86

unicorn_binance_rest_api-2.0.5-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.5-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.5-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.5-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.5-cp310-cp310-macosx_10_9_x86_64.whl (393.9 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

unicorn_binance_rest_api-2.0.5-cp39-cp39-win_amd64.whl (338.2 kB view details)

Uploaded CPython 3.9 Windows x86-64

unicorn_binance_rest_api-2.0.5-cp39-cp39-win32.whl (292.5 kB view details)

Uploaded CPython 3.9 Windows x86

unicorn_binance_rest_api-2.0.5-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.5-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.5-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.5-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.5-cp39-cp39-macosx_10_9_x86_64.whl (394.1 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

unicorn_binance_rest_api-2.0.5-cp38-cp38-win_amd64.whl (339.1 kB view details)

Uploaded CPython 3.8 Windows x86-64

unicorn_binance_rest_api-2.0.5-cp38-cp38-win32.whl (293.0 kB view details)

Uploaded CPython 3.8 Windows x86

unicorn_binance_rest_api-2.0.5-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.5-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.5-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.5-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.5-cp38-cp38-macosx_10_9_x86_64.whl (387.5 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

unicorn_binance_rest_api-2.0.5-cp37-cp37m-win_amd64.whl (326.9 kB view details)

Uploaded CPython 3.7m Windows x86-64

unicorn_binance_rest_api-2.0.5-cp37-cp37m-win32.whl (282.7 kB view details)

Uploaded CPython 3.7m Windows x86

unicorn_binance_rest_api-2.0.5-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.5-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.5-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.5-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.5-cp37-cp37m-macosx_10_9_x86_64.whl (377.5 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

File details

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

File metadata

File hashes

Hashes for unicorn-binance-rest-api-2.0.5.tar.gz
Algorithm Hash digest
SHA256 f91b0cbba4c0b2ef35473434bb86425e74d72b7cd73e7d3e0a802897bcd780fc
MD5 d037dbe07373e30ea36a1841d8fc2439
BLAKE2b-256 2d2087bd312841a82a4e4f4afb823605a5c7088ad8074f3f783bd3ad1fe9d447

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.5-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 d455073d153767b716410970eacd30edd7ab6d74b7626a9a5e506f781f700f4e
MD5 3db041485eabcda5e7d7f150612f73b1
BLAKE2b-256 b83f83b75668854792cda4de01108f3f77b253bf3c277c8d5b56dbbb49e64507

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.0.5-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.5-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1868e21eae294dda46154d2f45ac868ea8fe48baaded6018d0826dc27d6cbc19
MD5 9404c0d6edd1ac90bbb453694c30720f
BLAKE2b-256 10b3dc2000a9d7da3371f64e5462cfc322500b495138aaf1ef5947446869f257

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.0.5-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.5-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 027665978fce0df27a614021f41254aa3dc661a757e40387ff72195b8e99f1df
MD5 c40da5864234a692efe23d4f20ff195e
BLAKE2b-256 26082cb5b417ecd1ba6de2d5f5f6e6e7de52d56402bcaf5d9c18f3169d6c8ea2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.5-pp310-pypy310_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a065043f6b8d15d291bc8f04079533c530609ae01d16e002a393facc74e58e3a
MD5 dfc96578070282dee190d40ad15e028c
BLAKE2b-256 9b249ce788a09a60de345ce9fc94726312bdaa7692c44cc75037908f5f978ee8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.5-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 88abeaa2686e5850df5241f9469db570a97d6278d19766423ca2de7aba42402c
MD5 9c66a80d720c3bdab446ce404d739705
BLAKE2b-256 3df35a07b21644dc0ed9082771bc570d029a82c6e0ef6525a753ae9161bec4a7

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.0.5-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.5-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 72c38ff5d2a23e357e59b744f90e93b9303a6140a5ddf91f42af92896c21b6a4
MD5 9a91a600a3de091de487ca1c92283817
BLAKE2b-256 3e6eb41fe4ca73316bb54f41f2f0201487ff23c49cabf359198679ef54ceef5f

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.0.5-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.5-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c680a49a54df90d43814bd67105c4bd0998d2ceb5c2aed8ae796df3a3c9a9527
MD5 4b9c191687f3f756396bd64d1fe57d87
BLAKE2b-256 b18549c3e7fbc54afef56028c555ec0fd7b3ded7193eb78240e1f96a33624b9f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.5-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0840ac2668e688ba2edb922a9b631905d273d9f268afad180a314f60c55c039a
MD5 f6035929201d49a88f1a6b657a3314c6
BLAKE2b-256 7a919eb7530ceb37505644c8327911aea7b12b2474f938ebcece6d22d96030e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.5-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 b0085e9e226ec775fe471a37e561a93133aa18cb9a8d0124d2928a3696b0e8cc
MD5 22bb3cf12c3f391184e8ea4533e4ae37
BLAKE2b-256 1b23c072e32a752eab209c13d712a191e72214bd2f3ded7997d2802e4250166f

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.0.5-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.5-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 413d00ec487c9b38129e44259fe87681d0b96b753a2f10730633324c136c1707
MD5 ade03348f6bffaa752a039d526946323
BLAKE2b-256 0915c5010d3ba815c1f87ec80d04b09dda8c5b1ddcc53bd5089fd5e3b066c605

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.0.5-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.5-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b015022f1d422d555551b5881db1721fa66a15e2bc15c36cfac52ec4c91f95ea
MD5 6c621b2182e12af9df2fb7a6707fdf87
BLAKE2b-256 97d9c71ac0a28322e9d23f2eceb38e394322ad97205b1161e5aa361b9888146d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.5-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c45cb1adedb226a1c116af2a2fceae15226ea7b24ae5e2b4a348f7b87a947a46
MD5 1ca9f9fa07b9d4887c1dcacc6e839a3b
BLAKE2b-256 41ea016d6f0930a37ec2ac3574b75b5ecd88856e01db5a576f905cc889ed2073

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.5-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 54bc9449742f4d882dca1b1da1de534b2a25c83aef5d87470e4d62c671bb5ff4
MD5 2e943002394d7cfd39184cdc31e4618b
BLAKE2b-256 b726bf784f740facce8c69a03bca9e38b0143b36ff3939ff853f82db57577d0f

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.0.5-pp37-pypy37_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.5-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2a659f7958e12bb487489b3065784bc9aabefe8ce88fa7ceee39b88743efe0e0
MD5 cc93b8e1579a35e7b92c2a5d1b6e48d5
BLAKE2b-256 acec96e4b0a0143d4b3e73470f8a5624012ad29f76e165058f82f529ed600812

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.0.5-pp37-pypy37_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.5-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 32a2bf5f6961deb789202ced27c3792abec02458ae962cdd8c44e4e4f2f4bb2c
MD5 b86963eee7c124dc9d618246bf5158f5
BLAKE2b-256 5ebf71d35ac08979952d68a7a1146d3bd8fdc420a173ce32bc9eb7ba7062c206

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.0.5-pp37-pypy37_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.5-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6ee02385c70385ea2978b3219a9dd8bad9a6165ba6abfa78bf9098a481e73869
MD5 b370a37813cdf06f914a32d2a030cbd7
BLAKE2b-256 daf120bdcc7fc6b605cf3b082cd7ef052db9045cbfcec866f6132a7ecd8818f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 8e79a546381bcc724286c599950e06d633f561e632dfcc98881b76b50b677f82
MD5 8393bfd533bced10622c40d575081e9b
BLAKE2b-256 01833ec3ee31f4088619987f5d1df694490488080e0f3ea7e636aa9c52604119

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.5-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 6af1391d6b4c9bbec7e09222c6ed7412d26ec0e4c2bbaed9d820dbb926fa8dd1
MD5 93530440508c54470b2f28d0b3ea52a0
BLAKE2b-256 afc80729b47389f7e302fda803b271281ca73ffd643c8c83c6d72521a71c5a26

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.5-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 2d395ac4b7fee5fa684be174d4ded31892848af4fa8edf664844e3c7b6e579f1
MD5 99b59144c9ac02866b3786a02672a17e
BLAKE2b-256 d7452f3831ae27dbe3bc2dab381587e04f2794a24658c1326e0a4162befd2db6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.5-cp312-cp312-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 5dfa24e06191a0508f152069826099a0dc44e1535c9613163578afd29d61dea4
MD5 45866abe501c25958380acb818ce08ce
BLAKE2b-256 46d2c500d23a87d88dfe19edaeba2c44c51347feb69286113a910f5b0320bd4e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bf57a54296a1f2446f44fed38eb04373444490651331db352742553cd9e1cd51
MD5 03daa14faee250fcb51af7dbdce72327
BLAKE2b-256 d54c1db722a64eb246c409daa56c8b300ec73839c716be433ac0a0612d486692

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.0.5-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.5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d921d792a0725b0c92f5c66c548f51b76dff2a8d3806c4d6b561b9baed40558b
MD5 b7415934508421d8dcd78d127681c61b
BLAKE2b-256 54e682b3caf6424466c41e9cbe8b5b9037ac42a4ead2c842cc2b73dfde2649bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.5-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 86d28ed6d4f814c2c31dd12ef900f4b7b7941c4f5ffb12f49f220659169f560f
MD5 dc71096ba6269a575f9dda0e3eb48851
BLAKE2b-256 9c0c36555d3267695072d267f84721cb2fca8ab86c5a711e4a1f0d5428121965

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ceb2ea74b058eff79d5c9d8a157cc22d31ab3d6a774daf533abeffc05b032d00
MD5 773cc6d640dd7b9ff637382096df94e0
BLAKE2b-256 40087d4e2d0d862062d515861c25dc02e293570ece0e4262827a1b36867d3383

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.5-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 0705003dcb4069100a30872efb8e47357ed84037f21d2aa3e90ea80ea9bfd8a9
MD5 261cfdb0e80590258c89c1690135799b
BLAKE2b-256 33d7f6cddeb5350cb18f41f43deb9e1607a8e1ece019da120a31b8291a529628

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.5-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 68759cc54d2e043bdd8aab3d3d960aff7d4cd47b80dc0add32a22d63173229d9
MD5 7b0c4382a385bc2be64963c8f1255f31
BLAKE2b-256 4ba61425b3422726dcaca751ffaf27de0bf6c2871bfe6a2db0f62961c0fa5d64

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.5-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 b7a23aee531185b3b5ebf70a9a0ad5d163fe063360c0ee0e1240cbc9db2e9efa
MD5 ce4fbfee3519ccec17fb0ad5e3c90ae2
BLAKE2b-256 b25ef78288c60cc1b8d23888d3c13bfd83168a1bf4b0e0d54a9bf5ce5495d17a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 133d55796884629f2d2be700dcc96e9e5e06ac2d4ff3dd5371bd2d3e3e02cf02
MD5 bdc682770a51a0337d95d94f5148ae4d
BLAKE2b-256 64078fe8ed526e1fc914dd9e0d48f7e5c1c724d04b1eb4f284fb4fb44ea711de

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.0.5-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.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6369db66fe89d2483bca3ba6c4934537d14820314e70b301d3057f3e987582c4
MD5 19d5d24a1a2f77db357a9c7965927302
BLAKE2b-256 c6c9c0af28daa2108ae08a586db0ff704d95175b45da96dba4feb5431fcc31a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.5-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e0e6de2be25f05ce3fc8c269c849a69c0caea457181319176e0e46874dba86d3
MD5 2b309e05f57475ff29f4b9c032c43ac6
BLAKE2b-256 095398806b5f07c0475facc481ad1b0523ac7c2c10216280f8043bedc4f329cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 0082f43d0bd56c8c550df0103048576628c0ba117848e9f4cf86a0a07e28969f
MD5 d78b42bff1539b7f450378a233666bde
BLAKE2b-256 e3236bf3f9604b71915b6026d224cbf4354b984eadf8f8ab3b976e28d2b11930

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.5-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 ed3e0668e75ba3adb0b4c7289c4cb1cfb4030c18ec655670c6e20af18408857f
MD5 66368fe71ae545bc8d3b137b0fd293db
BLAKE2b-256 c77a8647fdf2146a3529f8f4b4883bc194bd48590dbcd875640d50733cb9ebc9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.5-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 3f58527a2b4d02a9031d989f37aa5ddc5a4b97ba01ea63815aff60bffaafa5de
MD5 a80225c2f29c7fc7354c7cc88b798241
BLAKE2b-256 4f6f968b15d2078eb1859afa8d7f1ce0418b6cb8623db9f89021002a5477f226

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.5-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 eeaae432991e2976051dcb2c31c17f210c4f7d21b16f0ee58603d39a0c6c02a4
MD5 1144aeb0a5f6a280a238d541826bf0fb
BLAKE2b-256 bff29c47238e2188463bbb55479bfa96184c7dfe6858630173f6e80906476bd8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8187804de17ab31e1e94e31867c49c883dd3400b6b9ca6783469c55f9ad4bb19
MD5 9242d5f75d52c0fd9ab5b59523914be0
BLAKE2b-256 5869eb00bdb931ea48cc08066dde3993ddd7c4ea911101cf6a9585edbddf499f

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.0.5-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.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6e14ca146c765356b332115824b81fd1f59d655d22605f71ef96daeedc94bfd1
MD5 c92705c71286ea1bb0895145c03d3dd5
BLAKE2b-256 40513fe45a50408f3cd32645b065d2cdf32abc25412c670bcb04907533cb4fe0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.5-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 00a00c6b5741ba9a531016c211a83eef675645ea97dc0a4d48dbadce40d3d938
MD5 fce47a94aabe1e9948ae100dbcb3aa34
BLAKE2b-256 6f453cc3246217aa4021fea0730e850f24c646831950c996c2ead76750d1ed99

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.5-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 9059b5e883c90f1abcc755e5dc067d2469f80050740c1053339dd57226854407
MD5 711f4330682ead52860d18ffb163514d
BLAKE2b-256 89d387e75748fb5937290c2dee651d1dbe91b410d54f6c95317459329dd4fbd1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.5-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 de8722bd0db74fe1589e193e3afa144c57c86e46aa2872066a39e88360aaa0e6
MD5 b564c0df8855bbdf965ff031a4fd34d7
BLAKE2b-256 6e2f46550ae3b5dbd61fab4062dc5409011be6fb49de943fd2c1142ee7fd12bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.5-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 ce5a7a600a4c1a071c892b097bbf35492486198a54c09287f085c2a9cb7cc936
MD5 8bfe49539a37d7ab961187b9ea52fbad
BLAKE2b-256 03bdcd79962a87690f9380e49d5d1902d25ee643f615fcb442abeb0e733e4c96

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.5-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 4d20013e3efb30c1fceef4c31dc82b4c8767f390983e742e21157977495e460e
MD5 5148c82003733a5dc5b0d73d189ce016
BLAKE2b-256 ccc6fed93d2cd2237acf7867792cbe9a92d4b7ed9e2624be8a372389f607dcdc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3d9322fc7cffc35a4b12f399b6f818bcdc075d463dea45debd17d195b2b2d704
MD5 d7ffd9e7bff45e28296a9af4039c5ab0
BLAKE2b-256 085041e1c5eede8c0b882a17160f84634c29be0a13fa3070a185cd680db83ea1

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.0.5-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.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 942149707445552cc5a0d4cb5461bf4b434b0702eb55979219dc5611460f4ba1
MD5 f82334513a0ac180d2b7a75c375e1b0d
BLAKE2b-256 99e568f2297a0a3efd76eabf7937f29b79c5eacfe3a8c25282c13e148f34cd81

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.5-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 44ae923058873f2bfb53c6988d03be93fb3289c7682bf4edc099ec48e7ecf322
MD5 92f5d5f5f9539476045ee397bc756cd9
BLAKE2b-256 64683255a6975325b60b15c3297d308aff5791b3b02246bf1802f058ffdf5f35

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.5-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 38bb16e4377ee104f1dec1a65ad031cfaef4b54f9bcfcc20ddd5f258e2176eda
MD5 8fea8cd59cccc1573a3ad59b24a93ece
BLAKE2b-256 c5f3d990f1569fbf5702dd9d89d0579469990871f09db73247716c5073a1d665

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.5-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 e9cdeb1ebe41171ff7b138630f55b71f13616e7f520ad8e80bb4c703cd4f6887
MD5 d806763c908328b93af4fd8080f92e13
BLAKE2b-256 30d5bddaf3b0ebdd96833f4a48cb4ec50c0fba371a3acfc27679dab74143c68f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.5-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 2acde081f2b89a443962863252f6d3d625cee23d3daf76f98ea3ba8a40e542f5
MD5 3c603cc4d3f90d20d9107c1281958359
BLAKE2b-256 9ba7543eb624d2017163a26a74c7c9b6c62a6d85b702a669766a62ef2c814139

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.5-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 42f0af8aac00f39dbac2478a8f7a801a315ebb3540719b84d73c8562e58a1d9d
MD5 c88ae4f0192c9ed491949f9456c604df
BLAKE2b-256 8aa804832a074dfa166a9b56a9a206ff6619cca069ae2ac428945b2a909abb30

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b4c54700bdb1ba3e65cb715031cd763053325f7fd1036f5f274996c7ee954495
MD5 9d818d57abe0970f7da14d1cde5c2b1e
BLAKE2b-256 dc8fe0f0039d4ee09480f6b98334de3a9fbd28987f1546d24d328a36453ebb0c

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.0.5-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.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 58889e9553a237961a08ca03c60778a3e79c92a07d327ec2d6135ac5bbb53c58
MD5 fb38a7675adf7e26ab94987ffa752730
BLAKE2b-256 d050c6f62d0fb3bf4af7606b58ff27e1928e0fca92739779167b7fb5fdc254cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.5-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 673ba1fa5e02571283a57ac2241173b19ab64adef5ee16207e3a320b5e410ec8
MD5 86d9a8d83ce6de605507622fa5f89389
BLAKE2b-256 ca81d6f55a6edbbde6a60c6eef10656e45d431f51f7f83ec0ac18049fce3c018

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.5-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 abc92feff28772af73bc120c715e9d4b059455bc3833fadcf8782684cf666efb
MD5 752d5b6eb22bcc6b35933f66ee300556
BLAKE2b-256 68e43c7b90b9d975213abdf1e4d89319bc4b9b40ca1e19579dd731c35e51c053

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.5-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 47a976e8b5bc22d67131b5af50409bf203357d3a5ce04dae8bff5115ceabe8c6
MD5 c57063c23c82af473714b6e5475c6129
BLAKE2b-256 00aaf00fc67a51ffff2ce4cb1928e4322890c6db16e8cd366bd5e1555a458ca3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.5-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 5821bc41ad9203832c86e6d0bea910cda2ddd011d46d907774f31546fdf9eb05
MD5 8ffeaa6e177e3b1d02fd13f20dfde9bf
BLAKE2b-256 81a1c0f318b4b7807a3a8d48b87a0bf66c1522fe9bfd2a5684d92b91273214b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.5-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 a27553bbc761acc4f1f47992cd7a4c915b7b694e6edde75566c62537d5248ef6
MD5 add9dda71a34656222b8b8c87853d8c7
BLAKE2b-256 bbae0a0d1b4642af8ce475d29c1c9ff02f1fd2daac29268427515a4c57327f45

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dada7c48d49670e251c05b7a149a889b91b2beee0524e392f1a75586249b114b
MD5 73cc232d8c52f20a7377e11bf2bb17aa
BLAKE2b-256 e66282e9f6298136a9ae37b0cda9cec122423027cfe0a873b9930158c3eab07a

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.0.5-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.5-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f3a67b3c904f73b8d4b1142911501d3b439258b18de543b92d6958ba48214c4f
MD5 bef36c17d81696ffd52a67d95691e7ff
BLAKE2b-256 f48457f545563643c7db014e66e4c9eb88c157619f6e66d0f021ff2f191298d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.0.5-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 63828e63f9e4f6737eb686859b71f4ecc62e27d1332414d93fa4c6aaecd50162
MD5 d17f7da5b377dd9e0826c2fc68cb6eb5
BLAKE2b-256 f4028262a59a185cc90e2b11aa68baa24aa6be105e625555c2fd6060322f3e1a

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