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 codecov CodeQL 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 config --add channels conda-forge
conda config --add channels lucit
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.1.1) you determined here:

pip install https://github.com/LUCIT-Systems-and-Development/unicorn-binance-rest-api/archive/2.1.1.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.1.1.tar.gz (520.4 kB view details)

Uploaded Source

Built Distributions

unicorn_binance_rest_api-2.1.1-pp310-pypy310_pp73-win_amd64.whl (317.7 kB view details)

Uploaded PyPy Windows x86-64

unicorn_binance_rest_api-2.1.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (347.4 kB view details)

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

unicorn_binance_rest_api-2.1.1-pp310-pypy310_pp73-macosx_10_9_x86_64.whl (326.3 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

unicorn_binance_rest_api-2.1.1-pp39-pypy39_pp73-win_amd64.whl (317.7 kB view details)

Uploaded PyPy Windows x86-64

unicorn_binance_rest_api-2.1.1-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (353.8 kB view details)

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

unicorn_binance_rest_api-2.1.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (347.3 kB view details)

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

unicorn_binance_rest_api-2.1.1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (326.1 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

unicorn_binance_rest_api-2.1.1-pp38-pypy38_pp73-win_amd64.whl (318.1 kB view details)

Uploaded PyPy Windows x86-64

unicorn_binance_rest_api-2.1.1-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (351.1 kB view details)

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

unicorn_binance_rest_api-2.1.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (344.9 kB view details)

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

unicorn_binance_rest_api-2.1.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (324.7 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

unicorn_binance_rest_api-2.1.1-pp37-pypy37_pp73-win_amd64.whl (318.1 kB view details)

Uploaded PyPy Windows x86-64

unicorn_binance_rest_api-2.1.1-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (351.1 kB view details)

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

unicorn_binance_rest_api-2.1.1-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (344.9 kB view details)

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

unicorn_binance_rest_api-2.1.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (324.7 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

unicorn_binance_rest_api-2.1.1-cp312-cp312-win_amd64.whl (342.0 kB view details)

Uploaded CPython 3.12 Windows x86-64

unicorn_binance_rest_api-2.1.1-cp312-cp312-win32.whl (293.5 kB view details)

Uploaded CPython 3.12 Windows x86

unicorn_binance_rest_api-2.1.1-cp312-cp312-musllinux_1_1_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ x86-64

unicorn_binance_rest_api-2.1.1-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.1.1-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.1.1-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.1.1-cp312-cp312-macosx_10_9_x86_64.whl (402.9 kB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

unicorn_binance_rest_api-2.1.1-cp311-cp311-win_amd64.whl (342.8 kB view details)

Uploaded CPython 3.11 Windows x86-64

unicorn_binance_rest_api-2.1.1-cp311-cp311-win32.whl (295.7 kB view details)

Uploaded CPython 3.11 Windows x86

unicorn_binance_rest_api-2.1.1-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.1.1-cp311-cp311-musllinux_1_1_i686.whl (2.1 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ i686

unicorn_binance_rest_api-2.1.1-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.1.1-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.1.1-cp311-cp311-macosx_10_9_x86_64.whl (404.1 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

unicorn_binance_rest_api-2.1.1-cp310-cp310-win_amd64.whl (341.5 kB view details)

Uploaded CPython 3.10 Windows x86-64

unicorn_binance_rest_api-2.1.1-cp310-cp310-win32.whl (295.0 kB view details)

Uploaded CPython 3.10 Windows x86

unicorn_binance_rest_api-2.1.1-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.1.1-cp310-cp310-musllinux_1_1_i686.whl (1.9 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

unicorn_binance_rest_api-2.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

unicorn_binance_rest_api-2.1.1-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.1.1-cp310-cp310-macosx_10_9_x86_64.whl (398.6 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

unicorn_binance_rest_api-2.1.1-cp39-cp39-win_amd64.whl (341.6 kB view details)

Uploaded CPython 3.9 Windows x86-64

unicorn_binance_rest_api-2.1.1-cp39-cp39-win32.whl (295.2 kB view details)

Uploaded CPython 3.9 Windows x86

unicorn_binance_rest_api-2.1.1-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.1.1-cp39-cp39-musllinux_1_1_i686.whl (1.9 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

unicorn_binance_rest_api-2.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

unicorn_binance_rest_api-2.1.1-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.1.1-cp39-cp39-macosx_10_9_x86_64.whl (399.0 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

unicorn_binance_rest_api-2.1.1-cp38-cp38-win_amd64.whl (342.5 kB view details)

Uploaded CPython 3.8 Windows x86-64

unicorn_binance_rest_api-2.1.1-cp38-cp38-win32.whl (296.1 kB view details)

Uploaded CPython 3.8 Windows x86

unicorn_binance_rest_api-2.1.1-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.1.1-cp38-cp38-musllinux_1_1_i686.whl (2.0 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

unicorn_binance_rest_api-2.1.1-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.1.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.9 MB view details)

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

unicorn_binance_rest_api-2.1.1-cp38-cp38-macosx_10_9_x86_64.whl (391.0 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

unicorn_binance_rest_api-2.1.1-cp37-cp37m-win_amd64.whl (330.5 kB view details)

Uploaded CPython 3.7m Windows x86-64

unicorn_binance_rest_api-2.1.1-cp37-cp37m-win32.whl (285.4 kB view details)

Uploaded CPython 3.7m Windows x86

unicorn_binance_rest_api-2.1.1-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.1.1-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.1.1-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.1.1-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.1.1-cp37-cp37m-macosx_10_9_x86_64.whl (381.4 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

File details

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

File metadata

File hashes

Hashes for unicorn-binance-rest-api-2.1.1.tar.gz
Algorithm Hash digest
SHA256 c0bab9e16552960aabf58075d41df1fd753cdd5e5b0be673a34a3ee8b612d4e1
MD5 333b3b804d11a107ab7bb59bfc11f25a
BLAKE2b-256 cff55dc4a1b1622ace2f69da5b7bb34fb675664c40d08fb60a118ac29a421a4d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.1.1-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 354e96fefacb9b9fc30dfae0680480c2e3bfad4e4d7ee7218873427a98b2291a
MD5 eb4db8be70c52b5b688867f575ffd8d4
BLAKE2b-256 f43c87766dc290ff7f3dfc4c8c9e5458167b4571ada00bbb7ef3a176df13a0a8

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.1.1-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.1.1-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6f695c650e00e079621e8136a7e1e605252c733ce0841d2a44c489b7b52f8edc
MD5 804bf3c9418fa1cc299032677924ba8d
BLAKE2b-256 9d7ffaf0bf997440d865468d6da4d11a532eb1887c84d95d5b18b3b1b7e102d9

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.1.1-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.1.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c1e972a872dd614d8112f10417d68f7cd4046f2930afd478b57b805c73c2510a
MD5 c001b806e1ff2a304ace40912f9b05e7
BLAKE2b-256 8b66397cd2527492064188cc9842313bad847087daf085591d4cdbc687f8ddf9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.1.1-pp310-pypy310_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a9d33f2faebbcdf2a332f6a1f1f1f1930dc8f11c425fe6ebd1bce9e942040c00
MD5 0843dccd9052cccbfae5cc15e8be92b1
BLAKE2b-256 e8eb3d70a087087367e39b3baab9fa54a2f0f2402712bbc37e275287f7a12ea0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.1.1-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 c15310634363dc2f0be77e8e599e81e839eb15245cbe338c0cf42ba5627bd8e3
MD5 c3389dd29f0cf1a0b16899db923a629e
BLAKE2b-256 caad956d509ead7032af8af78479530c9c91c52148ed0aa353b56ecb1598f700

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.1.1-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.1.1-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ee1ebdd0a4441c1a8b8445e6a7bcd3980a84855ff8fc9bab9c98395436f72456
MD5 56c9ff93d3408a530e0c2c70652d769b
BLAKE2b-256 bff686cd22e7ddbfb82aa55d64736facd53dd67286abfa5ab5dbcf5867ed57fb

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.1.1-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.1.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3041345f5fdc8a82dc2213b1dd9f7d2caaed432d2c900e871e8dd9113b50b075
MD5 e3215954712f9d9956ca5a058797d210
BLAKE2b-256 295ed105ef01edcc72f0525d0aa3a231fb019af4aa06aa1e6cfcf45e5f84408c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.1.1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 11126c79244fb0b5890c4b3995adea72dca3a0643692afadf9035043d5f29f40
MD5 c4e946baa5d7c3129e8ae8525f9c1e3e
BLAKE2b-256 414ce37204274817c2dcead2a248215c29321311ccf4bd42812d6f26a7996dac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.1.1-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 8c0cd1c11ca2afd9557dce4b98fde757d3068284d7fbeccaee7838bff124e1cf
MD5 96b1f4ad944d897ae577e3ae39eedee6
BLAKE2b-256 d275de155a3ad727025ecd4fdec284d3b22658959f7d637ba1c3f5d57341fef1

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.1.1-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.1.1-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b8ab1b863d02f301f3c45e5be1b2039254c51d21aec1fc7d878422276cd2d1d0
MD5 3b66e607dfa60c877a55a0d5fee89a3c
BLAKE2b-256 6e1150a09a03c6b3a9e66eccb7f7e712be11c0368dd093aa5dbebbf339bf3bfe

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.1.1-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.1.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c53f93c79796d22e44848ffa649d08d073d7baef9024007de088a25e5d955056
MD5 833468fa3208909671edfb86810018d9
BLAKE2b-256 f0518bd36d40cbf0fca69af22451b2c5bb145d668628356a9e18ebaf2e234eec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.1.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bdabc51d028a677b9ba352e14ba98a200bf25689cf2b763504eaa0dfc5e6853e
MD5 8427e681063895c2c670592a877ace1b
BLAKE2b-256 1656c34c4487d25a17d85068cebd39a4d33365ca21849857f658c267ef1005b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.1.1-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 ebf4960b958c8f12f4b5bbb45519ef8eebe6f0488272f11a96917c3224c265cc
MD5 2a0940c477e2c02990e840897844be86
BLAKE2b-256 9df8516327edba4a8febbab43682b381c5331be1cda409a41395babc50cd9c22

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.1.1-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.1.1-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ce87d5ee462111938ea5c9db339ce59d28980385f2ceee975818f4b82a442193
MD5 8f4ab6374d02a52a1d21fa16e640aed7
BLAKE2b-256 41e940839d6f84c663926855c740554a7a0bee49f7a81203fd5f0f140eb7e219

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.1.1-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.1.1-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 41bfe53afb05872a3feaad8040d50ff680c5af490bffcdc59b2e2b01a4603ecc
MD5 520deed7888f146c77031112d9e9e924
BLAKE2b-256 931046660bf9d4ec68ca4695d0983f3b21c0a7408393bc973a740d1272c5aa30

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.1.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 40e1c139f288e543222be24ed884c2a10ef60d8ada416be7dc712612fde21827
MD5 a09c66c39a2a29ca82686e57161cc478
BLAKE2b-256 e0c4a5ed8b12a8dba1a3eaeeda6dbbbb4928a71ce83dd7c795aca1c956668a51

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.1.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 1503042addfed6d57a3c8fb2d2c26106d729c1d2a9c7e156afccc74c140a9954
MD5 a1cb98b4f687988d11ad78ba0a9ae9d0
BLAKE2b-256 3e944ee990b6fc1219b718f9ece30a04fa9a017f21f9a3c718336418a36b410f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.1.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 a36cbccf4aa4e72f57674d7ecfa80791d9022434f4d559cfdee1fcfd401273b5
MD5 1b64e699f99c828b9ca7b6027a8d26b6
BLAKE2b-256 3176f403ca6f87cd3dde0296d4801e08c955cedb0b4718236d4de397c9f9f046

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.1.1-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e19372b2c138232272ca70a580942e6cbf8f337578ef8daccad7fd712360331e
MD5 40165343789e4625400eb74307acfe65
BLAKE2b-256 6c5ca558e9f3079fecca10f7b769b3d30e982d298463bfa9c5fd3454d20827ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.1.1-cp312-cp312-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 b8071e582872aeb4baccc068c4d38da547e91bdfd0b80bea2178a2fa0e79741e
MD5 bd07aa62bb8d2b465f85c30a2c71c2b3
BLAKE2b-256 8ce489e4594dad3e162d9643327247419a6907bce6e0886310816c0c907d6d56

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 775fbf64c9873c6133003ac0964701d4d29c0ac522d12580dab2c723c1886d4e
MD5 abb05c0eadc39a2423841af31b5c4f34
BLAKE2b-256 55a1e94e28024c5ad479f8d97dd4079f60d04b0712f61cd61f1891e3f2f27804

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.1.1-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.1.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4891ca0da68693a72b802f8f52d8166bae1328e67e2a55cd8b997bedbcf11381
MD5 94047936b143447f5430db43e72e586e
BLAKE2b-256 0b7161035bb275efea310bda1bac52d641e07f7e54d1f2c4e3ac57ab86a8c2e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.1.1-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5a490b8e891e21fc177ae65f5ac145ec9e3a6db3f92c42489049b5f2757b38d2
MD5 0f5cbb0970c65b0af8c836176dd3b75d
BLAKE2b-256 2ce88927aea7404a79f7c23702daa1de9d0574e2ec6485f4ef1e15edb3d8070e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.1.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 97e11c736f8e7415365e5555b435189dd39358f06c30976837d1199aec46f771
MD5 8327e45a3e9aa3c90397ef681013099a
BLAKE2b-256 d2cbfe5dd16228834c98c57dd251400a6ce2527ff74856edfcb88ccd9e0be229

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.1.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 35d1f8aba6277aaca861ea076685b5fbf586b0e53fb2c0ed7ab8bc0d0bf02e91
MD5 71ed2bf24b36579ba74db7455a2a7317
BLAKE2b-256 dbc184fec3fa25abc50330c6f25a5250ace43bc8afa973534c513835f4fda44a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.1.1-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 8f9d48205e1683b5277745142aad714887dbcded317f0502245af6fb26c4a0ce
MD5 40f91d615c813311688c361c281a4049
BLAKE2b-256 9bf6b0d14d9e79eb7e0adcf05e557337dc14c82dad9fe8ba67c490789fb3032e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.1.1-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 17473770a0e3dd9779b08c7bf577b3f3069ecc5c1890c025c5ea80bb28dbd035
MD5 5a826a106adffb61ccf8fcddd027a98f
BLAKE2b-256 6a3b9e50460e9572e2b9a3f0d9be0a5e07b3597cd4f9271d2d52845cee973978

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 67f09f8abfab21b39145407e961ed53c22b93e606e1734f014b2140d169bd6fe
MD5 3cfe88c77f9cf7fb976a1ec8856ab9e1
BLAKE2b-256 9404c6970582d071b119b023887ece650708bace24b5913816ea5da00882508e

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.1.1-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.1.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 54f5b291936401263f656d041cca9206a2de801f74f7b02b848728499a562d3c
MD5 e220231d66f2714b466d09106d8c5416
BLAKE2b-256 1c853f499581119a1a021f374fecedf9247a3242dd0dc37bc48f78b62f87f1f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.1.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cbf096e09adff803ed4e37a8b59e0b45c7f9e3a8542d002654b87d1b75ad270a
MD5 38b80185466b19ce92c8b7f0628e8802
BLAKE2b-256 b7428f5e479726d6a9cd804024cfc4e7e90d77c28f11b2d34eeb4fd05867d812

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.1.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b306b8a3d06396f1b2339c107cf0a39104ef0b5504c9134ac385dff656b6459a
MD5 0e7e76150ace726fee83feaab5dace18
BLAKE2b-256 108a259478a7cc2f880f8bff3a34a076080fec8621cb805435abae25efa85743

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.1.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 9e4f826dd1dfe300746423b17a0ede9fc06a1533b31b1a8c74f867f4d411069d
MD5 d8ce6d680e45adcb86fe314c9d37a6c0
BLAKE2b-256 5539b078a9cd65ba18647c0f57b93669215408e92d581d47f1ff9948f3fe2c27

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.1.1-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 2352a4cb662d8ef111e592e2659cb4898086d230b98c220c0743f90c7960c7d0
MD5 7bd6624c22330aae4aba786467a8cc9a
BLAKE2b-256 53cf351082055311f0a0266ee42ae621695f2faf7319995df538e8c94a62113a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.1.1-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 0560debba00f46a5931c7e8c41d02b668d1557941e53b4a9923b988fb08ed195
MD5 b2e32e1d0a73df7e5a4189b16a93b392
BLAKE2b-256 2b4694d62374afd3a13d119812c39244962a8158621bd2729e22b3a117bb2c81

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cd148ca765b4e7576f55833cab5ad65419e85ce028908cd687b14eb21b5bdfba
MD5 a0c99c12831b2feba401d0c9b3c71b10
BLAKE2b-256 edcb3a1b988c05d78c239043f23b14ee0a5c586f5c3ddb228d06f0ec7a5fff9b

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.1.1-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.1.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f541c159f9faf8e738f6fa025bcb57aaf1716f950ef80416f51f078bce12f3c2
MD5 20ae6864e8e9599c588c75979119e70e
BLAKE2b-256 ef72f249da25a5cafc35f98bc4ee7d5f86a8948ea86dd76bb7d0e4c3be4ef6b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.1.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 954e4051c0e5a48ac8ee72de77e6402e5d6ace5d5498d92c280e0eff0fdb55f9
MD5 5e026c5a7e9eba66fcbb028c18b8c6a7
BLAKE2b-256 e2eedf8952ceed6c60b447c6cea1c979b73efaaf653cc5191964f953f8087596

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.1.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 8bd8f05fd007b5b1d12e96afb7fd85970096de12fc3bf4ee8c12413ebc171346
MD5 37aa51d33a66d670bb5cddf4dbd09dbe
BLAKE2b-256 3b99d988a66a5ba946bbc9af8268416374b4fce2ff183116e1f7240c9da9af8b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.1.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 e66f35eb8045f1143bab13b3ede240bae3497d3dec529162dae34e5d478c46b8
MD5 f84983ba00df80066fdd81e1f0ae61a9
BLAKE2b-256 da7b8fef23a14cd2af14628093044436aaeabf27bff097d7fce5b36002a8722a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.1.1-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 4a34b1028f117b4d69b3fd61773e17aa4d6183bab7febaef07ac9977f5806aa4
MD5 06ee32d75d59c542b315aaf80a7aaa9a
BLAKE2b-256 dc2e02eacd0c4f8125aff12ae07667ef2d1730b08b7ece3635b982621a79b587

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.1.1-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 f66309f3228be7358ff2f2b38424e92d813a81ea899dc33d25a4cfe6ba8ba2e4
MD5 d340754238c5c08fb8c9f06d7ffec8e9
BLAKE2b-256 f08e7f9369116e1a33620c88b55249fc7ff60ed2de5e879ce6ed72eab185062f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 08ce61bdf40a8a0ab2f77cd84524beffbbed68ec4adc86566f913616300e41df
MD5 143587de183ffd55e80f1e9671785742
BLAKE2b-256 e50f3c0e35bd24c04b832e0ec7754a59115ca55ff0890e151999349c9a6d574c

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.1.1-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.1.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0d4001fc3fc1f91730be2b15c5cc5b315c20a3b761425ca5225aa1aecebe574a
MD5 acbc4724289dd3071a1ff02318702d16
BLAKE2b-256 13f0d53ac56836b5d426c3f01a06ad19b4c8127c4067cfc5f7f00a375b701c6e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.1.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bad872927582ef7ef237735ea0bcc964083769a1cc17ad34395a9ec31deba6fb
MD5 44d748c89abc664c111e6efb315ec656
BLAKE2b-256 e5bdfdaaf22bad8a3d7256c8d6ef3ffa4cd8014d108961d71f7912ca7cc0d57e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.1.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 76d117d1ff96c0a83cc751fe9f28bfdae0167b418f17f5606a9c45cb47399547
MD5 bcbb059dd0797c39f14a796d2dfb06ed
BLAKE2b-256 257ec8a1e03e43761672541d670cc9325676e75ff20e805872124e8eede03d5f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.1.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 bd71e3ad092af04c35e24655e4680830d571f8167349261e5604dc0ed0096daf
MD5 8c54f362db3b3cfe32052ea5b9e1775d
BLAKE2b-256 b9f7d9b303cab3df98b1fc4cf86de7e61eb83a53ffb6a3d7309d8afa0939e6cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.1.1-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 ae1a25fb15a8864cbed5bc3af283ecdb13cb8f61b62acfa3112c8526e0ac5493
MD5 86eb72d721d7b7253561529be33bcfe9
BLAKE2b-256 00b2fd77289efe4c4d9cef754b9bb0ccc35572f74109e3eee4f9d77fbbc1e3a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.1.1-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 61aa9f4f1cb5e2fc1b1c995d809915782d1c2f7de7db6922102c124d30dfe19d
MD5 6c1b5e8ca7384be3e5233ecb7bc18e20
BLAKE2b-256 26f70a8fec825ef391f5e0a51235f3f32b018465084010ea2739d87e8e616fac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7067ab0015ca564659ac0c48d94e1e4c66665039ebc223b3c65fb54150b04a37
MD5 721f2d42e809f3534bc28dd2420085b6
BLAKE2b-256 f87a496bd65bed0c14ce07667a3ba2e55636ffcbcc6b7bb9b324f1156d74d093

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.1.1-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.1.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b902d1232403fc8dbd8c52c9489d60c0a94a74d2093d63a60b87e54d8b0628ca
MD5 f38a524edf374c88ad9ebd44f61365dc
BLAKE2b-256 64cc4c06c784e62730f0752f2beec1a801d792f7133e8413837342848e723878

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.1.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a3c7e596c215f29d5ad9d92c976dec2ac41d19edd3bc8136a7bd4cc8db1353d0
MD5 43055dd535c938d3acd15c46a473ed88
BLAKE2b-256 5f342d810cd26965a2896200ebfed48918a2d724f8883cc17dd86452759eb333

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.1.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 97cfb41208dccfcaaa50e3b9a6e5c36cc5b402285dde071a658cdce3f1749799
MD5 c7912bbb905d0f7c0431cf6d9072da6f
BLAKE2b-256 11316c849a74c89a96bac099f83db63f3274ff3c19ba2266b7d660ff480f75ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.1.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 a4e1201ed2b8c845fefd95a2c55c9433394d9ce5ec669b6cfee70ba448a2ab2d
MD5 16a1d9120b8428153ca21ef12dee730b
BLAKE2b-256 d7c0d8cd341ad18cf724a92a30acb359ced857d1dcf92f696b214020cbe3fb6b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.1.1-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 9fb4b8a8215ada220045131447865f475db7c24e4c2f8c394ac44a0d41cfbdff
MD5 2e60652aaa7a658d5e6c534bb426485b
BLAKE2b-256 37987304c62b521e69afaa21aec4ce846d1bca7c9ab8a30904bb8922e0396d08

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.1.1-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 f89ca4bec5a3890801fa1b76b46a139798a7144011fd5b95fcc702829c705b45
MD5 5e5d4e0ccd29c522a66c66ba9b86245f
BLAKE2b-256 b4312f54d489a83c2cf260c727cc2b78e32125b0ffe65f7003bf59ebeddc52a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.1.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 01065e824957fb9acd5087ffe909cfe4cdb8f5afb71fc89623549767ff714144
MD5 09fe9690710c2c24b6e99e6259f4ad4f
BLAKE2b-256 432612875372f008a305f377ef6f29d3537af43a4dca8ab88bcdbd8b8c9381ab

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.1.1-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.1.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 28de0ae3622077c684e314c0da4c33557ab4e83ff8620b702cfa94b8fd9b0979
MD5 ca19e06889158583137c805cc3443e57
BLAKE2b-256 9c5ef3486fb84bfe802f3958312451a953c75bdbb63f38f277834e69dfc189a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.1.1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 14a34a826aa2482df6ff016785366c2f6ef7031308af6aeb09a2712d63d16281
MD5 c53397a0577ab3cef0a4e2689d15f038
BLAKE2b-256 7ca16b42b5dde9519b9869b574cd215da521821a23fadd49e6328fad841aca60

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