Skip to main content

A Python API by LUCIT 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 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 Github Telegram Gitter Get Free Professional Support ChatGPT UNICORN Binance Suite Assistant

LUCIT-UBRA-Banner

UNICORN Binance REST API

Description | Installation | How To | Documentation | Examples | Change Log | Wiki | Social | Notifications | Bugs | Contributing | Disclaimer | Commercial Support

A Python API by LUCIT 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 help with the integration of the UNICORN Binance Suite modules from the UNICORN Binance Suite Assistant GPT or a real human LUCIT employee.

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 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()

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.

On Raspberry Pi and other architectures for which there are no pre-compiled versions, the package can still be installed with PIP. PIP then compiles the package locally on the target system during installation. Please be patient, this may take some time!

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 also available as a Cython version for the linux-64, osx-64 and win-64 architectures 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.2.1) you determined here:

pip install https://github.com/LUCIT-Systems-and-Development/unicorn-binance-rest-api/archive/2.2.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://www.lucit.tech/unicorn-binance-rest-api.html

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!

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

Uploaded Source

Built Distributions

unicorn_binance_rest_api-2.2.1-pp310-pypy310_pp73-win_amd64.whl (319.7 kB view details)

Uploaded PyPy Windows x86-64

unicorn_binance_rest_api-2.2.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (349.3 kB view details)

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

unicorn_binance_rest_api-2.2.1-pp310-pypy310_pp73-macosx_10_9_x86_64.whl (328.6 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

unicorn_binance_rest_api-2.2.1-pp39-pypy39_pp73-win_amd64.whl (319.6 kB view details)

Uploaded PyPy Windows x86-64

unicorn_binance_rest_api-2.2.1-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (356.5 kB view details)

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

unicorn_binance_rest_api-2.2.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (349.0 kB view details)

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

unicorn_binance_rest_api-2.2.1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (328.4 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

unicorn_binance_rest_api-2.2.1-pp38-pypy38_pp73-win_amd64.whl (319.6 kB view details)

Uploaded PyPy Windows x86-64

unicorn_binance_rest_api-2.2.1-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (353.6 kB view details)

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

unicorn_binance_rest_api-2.2.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (347.9 kB view details)

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

unicorn_binance_rest_api-2.2.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (326.8 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

unicorn_binance_rest_api-2.2.1-pp37-pypy37_pp73-win_amd64.whl (319.7 kB view details)

Uploaded PyPy Windows x86-64

unicorn_binance_rest_api-2.2.1-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (353.6 kB view details)

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

unicorn_binance_rest_api-2.2.1-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (347.8 kB view details)

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

unicorn_binance_rest_api-2.2.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (326.8 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

unicorn_binance_rest_api-2.2.1-cp312-cp312-win_amd64.whl (343.8 kB view details)

Uploaded CPython 3.12 Windows x86-64

unicorn_binance_rest_api-2.2.1-cp312-cp312-win32.whl (294.7 kB view details)

Uploaded CPython 3.12 Windows x86

unicorn_binance_rest_api-2.2.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.2.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.2.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.2.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.2.1-cp312-cp312-macosx_10_9_x86_64.whl (405.1 kB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

unicorn_binance_rest_api-2.2.1-cp311-cp311-win_amd64.whl (344.6 kB view details)

Uploaded CPython 3.11 Windows x86-64

unicorn_binance_rest_api-2.2.1-cp311-cp311-win32.whl (296.8 kB view details)

Uploaded CPython 3.11 Windows x86

unicorn_binance_rest_api-2.2.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.2.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.2.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.2.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (2.1 MB view details)

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

unicorn_binance_rest_api-2.2.1-cp311-cp311-macosx_10_9_x86_64.whl (406.5 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

unicorn_binance_rest_api-2.2.1-cp310-cp310-win_amd64.whl (343.3 kB view details)

Uploaded CPython 3.10 Windows x86-64

unicorn_binance_rest_api-2.2.1-cp310-cp310-win32.whl (296.3 kB view details)

Uploaded CPython 3.10 Windows x86

unicorn_binance_rest_api-2.2.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.2.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.2.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.2.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.2.1-cp310-cp310-macosx_10_9_x86_64.whl (401.2 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

unicorn_binance_rest_api-2.2.1-cp39-cp39-win_amd64.whl (343.5 kB view details)

Uploaded CPython 3.9 Windows x86-64

unicorn_binance_rest_api-2.2.1-cp39-cp39-win32.whl (296.2 kB view details)

Uploaded CPython 3.9 Windows x86

unicorn_binance_rest_api-2.2.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.2.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.2.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.2.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.2.1-cp39-cp39-macosx_10_9_x86_64.whl (401.6 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

unicorn_binance_rest_api-2.2.1-cp38-cp38-win_amd64.whl (344.3 kB view details)

Uploaded CPython 3.8 Windows x86-64

unicorn_binance_rest_api-2.2.1-cp38-cp38-win32.whl (297.3 kB view details)

Uploaded CPython 3.8 Windows x86

unicorn_binance_rest_api-2.2.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.2.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.2.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.2.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.2.1-cp38-cp38-macosx_10_9_x86_64.whl (393.4 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

unicorn_binance_rest_api-2.2.1-cp37-cp37m-win_amd64.whl (332.3 kB view details)

Uploaded CPython 3.7m Windows x86-64

unicorn_binance_rest_api-2.2.1-cp37-cp37m-win32.whl (286.4 kB view details)

Uploaded CPython 3.7m Windows x86

unicorn_binance_rest_api-2.2.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.2.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.2.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.2.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.2.1-cp37-cp37m-macosx_10_9_x86_64.whl (383.5 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

File details

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

File metadata

File hashes

Hashes for unicorn-binance-rest-api-2.2.1.tar.gz
Algorithm Hash digest
SHA256 55ad1988e07defb5811018cec2d597f4734a0332b5c7894049085df164c20347
MD5 2ce22526b3167783401474c4989a6eb4
BLAKE2b-256 7b2624bd72e1070bcb57f437dc43b13621254f5a581fb32141d1665e62d4586b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.2.1-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 b447bd13a2824ba4112ff6957bd3bc1bf6c7cf4ff25f5a2a96cf7aaafd72db49
MD5 9612d55c136dceddd03e70efeb6d5718
BLAKE2b-256 b4aef1d83f9546195b0cea9ef9d5c48535db4bb612d85acea9caf286e6b4c2bb

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.2.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.2.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 6cfbd24bda6c9824007ecb9c0a453092cb5e206c89be6b14b491d074bb8eb5ec
MD5 a4ce8bddd1dc96c81524409a2eee4717
BLAKE2b-256 6bdd6c2b6cc1a6f2cade4604bd043418ccc31ddf87faedf793e7443465b0eab8

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.2.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.2.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 24b6757290990a33c1747a721a21aba9897dbf8831f9344fa3afc535e7119117
MD5 9341452d5904aec5d619a12ae3fd26f9
BLAKE2b-256 03d922d175cfde7abd5a2d6c6b00a685b9f929ec61dc9a58cc163e16d262dd91

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.2.1-pp310-pypy310_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9a2d5fc3ed7296acdeab634224bad3563798c7374758529112bf592dcc4fda0f
MD5 9d900407ab7a2ab7d8b70ad6f4101f07
BLAKE2b-256 585d79a50f03107725e3614200123a82e22bc6cdf58a4e6224b5b334da9a3541

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.2.1-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 13996ca8b38a03e355a25a07042f004fd74c58f11ecabe3974f52946766624ec
MD5 62f86792d26b7e4a4ea430c93cedf122
BLAKE2b-256 10a0b1ea49d6ca23a6c714098c9a1501917c2073a5efcad955f489b9a5cc0827

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.2.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.2.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 3c952de2ef357fd9f6ebd031084d3b037a9bbd7e0fc4d547ec08eb81719968c0
MD5 9eab6d41ae0a9db543d5278f4f283891
BLAKE2b-256 f5a39565928f3d74788f225c8352a97eb5382d3f6f9364382e04e4f289a9bc0b

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.2.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.2.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7934048b165ef99e24968789024d6f78312ed78ace314be4614ce986d8c92f61
MD5 f291c3a76bd8fc28aed99e0537b4f680
BLAKE2b-256 9a50700531ea951439ada5137b2bb55dd1f3c509d89a935e442b5c48610f8c8c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.2.1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e48f71671864d9fca9ac26de28cfb9a29b89d13d0f8e9ebf292b078364c127ef
MD5 45a030f42690e8b019d21804fac5b7e1
BLAKE2b-256 c9c353709a2c5d447aceb58f0d5a64558d6f4242dc1cdf5f4fbbe98a7458a19c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.2.1-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 4576910a8f6a87d620023375d464d23c0296d92aa17dd0974f49d855c6f1deec
MD5 b88f78dd294e0e2e1420045c3675530c
BLAKE2b-256 75eabdbb0c93c4d7b6515ba351354726338785c7f9f72eeaa1bd057d93737915

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.2.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.2.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 93b2f3fd8ac07837bcd25657567e1190d83bfc8e6ed20ac3e2bc51853a8858ee
MD5 2b4af4415253fff899711a7e37a2d3d8
BLAKE2b-256 979a92234e79b3f24e14aa858f57fdf1c6572f3a681702f00f27ef13ba60734e

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.2.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.2.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 915c989940ef850e8efd5a9440ff2b46ddb14a1716a6270ff16d9ad3b13d606e
MD5 5e8cb8005e43fd8e20e6fcc9f2d8db7c
BLAKE2b-256 ca344f635fbd77a97048cc5c832b6e06a928305a355e91f839a9563b96dbeb17

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.2.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1f68ee4246cbc24eef1e8ee8c95c68dad3b0192f857be3aae184497fc9d98e84
MD5 dfbb0ab3911ea1ec4a040b3e41f3e8f1
BLAKE2b-256 df4d6b6a20eabc621ce6eb47d8fe32c7fe72d5230ecf79d63e47361ae4ec6efe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.2.1-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 97da19fc7f646361ca8503735c7148d5298ccea04ee8823ffc744c91fdd01bf7
MD5 8b70343f58eaa6066026e72717aa43bd
BLAKE2b-256 50e61bd72a338afa317510741612da5e5752b59198355c166157cb0d342cefdb

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.2.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.2.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 8ad387242e4db0df6daebc835f0ad090e9c7f9dac858cf28c56991fa43011840
MD5 a28daed66e92518165826b0133583d21
BLAKE2b-256 a30c700af1fe9a0d032878292d1ef73c427a9eff73e63fb3df8ded54f7620a51

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.2.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.2.1-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 80f514b7ffc673a03d586fe27eebbd4aa3e42434b2b293c1ba4601824d452426
MD5 bfad5dbe2e2bcccaf76bd651371a18c2
BLAKE2b-256 b3446090b1ff6a940aa9c540cec808ae04531f4442b7f09f3b169d8b79c4bc85

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.2.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ab4beb4545ecfc3409ce42628305636f45631a86e5e1bc447aae7a8367feb97a
MD5 08d18abf23401a3bb6c40c5d7cbf87a1
BLAKE2b-256 dc1fa1d56b89f0fb949fd99afb866249f158211193ce79698e9c7f4fd102c7cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.2.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 54f60809a629827cc996e5179f4d50ec6ed938983000988d75cf22408ff321c3
MD5 ee3058fa112d22cd218a4074207777e5
BLAKE2b-256 05622305fa888c5b21399e51da78a4c7ce54cd4d95f1bc392e134a1f374568fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.2.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 11a130b69295600d8acdb0949aba2a876aca15144e41a8f8319add71d81d061d
MD5 3c5dcf3ba41e6df71d36ac001c94d64c
BLAKE2b-256 d7e335bd13eaca236d4f5ea716ff49d45cb329e332c95c9f043c878b0ff89892

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.2.1-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 33d57c6e59e6951435f9ad1405aebb6714bd46b49cd9f570e266e1958f461a00
MD5 8493e802eb91e2eb477523219a62e556
BLAKE2b-256 33699d351f0b88d4b919a062745f822cf7afab71e3dd2a6b144ce85312e30c45

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.2.1-cp312-cp312-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 b440a6ce2b43d8b23688610b09c3bd01337ef0018375809feddbd54158d978a6
MD5 3fb8b111decc6bf9f12f8a30d28d3806
BLAKE2b-256 b39eff5d7716d9cf48e08ecc024e64cde133ba7be4ec8c00bf57e7b71ea8530d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 69cf17d59dbfb1928286954b92d466044c0d73e6bf850c559e01ce57fafb3377
MD5 dab68c3da005d97a22d11fac31da2b3d
BLAKE2b-256 b71ee3b7fc8fc867557deecba459e932d557d89b3f5a3262887868eddc0eaaea

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.2.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.2.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 dc2f8006c5ee2ceea05fa3117ab733cc4d5db52b92f6246a7d7590696e0aab11
MD5 28a87967e8a68ba4fec9c4aa4d78720e
BLAKE2b-256 70ba7d87f3e40d9117a50d54810ab5ed41528613d0ccdb28685c7c3d15ea7920

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.2.1-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 82c64390617f9c61d50849fe0fd41daaecd6d911efab8268b94295e8ca2dbe11
MD5 be4df1b07298f975b4befbf68863bce1
BLAKE2b-256 5739921a1597c097b8d495ea77295be68cdd3e9007b88719d4d5928cdca2bb9e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.2.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 84f70ca3b1b03f5f914809e643aec164b5d23cb438a15e4598fb5eb714be7a25
MD5 d9d292d1498f21beaf3137454cc58dc5
BLAKE2b-256 3b56762fae79585e352d0f5f35cb0cb037086c7de45a3e8268b46259d6054a6a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.2.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 71e12c0c0538b8a38be492ede27dbc34105836107852e1d643a3ba5419708d5a
MD5 7bb5786f3d7bf4302c72b2d29fd4c708
BLAKE2b-256 04935e18f9cdf47e7f2c2cda2c4183ac1c524b62d6b44ec3f48b420db4d584c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.2.1-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 03444c0d4bac5d7b61057f82d1ada305527c88388b65634866b879ddc6f7b54d
MD5 5e05a1d0175e96593e8489b6f391db4c
BLAKE2b-256 37d1b2b07ed6893891ad7cf68e6ca03f48d31dc2e3dce294e6320b38e98e4204

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.2.1-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 15ef28355fbcc1984681ea4dcc0fef46859d593d9270ba5e0d7ceb726c641a30
MD5 f937a8a7eed982e7d3cf1bd1abcdc3cd
BLAKE2b-256 86d2dad7bdd22c481a48de08b278779678de3c8ed09b32c68ddc592a688498a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 56c967944f3d1f06c9f68cebebe9ee7d3d48afe6b9e55b2a462f16ce85bed388
MD5 474225827d76bf10f19f9ff1361bd8ec
BLAKE2b-256 ae3e390b558f9116a4b18e1365589bc6d9dd0b409c258c295ef1f91f4a07cb3b

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.2.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.2.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b9136b16d2b869e7ee039222ab896f8593c9fa44672b68109c807ffe0f08bc90
MD5 e676334849f38c04433477f2bcefa0ce
BLAKE2b-256 4c2265c01ab9998b34c86b9c2ce5550d64840b17acce6e19758f8230258bd338

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.2.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c956438a7abc4fbf7b1db811fab653b25f3e979316d7f6626472698bb2ad9e54
MD5 aee51c50dff597febe5cc9d218ed72e9
BLAKE2b-256 eb9cd71660611c85b5c5c6f9878fa1dd90734b289e95dee52eee5634f3e66177

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.2.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 82929ea413790c95f10e9bf31618aedf28bf1124c6138f8b1d205f66c2b0729a
MD5 c7e1f058304547fa6dbaadb5c7737ee0
BLAKE2b-256 227241b451dd44c38fb73e90ce514d6636a92c5f0215bece7bccd460a76f523e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.2.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 7eb12323545478ecf3313251757de7073687ee5069bfee9f24ba509ab1272285
MD5 04edb1462efe4d57dd287f7963d8dbc1
BLAKE2b-256 730c845ea1691110b99976b7c2e4607cdf1058722d8dc0671a58ea0ca1e4c8d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.2.1-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 6ae3ed3a723c7f61b9fe55b4f86080b12d07f77ee09beacef9b6077471b148ef
MD5 bc589f98054bff28428a51332cb89eee
BLAKE2b-256 fc02c44bbb27361bf9c5be8be08480c99a02d87a08d4b959f0595747b369a97b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.2.1-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 ac4fc060501c2b38b49935024ab735dd5419d70d39f6c10561857e479eeaa0e3
MD5 ab675607335febf160296638772b0978
BLAKE2b-256 17ea8ab26d5fa028d150a1919beedae95a2ed55fca5dc5a2ebb57aa8b0d209e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9f6df465a4bdb249a553c4ec00b0a51b9faf76ff28cff5ca57da4564f3621a2e
MD5 fee2bf374c397c9fdb79d896620b44a5
BLAKE2b-256 979655f57d1bca31d6c685158eec1fe89d9a74468d52ddfa168453efe47f028f

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.2.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.2.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4f9657744170051d8264400dabd585fc7cff0d5a6993f8955ba6d2ec1145c1ee
MD5 c08cf18deec7d715302cfd9f130d4d9b
BLAKE2b-256 d8a346dcee65e058f23906e96ba2c210eebe558b3d0620007143d14bc568a220

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.2.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3ba235eae534854d410acd1780ec2afb05ce80870892d52c8d73a2102355a954
MD5 c5e2fb4927a37c69e3a6fbec5b80855c
BLAKE2b-256 9e829544f7a7846c7a1c362e0299919411d2c4f856568bc2e500aaaa5833a053

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.2.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 62313f7474c3984f80d81f794ed511ae7a18403f0e1c7c3ac2cd0be4a8adc50e
MD5 ffd7b26407826c0e0be76fbd1576dc62
BLAKE2b-256 7cb1f63cf3343ebe683dc6793480737726578e9efa05c899d7df91aa522925ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.2.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 b0f9fe5e25835a7c03cdb4bf6bf22a43f66eb056dce1be067b3b3ecbb1c45ebb
MD5 7a8f2505f33101a72d9a1779a36a1060
BLAKE2b-256 1b8740993d719247a9a930228be302ac5275debc37005033f46e75337c72e0a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.2.1-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d409e9319d1319a4e707ea7e355b512f4077678bfbc7b030ef4cbbfa4092b266
MD5 16ed7846aa3697d979c0b8acce8d371e
BLAKE2b-256 228550406b9b343609e860e34f87d1940c63f46d930f15489e6ea4f2c3c0f088

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.2.1-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 7557717edd30e6b6188ae664290a5c76e209403d4160a4e5732183b2c8387e58
MD5 781cb714faf05948726140d3d2712bdb
BLAKE2b-256 5567ab8cd3a15c08989137fc7548628cb4743d89802a0848b576edaf0caba501

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 91a5941b4a4de28ac100920ecdfa60be52b29c0c2fa41bc2cac6bf93520b7fe6
MD5 c0bae685d4024214e002d27638ede8ba
BLAKE2b-256 21150ec8034840680728781d7e6e0cc5d9f4beaf87f8a6d4f7f93e42aa4949c5

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.2.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.2.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5d7ed514b4e9a396f4e211a27f27ed13b714cd9896b2bdd5bf81e6c2099ab695
MD5 bd04ba4b3b103beba36697407fc0fcd7
BLAKE2b-256 0e830f98b79c87522a6a138fb33919ba1903f8899e6460d8443a266c70151b05

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.2.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a215ab359f9841e5b4e3e349bc0b417ce462e6ccaa1198769a458224b7453eab
MD5 a8eba130784d34f3c0c48e2bf8e552ce
BLAKE2b-256 0ff7da42deb904afc0fcce393b4865c965822840237405ae1a6b071c112996ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.2.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 08fe880ea58a85caaf6f06143c10a954034783f347d183303f1fdd391b64c177
MD5 80a39366e29ec7a7d874cd0902d64a97
BLAKE2b-256 1f7524666f7b9dd7cc1b30a2f34b97868c50ed1c56bead3154826c099c2e5544

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.2.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 7ef07138059f58b4cc392cdd6c97cc2d1e5397e68b0b677d51f5e8c87358ab18
MD5 16f5d52d09fb0934768d63f946433d04
BLAKE2b-256 18282900eee6ff65d7f72a56c85566a2ada424ae3e97b074d1aa85e3686fd8c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.2.1-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 a05ea4e264532d68e2510b3087c8018ec1a76001922c65db3c3b7bc5d51bc6ef
MD5 3ac452a7212ea3ffb9be5ed8c8cb21ae
BLAKE2b-256 1604abde10686572aab5db32d8fdfcedd8aeb5d40a27fa5c11ffe22475bbb20d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.2.1-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 1c0b671d52aed669213ce61b40457d9a8caabe1517aa724bf386654212a00829
MD5 dc3a8f89e18d0ad547a0178c8986415e
BLAKE2b-256 4bd195ccd1d1d3243788ea2db29d5a44ab921cb1da1a69964cc5f7451a53bb84

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.2.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9317672372b60b2d3ec2c95c9fc1b3fef514f5f687e832384f4f0a2550fc9b51
MD5 9dbac3f0234b8c8934090027ee7966d6
BLAKE2b-256 4bba92906432c42cd957aa4de64c17b127e8d407849aa98c90dcd5346cc39feb

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.2.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.2.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d5a3098c5a5f5249790db8f9da99a9af08cf2cc3cf12860ef656671e654398cd
MD5 caeb9e25a86e69ed7a6de575ae0d8132
BLAKE2b-256 a67e9846488370c96c1f2a7a298195ba7f50a0f9412cdf5df8afe6cf6850a2e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.2.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 09bf08924e2fdcded261180eee617ebed0077aa64ef2b6a5d93622841c1ec180
MD5 c401220666399e64ef80778305022a6c
BLAKE2b-256 4a6bf0c7944b6bc3ec82f4791dd9b9f631bc1d82044ca3f914b911798276ea2e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.2.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 d3abc19262795ef9cb5cfcd80a6212b748b5e8e401a79b9a737e327b30221446
MD5 06fa977eb79722443d7644ebae63c4c3
BLAKE2b-256 9efbde49753af1a2e468d1425978ad94026a2794c19575a8bb10d85db9fb2c00

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.2.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 b0d9a29ecbc449522b6799bf74ff00b5b004ab6c7daef67cb07f16f57593e2b9
MD5 01eeb57a8833da159202ccd2b8b9ddd7
BLAKE2b-256 e999b8cf79339407b4cfd769767cecae071d2e3593a67240134e39d71ce2351d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.2.1-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 290861b27d39556cbbf79883598dab93731533657c0c2bbe33c2197563138704
MD5 702593ffb87e8f94f08415ee99ca4123
BLAKE2b-256 3163ffbe06ed1927c456f0bed515f8154dc0c2fffcc102c4054278a80ff2621f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.2.1-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 ead8d13556a64d7f1e3a556e276c8cabcd258752481aad504b8b10677e48e54e
MD5 7026e9410069eb99881c467474dc7230
BLAKE2b-256 2c4241a62c6b6b476a7a70beaf3825c73c957c0708da17e5808cec87a796f0d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.2.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 27bc1cd4337a2fe0a3336d8d50f00a002b346e43f8e589220b241dc3e7364899
MD5 d8f2876c0fc9034b29a4e4cceebf7af3
BLAKE2b-256 23521bea61ee304d808f32092432933e72baf6e474d34967776448a318faf339

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.2.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.2.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 571d6c6e62e13202e964859dfb5a3c3dd2afb711b8274adbfbb974bcdbd69f70
MD5 224f29d63d2e22cc5409de059274ffaa
BLAKE2b-256 abb139020e27e269fb784067a035152ee2b363df7a35a710f0d50087972e34f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.2.1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6343d97c6d764f77e81678640613b389e42889f1c3392c78bd2abc4b66fed1a0
MD5 3fa6e02d51002c8fc0ef164dbe7ae195
BLAKE2b-256 44e5bfa302d27c1a919e57d29339718ed098602815e3c1e270462146ba31ad68

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