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 simple, 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

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 simple, fast, flexible, robust and fully-featured way.

Part of 'UNICORN Binance Suite'.

Get help with the integration of the UNICORN Binance Suite modules!

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

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

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

Uploaded Source

Built Distributions

unicorn_binance_rest_api-2.5.0-pp310-pypy310_pp73-win_amd64.whl (1.2 MB view details)

Uploaded PyPy Windows x86-64

unicorn_binance_rest_api-2.5.0-pp39-pypy39_pp73-win_amd64.whl (1.2 MB view details)

Uploaded PyPy Windows x86-64

unicorn_binance_rest_api-2.5.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (1.2 MB view details)

Uploaded PyPy macOS 10.9+ x86-64

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

Uploaded CPython 3.12 Windows x86-64

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

Uploaded CPython 3.12 Windows x86

unicorn_binance_rest_api-2.5.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.5.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.5.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

unicorn_binance_rest_api-2.5.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.5.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.5.0-cp311-cp311-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.11 Windows x86-64

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

Uploaded CPython 3.11 Windows x86

unicorn_binance_rest_api-2.5.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.5.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.5.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.5.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.5.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.5.0-cp310-cp310-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 Windows x86

unicorn_binance_rest_api-2.5.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.5.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.5.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.5.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.5.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.5.0-cp39-cp39-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

unicorn_binance_rest_api-2.5.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.5.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.5.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.5.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.5.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.5.0-cp38-cp38-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

unicorn_binance_rest_api-2.5.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.5.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.5.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.5.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (3.3 MB view details)

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

unicorn_binance_rest_api-2.5.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.5.0-cp37-cp37m-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

unicorn_binance_rest_api-2.5.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.5.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.5.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.2 MB view details)

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

unicorn_binance_rest_api-2.5.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.5.0-cp37-cp37m-macosx_10_9_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.5.0.tar.gz
Algorithm Hash digest
SHA256 7963f81e45198661a7844f66af98526c16b16810a6d4c76f13576f75a70d47a8
MD5 56e9deaa12e42b2877dedb4fdd463cbd
BLAKE2b-256 f94af70e2bfd91ed5a394de2929280e820b94165e35c83a048302b5277ccfbbc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.5.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 1d6b2d86bafc5c4dc9ca892802c0aad4152ffa427785faef25a8299954b736ec
MD5 9fdc75351eb6e8e3d6f8c67d65b72c7f
BLAKE2b-256 84a3af3a9ba1d6130f5947fe2ca786cd805bb49522b8949bab55229827e1d84a

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.5.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.5.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 2aa207c199f9db9dbae6ed81a67e968b2cd96dd581aef872f127eafb165a08a5
MD5 a96f7bca7f085551d9c5b1da791d8736
BLAKE2b-256 407ba3ca687577e3778389b42b3ba7b16d681be749be53ef9969aceccbc2c2cc

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.5.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.5.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0181611b06d5c4a2273c7ce30819971cbce4e1085a8f93b7ea8e3424a61782d9
MD5 7f111c6a1d480c42b1cb5d2097d6ff08
BLAKE2b-256 a1fd72c765fbc6447e38172f3a88514e6d3c4b851349b011b4ddbc8bf80018e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.5.0-pp310-pypy310_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 69b11802676936ad52867c421e94c2be5cd884d47423b10d84208248e9d77da2
MD5 b3735dde83b95a004a465ab1417ea642
BLAKE2b-256 93080e94123ce07ab3aa350f1d6686a50de6166471b41b22ffa34cf5fcba66f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.5.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 7c35e2d28f24d4c2a928a9447e2ed4d4fb92eb89f2a59c8d3cd4ffa3b571bf50
MD5 3c47853bbbf9ab0509d0efa93f5fcbdb
BLAKE2b-256 1b4d19e5853b7a9a966e7dae21a3fba78d6ed4d02ef720962cb2a7ea93052fff

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.5.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.5.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 a4ba301779b3cd492c26db854e0ad9804c135a2b689ff4ebedda47d5a7230a95
MD5 0faa4f8e828e4246a8731e889c1f1283
BLAKE2b-256 8f6030ead6c8b89f05af56eace7d775529f35a39790543af021821a8bd95442c

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.5.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.5.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a67cca9fec83781e68c7dc8ffaa84123f636c3966af42bb4d1f01d890fcddb29
MD5 7d1523a96c3093780f5d9505c4a815b8
BLAKE2b-256 c1d230a70aff01b4577bc8d2ef96dd767ff927a686704cee8a6848e17051f208

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.5.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c20c68562a74bd332042207fed5ce355d2f153acd16f2ee67b8fe7600072fbe7
MD5 2790d7b4448424c9d05b47f527ef7690
BLAKE2b-256 6606f607372bf90c8ad51d792bba10ce8e194d372f83dc35a72e7238be8bf00c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.5.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 fd17e209f5831a55fbd32ad0a64a9e2e73a05481adeebccd317d108715f0532c
MD5 9c48a7294b251d416ef088dbe2a8b2bb
BLAKE2b-256 571be499e8f9aee80abe3c8a9417e6d8ed73e2e124356828c12f791f1440f522

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.5.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 e25d784a99fa683e9a854c3518afcf7c15d422fb6dc28b4ba1e60e06af32d171
MD5 cd74d6516038529f42a4a86e0bb22184
BLAKE2b-256 4c93457fcdff308c0a27500d14a1b0b11f00f387cbceb2232052dfc14686089d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.5.0-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e0718a6ca5a25b313b44b89c3ef9e54845b38753f09bcc097ae9b6ba68d29e85
MD5 95dd6eed6d7bca710b0449f1a62e4eae
BLAKE2b-256 59c718ccb2ab587680e72a45e1164ce0ce31f131e04da34b42c29faf15cea90f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.5.0-cp312-cp312-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 c73433cbfb542bdac9cf255b184a674566bb8aed2709980b517c32cd0e866360
MD5 9fdb370f2086b9b8817a1d9b15e29c8e
BLAKE2b-256 9384de1ef71f4ca8643e6f41eb3a8b43a68c85383d64f9a67dea17b1617e7751

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.5.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 983c825b308e6e9e89c99605b26eadbb458a9d1248ca037de057cf40c773f333
MD5 7db0d5786ab08c64a9d4b4951007a486
BLAKE2b-256 c975e203c3cdb2b53d2eb9e7b47d630b75ed6386cc07ef096fa13ed7c4b84c19

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.5.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.5.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e2e43402493543958c6ca6dd05d44487f7315bb6ae58e57b8f8caa7b33182502
MD5 6abe02d28f0d102c7c312512fb5d18ca
BLAKE2b-256 a1fca057db032fb2062810fd0a068ea5d8f011f9d7faefb310a4fd2e015a997f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.5.0-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b47097a102d19fff7c395043145deecc74ad580e4b6b1d6c259c136cc24ebb8e
MD5 bf405a10aa3fc1da98a62ed8ac519e70
BLAKE2b-256 b388d70bcc3a2c899d29305ebf49e204e2b2e005846c2c7577b2e4db49957dc5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.5.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 500e95deabe682878e98d6ee0c08a98352a469acb0c71425589c80c4f7e3e67a
MD5 7c99a57a3bd1a9e97f34499760bf9c73
BLAKE2b-256 18f09e726b1bd9fdfe253eb6d85766e2bd10725bc6f12ea7009a2594cc5fcb4e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.5.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 c0e304953ce78aab896b115818fad2d16b9bbd378759d0679dc36f4772c14268
MD5 3c15b98d2f864f59365b24fc3dbc6e95
BLAKE2b-256 2f4ad0601150c35ee820a7996acf41a976c3be9be3a1b94ed2bb56c7e98740eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.5.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 b0f93c73348e7059438fffd2d4dc5d0c5f99b31783d1376f5b27dcd42a990230
MD5 d2c9fe955e6036890a6dc9e2add45107
BLAKE2b-256 bb242ea41d1059809b55d41e1909e3c2ec4e9d09f599322751ee29bdad7949e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.5.0-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 fe96e7c53776298825ede2878c9391dbfb7224f21038f88067753ccff7340138
MD5 7393cb57f4de1983c265ec0dc7490d20
BLAKE2b-256 b8e2ba58da86226294fe7145d150619c92dddbfd96a76f806c64544e381b70a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 db12f557720332aec08ee761674781950b6380b888ed4c2757aed2fb62244e2f
MD5 a2bcced06c0eacc1932c62c778b9a436
BLAKE2b-256 1d76c77c1b2ed519c72f7bf7609cff85544e720607c6fbfa1ab16950406c1149

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.5.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.5.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4fa36872aba41418ce8bf985140615b83f5b4113d06e946d1e592e24197e50e0
MD5 dfafb1e028b143fda1ac6d63df44d579
BLAKE2b-256 716fdd1231565a44e73421a5b2a0fa7a75709dd5e289cb063ca2f657a571e032

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.5.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 00ec313837dc32fc9204ce361e830d2d51839fcf5ba4ac700e02176b5b3485ee
MD5 a78fb8fd464d1d5382f7f02fb8c8e66e
BLAKE2b-256 a817139c8b97385a98f06742c3797364b6c12d98c35d908bba32d055cff222e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.5.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 be0660c664f28c51c57ee96bc5f92566c23381710346f141656d43578fc26caa
MD5 30790db461d4a00f80cc7f0c265a844f
BLAKE2b-256 7de56949b9b8c2f752508a93afac0910a2bbaf2f17add2d884da513f22161a7f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.5.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 13d39412ca99fc2c0a1e5775da846115010a1c8b079248ab221970b6c1c7f620
MD5 4738b6413985bab49f8572f790ccab28
BLAKE2b-256 5c6dc0f44480e64c8976aa841614608ad148714691ccc57e165b9ebf321d235b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.5.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 4b3578085f6acf790669479804955252060673cb7f76b9c0b64ade7e03910406
MD5 e15234508fb8d781746b1508e457a55f
BLAKE2b-256 95b7bfe1d290e081dc79dcf049ecaed542ed361fc016e29b4b590638a69508ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.5.0-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 2ce9832b57ef9e5577a107ad7fe53e38501363d5f0bf5c4b105ec8b1969a1e46
MD5 9ee442f864a73b96e4ad5f475c0820fa
BLAKE2b-256 1fb87578ea174ecfed8dc4e5845f6ccc7abe38041c44d3f9d10fb23d5be224f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a94e14d2e28993528edad89731016554524bc5d2b000a052cbacc244c94054d8
MD5 67462e73ee5e66db72d386f0a02570de
BLAKE2b-256 5846109078b3ae2bee1d81a5c099a1f9c671cf4456cb6c18aed2bce2be7cae7e

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.5.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.5.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 dc1f1a315a8596c3ff1b4ea9497bf002253dd5fe3283f4a4f32676d33394a21d
MD5 4dcae3f8d5e0a8ecb3fca76ee89da823
BLAKE2b-256 2ad0f24dc1687fd8868710c4db61e7736dcdc22af71128bc0f5fbe843076fe7b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.5.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c3c2da818b2b80d855c5e4ba679c6813c50600ef0418976a99d2e09921b257af
MD5 9a3460846f3f2ea5b68266f44ccc9601
BLAKE2b-256 2765f3b88076f04c866f36f41129e52ce54ba6fc972654207c24658a5f1c69ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.5.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 ae845da8767fc8f55dc532d7f1138833bf2e0441c07dfd3cd305658169df4f5e
MD5 d5a875d48ed3f5e97a2317a58bd18388
BLAKE2b-256 61c179e3196a49372a1e6733d70f2f2b127ebd2d07e9ecd1e5f7782cfa007027

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.5.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 4c3b48e662cd90f2ec5d3779dd501744fcd1b323d3cbad3148d72da05a4f6ed0
MD5 54c6083924e5bbd8da3cc3c94be8d5f6
BLAKE2b-256 c0b1f68f55ce415f27224fd412b12572d46c151a689a37eb37d566840aabf166

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.5.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 2d92a805a81644ec8e402a6fe4fb208ee1682cb7c684dc3667922c8120a5b6cd
MD5 933e56d52429e07c0e3d5e977e3a62d9
BLAKE2b-256 3c3752ac5b705739d1c4c44fb8befdc19d0a238d78a942f1b549e871710854bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.5.0-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 d4b97a0ec0ad0e07d01d31530e4e6d09aef8551b3623175f927a484f5c1d7a48
MD5 df4032764cb43f41f90cc276ff33fcfe
BLAKE2b-256 5476baf33026962cfcb66252d748d52aaa3e5da302ce063fe40eab80b13bde1e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.5.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 307c1dd7191c1c877f93bdc821d99f75563989ac7801e75ccf4b3fa03c6e1af3
MD5 4def2c250980c6ba09629758c39ef330
BLAKE2b-256 436117b926c77e4ce2a9196251c5983edf2cf645b37ced0f845f9f88a34f3d1f

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.5.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.5.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 42e068402d9ed2489273373d70a7baa0f1fb060f64a8ba8de01304e01d1389b1
MD5 eb352f68355c6653fd85373d2a87feb3
BLAKE2b-256 79c0f348684a57f9f80d5ce6bcfba54b611d7c291a07ce5c3e9172790dfcf9d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.5.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0bcfcdd1a8d92df425fe8532441367ad6e660a3c2857aa513842b28adb7aeebe
MD5 428fb1c7981c9e33900cee1a5a64fd11
BLAKE2b-256 a02b13db10ee0d4bc424429af8886b46418f8f10b006dae48edaac947ec20ff3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.5.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 d70a10e76f39de5efc1bf27de0e3343d3136815da2693cf4099813eb22742e01
MD5 0049ae59950469e784d8cb1cefcb0548
BLAKE2b-256 be6f1b2d3ff50a9f0c49d708dd86c47913ea3713845fa502618eda036984213c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.5.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 063303d6dc3c0cc07b63591c5a47ce74ba8458cc6ca461f820d46ba6267d5102
MD5 daad70651cac580b62661b681f06dd71
BLAKE2b-256 d4dd12b9f067f811aae71a41f330acae983dc926c7afd6be2f6df9b9fcc62080

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.5.0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f196c777b6729d95ab7ed4403e5684e87fec8539d44f99ce57f25edb3019712b
MD5 c0737a217f9be33e8079d4afcf240a3b
BLAKE2b-256 281200bdde91efc017b35ba865a3189ba42dba734a408a4c65ea2b297b6a86a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.5.0-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 893d96a59a7bbdc04eedf46f923e50e781dde61bd0c6579456427b1f7bdd1f03
MD5 1d827a6005bf11de645f113bbcc71b46
BLAKE2b-256 79b45da05cc2d4737b52d123cadc8e3a724419c0b3cd0e576adf6bd7d37aaa4d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.5.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0e3e66af8f2062805119dd3e0e4445445ab9f56c2cc958b1d78eaa9265fe3806
MD5 a1e548ae0d3ec259c2c8c9f9fdccbb08
BLAKE2b-256 80f3145150084d65745459b0029f2997bab3fec90e0a7378894e3cf4941d98ff

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.5.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.5.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f35b133678b4cf5b3f1eed58282d2335fd339a5e1bd23a6f50de90d3bde8bef0
MD5 5130d8db82cc4b22e9b36e3797c58da7
BLAKE2b-256 d87b92d1d51968123b0290f625a857c720972d69675dee612534bed8d00b091b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.5.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a55315e0bc0dcc8e14e3209cdec54abed3dbd12b94dccaa54dec75bf417608d4
MD5 96475b04e7f610298768a2044e118603
BLAKE2b-256 4f3c10b0396321c6619d9b8289abb7a28f2994f9d9829b3ae11082b39621ab00

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.5.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 e7bc15552739485ff0df45c199d4910cd823183f1d0717c4af22a2082424054f
MD5 185514e57bd06c0c146e4f93ea797371
BLAKE2b-256 48b7d2c8efac32301782bfe64932ebca18c8154670ac78fda3250218373fc47d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.5.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 95489f5f6b7b131ab3d22909680749aae294e6bd401bb8b5adb82677d513a3ba
MD5 0c5350b6b9b80833423368cb82f825c2
BLAKE2b-256 b29ee4676d42a577ce7d406315e483283a58010dc490ce904a2597b24d5e7c4f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.5.0-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 52b79c90947c1969bd944deb6d10fad91043d217ccfed5bbde927bfe62b2861c
MD5 d4af55c5dc4113662b1024d9e05798c1
BLAKE2b-256 a3108bed87eef28349d4b49cd4f42d8df499a37cb0044bdd2056c53528a06fd6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.5.0-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 f91a39806c64b6bfa276a6015be166fe06083f373de4cc0048fb350041e69f0e
MD5 3dceaa8fd0731d285250d2a095bc4e14
BLAKE2b-256 3d3f185c342bdf8dd0ece327086511039018e031f1268f17497056db486e80d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.5.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 13837871df50ffa443873f7386a5a625221391f89fff7c50f376c7018e57544f
MD5 d5bfdd679501d248736717d15aa16e86
BLAKE2b-256 a707088db7c7e1e85436d89bf08641f3dac3c362e80593eefb4483c583d9f08b

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.5.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.5.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b4cf58e7310131cd7e79306b4c0b8fcc70b7fb30a383639c4ddfbd70c336da79
MD5 b37a7fee744d3379c57c5a7029fb4534
BLAKE2b-256 f662d9c5a9144dff33eddf4f7ccf473fb155b671cd0778f67ef7b466189f8df8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.5.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f6289cb8b483f67e742655a75565f00b52d75bd1d2f7e0ab4b5c9c31d559901d
MD5 ca5bf6aedb8181dda4e933ba8324894f
BLAKE2b-256 584b2e3c70b6f24b58aff1e94efa280ab320c066f7adfb95e038137e10eeb342

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