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

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

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

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

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

Conda environment, Virtualenv or plain Python

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

  • ./environment.yml
  • ./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.0.tar.gz (520.8 kB view details)

Uploaded Source

Built Distributions

unicorn_binance_rest_api-2.1.0-pp310-pypy310_pp73-win_amd64.whl (318.2 kB view details)

Uploaded PyPy Windows x86-64

unicorn_binance_rest_api-2.1.0-pp310-pypy310_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.1.0-pp310-pypy310_pp73-macosx_10_9_x86_64.whl (327.1 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

unicorn_binance_rest_api-2.1.0-pp39-pypy39_pp73-win_amd64.whl (318.1 kB view details)

Uploaded PyPy Windows x86-64

unicorn_binance_rest_api-2.1.0-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (354.1 kB view details)

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

unicorn_binance_rest_api-2.1.0-pp39-pypy39_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.1.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (327.0 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

unicorn_binance_rest_api-2.1.0-pp38-pypy38_pp73-win_amd64.whl (318.4 kB view details)

Uploaded PyPy Windows x86-64

unicorn_binance_rest_api-2.1.0-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (351.6 kB view details)

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

unicorn_binance_rest_api-2.1.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (346.4 kB view details)

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

unicorn_binance_rest_api-2.1.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (325.0 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

unicorn_binance_rest_api-2.1.0-pp37-pypy37_pp73-win_amd64.whl (318.5 kB view details)

Uploaded PyPy Windows x86-64

unicorn_binance_rest_api-2.1.0-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (351.6 kB view details)

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

unicorn_binance_rest_api-2.1.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (346.3 kB view details)

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

unicorn_binance_rest_api-2.1.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (325.0 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

unicorn_binance_rest_api-2.1.0-cp312-cp312-win_amd64.whl (342.3 kB view details)

Uploaded CPython 3.12 Windows x86-64

unicorn_binance_rest_api-2.1.0-cp312-cp312-win32.whl (294.0 kB view details)

Uploaded CPython 3.12 Windows x86

unicorn_binance_rest_api-2.1.0-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.0-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.0-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.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (2.0 MB view details)

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

unicorn_binance_rest_api-2.1.0-cp312-cp312-macosx_10_9_x86_64.whl (403.6 kB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

unicorn_binance_rest_api-2.1.0-cp311-cp311-win_amd64.whl (343.5 kB view details)

Uploaded CPython 3.11 Windows x86-64

unicorn_binance_rest_api-2.1.0-cp311-cp311-win32.whl (295.5 kB view details)

Uploaded CPython 3.11 Windows x86

unicorn_binance_rest_api-2.1.0-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.0-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.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

unicorn_binance_rest_api-2.1.0-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.1.0-cp311-cp311-macosx_10_9_x86_64.whl (404.4 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

unicorn_binance_rest_api-2.1.0-cp310-cp310-win_amd64.whl (341.8 kB view details)

Uploaded CPython 3.10 Windows x86-64

unicorn_binance_rest_api-2.1.0-cp310-cp310-win32.whl (295.4 kB view details)

Uploaded CPython 3.10 Windows x86

unicorn_binance_rest_api-2.1.0-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.0-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.0-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.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.8 MB view details)

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

unicorn_binance_rest_api-2.1.0-cp310-cp310-macosx_10_9_x86_64.whl (399.0 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

unicorn_binance_rest_api-2.1.0-cp39-cp39-win_amd64.whl (341.9 kB view details)

Uploaded CPython 3.9 Windows x86-64

unicorn_binance_rest_api-2.1.0-cp39-cp39-win32.whl (295.5 kB view details)

Uploaded CPython 3.9 Windows x86

unicorn_binance_rest_api-2.1.0-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.0-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.0-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.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.8 MB view details)

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

unicorn_binance_rest_api-2.1.0-cp39-cp39-macosx_10_9_x86_64.whl (399.4 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

unicorn_binance_rest_api-2.1.0-cp38-cp38-win_amd64.whl (342.7 kB view details)

Uploaded CPython 3.8 Windows x86-64

unicorn_binance_rest_api-2.1.0-cp38-cp38-win32.whl (296.8 kB view details)

Uploaded CPython 3.8 Windows x86

unicorn_binance_rest_api-2.1.0-cp38-cp38-musllinux_1_1_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

unicorn_binance_rest_api-2.1.0-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.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.8 macOS 10.9+ x86-64

unicorn_binance_rest_api-2.1.0-cp37-cp37m-win_amd64.whl (330.7 kB view details)

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

unicorn_binance_rest_api-2.1.0-cp37-cp37m-musllinux_1_1_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ x86-64

unicorn_binance_rest_api-2.1.0-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.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

unicorn_binance_rest_api-2.1.0-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.0-cp37-cp37m-macosx_10_9_x86_64.whl (381.9 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

File details

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

File metadata

File hashes

Hashes for unicorn-binance-rest-api-2.1.0.tar.gz
Algorithm Hash digest
SHA256 58889a612c08fc1617ba4eb036ae2b0636a1957f4b41d9988d79c11c5c3051e1
MD5 94253d1c19e6d74e2c736fc3dfbcb74d
BLAKE2b-256 83496ccada18628dbbb1ca987cae190e0d6f8987581343f9655e0dbe8a77812b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.1.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 2aeb3cbabe2d8a2b90a498a9bbc2af56823090105bf555032eca16512cf50b08
MD5 b06c8b34c1c976b25361bc597f1aa003
BLAKE2b-256 416b427d3edc6cb4cf7ac31bb000bd662d36698381577d88d05ac68079d22aa0

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.1.0-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.1.0-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0f951c8395e713ec8124073e567abc65fd990aa48d370a775d9059a0325028d0
MD5 1a4144f1a08a26eb6dc9c7a52085c1f3
BLAKE2b-256 c6d0c93eb950824baee31946a09e465bbe4a52af18921cb5393f213a42958855

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.1.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.1.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 236b25c7cef0a2b3eed804fffde8be655eb7cd8f138cf9fdcff5db141a7a12cd
MD5 8afac997453c8615a42c6bebc8f426b5
BLAKE2b-256 9c3bbb4bf3e68b52d543dbf906fc76574240d1e002f9ed7dc85417ae2ed4e5cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.1.0-pp310-pypy310_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7fdbba1faaa639a164b26f1fa6924f07c3a67a95f021ff80dde5459786f274d3
MD5 2c4aa2879d9773992dbd906c8d7257f9
BLAKE2b-256 5d7e39fd5a2abe41f55c847074b84216c1cef21c9cdd806fd905b8fe4b478bd3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.1.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 7da6c314cf45533db8eb372f0dfe5af5cb076b81283c5d5707bd1bd639d675f0
MD5 121ec8c6e53788911c275c9f7cd3de40
BLAKE2b-256 93f217611c3487ce1bffe6e6ee2bc9574dbb8de7f2d82ccb66477ab99fddf3d6

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.1.0-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.1.0-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d2f31ac175a583ca33765aa449a2abac6f9fa97e13aaed8f7e0262ddbd977f30
MD5 c5ccc0c33792cca1e3d3e6d1cf991514
BLAKE2b-256 c6c67ff9305b6974c6bfc58b4f49be3856b8ba149e452922f98c913cbc085164

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.1.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.1.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 571d3de8835d9e3b8ceacbc21ae61a69c6c09d70790e76320020f4cf70f6564c
MD5 1da26af3ecf4324c203495fe46c7612f
BLAKE2b-256 fcb662245f628fd979bb8ffb17ac60139e2b00f14185ec2755926778321fec28

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.1.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ba395fdec66c97edf7f76a7c4d76d5c023b1bc5e95590bbdd176047b7c7604f6
MD5 4ac4f18975d7c0bf382267a1722a03d4
BLAKE2b-256 ed3c1dbe43df04fe5e5c4020da66ba53810d175d280bd997d11f381a4cb13df3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.1.0-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 640a82a272684e63e9a5697a7f867cde727a782a4e258e297e65d150cbd859ef
MD5 fd8fa5d60dbbd98eaac79b2cf50832a7
BLAKE2b-256 41db1723950c0eb98a3bc044b8c9e25cf80e12fbdee5eede8996a8948a14f342

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.1.0-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.1.0-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d120dc791d6e2d4ba04d39ed67d9df7f4ac1085520c575d316d2d89990fdbc10
MD5 48c8daa6ad93e70ceef040c822571f59
BLAKE2b-256 99677db3d580ea66657ae01cd4f8c6d84ed329309df83c0ed6880493ec586e96

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.1.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.1.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b60f2835b9367b6199c0ac81db734a392780d28c48890053a883c1b3db6da834
MD5 ddf0c21c34daa54d115d9dd01a5fc7e2
BLAKE2b-256 85b744700187eb1449b4526c436cbf81040a011b21dcfc46db98f03022c6ef2f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.1.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0803e9f34f8bb0c7fc7a5dc7711bfb5f15f0e4955d3fdc89817a472d5678387e
MD5 25afb79c9e02cfbce8591840b5e4dfef
BLAKE2b-256 57d656d259bddf5b99dd5487fe294a70db153fb8ba0f2203510fb7aee6cfcbab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.1.0-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 a49c74434dd1c77836e9580100e0a64fd0dc4054d2720a94c18cf7656e3fafdf
MD5 508da8cba38ede26ced569e96478f4d7
BLAKE2b-256 399db5f9f9133db6bb29477de6ff395ac29bca9c7de5cf080aff35af4fa094c8

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.1.0-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.0-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bac8a54ba4abb27dcfe1e7ea56f5ea7d13c9aa7dfc94d153fd2fe82ab377f0ed
MD5 5fa6cd31c5d285c700386e1624d9271e
BLAKE2b-256 738f2de50a1fce8a382df4a8d1695804df3456526583bbb6a4442aa129687e5f

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.1.0-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.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9d42bf36c13627ae28f01d3bcbff95d6e8e43e72a2a4d8db301dafdb3c09f55b
MD5 0e627952109e7ad375ca95d1671e654a
BLAKE2b-256 1eeef45ed117f2a47d4fff017679db09616809f820056f4349b1c4155e3881e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.1.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0f553b78724935748027a2543c781f251bd08dccdbfa783f738eeaf5761317e2
MD5 e0f9ebb5fa917895ced9a9f5e4c10bf6
BLAKE2b-256 60f3d01e12c5cf7a87a46a592be3858f1eda3e3b7ce7d856f5b25d69bcbecd2d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 7c3c31186666e59da95752aa9074717ac98b0d6dec8335463cb922d1fedcc777
MD5 84ca72a07efd652139925580db05a066
BLAKE2b-256 f5405253a4013536df25c0f2f4079574c35c2deec5d472fc8c6869073dcfb61d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.1.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 876717d18f42d8ca3ff31b8273a8320bc1bb7a1690046f315e45342c739590bc
MD5 9d45ac973d175f8f6c6069cee44ac76b
BLAKE2b-256 366a244e7e808fdec757f603eecc6caa2e3320d7740b9f924e037fa346879049

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.1.0-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 fac829e7b5115d2502bdd7e60dc74029d0991dd535f59a6f4c55e86887893d42
MD5 0db96e141482491862eb6f36b6e2dbb8
BLAKE2b-256 f9387ac160054024ea06256b50303a1de53dfd9c338266a185d36bd19ab1fbab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.1.0-cp312-cp312-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 fb6f14269f29bd8585d0657acd36a7ff41bc4422d2f30b98272854e718d53d1d
MD5 5f851e95a7ea4863919174f59f69dc87
BLAKE2b-256 309165789857cf2a0434f22ade04a1ca06a7f920353d4c6e8f9401679279f82a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bd9b769d69c7b12e30f1d679b95a27da6a54357bdbb128f8181fd20333cafb44
MD5 030ad3e4ab54db034ff4ad433ef4daed
BLAKE2b-256 3e50812fd19f30f90371621a365419a6b5c4597f1d88493e7b1c54f126daa0ee

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8f9c35d724baadb58eba3aec254f76e069116fcdbdb8b2df15b78fbe400100ce
MD5 1ba55a1a1ea50828e14bb3fd074bcdf5
BLAKE2b-256 865cdb4db41d68d5780f2164918ee1420ebd5c9d8761704f7172bb34a71e4247

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.1.0-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2144fa7f5a4b0e4d581e9ad81114e5dc56b0c01c3d76fbe6d1cb8aeef9952ccf
MD5 ae9cffe2155ed4b1521de9a850880d47
BLAKE2b-256 c8b1ac1a48f0c6c9ec898f5a2d331dbc1a78ea1034fb8ac7fa77cb13d80208c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c693a3cfb5d7b02dcc646d3c3d1a44337e4ac76109c7274df7ef5208899cf101
MD5 a2034b452e5f2f912852e0021ad4c6e3
BLAKE2b-256 444b417ee305ff92d415e4409d8d474738d9b1c480a3428cccb7cb0a09f2f04b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.1.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 6eacdc48588980d70d2dd627eab0a3e7a6bafab7b905e9c17349c11dd0bab980
MD5 bb96b6d5980fd9c1291ce20314f77685
BLAKE2b-256 c1b7f2e3e385e2e2b883dcd88059c8653618d380ab1f5e0704acbe60125087aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.1.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 dfa5109750470944eba1e9b64ade978f6b8f312b676a62c335baea23152688a6
MD5 f7a5f6b01fd2d335038c787d4add5944
BLAKE2b-256 b04c2bd76fbf02f06886e85a8837e0eadccb1d41ac61a2dfcab679f87d2f8e77

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.1.0-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 0cfabb0a8646afc91d2622451fca0a4b574259551ad0962e3c4ceed5564e710b
MD5 435d2f01b752f4f5866d80163b0a4047
BLAKE2b-256 4dc8f163055da812321d5a2751d06af76ac2796fbfd2d4ed4a96864c0a429720

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8a9d5f5e03635fe392c91f9f658a056adedd1f8a360648481808cdffe659b78d
MD5 b19326d5c725c9d3e2bc085ff34a67a0
BLAKE2b-256 886aca80da055b83f1476a747fca0ac8a083814d12911e85253fd9c52ef83077

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2d4d33df06102e34bb35ff2a45d84cfb9d6a59f184498b028c968d4f93c18fcd
MD5 f920ed72a0967a6a98d5aeb87082d764
BLAKE2b-256 546e32761c7002d761969dd8f928d82bff7ff10b4677b8a8004997a4905f1546

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.1.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 42ce207476997be4f2d71ecdf809d174b18accb7e32229d99004d6c9cdb449c1
MD5 f379ad2573b81e09274a58a40e0a526e
BLAKE2b-256 f7f4d21ee3c08ce7093c8e6e05b6ff830126e64908385b86d175aeffa0f4b666

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d6309ae64213020f8a7b9ce0e2a8e6223782772f3c50bcf584227d8fba451e8d
MD5 f9d97e6dbd138b6098c6f2e0cb9d9da4
BLAKE2b-256 c304b9cf98c4a62eb5cbea7ba2de430907aa69c5934f824fc073808d6afc8bfa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.1.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 756abcd13bf735f2787a295aad2db0f1676395654afa2972401143ae6b9ac281
MD5 4de66638bfa946c1f0e543a551089f61
BLAKE2b-256 b69f383e4b57301280d9f270a4f6bf6e7f95bc5d99ce16df32e912580904bd27

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.1.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 30c98096736cf35d7b93718a6121db2f952f40b0d07b37f5bd5b78923d74fb48
MD5 84c3831ebe775fe82ca50e859c63f396
BLAKE2b-256 3f2d7bf675172580a948cb6a2385e63470653365b929324ca0a377c9e7c4fb3b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.1.0-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 5c175514eddc4eef3b4d520906796c00571c3d633e1a4d0ca78f611ecbeb56d1
MD5 8ac533748303aea5f753f99f1083b0be
BLAKE2b-256 d66de65e634769e8f007c6fdcbeef78effd61f21ca11c6c90a58c670ccaca144

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7884bfe6227f249b84c8d1814a90506bf123f69457467813011a1b68a447aca2
MD5 c6de97c1f801365cb3935a4b25149a6f
BLAKE2b-256 df9135d2831f065317f909df2f7358594b8192451a45953c03d711e28b7b46d6

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 648df4c322cb92897cab82aa126af1ec7950a5509b11fb463143d140580eb3d6
MD5 1cd535cc481b6e42373cb5767ef6f7c3
BLAKE2b-256 5905e7ed017d9e91dbcf48de4898ac14d3f683c1ef9e2cdd4322ff19e9f9ef87

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.1.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7c033016b1454767a1a410e08d6bcff1fac9ac154cf8e2c03e738f38d8ea9e3a
MD5 4e8358bcb11c5f9577446d7524cbd7e9
BLAKE2b-256 26e41b87cb9b125e9c3f3d0764f163d0e87460102bc4e20b95df48c4a5a69ce2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.1.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 b99ddc33e93a040350f98651ce975fbd24fc4961070607c2d13619d6dd1d1d01
MD5 e1f237112e38f06fc36ba2cded36c214
BLAKE2b-256 c26d78e2a7faa6bb1ad9dd9566ac54605788b148c924165e1d30c0c9d9f3d345

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.1.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 fbe44a6d93dc7e29fcacf9803d28f7a7522c727483d18243418c434adbb003f4
MD5 f9cca88063494078481e1ba19164e2d1
BLAKE2b-256 99e6862c1bc80df602d2c6227642f6b62011e21e60c31147286b936ea271df39

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.1.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 77f8baa8809bae495a63aee52d0dad8f11a5c53b2e22f467d68a2135a25347cd
MD5 b763844fcfefa46189b0bb6438b573f9
BLAKE2b-256 74fce0fa1e92cd2d9a4bce570260989abfcfc3112b6de1c9d9a344653a8432ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.1.0-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 e6b24616b642f32fd0ee982dca0762cadb02d2f19709f4a5d30a8a01e03803d7
MD5 cbd1f27dcecd882e9c822af7785df26c
BLAKE2b-256 01802c4cd511c54dcf68228132218504724b26fa10a5b255d87737ce619c8c1c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9d3e71aca541c7cba7abf894dbea4ac06087b21d7e5e3d1a21ae1fe690742c94
MD5 d118f3143eea983488e8c0288430a253
BLAKE2b-256 aa3d32637a2ad921014b4b8450caf68a1cd327abe7bb1b4b1b1d586e57e758f5

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b5ef38fd9fb8bec7ec56037175dac528b08f0df82c0c03fa198f816a3d9322fd
MD5 b3e80b937e66b7f918f02ac795fe566a
BLAKE2b-256 f8662829c1878693225ce8a646d4dd2adb00f11b52fe5e04f680af5734bd1ede

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.1.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5c15579782a60e37734a1019a9624af09a893c85541fd2e1c2554efceaa1f7e6
MD5 e1bd03444c33c8bdcd94721b5d07b01f
BLAKE2b-256 6b21a0d9129311b448467fe7a9fa5314b061179259bc02570a3d329e72df2a8a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.1.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 0cf806c55f250f2d73b55747554758adb9825a5bbbdbe296058e0fc075335fe3
MD5 88f9bef870cc2da41b80dda787e50cd5
BLAKE2b-256 84fe59811eb0964dc77f1eb547980670ad333f8805b7411ee0a0d1e2abff6985

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.1.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 6e7ee5536476be74bb544dff4840571c4400390420212a9175d50389bcfc7bd2
MD5 9c097e0c359425b8c5e65209bdf2929d
BLAKE2b-256 febb59c8a8160bda90ff2d00c77146c65c4713dfe7ba2e3548395d0990d5b665

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.1.0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d93747537d9ab27931b267b381d884d6f20e3fccf4ef005abfc6836c6a2a4648
MD5 4bc59776ad644163af48b6ed38835156
BLAKE2b-256 1bc88be5c52eac73b3fd2b0f4e49989ecc7c355ddf8a33381dba9ba5bab62df9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.1.0-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 0813208b91c63531f176caeaf3eca2ba3188da3003081daaece4b2482da27b1b
MD5 53a00d5cfcfd33780f8291299b511313
BLAKE2b-256 0d72e15f96737028e5b90862c2e10a5c83723b6f95a38bdbf98a4717374cbb06

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 767480bbd4c11d3a205a75f1b44e1ef5e574426f416a3f641210a801e46ba1a2
MD5 b8e0607505e02a2357202038f72603bb
BLAKE2b-256 278e83b8eba3af49d2dd2edcfca599c7710b46b352e1dac7fa2cca5e67962973

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.1.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.1.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cf5d5583c589e5d1210275d8802c03bd47277b489caa95d4dea796293ad2d25c
MD5 14400b620c8b02597d86aedcdbd04fd7
BLAKE2b-256 5654c754040a90774cc1b0e45d0720dbf96c98453650efe88a1b424640628ead

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.1.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6c09ba4e7de1fe3188331348505fc8249446df14fef2dc0d740ad73be18f0713
MD5 f0ea0c7eb966ec54ebc613084c2ae916
BLAKE2b-256 86ee543ef0bd923889fb48fe413191add2738f51e530d78f6bf5128eeb058fb6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.1.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 3f2621650bdd857dbdcc230bbce511205e92e5d7bbb58f95623037060694b31d
MD5 8927d25e02554794b13291e25b4b9bbf
BLAKE2b-256 f5d721879bc8df47212c403ec60967bc1cad81c8eb5ddb84d552781ce4aeb1bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.1.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 962b11ad3100ab46a9cffdfb294fea0018d6567bc68a9e5ddfe1a30f020f938a
MD5 87f349aeb163a8f72ca8f30e74faf29d
BLAKE2b-256 2c828cb7e35e179a4a6946856140aa2d23ee818b9293cb9fb6b15234d510a831

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.1.0-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f137fa0d2143d1a983d3bbf0e9c54d1361d4aadbeb69c3d8b84fa002a6ff0396
MD5 3a107615371e3beac5baf8812cc963a6
BLAKE2b-256 decb7863f4d049beba93b135b89f3b35c66648d7a801d0c85152541bd877ab1b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.1.0-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 3a1a0f31dd0e4bccc5f9620e80bc7825bb548505cff6a33d13df9dbedcd13868
MD5 b64eb8a0084403c8ec32c13d0cf2806c
BLAKE2b-256 1a1b7422791795aad37c718ff1388e8ebdf97265a6a26040759f5a67b6df7ea3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.1.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3f2d7b61ad2a65ee897dc56b527800cc87afe3b84e6e953a7bad79f2ca56b4e5
MD5 4514f57599582b1b59fafb4da5fa285c
BLAKE2b-256 53b857548da57545faf84194486da9f907f4da7ed6d7354b288d32643ded22d2

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.1.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.1.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3726fa4dcb3558997e98b1e753d1328c3a3cf8beebc79f2e904429345e4c55ae
MD5 efa56753a3b578c18581162d1aa1b700
BLAKE2b-256 9ffc8312e309f1e991184bfacc1d8c2a9e77b0e7fb4bbbfddf15143d37423314

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.1.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1dd76deb63a67ae1de2bc15ffbc90d661013cf25011d0f75687baf3c0bb8fc6a
MD5 b10b1c62c1e83f5852b4f2352702c739
BLAKE2b-256 2291d5703be389005d411cae26ace75bb6c7e2f2e2f68a568279fc77d6f343c5

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