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

More?

Discover even more possibilities or try our examples!

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

  • Available as a package via pip and conda as precompiled C extension with stub files for improved Intellisense functions and source code for easier debugging of the source code. To the installation.

  • 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 and runs smoothly up to and including Python 3.12.

Anaconda packages are available from Python version 3.8 and higher, but only in the latest version!

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

pip install https://github.com/LUCIT-Systems-and-Development/unicorn-binance-rest-api/archive/2.6.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 don't 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.6.0.tar.gz (741.1 kB view details)

Uploaded Source

Built Distributions

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

Uploaded PyPy Windows x86-64

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

Uploaded PyPy Windows x86-64

unicorn_binance_rest_api-2.6.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.6.0-cp312-cp312-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.12 Windows x86-64

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

Uploaded CPython 3.12 Windows x86

unicorn_binance_rest_api-2.6.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.6.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.6.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.6.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.6.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.6.0-cp311-cp311-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.11 Windows x86-64

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

Uploaded CPython 3.11 Windows x86

unicorn_binance_rest_api-2.6.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.6.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.6.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.6.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.6.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.6.0-cp310-cp310-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 Windows x86

unicorn_binance_rest_api-2.6.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.6.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.6.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.6.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.6.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.6.0-cp39-cp39-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

unicorn_binance_rest_api-2.6.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.6.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.6.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.6.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.6.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.6.0-cp38-cp38-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

unicorn_binance_rest_api-2.6.0-cp38-cp38-musllinux_1_1_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

unicorn_binance_rest_api-2.6.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.6.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.6.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.6.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.6.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.6.0.tar.gz.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.6.0.tar.gz
Algorithm Hash digest
SHA256 c2971e6975fa0fbe494847447e34517ba4b8c81bfde412d9db6c40f38edf443a
MD5 68c5f0b79a912ca741b7caeb9e8f6984
BLAKE2b-256 055575bd671c806bc0263767ba73b99fa7c3ff11ccca8c39f5b77b5811826f33

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.6.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 b514ca3a01514d104595a5bd83b11f81325183862bb2e8846690221fae7bc446
MD5 81eb916facca2703001e134343e721b2
BLAKE2b-256 52841f6ab26ff3e25005acd4b806bc9cec59ef10c5384352c6bdda3938bc607d

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.6.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.6.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 0abfb2dbe80dfce3824b6b2eea5cb69a492bdfa90887d8c29d8d35714ee7b7e0
MD5 3d053ff21ffeedad223b816e0990eb46
BLAKE2b-256 87eaa10be5c313488425e1cc12ed905b93a401732b95af4b3af7f8d0386f3647

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.6.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.6.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0257b7260b7f3ff719148f816b712ad80d7a1d780d6d274a088921b9c09f5ec0
MD5 d609813ed4c80bad13bc26bdf72bcbff
BLAKE2b-256 a3bf938162c06e3f1ec7db64739752e18173f62f4ae65652428e7d272d47840c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.6.0-pp310-pypy310_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f7d62ccc6b540ea6ddc7c965bc8708f50eaad5db88151f9dae327117a1301c56
MD5 fd903544bf5069cedc853a8ba889b1de
BLAKE2b-256 a0102a25a2c2376ab9bb04598782c88ce54c71af490fd2aa075f150882dc66f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.6.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 75553fc26148fb3552d54ff63a0c34504625d23c507ef8cdca0497b41cda17c5
MD5 6c1ff0165d572a5747ce12a6a8153af1
BLAKE2b-256 138eb5e8c986dcc88724119dd0d12975178759be8f28d721d508148c44bd40ad

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.6.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.6.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 d20b824617a23609a316e60d8282a4ecc26eaec30c9c97cb1004cc0fd8ebcd37
MD5 5e8c5696e48163cf43e85abfc9ea9338
BLAKE2b-256 40ba6d38a6f6f0ad2716375f87839e4eb5045d57e145e8657f979bacf7cdd304

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.6.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.6.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1ecd3d489e4db76ee8f4f3a9468b5cb0178658c3d834c5b04ed1666472bafea2
MD5 bbf31f6fb9408bb871c0b1622651fd84
BLAKE2b-256 a25ee6df89c9ebf92d50e43725eb8ee10c9dd09c8dcebf14c727f440b5851c1d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.6.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 15e4ee9161971e384c27d62141c0f5fd3123cfc15dec886190d76c3c6f360413
MD5 13c6f79c6a062e0c30a2a659147d6f07
BLAKE2b-256 6af1600a819181ce72a518d7858abb07d2c7bea672709c98a8c2a0ca42a7e0d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.6.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ab1652a277d76baffc403a68a1c9fe95d22c16a323e182fe790e9c61e9b7c121
MD5 66cf8e043bfabd138a031780e29e456e
BLAKE2b-256 1b76c43bc9571715cda8d27d88e1fd3b503ed7523eaa9a356d719188be1073b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.6.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 e4a60ec3d7e8d43e750171eeceb7c9796e4ed333e416eb44d1f82c971f13ded8
MD5 a7c771adca52f6a633198f66cf988878
BLAKE2b-256 3f45124069d08d0658b0f49f8910b15b839faadbd6b099433ed68ca8a3ea0aab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.6.0-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 3fe8031a2df4011ffcdf762acecc36110146b373e676ada8ebfde82e850840c3
MD5 2da450924d27c75aa57902f5bcb56632
BLAKE2b-256 2e07482619baa842e44784aa22223f98b04190262763612cfc9f0ba662aa2087

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.6.0-cp312-cp312-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 17b6281fb8e272c8047b1be835a305fdbdcd1bea6ce9e4522b9cec53f94851f6
MD5 511c2861c44b3b8c79307ce7bd9ee972
BLAKE2b-256 88b11f918de17e1ab85ad906d81a43f92ebf06c887dac8e62acc0abe8674679c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.6.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d89a43e006fdb4bcb549fac3c18fcf5f43ea7271113fc2273b2727292697c0ee
MD5 0c57432352601dad7e1e057f17495b0d
BLAKE2b-256 caf16424c398f826bdeb6fd3872fef834f20cde4e6222b93b235a53047cc991d

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.6.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.6.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b8e6dff8ad13444811e3517e799a85c164591dc0acb526b8aa8bd30b99886ad5
MD5 80b9207de97866a96e6d4a0c26fdb65c
BLAKE2b-256 d629075f2da66fb4db4fc8068810ffc1c785861ac53e1f7f57698759a258fcf9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.6.0-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4672a1c6f40a2676c198437a73997411eedb356a776380dab9c86e90b9db0ec9
MD5 ecedc829687607794c9f052748a7f9ed
BLAKE2b-256 51d3dfc140df66966cda98c8298c0d90abbf9e4cac23c5a25164c7625fe5d790

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.6.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e2254bf7e953e48f1b0b7f9edbb6a5cf0626e5b0541e38e849b0d6a81f697627
MD5 2f69df4ea778ef2012902327c8b10464
BLAKE2b-256 6fe10d1b5195748c48eb819afc1d993c43dfc88ec0e8873f96d31a00de8f45d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.6.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 3a35677fe77d27ef33cf93348e1c1e22119193ded8e31ee7dc4dd6bccbe7fe10
MD5 deaa155ac95e2d758a657105c8f5de85
BLAKE2b-256 6af322149abd149e1f9fbcd91cb9d20075ec94e5bc04a2fe1a01caa0f0314652

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.6.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e73b0577b2f077e11fa2e34003f633afb299f6f3e926fed1997101b98af536de
MD5 a054fcdc203694fb86c59699c1d49f88
BLAKE2b-256 1186ac4f3d8f147b8bb50c4ccc9226b9120449146d351e935e28a0bb7196fa27

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.6.0-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 a7f457263ec87704bcf3c5b3bd5ad52227caf04dbdb0ee2fd477cb505811268c
MD5 816e1df56404bf2be8cfb90a15779383
BLAKE2b-256 683320f714ee788579be1e0714e61f86d4265c97ce8759f537208c77a4fb07d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.6.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 362f5480993fb4efdd0cefcfa8ebcee8e1c396318af9164f2035e7c6fc0c58c0
MD5 d6d2fdbb764265fc7aec63d08d3064bd
BLAKE2b-256 e392e0bd884a69bf7ed9efb8356619018511521c4e504e9097cf9928de58e68c

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.6.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.6.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4d9496b611bfba93cde652ad9745547a40ce3831fb493a814c4646927df1ff51
MD5 f51c0139904928bbb3ce5373f4ddbc46
BLAKE2b-256 0927cf929ee3faf66e6a2ed8c107dd6941389e96b6165f516c5598031d48d70e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.6.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8c0da064f8b26262e35c9e67814d8ed779279dd7e28830cfe4b7663816d82483
MD5 54bdc6f01af305e5430f135683d65a44
BLAKE2b-256 b6f3e2e3428c771af88e2822c58a7543e71fce20876caa8c1a8c05f1cb6385c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.6.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 03d58be3ac0ac1259ccab0c822d7224b1ef6941bfab64745972d5ef1ed192be2
MD5 700340170c7e53a639e5789c6d2a6d54
BLAKE2b-256 562dddff2795174497cd2845c2bb5ef3415bcde85e59cdb74735c9c779d1c589

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.6.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 f6fb93c3ad50380514cc5f29a91e82dfad05c46449e474be6ac69342f9b757d7
MD5 a8c8f81374d1e879cce6c1818723af88
BLAKE2b-256 0f13489fefe7b4bf829a13062e77af119a914f6bdcf38479eae8054bb8fcb18b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.6.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 42943eaffb0db6d08e322ab09ae64bc0379bd1a9d6bf881c89878c1cd43b52b4
MD5 9d57b7fe94171d303894fd3b62921f0f
BLAKE2b-256 93256e8734e4b0452daa8da368de9067816b4dc81bc0d2a7567bdfc54f0ab5d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.6.0-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 092d209524f955931a21e26e2d1b809d7ee3c7288a59b5908fdcef485f412e08
MD5 47ac63fb4a190fd2b516153539aa269f
BLAKE2b-256 b542a1a2ea1f0ecd43338d2d8a126abad135ef4e6009e8f37140b1b4fdd97cd5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.6.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 af6b54e22ac451a810cd32a81e8310f8d300013d462f79100ccf7896e4beb525
MD5 19c503621658881c44fee3ac8190f0b1
BLAKE2b-256 e06cc97d9010176531cb118cbb00c5fee56e71c35b5271f4511cdc2ac94b062a

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.6.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.6.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 bc8ed2e557c90bdb5d7584301e23f2b8c2b5d8a3c561066613b4f648c996282b
MD5 369db3d64c58c3f5aa54d8b75b1ba475
BLAKE2b-256 df785b2e56701eb6cc36071ec0600137861cdf250ab93655c0ff35240b7a07b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.6.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ac207ecf6564c709a094c21c6bfa758750e5fde3d0ddd50213b24a9d3e590b81
MD5 b2f699904df50ebef8a8d6fc0bb60124
BLAKE2b-256 2864042108f3062d70eb1b5003598e8bfdfe7c27ef118af5f309c1db1e4e1fa5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.6.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 a8cb37e48fe751aa25c0d0d7c18363b11343afd59b1d2e877e2fc6136aaa7ae6
MD5 475892c3fed4493c0859411c639498c9
BLAKE2b-256 6ab935963ac66994720fce0f56787f569db7ce8cc35858142af8a562c9dbd245

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.6.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 0ae284302809c00dc57a5d7c838e3dd776e300d92a5e348f02b144988cd9aa99
MD5 5420d0ad742ef93f929beef4fb7cc53e
BLAKE2b-256 c2a0e7025d90b9a0151e5a7e6c449fa647f2b31477673422e925c71255f32e29

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.6.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 252f0bcdec260ce22fe2006fb7f0a0557a3fce1159e81738d8b226793c19c219
MD5 60461ae6b5bdc205d94a255357547ff3
BLAKE2b-256 ca936eb8fff6366e0d296b7e7e88ada1cea48506a9fa2b5680911f28382df4d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.6.0-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 ad62e44ff0aa82ebba00acbd279afd8c6c53dc98d1809b091efb3c5175d34727
MD5 20f6cc8360c3a06eea5136c9295bd247
BLAKE2b-256 c4aaffe5b7a9d35f6f3690472ae5e556bfb3a778a381dd2913af7ca80914756e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.6.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9e928bef823fe84eaed3e50e7417ab19aac86eb1260496c9ba4cf4bd0d5f3c4e
MD5 be7bef7fd9cb21fec5ee5b831dc6bfa9
BLAKE2b-256 329a29f5b5fb97f30c841c013f43fdf552a3482f01950ee50b660fb95bdc40b3

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.6.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.6.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2c678409264abf857b250f58262785030c491afe07868678a4143ef2303b3eb6
MD5 83e6e5d06ad6e6e10e12ac448cbef0bc
BLAKE2b-256 0e60daa8e281eea545724e9a2a481f8ff8b3566f49c60ae2d2b81be6ff2865c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.6.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 da8c4f82d6bc534138a97550e2aa1f87e8a79b810b4e82461b7f8d91f4f6cb91
MD5 e12073f64166097b3f1b1296cd5a73ed
BLAKE2b-256 26b862b5d6ae43776e94599b4310d615e09a9fd383de811bd9924beb2ff43aad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.6.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 9ebee558911c6b6b5ec0ee08d3ffca246de3e679e761571a91d16335f463a219
MD5 4b7e37a72363d9b91e0816ed7b62c4a3
BLAKE2b-256 4c08f8c6ee61734f6cfc30453b25f85a2467374c002cfb480eb4748465a0c6c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.6.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 e0fc33fd486833e7193f53255c071341913086abf06481dcd72784cb7ece84d1
MD5 ae72ca6df88efa8092be0e8626117b65
BLAKE2b-256 91e9d2d7cbc21b5f4965fdab7745d212425d2a05df251a0fdd8ebd86b0de4423

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.6.0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 3d37eed122f6e01875ad5a936f5dfb5c6856737f25b45da97431054bde6b2542
MD5 e7ed58bbfcbf024d2d152bfd4fbd48b8
BLAKE2b-256 fd8cc3056cf68ef597763e2c6440b975fed5b534ea175f82b53f9d2ef81db57d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.6.0-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 1032f19485fedfdc758f218cd4ac2f148b823798069bfaeb275bb69af553818d
MD5 0782337dd689aeb5904a8a059572e8fb
BLAKE2b-256 9f92520dad2c949cc119b67d2e7ede73a02d91853b931bcdcc663661db3653fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.6.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5c7e8f29d12aebde389a02772c276e48d04be15a37d91296b92ed9509cba81ff
MD5 44c21ca565bc57b21df40bb95fb8b752
BLAKE2b-256 72d79355dd8e0210b0fb05c59a8b2827f6f3e87d932befa5bf99c00f8eb7edb9

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.6.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.6.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 488906807e11b4d7037150d95e1a7c167b58d52e1a1347f8c2085372490f1903
MD5 2492b2acba3d735845020d31ee6d3686
BLAKE2b-256 b597fb943e35920dbbb032f97479c7cfd3b3e4b0eb018d84806399bcca923f29

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.6.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 84e04c961c669aacd4777e664203cba34bdc8485aee53367a9d677ab1b3bf2ee
MD5 e8987ee7ca2d22982173125163685f0d
BLAKE2b-256 9650bf108985df65b91caeab1c42fc94676e458cbd4a81a0e43a384a2a17a002

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.6.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 fd60651fff667b5bb631b56048b3244acb05e1e76cb3dde327e9a4591865bb38
MD5 df5619a8353d42519b50c3a5821d9ded
BLAKE2b-256 88ddeaeb34d2d1c94deea906bdfc0566ad47e30a1225cf0f178016f653055d6e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.6.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 24c8b0c9cac5050e0ab43238adbe3e85e1b4a49f4bd6f2ee706f4668dcf48070
MD5 18f35c9420c0bf57993b61665efa6819
BLAKE2b-256 78490a3d8783f93bd82ce1169c85619a40db89f3d9c2aa6be9d9f3cb3c8fdaf0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.6.0-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c7f01e630b3381da694a0022091a2878e3d96abc57e76b868077c4b0b773d078
MD5 07b5893915e1585b0caeef49931425d9
BLAKE2b-256 38722915ca470006cf9d20617dbf68745e21e226d3d1f1e55f742b493ccfe69c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.6.0-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 f7d7a2cf802ed92d62a49e86d785ea906f6226e61daf98b4cdf0be96cefd7e00
MD5 2ccf3af9d7e94e2e464f55b14b7d2eaa
BLAKE2b-256 2c6ce1acfb4aa2970b0bcf6d2f3eadb071cd3ecb5fbc0c81778cb9d725e0e28e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.6.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 68683cef414a1d958af7aafc276cd9e514505d7cc7d5db2929b33c9522a1e835
MD5 a6ed38576f2a457e729bfe7bc3507739
BLAKE2b-256 7c6ec8a497dbebb8bea06a41ca75f929292056e37d6ae48b568709e4bc4fcc49

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.6.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.6.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7c0643040807f5e847d08ddf361a01b773ff9a89fbb04ea9433d000fa315f6cb
MD5 5c643bc9719d6bcc19d521110def9c12
BLAKE2b-256 0b7db578bd56345673755c0793b2bccd67427ee65e416cf701c5a73feaa2ca39

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.6.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9253910cddd6e61df4c8e5f85fdc25011110ad61893833210dd9427553cdf31a
MD5 960868267957dc3590e6b0fbb5e29621
BLAKE2b-256 d38aadcccd89d025ddaa926f50de6eb949d075ac2205d564eb553d5c8e9273dd

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