Skip to main content

A Python SDK by LUCIT to use the Binance REST API`s (com+testnet, com-margin+testnet, com-isolated_margin+testnet, com-futures+testnet, us, tr) in a easy, fast, flexible, robust and fully-featured way.

Project description

Get a UNICORN Binance Suite License

GitHub Release GitHub Downloads Anaconda Release Anaconda Downloads PyPi Release PyPi Downloads License Supported Python Version PyPI - Status codecov CodeQL Unittests Build and Publish GH+PyPi Build and Publish Anaconda Read the Docs Read How To`s Github Telegram Gitter Get Free Professional Support ChatGPT UNICORN Binance Suite Assistant

LUCIT-UBRA-Banner

UNICORN Binance REST API

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

A Python SDK by LUCIT to use the Binance REST API`s (com+testnet, com-margin+testnet, com-isolated_margin+testnet, com-futures+testnet, us, tr) in a easy, fast, flexible, robust and fully-featured way.

Part of 'UNICORN Binance Suite'.

Get help with the integration of the UNICORN Binance Suite modules from the UNICORN Binance Suite Assistant GPT or a real human LUCIT employee.

Get a UNICORN Binance Suite License

To run modules of the UNICORN Binance Suite you need a valid license!

Receive Data from Binance REST API Endpoints

Initiate BinanceRestApiManager()

from unicorn_binance_rest_api import BinanceRestApiManager

ubra = BinanceRestApiManager(api_key="YOUR_BINANCE_API_KEY", 
                             api_secret="YOUR_BINANCE_API_SECRET", 
                             exchange="binance.com")

Print a snapshot of an order book

print(f"BNBBTC order book: {ubra.get_order_book(symbol='BNBBTC')}")

Get all symbol prices

print(f"All tickers:\r\n{ubra.get_all_tickers()}")

Get the used weight

Please Note: https://github.com/binance-us/binance-official-api-docs/blob/master/rest-api.md#limits

print(f"Used weight: {ubra.get_used_weight()}")

Send data to Binance REST API Endpoints

Initiate BinanceRestApiManager()

ubra = BinanceRestApiManager(api_key="YOUR_BINANCE_API_KEY", 
                             api_secret="YOUR_BINANCE_API_SECRET", 
                             exchange="binance.com-isolated_margin")

Buy BTC with a market order using 100 USDT

buy_order = ubra.create_margin_order(symbol="BTCUSDT",
                                     isIsolated="TRUE",
                                     side="BUY",
                                     type="MARKET",
                                     quoteOrderQty=100)
print(f"Buy Order Result: {buy_order}")

Stop ubra after usage to avoid memory leaks

When you instantiate UBRA with with, ubra.stop_manager() is automatically executed upon exiting the with-block.

with BinanceRestApiManager() as ubra:
    depth = ubra.get_order_book(symbol='BNBBTC')

Without with, you must explicitly execute ubra.stop_manager() yourself.

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 Anaconda we offer packages only from Python version 3.8 and higher.

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.

Packages are created automatically with GitHub Actions

When a new release is to be created, we start two GitHubActions:

Both start virtual Windows/Linux/Mac servers provided by GitHub in the cloud with preconfigured environments and create the respective compilations and stub files, pack them into wheels and conda packages and then publish them on GitHub, PYPI and Anaconda. This is a transparent method that makes it possible to trace the source code behind a compilation.

A Cython binary, PyPy or source code based CPython wheel of the latest version with pip from PyPI

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

  • Performance Boost with Cython Wheels: Cython is a programming language that supplements Python with static typing and C-level performance. By compiling Python code into C, Cython Wheels can significantly enhance the execution speed of Python code, especially in computationally intensive tasks. This means faster runtimes and more efficient processing for users of our package.

  • PyPy Wheels for Enhanced Efficiency: PyPy is an alternative Python interpreter known for its speed and efficiency. It uses Just-In-Time (JIT) compilation, which can dramatically improve the performance of Python code. Our PyPy Wheels are tailored for compatibility with PyPy, allowing users to leverage this speed advantage seamlessly.

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

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

Installation

pip install unicorn-binance-rest-api

Update

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

A Conda Package of the latest version with conda from Anaconda

The unicorn-binance-rest-api package is also available as a Cython version for the linux-64, osx-64 and win-64 architectures with Conda through the lucit channel.

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

Installation

conda config --add channels conda-forge
conda config --add channels lucit
conda install -c lucit unicorn-binance-rest-api

Update

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

From source of the latest release with PIP from Github

Linux, macOS, ...

Run in bash:

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

Windows

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

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

Wiki

https://github.com/LUCIT-Systems-and-Development/unicorn-binance-rest-api/wiki

Social

Receive Notifications

To receive notifications on available updates you can watch the repository on GitHub, write your own script with using is_update_availabe().

Follow us on GitHub, Medium, YouTube, LinkedIn, X or Facebook!

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

How to report Bugs or suggest Improvements?

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

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

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

Report a security bug!

Contributing

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

Contributors

Contributors

We love open source!

Disclaimer

This project is for informational purposes only. You should not construe this information or any other material as legal, tax, investment, financial or other advice. Nothing contained herein constitutes a solicitation, recommendation, endorsement or offer by us or any third party provider to buy or sell any securities or other financial instruments in this or any other jurisdiction in which such solicitation or offer would be unlawful under the securities laws of such jurisdiction.

If you intend to use real money, use it at your own risk!

Under no circumstances will we be responsible or liable for any claims, damages, losses, expenses, costs or liabilities of any kind, including but not limited to direct or indirect damages for loss of profits.

SOCKS5 Proxy / Geoblocking

We would like to explicitly point out that in our opinion US citizens are exclusively authorized to trade on Binance.US and that this restriction must not be circumvented!

The purpose of supporting a SOCKS5 proxy in the UNICORN Binance Suite and its modules is to allow non-US citizens to use US services. For example, Github actions with UBS will not work without a SOCKS5 proxy, as they will inevitably run on servers in the US and be blocked by Binance.com. Moreover, it also seems justified that traders, data scientists and companies from the US analyze binance.com market data - as long as they do not trade there.

Commercial Support

Get professional and fast support

Do you need a developer, operator or consultant? Contact us for a non-binding initial consultation!

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

unicorn_binance_rest_api-2.3.0.tar.gz (736.3 kB view details)

Uploaded Source

Built Distributions

unicorn_binance_rest_api-2.3.0-pp39-pypy39_pp73-win_amd64.whl (1.1 MB view details)

Uploaded PyPy Windows x86-64

unicorn_binance_rest_api-2.3.0-cp312-cp312-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.12 Windows x86-64

unicorn_binance_rest_api-2.3.0-cp312-cp312-win32.whl (1.1 MB view details)

Uploaded CPython 3.12 Windows x86

unicorn_binance_rest_api-2.3.0-cp312-cp312-musllinux_1_1_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ x86-64

unicorn_binance_rest_api-2.3.0-cp312-cp312-musllinux_1_1_i686.whl (3.4 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ i686

unicorn_binance_rest_api-2.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

unicorn_binance_rest_api-2.3.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (3.5 MB view details)

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

unicorn_binance_rest_api-2.3.0-cp312-cp312-macosx_10_9_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

unicorn_binance_rest_api-2.3.0-cp311-cp311-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.11 Windows x86-64

unicorn_binance_rest_api-2.3.0-cp311-cp311-win32.whl (1.1 MB view details)

Uploaded CPython 3.11 Windows x86

unicorn_binance_rest_api-2.3.0-cp311-cp311-musllinux_1_1_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

unicorn_binance_rest_api-2.3.0-cp311-cp311-musllinux_1_1_i686.whl (3.5 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ i686

unicorn_binance_rest_api-2.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

unicorn_binance_rest_api-2.3.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (3.5 MB view details)

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

unicorn_binance_rest_api-2.3.0-cp311-cp311-macosx_10_9_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

unicorn_binance_rest_api-2.3.0-cp310-cp310-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.10 Windows x86-64

unicorn_binance_rest_api-2.3.0-cp310-cp310-win32.whl (1.1 MB view details)

Uploaded CPython 3.10 Windows x86

unicorn_binance_rest_api-2.3.0-cp310-cp310-musllinux_1_1_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

unicorn_binance_rest_api-2.3.0-cp310-cp310-musllinux_1_1_i686.whl (3.2 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

unicorn_binance_rest_api-2.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

unicorn_binance_rest_api-2.3.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (3.2 MB view details)

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

unicorn_binance_rest_api-2.3.0-cp310-cp310-macosx_10_9_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

unicorn_binance_rest_api-2.3.0-cp39-cp39-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.9 Windows x86-64

unicorn_binance_rest_api-2.3.0-cp39-cp39-win32.whl (1.1 MB view details)

Uploaded CPython 3.9 Windows x86

unicorn_binance_rest_api-2.3.0-cp39-cp39-musllinux_1_1_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

unicorn_binance_rest_api-2.3.0-cp39-cp39-musllinux_1_1_i686.whl (3.2 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

unicorn_binance_rest_api-2.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

unicorn_binance_rest_api-2.3.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (3.2 MB view details)

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

unicorn_binance_rest_api-2.3.0-cp39-cp39-macosx_10_9_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

unicorn_binance_rest_api-2.3.0-cp38-cp38-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.8 Windows x86-64

unicorn_binance_rest_api-2.3.0-cp38-cp38-win32.whl (1.1 MB view details)

Uploaded CPython 3.8 Windows x86

unicorn_binance_rest_api-2.3.0-cp38-cp38-musllinux_1_1_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

unicorn_binance_rest_api-2.3.0-cp38-cp38-musllinux_1_1_i686.whl (3.4 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

unicorn_binance_rest_api-2.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

unicorn_binance_rest_api-2.3.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (3.2 MB view details)

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

unicorn_binance_rest_api-2.3.0-cp38-cp38-macosx_10_9_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

unicorn_binance_rest_api-2.3.0-cp37-cp37m-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.7m Windows x86-64

unicorn_binance_rest_api-2.3.0-cp37-cp37m-win32.whl (1.1 MB view details)

Uploaded CPython 3.7m Windows x86

unicorn_binance_rest_api-2.3.0-cp37-cp37m-musllinux_1_1_x86_64.whl (3.2 MB view details)

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

unicorn_binance_rest_api-2.3.0-cp37-cp37m-musllinux_1_1_i686.whl (3.0 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

unicorn_binance_rest_api-2.3.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.1 MB view details)

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

unicorn_binance_rest_api-2.3.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (3.0 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

unicorn_binance_rest_api-2.3.0-cp37-cp37m-macosx_10_9_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

File details

Details for the file unicorn_binance_rest_api-2.3.0.tar.gz.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.3.0.tar.gz
Algorithm Hash digest
SHA256 802d043a4dda6882880895365266fa8aa916c3625169749ace0ec16aac323120
MD5 fe1b3f7f940ef0e367c89f9ed8fcd9fa
BLAKE2b-256 defadefa7b98d45f1637b08ed4089e03265df2ef34ed5a2a4d53acb4b703525c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.3.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 e1f12f63801bea40b0f518321a2a10add5cb04e1929daea95cc691b9a9719865
MD5 26268773c86d704d2dba8cdfd69b014d
BLAKE2b-256 4b21d9b308cb742d7216afccb755cf4fa470ebd5838054c5d201ca3ce432ac63

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.3.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.3.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 0877cfc6ffa00d784272ad4997bb01f6910f9d30f2c3ab60f4410f2b01e371d5
MD5 1baebf8244689ae48007d290bb05ed3f
BLAKE2b-256 c87aae7041beaf492a6c820e61abb3185f33fad930e3c2644a47db04a28afcf1

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.3.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.3.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a0bcacfb58cd30e0a910b11ff6374a96eff597c8ad860c31570ce8e1ea7923e7
MD5 3750d958cd8e35fd26ea7df8a162cf51
BLAKE2b-256 c27d3d479fbb23a0123bff2181d4e210f98ac1476981aa244390182b28a3ab57

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.3.0-pp310-pypy310_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0adf9b8e313c93f21b93972a58462993583015c263d1bbb2ac52308301590316
MD5 6459bba8af08ac82fb59c8459377405c
BLAKE2b-256 756515d986783b3c01fdbcf0d33c13ddbbe0d70a4e771e8b628e8a07c9845016

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.3.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 6b9cf59d85a470319faf4fc53f01efb49754b31a7c37012fdc8f58eea99317a8
MD5 ce8732eed664217d821157543b1b9b7a
BLAKE2b-256 70c8d4428f147923f490f79d8028efb0a0ea768199600ac714977577856f23f9

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.3.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.3.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 130112fdfe78aa35d20bb598bf6e972c5cb000fbb64ac99e469fcd97b6adf786
MD5 1da9708e0de6fa32293a8b0d1973339a
BLAKE2b-256 7c60c553c2e02c2f98d0d1f4a936aaad11673e636d04c99b76f951994f08bb57

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.3.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.3.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2f2687dc631b2d4a6130121f5d904183757239d65fc000fc2f9a3c186844d493
MD5 fe7e02ed1910bbb252072de9fee755e8
BLAKE2b-256 0d9e249e2292499eb42bca6441cf37d6d41d67b53b011695a879806d8b46c1d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.3.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 52e68d51a6bdcb9c56ac5a9c0c41144d595ff84628891904dea63f34c7b6236a
MD5 3ed2af39990f4117c29eab2b674eead9
BLAKE2b-256 a1b7cee6c6b161d05fdc22065d991c63842fbe495e9f3958dda12da872f6903b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.3.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 70fd8f2efa3cd69a73c4f84c8012b71df6caa921f43d46776c5a07a4ecfbb626
MD5 6e9a167b6baeda4a4ce0196c0a86f3c1
BLAKE2b-256 89e34d5a831991ffc2cf978f3ceb7ca4f804462b7b31cd4d80890f0a780f9605

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.3.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 43e181cf2f64d4bfe6ac1fb44eb6a58139056709f2ebae8d81b5ad9314e994e7
MD5 d747f4b1766157fcbed14beabed1ca8d
BLAKE2b-256 2bd64e06b22e8d6a88066812b9de1b8c06f9b9b35f432b5c3226554d84bc6141

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.3.0-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 366a6faa7c8d4ca14ea60c864d33f0bede9e32aae5cbcb1e044955b8d857d23d
MD5 9479d21c93485335c0c047f082ec8f33
BLAKE2b-256 8ffff386ed192f565d4bef8220fd60f232c38866392ef5ba4fbbb57eaf32c665

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.3.0-cp312-cp312-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 982cd632332a317956e5e306a1d8be9b1f5c51094000135f0b4ffdaaa45d7389
MD5 39ded9cb8c4c9dc653686dd592919a89
BLAKE2b-256 bbc39401219142e45ba2855e73e2876017f64cc8615ab0a55b79539d5abe4d0c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3fe2539990c952bd3f583152d4c77d69559138d1c83f3f584105b870545d4523
MD5 0b2a6448eb3c1d65a31af7657177df27
BLAKE2b-256 cf98fe5e4baaff68362eadad6340011fe9b6fd4fedb22ce80284a747938ea4be

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.3.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.3.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9e25bda6eaf4ac67cc0ac368c84d8e5371011602c723fac23aef108113b293ed
MD5 8b8da0ad87c46120f1b938e2cb7e2ffe
BLAKE2b-256 390ecf2f715f6bd068d5d568e0c4b9d4f896f1402e941b09b8602058f391b7dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.3.0-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c7b6cffb5d4a89dfc484ed73d487b47fda96a45b33b331015e80b7ba03a46994
MD5 08236616466f9726cdce43a498ca1b71
BLAKE2b-256 28a3d4ecc8c71d316b237aa30f05b329fd16d29fdc07728712c3dc0d8dd38b4c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.3.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b88cd57d3e9f8f5058c1b2e7145b34d76dd8bf1f0881d65c87e818ec6073dcad
MD5 06a259ba28264a396a7f641248f841f2
BLAKE2b-256 b15d0bacdb30b577cfb506a7be0ba3e5dadde16ad0b9d2c4e086d81224dae113

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.3.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 2d708e4c2097dd61fb7ed20319ee7541aa99e9ad1a602f9e7d8621964239c59a
MD5 fc654f23150f2ba32af150d5c6f66fe3
BLAKE2b-256 6a8becd503af2fc4520f6039827aa7890c43b44f88dae31623ce608d17dfc3f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.3.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 249a8a36070527e19771a26137bccec4fdf1c31ac65e00cc9f5d51bba32a245e
MD5 0d7913d6d2a40c64ef131202921004be
BLAKE2b-256 1234dcbd3d7a380d03f608f7232bd2165b7e88ae45f0e17236c4fd8015fa65c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.3.0-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 adb697b7db3ebd623e606c90571225475b7824b406a257aa2531a0f2c3ed8878
MD5 59a6b7a0782d461ee3c2ad47848f4b93
BLAKE2b-256 1c88bc57b371f6b62aa2e2ef7e08675966acb9834e49fc43e57586e5e78ebcb7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bd87eef724bcbb7a1a17e877d7b41f03fdae4779a2a77d7f6d8c4cbd17727665
MD5 a2b841316d343640ab337feb33969796
BLAKE2b-256 bbab338b3a3cafe733420eb68628b4d5d40919aae567f21f3c76167c4542231a

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.3.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.3.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6248866433784d4862608793fd2306b2ca7d8f55226dbcc0d61f307161516cb6
MD5 7458b8cbf21699556dea1a3471e49027
BLAKE2b-256 9a89bcba329cce382ea83f82ee032344583645edac9c63fa5a2cc43d91379220

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.3.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6418cde1385f998df8917f19a5ac321cc76cb0acb005f7dc388229fb25039267
MD5 7c6f61f9b42c4c7df4abb5b4da642fba
BLAKE2b-256 99c46690381e867a8c911fecd65d8f0815093251bcf9a9eabb6d88535377ad24

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.3.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a1713c8ca30acbe28b18ad56cbbc2d1579aad8c5ce82fc2d85b510e090dc80f5
MD5 c882b82634e7df2fa8e79429ab32ee88
BLAKE2b-256 0f0cbe84257b7917aeba294076a5500b0cc4dd4034944f9631f2921b4bd91a4e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.3.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 e4b0bd6e711bc999ddbf86290e093b48e82cc8e49e97d05f7fc6ec9b705e1ec3
MD5 0100711580d24f23d6b08b899d3f92a3
BLAKE2b-256 ff96f0aa6c9f406988b5e5815c5faed5c8d30b16b274504abb01eeb6086cb76a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.3.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 559aa0b817c70b0f42c67d854e24f55cd3a894cb1f7f0f53f9a4a552a2f01c94
MD5 04b47676a05b925e2b4dc6cc94197db8
BLAKE2b-256 2456d5b34c928c11408bdaeeaf8608a747491eca2f3a9c50f4ff76398d313132

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.3.0-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 3cecb00430d9bf60e7e0af17f3fc421beb04da0a9528c75b7aff59800526f8c1
MD5 ae55a68d4437907af51ebdee260335f5
BLAKE2b-256 7bd168aaf8751ddba1798ac91bd4f1862175f3203b8b05543ecf3be8059da267

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ef2eb7e22240f13cdc5639155d84f62833a800e8557f19d7956471e471253371
MD5 44b19fc3d9a1f13afb6d2424c13811e1
BLAKE2b-256 d268f05e1cef6a68bca3dca7548d38f846e2885cec9c67d5bc38d38bd9e96439

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.3.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.3.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b9b4009250de0040f26c5595708887c2ad75ebdff79b4509f08ecac6b1201fcc
MD5 af31ad54683d8ebbef0b3f678dd2db53
BLAKE2b-256 b34407422b15d94c6babd4135aa4d1982e6532fbf6126e158ce707b80ca68383

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.3.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 447011e32130f3e0e02ec153012440ce3885111f5e08fca7e7f2bc316ac828b3
MD5 df4dcfab70e98d9291188e7a80ec215a
BLAKE2b-256 aadd2f066c307a0dd586bdec1b422a1c8da2aeca486db0e4664396192d4f380e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.3.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 599cbc0cb5141b28eb9477487acf073a228af322924269d75811c55980a13188
MD5 f31a75917aa8c47ccda2b5e690b0d3fc
BLAKE2b-256 44a9c6c9004d5dd2469f898e71bb4fc8f44281ca162d942d21ddbb1ac642eb93

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.3.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 c51325ce06e33cb11b32f77109fb8f859eddadd34797c90481d4728ef04ec047
MD5 77118b8306261a062e47d4294559e1df
BLAKE2b-256 366034b223f760dbf240e9a4bd13d9bf4f4fa4a3943e285b574aee4342ad9f00

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.3.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 2021fae34678b793d7b7f8554465736918bc414dd16dde03d61fab234900a73a
MD5 4ab3cf8eda944770ee48bc143ba29724
BLAKE2b-256 676670d17d8b9ac4f3221248011225acebd41a75929831d34aefedf04470981a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.3.0-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 5dae463fb6bebe89c1898e9e6ebb170f7c7d97e59b16105837964d1cf8484b1b
MD5 7a2cec1dcd0384b7a0d2d436c5b0fc18
BLAKE2b-256 7a24878775cfeb4fa6055d287ca160ea18d61cd24e7f247db50376664f6ccaa5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 90504576c52fb7a55960478b64b2a408c5fef703122c9eaea83b95918865c61e
MD5 9f386da88a77bc1954b2ac2af5aa806a
BLAKE2b-256 cec42b106f22409639aa9e90d95cf7f9b0d8021e029da9a2ad87712b96262fd3

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.3.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.3.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b734b744400cbf26d22d4dd101cdaae64b250568a0cb3eda9cbe4d8871396ffd
MD5 b7b49b1c58b1a705514be1cfe2618cb0
BLAKE2b-256 9dc19e9546817e3c900cc77d993f98cda271f9eedc1c51caba360760be11edbd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.3.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e91d8a11f734f29f4e70a3cd81cde40925dab8bef1f6d56f5a2f471e13ddc913
MD5 ece23b5f14c8d0ac110d07943d42b6b4
BLAKE2b-256 a1b9ddedd59c52bf2121721dc90d8013e2a7dc2172e2b9ed95021cac3ae51993

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.3.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 1fd5c42bb01b3535416855e758e1632f8bf343f3fcf952948f2104ae92059233
MD5 56de3e4c5a39b2696c60a5bf30634932
BLAKE2b-256 1d8f068ff7e685fad1099bfa765e9c6a892deeb14ff1df0a52aa1bcb67f6d2ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.3.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 1c5e0df3c7074e3a3562d429ee032ff2d0cdbc203755c9113d7c2c7d5aa85240
MD5 bf21679cecc890992560508f1df4ff00
BLAKE2b-256 2bc3e84beea9d47bacf74549ee3cf1db178360e5b612e40e70c4435cf10c6702

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.3.0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 099f789272ddd025f84527e0c7a9837960ceeb6cdc26591d0fbc62d92678f610
MD5 1fb6c8cf4bba473dab9ddedfd56910e3
BLAKE2b-256 09f5bfaa7233489bbc3b5598c7882f4ed2e63c95dc012f875a12621fff9595fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.3.0-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 9d6c4b557011eb14683f4daba64bbcf8dcbd5dcd587f49823120155a005b889a
MD5 583b3cde908563c818e7de6af6bcbd75
BLAKE2b-256 f8fb27824a03b21fa18f13ee3c7ac93f385997412885856798324dc3f03c0389

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ce65e41f823fe8b1017ffaf86b6b643b4786a697b3fba56e99f394883f8069ca
MD5 56f277d2a0df9f92e20930d24b2c04a8
BLAKE2b-256 63998b6eee1632b9d8fa6d6a515852893ae01ac4322c907aabf690b9ca2f97df

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.3.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.3.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a5655811b4de640d97b692dce708475d2bb2af5408da2d8f74ea0176e5a32a5f
MD5 f15c3aca52c01fb15380b2d2b9241e99
BLAKE2b-256 55ed76d17efc91b8025570c0e6ce0ecb8557587c001801b353103eb4a4ddc1b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.3.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2f5ccd82d16f4b3ba3e1227f7feaf8b73e1b365b711cc49e0fe6917f515c300d
MD5 ff6e48a2d5ed57929567d0fae035f5c3
BLAKE2b-256 affcb0515b46245141df597c032a5882346693774793b4bfe09fa8b8922703b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.3.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 5ec46ff2f060c69c6e79b7df2b7211c4f295c1d0111d9a8f4b20ee5d97725ab5
MD5 2a0613ca205b91411ff7e25a8c3d39de
BLAKE2b-256 b570fe09b2b8d8f58ac98ffc35ee40c82d44ed8c31bf3f740dea17f69e03cc13

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.3.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 c2a7bcaffffeed4aafe7e28a5d4bbc5acd91cc7800e01b0860c14cc682c01ec3
MD5 38760f8ae9544da1a9d780d1e63a5770
BLAKE2b-256 90f65094d93b9283210a042cb7942b19e3df2fb9059507674a3de98c42d6637a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.3.0-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 8541d5b165c82d464d71649f100f93b5a9520807199724bcf7b305409bdc5a9e
MD5 af828bed0eac383952cbbbf3a37208e8
BLAKE2b-256 35b53729373da0887990712bed401362a5e8e1e781049b486f4cda1ae7e9c757

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.3.0-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 6e2f0db93734e439b5e25cb297deb371404f49164463d0bbbd1c21e1da4956c6
MD5 064c9d5be6c63b7214afadcfd65cbfea
BLAKE2b-256 4287eb31ed5207092780507d26d7a542fe14bb3511a6b51ac30da7423214173d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.3.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a6a40008856ec37f5a3b53573768945802075b126ee8d1d9c82ad3a1f21fcfc9
MD5 e406ee8b2ea6811059d1f7e8fd55b938
BLAKE2b-256 ddf18e94d8f1fe739b431a58d84a790a3672f88bdc0677ff0adef65c314b9de5

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.3.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.3.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6c39c58deb14ca0b79271d628a5e81e2d80e92786dbd3787fa5b5e98d16d4248
MD5 341e4dd15b9667aca361208807982cec
BLAKE2b-256 5cf936df4b25f4f77cc256deab6e91345a17e3a7bc1b5136fe902a68be8d6bf3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.3.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8912e6aa8967d74d1759329af2c4977d48da3381a869a56bb1192930d4f9716a
MD5 ebc6035e590e11c98801f703f47a9f30
BLAKE2b-256 7b7af5d4fc27ce9d7688c4fac82310c8095a0966f605f77fb2c1ff8afcd00a0a

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