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

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

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

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

Uploaded Source

Built Distributions

unicorn_binance_rest_api-2.2.0-pp310-pypy310_pp73-win_amd64.whl (317.3 kB view details)

Uploaded PyPy Windows x86-64

unicorn_binance_rest_api-2.2.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (346.7 kB view details)

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

unicorn_binance_rest_api-2.2.0-pp310-pypy310_pp73-macosx_10_9_x86_64.whl (325.9 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

unicorn_binance_rest_api-2.2.0-pp39-pypy39_pp73-win_amd64.whl (317.2 kB view details)

Uploaded PyPy Windows x86-64

unicorn_binance_rest_api-2.2.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.2.0-pp39-pypy39_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.2.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (325.8 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

unicorn_binance_rest_api-2.2.0-pp38-pypy38_pp73-win_amd64.whl (317.4 kB view details)

Uploaded PyPy Windows x86-64

unicorn_binance_rest_api-2.2.0-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (351.2 kB view details)

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

unicorn_binance_rest_api-2.2.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (345.1 kB view details)

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

unicorn_binance_rest_api-2.2.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (324.2 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

unicorn_binance_rest_api-2.2.0-pp37-pypy37_pp73-win_amd64.whl (317.5 kB view details)

Uploaded PyPy Windows x86-64

unicorn_binance_rest_api-2.2.0-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (351.2 kB view details)

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

unicorn_binance_rest_api-2.2.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (345.1 kB view details)

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

unicorn_binance_rest_api-2.2.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (324.2 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

unicorn_binance_rest_api-2.2.0-cp312-cp312-win_amd64.whl (341.5 kB view details)

Uploaded CPython 3.12 Windows x86-64

unicorn_binance_rest_api-2.2.0-cp312-cp312-win32.whl (292.7 kB view details)

Uploaded CPython 3.12 Windows x86

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

Uploaded CPython 3.12 macOS 10.9+ x86-64

unicorn_binance_rest_api-2.2.0-cp311-cp311-win_amd64.whl (342.4 kB view details)

Uploaded CPython 3.11 Windows x86-64

unicorn_binance_rest_api-2.2.0-cp311-cp311-win32.whl (294.8 kB view details)

Uploaded CPython 3.11 Windows x86

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

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

unicorn_binance_rest_api-2.2.0-cp311-cp311-macosx_10_9_x86_64.whl (403.8 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

unicorn_binance_rest_api-2.2.0-cp310-cp310-win_amd64.whl (341.1 kB view details)

Uploaded CPython 3.10 Windows x86-64

unicorn_binance_rest_api-2.2.0-cp310-cp310-win32.whl (294.4 kB view details)

Uploaded CPython 3.10 Windows x86

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

Uploaded CPython 3.10 macOS 10.9+ x86-64

unicorn_binance_rest_api-2.2.0-cp39-cp39-win_amd64.whl (341.2 kB view details)

Uploaded CPython 3.9 Windows x86-64

unicorn_binance_rest_api-2.2.0-cp39-cp39-win32.whl (294.3 kB view details)

Uploaded CPython 3.9 Windows x86

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

Uploaded CPython 3.9 macOS 10.9+ x86-64

unicorn_binance_rest_api-2.2.0-cp38-cp38-win_amd64.whl (342.1 kB view details)

Uploaded CPython 3.8 Windows x86-64

unicorn_binance_rest_api-2.2.0-cp38-cp38-win32.whl (295.4 kB view details)

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.8 macOS 10.9+ x86-64

unicorn_binance_rest_api-2.2.0-cp37-cp37m-win_amd64.whl (330.1 kB view details)

Uploaded CPython 3.7m Windows x86-64

unicorn_binance_rest_api-2.2.0-cp37-cp37m-win32.whl (284.4 kB view details)

Uploaded CPython 3.7m Windows x86

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

Uploaded CPython 3.7m macOS 10.9+ x86-64

File details

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

File metadata

File hashes

Hashes for unicorn-binance-rest-api-2.2.0.tar.gz
Algorithm Hash digest
SHA256 381981a5a75cc303c85dc6e61e7e8ad15bbbf25d308eb223be1365e53cfe64f9
MD5 c2d1642c22bffde67dae6bd5f167a50c
BLAKE2b-256 083021a3a7d58e4ee88badd3fbf10e5c0a085f0ada5cfed201ff6ddafb20c015

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.2.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 3729a6a7538a5c1b8c15fda62e7a66270f3dc22ed56561d1bbe0f9f8c386727c
MD5 433b29b2673c767e4ca8e08c2ceeb8fc
BLAKE2b-256 eb78f61cdc02f5eb667a31d3d94eaba2e89399e859dc27461f1143553eaeecc3

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.2.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.2.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 cce30858712de478959c1d73f07d32bd045300c93fd3bdb86084aad62d4650af
MD5 72ae518e13d879c0e8bd398c5d86531c
BLAKE2b-256 f0c30e16df35f6d4f370c04cdf5def51322b348cfc2757725e11ab33c62c85ca

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.2.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.2.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7e228779e17e294eec5ca7e376928bbb9759d92174e67215d6b12e211e4d0121
MD5 dcd2681d5691717632318419e6266bde
BLAKE2b-256 e9bd0f1a65697deef69152ccc8e69d1aad4f13ee2d2e1acfc1dfeaa05cf86a41

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.2.0-pp310-pypy310_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0f8d9d5c91db757dffda91bf65403143141d1d8795b88c514550ee7a4ea9ef98
MD5 1dbe6b70d0ceb0f6d439d09f9fb253e5
BLAKE2b-256 ba81a250dd610fb1fee21421cd87451f32e9a6a31a3e815be70f529bfc43d940

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.2.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 b9474c8f65418734f05699db17aa3787243e31056087f663c3e70245d6f147c2
MD5 7406aa188a59a881391ece3274682b46
BLAKE2b-256 4d30174c3a2b0b7287c761b89240224a5c87ed79405cf7c6806f3c32318cb1ca

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.2.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.2.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 21581565c0644f9919968c09e7c5fc66f6d67119fc80d188631969b321a408e0
MD5 7b7f7d61129bbca314bdf882adcef4cc
BLAKE2b-256 3ad166518111b15d595e61f8b0f2fe4c6148bf727186845d4db1fe3181655c67

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.2.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.2.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c051ed5931b76352db4b70caa8165594fa59728e87c5d18a3846a1d777fc6ab7
MD5 c859779bf8ecb72fddec94d764dfdb7a
BLAKE2b-256 2e960b25da0caa3b6f375b7b15ba588244762d377705d4de85b006dd6e1d6cd2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.2.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 794baea9b03c0020105f0c188a5013b439908566766744d69d15eba17cce3fdb
MD5 3f4728f2c8dc04a311e6add61eaf4698
BLAKE2b-256 0b939d228ba12e2ea11ef37d2ee9e89a08b670a034630e4f06d2e10b2d1452c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.2.0-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 e9b1d45d06ca9225e7216e4571e3d69ebced4bfe7d048af834f94637f897aef1
MD5 ea16ad0d5e13ecf23fe85686562247ce
BLAKE2b-256 06ea64ff11c17858decd7da286c9f39e0dab6551edbc295b4965d981c8be7f0d

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.2.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.2.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 a3186162279c34804d8afe12145f3fe0efeeb9b710acdabc7f308d64eec63f3f
MD5 1a163756bd0e49cb8abd9095bd749d2d
BLAKE2b-256 254954537ba0bb5c817898058f3f15ec40a7e219a8ea359378916c0816e48408

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.2.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.2.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b8c2a41611fd413cf210c7734d3db7a02f7605fe4c9425ca906f86d87e4f5af2
MD5 1e29d1ae318e58765c6637ddd3b8ecc6
BLAKE2b-256 6272ab3961fae7ad09fbfb251f9137e090c609aa4aaac9d4d8e97bfa213231f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.2.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4017dae68746245f91899ac21aab2ed89a0cf02046b1701f6c41bff3ccfcb88d
MD5 46489034a669e7be77e7b0e0b38e7fc0
BLAKE2b-256 6ab6b002314b2e5f73153630db877698a4f1e1f39268b152f6cb4d10c53afd99

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.2.0-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 866624255d03c629ab9144b07683b51c9cd55b6e3eba53e88fcb677afa8dbeb9
MD5 3fbe79ca2e95007f86ac27202c453483
BLAKE2b-256 d4674c06cc7cc85d8d57ca0dfe776291566ce163f9492173885e5d8be20a69b7

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.2.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.2.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 9f200f26ee1fe3564f0aec5b0907f075ab9b0d3845093f43f30ef68600d6b14c
MD5 7839fce62e9d10993af3c1d683dee0e0
BLAKE2b-256 4d1ce1b0016f17a55168057cb3578f1ec4819a970fec1efcb33318c79900a304

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.2.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.2.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1e2b62d46197cdb0f65d9b3abf163d6a2a5869b85b90964b5287e43219f73e92
MD5 04f624c763363e4634aaa2a2fb9a9dac
BLAKE2b-256 f056f5c99519e8aaec8418974b9bff3bef884e864dd662cd9dcf03117b237433

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.2.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ced1900c4cce55dafcdafed05e8a94ad75c25888fe2bd34535a8b662d41952d5
MD5 91ac8f84a07a6b73e8444a233b63e0f3
BLAKE2b-256 8558192fd4c429307aa5a73f23e15c9d648aef7390023e3aaa36f12a529a597e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.2.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 31537509bcb3dc192471f0a59fad3a9a24fa6f8635a0638b6cda565172267060
MD5 02e212aecbc9bcaa33fc67a3b372fa8b
BLAKE2b-256 2ee047aaa8e3518dde0cd7bd872634cf64e5b9bd337d8a12ed6ea2cf72714b9e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.2.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 bfe03913433167d11e5dae2d0eaee237fab0c3da2916edd4b82752b271402f8a
MD5 06be6ac9ecc0832e3d1dd9ad0f1e6abf
BLAKE2b-256 a8878af14477f578406d14d75e2f05db0772ddbc1c991ef06d49e695e5d8f1df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.2.0-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 39ad40e5b0d26c5f6464f5d435b6fe0b9472b5e8a4c758cd53d8ad93bc9728b2
MD5 619e407cadb33c0f237c01e77998a326
BLAKE2b-256 b3c42c343856348e7e6cd4153056781209866ba75fb641efbd28205bcbf5851a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.2.0-cp312-cp312-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 3979c8ea6448d8f67010e5b8534ad759c3c9c72523e4ac9b595e70c2d3a3a4f1
MD5 cf31a3e8077af72f0e157252f5c05864
BLAKE2b-256 47cea0103c7fb7a7809259b8c57c185d976a82006964ad59ba4f8fa92938d95b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 55be9014c6c3daf33662031417de8e47d5176915212f08361457e8f03e6ce3a2
MD5 da33965113cc25c935d7ed3b4f67b4aa
BLAKE2b-256 094dc074df383ae55f37dc625ea0d430b458b5d2ca45f871de61bddbd8c1a311

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.2.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.2.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8f32de798ef22b1cd8e83b804d0e337f9f0f2270bc819c0df229363b2aa88bce
MD5 45c057472ac4e45e10d03118350eec1c
BLAKE2b-256 be23ba5a4439c900301ca87b3cedc8348b3634615e29ad8db12c581d7cf2c846

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.2.0-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 decb3f2d6567306eed8f644b4cccda72967f10d6b830108cbb9327faba5dacaf
MD5 f210676a566fec6130dcb0f35ce04af2
BLAKE2b-256 73132de553e1de408b7bf196ac7f85ecb5e2848265c4823f9cd6eceaaa40296f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.2.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 35417d67930873484419b70e4e22cbaa3d3edf63b0b254eb2d7408f45faf542b
MD5 ba8492d1e765046025eb339129e66b3c
BLAKE2b-256 dc62fccaf4817873b475ac92d13ed0e2ad0355a90edef07a64b20b5161dabeee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.2.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 6ab15fbd683d80076e5d3dd6773f0a7a74fcc546f6a1c5595942b1023bdd0600
MD5 e8ef7cce6bdd689d7ffb8ad3ddd17d54
BLAKE2b-256 aa1406c6a5ebf4beef58d91856d991a91f545d2414a53049d6a19701f57bd379

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.2.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 438edd2e69e04e6e30729722eb034a573c3ff62f35c2e543999576e8f8ac4476
MD5 46ef51b79ecbc69a62e369acba422de6
BLAKE2b-256 9665b3bea61979e7ed0777aa54b2544e060f38b330b0c332eac31d3d9df68c77

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.2.0-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 0e9ef1afa99f0f554e0f00d23ada9d8d9d63ce9d3e6b5e55dcf4571846cf1c56
MD5 175ccbe0bc4dc954ded46b6483b9ba39
BLAKE2b-256 0e15b75dc7daa029c976906dd7a87381fc49eb7fd56c127b394a7c617c05da16

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ca5196dcb8e4bf3ff8f0b1df44bff2bd5fec632824d4445687c95dae0f3e01d8
MD5 b20d6fa6e1e82584622891191205d079
BLAKE2b-256 7edf8cf0b2ced095b0cf3f4357cb2fa9869df345607fa969e8e9a764cb7018f1

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.2.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.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6818405e76b4acd4d114330b30ed9a59b8f31fead96c658788230d0db4f85089
MD5 1a973a62fa27dbcf64b907d7b144dc6d
BLAKE2b-256 cbbd54c2b6133cf57f70d668de7247fe53db0880f87196bfe1a70d2499aecec0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.2.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 faa6cad6afd0dde3c4720a93adbf30fb39f43d4670db922795c959b2fbc14587
MD5 a58e01c31e01ea9c6e8f4c5e8778ada0
BLAKE2b-256 5199fee60159a480f6689ed28f0c748ed77c2a58ebef346abe205535706d90a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.2.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 79a3df355c20ac535a6a06047e6e3b1eab9f337465aed20a8d5925cb878d4745
MD5 97b52ae53e77e3710451e1c3c3d8e5c4
BLAKE2b-256 4eb070a31c856e1393a0e754cd90faec67227a8c4a8e2c82adfcac9768389bb0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.2.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 401c5f8b3a11fac9c983468ca30ba27208aac90147f9dae090fe90c071954b56
MD5 9ec1d60ac535489d1cc929002145dd15
BLAKE2b-256 25a76a22b0d455730ec2d627f73900b1a82db227e8d7d669914d850d86fd1da1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.2.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 fa25ae57dc18dd67e7a6c816f17d1ce6f7774da926821548ce4d262e243cf997
MD5 30bf46dd9b2679e9688b1614b572fc35
BLAKE2b-256 f707bb40636235cc2022e3e345bd47f63633e09512b8aee672140889bd44b6ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.2.0-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 45b4d0c201b54dbdada081122d5433e9bcdfb846eb46614321c7ece0208cb131
MD5 ffe178824526703af3bbe9d42af38bac
BLAKE2b-256 f35ff9cc5804bab732d5a95f39a5513d8415db95dcc4fb889130b84226c4573f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1d0e0964f7aabbd2d735bd70d57e053c0c6b82c7e52c3598953a56545fb2f8d6
MD5 310a7f70deefb631734c5b1a38d53545
BLAKE2b-256 ae183a905ccdc690538ad6bcacd98475b2468fb52410a68b582dc354dacc7c26

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.2.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.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 515d9d06c605bdb8cbbf9714cabca12eeb8099e62c5a03b925a16be87355451a
MD5 8c39b0285efbf65cd3274406f60b52a0
BLAKE2b-256 1ae934457840f3dc0cdc5676a71dc275137aa44a51237efb5f080717b0da6962

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.2.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3a3145989bcedbee2a635903469037bd1cc480e1ad09eae309422954691fe5ea
MD5 abc16c70367edb0d28a37812c2d8b7c2
BLAKE2b-256 67b61fa28134e5b4e7d39b4b8edd5efa28b6240942720ee7a2933859c8190ea4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.2.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 0770b5eb2736e6332d874210881a4996bea1624140d0178fc6357bd95af31c9d
MD5 1fc98d7daacee1d46895743303c840e0
BLAKE2b-256 8e969c1c14f1b369980f2e5daa9ed24f63f98e01fdcb4fe7ce721d5899e2a5c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.2.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 991fff7966cdfa71664c8f02c5e28df3e0ba837f3fbffd20991f9afd5d924784
MD5 4e7f2cdb82a5e48fed8cf0d8d261c4b2
BLAKE2b-256 d02572fb80286911d98a97bc17cb58ad49ea11c9b0b0d755e46d472a7714bae9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.2.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e6b096c0cdba878138df7170fea1a167375eb07a4871f71a0511394f5df1d978
MD5 2243606a7c680eb5c1f97dcf2f14355e
BLAKE2b-256 9e86a22a7cf359dacfcf1e9b23140e45180f159c18d39de1b39e960acf0dbad7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.2.0-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 76476fa046cac54ee3d9b89aa9330313c6ecaf5745d157f2bf2f011007302eb1
MD5 9edd40741e206387e1221a9fb3ed746d
BLAKE2b-256 ee4a86b669a7f0f3000aa61e49fb54bd3a59e98581e2ea67fce6e973b3e94891

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 87272a808e7f3a383c49b51946963131379bc041192bc12c1d29108c07f46094
MD5 a724ade631f25d7a8e7e2c15e42eaea7
BLAKE2b-256 5f80f9d860a22b3242a55731dea90f9d50add8f8ab9428e75cf55d9ee52cf733

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.2.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.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 50d5001eebc0bc458d16e87d4f9ee5e2dc9b4870a5eebfb2ea0fd7c75304ddbb
MD5 43c682eb6d20a8191793ff6e72508c60
BLAKE2b-256 f039cc84d881267a9d0f1fa38c425a4316ead932ef762f79d0e94dfdbecf219c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.2.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c6c08ad328f032ba8ee7dedb24cb29b9b8c4236520abc9c800ac41e5439a279a
MD5 81ae11397640c6c31b78acf52aedc726
BLAKE2b-256 90f19b80df3a434f53e6834a4bd65d6fb29c373ae4e9a13714e70974cc6de589

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.2.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 c65e11ad457bcff3e8602d920260778d9e3fb3edb41f942067b6871fd34ac494
MD5 cb146b9ca2ba5d39d94500b9094f7cd4
BLAKE2b-256 c510b7cb2095029ecc8d49e5daf1a66183861e7e69a7f4be93bedb682f305ba8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.2.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 266c51269a780154274d444e7b9a5361ced50794eb6c1c886085ec20f1022985
MD5 81202166814af9e3d338260a6224c7e6
BLAKE2b-256 23070c5597cc1de0e499c2d7c8297024ac4c008aad9fb06d88f688c61ed1bcdc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.2.0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 8cca7d34ff44e5de0c4cfbc2cc3385906796470f3df85edcc01cd2a090cba6ac
MD5 5a5131c736dafb85c3dd0f6640d2d325
BLAKE2b-256 e2fcf713371532aec29b46f37835c1ce55c9231bea122f22d02eabb467a521b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.2.0-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 c6cb9d8810eeafc7ad3fa4d4e89a3bd78f198ab65ea1fe5a27cf3f17cc66f7f7
MD5 dfbb0010732f6e490e8130eeb25e007b
BLAKE2b-256 ffe9d09520949eafc016512ace0559e642a030302ba6958cb04d68ea3b7836bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 06cdfca3c216115804f0afc7f51c4609109134a20c02e93f8a67e77f72e564c8
MD5 c24baa7c1788f60193e8c52fc1892930
BLAKE2b-256 378efeff5e3a0e56fc8bd8dd8d1cbeb4089f027aef64c02b1dbb0f02beee74e7

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.2.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.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3760e89dfa7f151baee9532451bf52b7d2ef583ffb87cde60653c3bd6c5b9a0d
MD5 5038703feb97c68a24803d47dd372999
BLAKE2b-256 69d381cbb27043f2dbece8a06b28bc316e8727780b6d5238262d330a07536577

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.2.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 357d3677c58eff907439e0c2f9db2eec1786cd7498a5294089c4d9f632390b95
MD5 d489dcefc07bdf4e6e843c952ba774d3
BLAKE2b-256 1ae1858b77e4742b5ca1c5a2ae84a55e12910df8db25fd93c8ffd88bf71da793

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.2.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 28f843d63585f6b07b91f37f074ebc9a683d48c143129e769dfda22dd1004189
MD5 384abbced6d816c2e787548c6f277b43
BLAKE2b-256 af2a9ae7c9719e62468765944a0d4b0f76ddee1a68625f5f9a9e5f57c45acce4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.2.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 a6e0461f8a017a8bd34ac2879f2023170a9b7e6e04a265c579a2133643ee66d1
MD5 9a244bed6dbcae5ff50442903f596cc9
BLAKE2b-256 f8e4a58ffd87f4bfb4cbcc4af790359b800ca2c209e4854223e16a9082f0163c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.2.0-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 666abe384b185ad253fd5b47d369a0e76d19d12592dbd11c73432da9fd274863
MD5 7d25a32eec0d89cc1c7196f6dc32483b
BLAKE2b-256 ee8b0280d094ec505d49f3a12401534a82dba8d0f82b1d19eb9a1bd5b8b79f2a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.2.0-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 f058d3c4c7dbce6a35dfe28406e530d0c3846af7b4232b5016c951de0fa9bb5b
MD5 896d8a56c12265fe033a3c36491daa1e
BLAKE2b-256 4ddfc795a1863badbb282ad42e270cff119166e750dc1fa59579d3b496ead9a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0dab88fc39bad13b7ce96e086893420bfbaf2fa2abd499f04e6514b0c2be8d07
MD5 6389c56faf4485913b7e0af67bd2cd55
BLAKE2b-256 aff772a6ec07e7b487bae9e04bcd19ecff3c9acf481630c02e09bbb0dd6c411d

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.2.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.2.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5a2bfa5a97a92b4147affefd6c38463cd146b1b2cf537331d218c40dcffe7b67
MD5 3fe1fb0ec707f8bb23b9b2d92d545c6a
BLAKE2b-256 9fbbb2d649ca783c526f1f459b0d5f2d8f95f04d4725c2ba74c4d0ac981e4401

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.2.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2eb37cccf2e587c4e673c38fbfb9b175fe45cf78ae0698dc9b51f6037ddd5a5f
MD5 aae83b6703e6bb1748a595699108079a
BLAKE2b-256 10acaf888d1ab81b6c161f6e737fe5d1d81002d40b91f6873821bbde4e471092

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