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

Anaconda Release GitHub Release PyPi Release Supported Python Version License PyPi Downloads PyPi Downloads PyPi Downloads 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.1) you determined here:

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

Uploaded Source

Built Distributions

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

Uploaded PyPy Windows x86-64

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

Uploaded PyPy Windows x86-64

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

Uploaded CPython 3.12 Windows x86-64

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

Uploaded CPython 3.12 Windows x86

unicorn_binance_rest_api-2.6.1-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.1-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.1-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.1-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.1-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.1-cp311-cp311-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.11 Windows x86-64

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

Uploaded CPython 3.11 Windows x86

unicorn_binance_rest_api-2.6.1-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.1-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.1-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.1-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.1-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.1-cp310-cp310-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 Windows x86

unicorn_binance_rest_api-2.6.1-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.1-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.1-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.1-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.1-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.1-cp39-cp39-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

unicorn_binance_rest_api-2.6.1-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.1-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.1-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.1-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.1-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.1-cp38-cp38-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

unicorn_binance_rest_api-2.6.1-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.1-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.1-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.1-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.1-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.1.tar.gz.

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.6.1.tar.gz
Algorithm Hash digest
SHA256 5a72b68c88b327bace4a93b8d068804441b6a49581262ce57ca6f1c05db398be
MD5 f8344d2decce0bfd1fcf2822f093f156
BLAKE2b-256 1a312eb4ebc6374c5d2973576a0aa26efb10d592efbbde0e095592ce34ad2ed4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.6.1-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 40ebbd6ccf8f689c37c3aa0c41a9e77a19bd2377d03c45a9fa505c240bf0c04f
MD5 4eb88c4c3e18c28c7614abb6af880fd6
BLAKE2b-256 8c885379dc2bf57cd7f8c4eaedc8f68ee641479ceb8abe51fb26ea71072eaed2

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.6.1-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.1-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d6a4fd38401d7176e1dd039f97ac42599b41696b02f729f2f0c57838f4d352ff
MD5 112025f7faf891f6042e072a8b9ab9aa
BLAKE2b-256 db541a535dc935e54fba34fdac6ad3a567be9d0fa81e46de17bddffa65e350e7

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.6.1-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.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 31d8c0159a14523324f447d67790a05dea7d0c0f50b98951d1dce6f6a5301407
MD5 60d240b966073df7a298f9096db6be04
BLAKE2b-256 3035ff137e6ae7fd79ed301b30099aa6b0a5b0d161a8e8a0951923f549a47e14

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.6.1-pp310-pypy310_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 04525fb9d64e19798572d65b37772369e9bbd7ea6e57815db0fe59e947223e1f
MD5 fe557954c7a16b2092a7fd1f490eb9b0
BLAKE2b-256 22211c6ab416420c39e8fc473cfb5a324d42f4731a461620053d19e796447543

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.6.1-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 ab0056e57698ae1577b7bbe5ddf2511f46ba8abf409ba5d93b4190f0dfd3229b
MD5 cc4b836d8fe1d3306c85efcffaecf4d0
BLAKE2b-256 286bd608d6255a6fea31a3ea25e87316918ec44173866f9765b0d7dc2059d551

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.6.1-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.1-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a18678310786b7ef76822743efb6698763f41ddfbbb0db87df4859265664ca64
MD5 04d02b4833557ab45a91fb64ea862146
BLAKE2b-256 6f13964cb0c9d66068eaafaa0e85b718c1f3ec638f080c0d2528a093f296d036

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.6.1-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.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d9455912fb15945b24afc05a2729f4a84099be95b83aceeb818a21efcffbd71f
MD5 f49f93adf9011b4ced40c836c465e9ca
BLAKE2b-256 3ebaa69ad1beeca46a47c857310dd27271e4dfc5fab9e7c2d1bd72b58cb8db48

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.6.1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c28e6007e5c0ea4a3bdff74e1425605582b39c8c7539e27d60d771ccf2be26bf
MD5 eb85d1d9176ef0913f860aa7ff1d179f
BLAKE2b-256 4872d364b3add139de97f92033779ad728d9931cf4027d7b8efab9241f64f7cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.6.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 71d4f175953c72a15598a14462567a53a59c554fe936f03eec214436abad2f34
MD5 819e179ee1550d5908131fd351e298bd
BLAKE2b-256 5caab69f94a355fc541416df3417b884169c022e20afab7647b39b9cfd77d230

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.6.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 39d3b1511b7a16e8d5972cdcfe959e367eb1823bc83c96d6e06cba2028cc709d
MD5 30399c867bf9ec74d69de15ca59d31bb
BLAKE2b-256 75ca8f1037863c5453b7f549d902b3fc8ccefa2a1e06440769c2254d90c44783

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.6.1-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 93808df7e42dcb42b10d948ea0707eb7dc19f2de4cb03fa1424a67dfb426ed12
MD5 50a5e8bb79bf335967276164a69de770
BLAKE2b-256 4fb856f79c3c3750b78327ad78a7ca98b85ef0059cc919bb9cbdecb75fde8fa1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.6.1-cp312-cp312-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 fe81b5bc848f274375ee2dcfc4ccc596c41cf145706661e0141b6eabf551ff02
MD5 4b8ba086c9f0e3b2e2ff9d45cae66161
BLAKE2b-256 7b52f54327f020534515c5d8da150f1874e996d812dfe5af0c7d4c901f862aa5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.6.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9d006c6c651f2244183c70c0196b0622313ffbc14f58df23c550d975d42958c7
MD5 d30a4830bd482b377aab5ab757bb0d23
BLAKE2b-256 7628af3bf4b4c90a427f070622039cf0beaea1893a7de4a5689e6a7e47b9e01b

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.6.1-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.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8e23ad9707086c193077cfe9566102867b1e59722581d81baa5189dd25b41162
MD5 df8719cce6c804cbcde22f0866eb30d3
BLAKE2b-256 eac3dae3c8eb7228d7785b3e4d52575559f3e97d3751551f0383e3cbf1eba73e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.6.1-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 df1a7c6bab6939b1b2df2151ecfdc97fcf5b809012fde1486b0c9d07c914e652
MD5 7e96a73216b60d8c3df2048e8377e2ed
BLAKE2b-256 dd5a7229df225d69f3cf9c2267ab23d0d08bb63ce2f518ef4b60b2210d0fb6b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.6.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ad3d3af35edeb62c87d4035d8aa0ef17983ace020c61a7ca617f3648e8cff3a2
MD5 022c9e018aa8fab3c7319a2e44e02d37
BLAKE2b-256 8128ce970abb283ef745cf4834a6bf01a1abed87820f8ac0905ee79aeac58d80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.6.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 d12a956f751e422c3bb79f782903b207424a3f51e7d6baa1e22d56ff3e408e33
MD5 fbfe34132f0f76460ee369f5bef875d5
BLAKE2b-256 129b7707c611ecc92a54368d22a703b01694f4600b68e53c71e0e9f4dde9d3ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.6.1-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 0eaf8f26c0158f8d4cd1fea69f60b0844f878bf1ddf14072bd210ec19f499945
MD5 6f748cf48e1cfcf3a757336c76a03154
BLAKE2b-256 3a01bb67b214ac1b9a77d879f6d14e2924a48af64ba2af6357572f02d1eb6e17

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.6.1-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 ef4df09a1f6f7c196522a0f411b8551ced807c2f937c5133b6c47641ca0588a7
MD5 a7229165f4dd3d0cc7b3741755dd9c39
BLAKE2b-256 64c67bb7cf89d4c2a2599deb0bc1edad953994765e8f7b7e1bdac09ae7a9ee4d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.6.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c262c5db79c28e5e26e88c602dced7d4763a6f44f89f4e289c6bebd0beef459c
MD5 7f57699a474ba1ce21aa26b71a5ea484
BLAKE2b-256 f2b6d20c2cf81ed717b925b408ea1cb8f5e9ad892a38c7497bc4b8b63740d441

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.6.1-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.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a2e18558fbd5fd5a258f0d152d923fe412415174755b783a885a02151ec208a4
MD5 76459904b3b5cd51c48302bb53c26c27
BLAKE2b-256 e09f69a0bfc1ed5f23ca21bec097a5893c5a7cfb2a819fd790403396de2c3401

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.6.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cea6eaea4d8485f19f50d716877074ea7baa00618e8e79afcfc8f475df737cd2
MD5 413f22ebc2fba66be9a5b0cb56b4cbc9
BLAKE2b-256 2c2e31d241da15944e8d19cf54074e6155f7506b7ac1e8b400524c5e35b37358

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.6.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 971db35c88a17a3448d3803ece5ab8d6887c485233f043f9bafd49cba8ecb839
MD5 da56e0e4f87c7a866d9106a7178afe60
BLAKE2b-256 e48e6a57b17a45a568cf2aa3687aa3020aeb008485a703601840a6b06fe06239

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.6.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 98757c09e1ff65f68b8c2f36259cbea795f5c53bfdb8342338ddbec4da6c129c
MD5 e8347a47ce5186097652cae0e1e70475
BLAKE2b-256 971aaa701c3418ab6872705d1d5fc5576de438c1ba5461279aa8f3c663fe33d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.6.1-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e2fc508287ad33bc05f9f49498c08546985d3d05241ef567bdbb120ac08492f1
MD5 66e073e3bbdc4e4e4ef4a1bd8f57d18e
BLAKE2b-256 47789da75920882bdfa634a1f2ebccc087eb53d3c6eb4c1486ccde967bd89eb6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.6.1-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 ff607fcd5db9e9386f2d9946402c9db950bd638e81c76db1f591caa40a89d5bb
MD5 22ac77d02026a8baa7876a426416a10e
BLAKE2b-256 0e7c7dbb21d4fecb8c825700c5bcac48f86f41928e0559bc212c08eacaa04f6e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.6.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4a7770b39babd2e62c6f667a14d68b2ecc48d0419fde871933d61f7f00d393ec
MD5 575b62d2c7e531f279a1b8bcdcea8354
BLAKE2b-256 4461b4221403a8f4423d6ceaaf15fb2ce3acf447c07a1556038a05430bc17dee

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.6.1-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.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7b037cbaf7c22957d0a013f8c0da073f61effec664c7a931056389baa7da9d03
MD5 9aef09210c3f7fcf9e65ee054fae17b6
BLAKE2b-256 f9afbd0d839c36c7fa946d70650e7e5c04efb3ac55fc82358c0925be3329af22

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.6.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0bd9227f653de57c4414b1da2f2f1a77dc8cadb2e863ac3034a11e4f76975a3a
MD5 260a8e82178c2f8262768e2de0a1e815
BLAKE2b-256 c31759fc8e2de13040c04a2f55016d63ff30740b5a42d9e609e70c5e3036dec7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.6.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 113b3c664d2f65ae7772cc639b64698dab77121946c06ce509036dc590ff8bac
MD5 33b7d98f712e6d0dd49e6327b23641cb
BLAKE2b-256 864ee067ab46ebedd9fcdb3f7bc01ae35bf350f2e026fee207f6de68a92f48ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.6.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 2b36b7b70394c5c23bfbfa2d23f88800854e624a89804a447343c0a5cdc9f6b8
MD5 91f4512c102c0851053995c9fb1f48d6
BLAKE2b-256 234f43d2cbfbccf3ac76127b5c62e2932f5cafb0b50798926bc0f5f133bdaa76

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.6.1-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 8634c0107d7f020a835d8c119210ebca6f594b78e49f14316fcb3b6cb8067057
MD5 aeced2c0f7012fae7b54023ced85c754
BLAKE2b-256 9edff0761eda83c7b4afad92e57be13d9e31501191c43d0f81599edc633a453e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.6.1-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 719cbf7510888249f1c2a86c60dcaea2949889bd4bf22fcf382a0dff6b8dec21
MD5 26836cf7f8c6e081459610a51794f8e5
BLAKE2b-256 25b87c19146bc5481ea43634d99dfa73784b7cf242fde1b1c0470fa6c9e3ddf5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.6.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 95344242d1ed4633c96f6e8a2581cf7ea45e0d32c4608321e1177ed3da458a32
MD5 3cbcaa90eb69b4dbadb47341035f689e
BLAKE2b-256 1c0c8637370012e43af5520d8196db740e5cd279615fec55fc800d31d7d203c5

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.6.1-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.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 42fc49339f7b6b30a97a08d2dc24cacaf8fcae59de721db2f5d2c53f108e49e4
MD5 29eb65f1808ad361b7fcdd2356218900
BLAKE2b-256 e9ab4058fc2bfca75e8d8cb85cd5f5b1ec0f01ca3fb9d7a5612d8a053ae774ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.6.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4b7d02fadfa2b88b865d190d2f8973647ddba0fa53057a48f32db00a9382591d
MD5 a4a7ada07e1a8aa8e76307a1a38f171a
BLAKE2b-256 82fe9ae5f540863795ce61e697ceba83e4cdcd90d3416df08d04ff002bd404cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.6.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 b6ee9ac2ca5ecbb771cf72e3b0638dd5585de51591c82b7f66bab5cd01c48dcc
MD5 176a95b1508757107de10b1a16a4c364
BLAKE2b-256 e059eae02c21a9f95abe2d9561063afc6644ae557d7abfc5fee3ebdfbbbbc1df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.6.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 db30ba093bcd201e0d0efcd5e0d186bcfcc149e66a64d3807642554e7689d6f9
MD5 e8ed06d8b390d79db68dabc60573d9c7
BLAKE2b-256 e607959c0dc0f774f683466265989a2463de2a42375555837f01b08046444cd0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.6.1-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f83026b85b538075574110e420f6a1077dd2e695051f219bc90cd77c2b59d63b
MD5 16afb67659a0779ca06831662b5b7ab7
BLAKE2b-256 9a48ec3a022240ec7dc64fd8ec1a37052ae1577915a04e15e95d1c0cda03e14f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.6.1-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 46d640e98f08e445bca06f031c50ab9cca7a718241b4d5210dbfcebcfcd4119e
MD5 ad5abdfbd18dff8728e63c305d254882
BLAKE2b-256 2cf81aa3789aba12abf87692a58cf9c8f19e88e0da187fd6c44fc8cd02d0a953

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.6.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 048a53e06758cfd4a04f626bf9edc6030f371269775714320160eacc4936c681
MD5 623a8ee894b3c46d8a1d54588c0a71bd
BLAKE2b-256 ff8e69f8126e301c9ef44e917acd2f4cb9f50a29d0ca5d6014dc35f493311c71

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.6.1-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.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 df6939404c202e639eb7ed7d90c1c009ca34d952b01990c602339a780e90b919
MD5 57374f5f25cfd8b7276c44b8f7beb0a4
BLAKE2b-256 f00f08d07d32fc5bdf84b0fb5399d0283fa59e823a727c16677b78dfec6cd9ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.6.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7b40d7ffd18b1b303b5e151a4cf00d2c3bd7c3fb094d134e1a47b6be66ceb297
MD5 8ff11f6b0fd447994bf17e64f526ab23
BLAKE2b-256 1f8e68cf97da68fadd605a5dea215dd1ab73fec54ef140ae801f4c95cf3accfd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.6.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 14b983996e69fe2d8aa6435b49391eec22da7ac89646a7ece0bebd427a026203
MD5 4f0b39ac2fee91e77ad48ca586b6ce2e
BLAKE2b-256 f09bdba5f676de1d1bad222e38767676b9657ab9a2086d5a8aa0bf21dbecbeda

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.6.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 8044c5279796eb9c2d824d602c60fa0166efb08ad431f05fa9d9cfcbd5e487c9
MD5 2b40f4468f0936d9f4b6cfe07eb978e6
BLAKE2b-256 8457a9e252bfadf8ec754cff5964412e2d6f1c5460649a3293ad5fd34f41b00f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.6.1-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 b7f93679d38164ec3faa2f13e3dba24269e33c0a55345c4f27155c34d08ef0bf
MD5 30a8a0fa22b174d4c4cbf1313b93c4df
BLAKE2b-256 7d87b38dbf576a93dcd5011a805d5e257ad1d64df2e51f0c0de73d230ae74b9e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.6.1-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 09b1489d3119002aec4e70e1664f986ee122f6b5b20bed606e766d2fabd0bac7
MD5 a943ba1997036b2f323ed261b14e8091
BLAKE2b-256 e0dbc23cef6f7432e2b807a66da294a06ab115b3af4cdc6edc131f8ad92ae253

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.6.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 eeab94027db921d52b440233addea57015e6dbd1f04accc84270bd10c9fe9c2b
MD5 ce4475d71f7ef6a4d84e4206c7d8de37
BLAKE2b-256 b985e480c5abd30d6c0da782a88c50fc9d9bb12872b18116c62f02c43f6fb346

See more details on using hashes here.

File details

Details for the file unicorn_binance_rest_api-2.6.1-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.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 061975f5928632e73f01ab2506cc036a29aaf76e6d680cdb106802398b1b5082
MD5 b1f907ab924b721aa6e358bf9709441a
BLAKE2b-256 842c22e0594ac65d5cd6aeffadd5ac0598e620ae2a3e8456df274db2a073c133

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_rest_api-2.6.1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 18581592aa4806aac3f37821ffa7c715188937ad345590162f0f4b10c46ed260
MD5 46d0da37a7d49233693987ba2567b1d4
BLAKE2b-256 f5544cab0d26e3490d32894e1a89afe228c36e264bc6c95ff4e59ff45035a63c

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