An unofficial Python API to use the Binance REST API`s (com+testnet, com-margin+testnet, com-isolated_margin+testnet, com-futures+testnet, us, tr) in a easy, fast, flexible, robust and fully-featured way.
Project description
UNICORN Binance REST API
Description | Installation | How To | Documentation | Examples | Change Log | Wiki | Social | Notifications | Bugs | Contributing | Leave a review | Disclaimer | Commercial Support
An unofficial Python API to use the Binance REST API`s (com+testnet, com-margin+testnet, com-isolated_margin+testnet, com-futures+testnet, us, tr) in a easy, fast, flexible, robust and fully-featured way.
Part of 'UNICORN Binance Suite'.
Get a UNICORN Binance Suite License
To run modules of the UNICORN Binance Suite you need a valid license!
Receive Data from Binance REST API Endpoints
Initiate BinanceRestApiManager()
from unicorn_binance_rest_api.manager import BinanceRestApiManager
ubra = BinanceRestApiManager(api_key="YOUR_BINANCE_API_KEY",
api_secret="YOUR_BINANCE_API_SECRET",
exchange="binance.com")
Print a snapshot of an order book
print(f"BNBBTC order book: {ubra.get_order_book(symbol='BNBBTC')}")
Get all symbol prices
print(f"All tickers:\r\n{ubra.get_all_tickers()}")
Get the used weight
Please Note: https://github.com/binance-us/binance-official-api-docs/blob/master/rest-api.md#limits
print(f"Used weight: {ubra.get_used_weight()}")
Send data to Binance REST API Endpoints
Initiate BinanceRestApiManager()
ubra = BinanceRestApiManager(api_key="YOUR_BINANCE_API_KEY",
api_secret="YOUR_BINANCE_API_SECRET",
exchange="binance.com-isolated_margin")
Buy BTC with a market order using 100 USDT
buy_order = ubra.create_margin_order(symbol="BTCUSDT",
isIsolated="TRUE",
side="BUY",
type="MARKET",
quoteOrderQty=100)
print(f"Buy Order Result: {buy_order}")
Stop ubra
after usage to avoid memory leaks
ubra.stop_manager()
Get the right logger:
logging.getLogger("unicorn_binance_rest_api")
Description
This is a fork of Sam McHardy`s python-binance 0.7.10 - package. Extended, cleaned up and reduced to pure REST tasks, with PRs added and improved. No asyncio support!!
The Python module UNICORN Binance REST API provides an API to the Binance REST API`s of Binance (+Testnet), Binance Margin (+Testnet), Binance Isolated Margin (+Testnet), Binance Futures (+Testnet), Binance COIN-M Futures, Binance US and Binance TR and needs to be used with a valid api_key and api_secret from the Binance Exchange www.binance.com, testnet.binance.vision or www.binance.us.
Be aware that the Binance REST API is request based. if you want to send and receive high frequency and high volume data, you can use the UNICORN Binance Websocket API in combination.
What are the benefits of the UNICORN Binance REST API?
- Supported exchanges:
Exchange | Exchange string |
---|---|
Binance | binance.com |
Binance Testnet | binance.com-testnet |
Binance Margin | binance.com-margin |
Binance Margin Testnet | binance.com-margin-testnet |
Binance Isolated Margin | binance.com-isolated_margin |
Binance Isolated Margin Testnet | binance.com-isolated_margin-testnet |
Binance USD-M Futures | binance.com-futures |
Binance USD-M Futures Testnet | binance.com-futures-testnet |
Binance Coin-M Futures | binance.com-coin_futures |
Binance US | binance.us |
Binance TR | trbinance.com |
-
Helpful management features like
get_used_weight()
, -
Integration of test cases and examples.
-
Customizable base URL and request timeout.
-
Socks5 Proxy support:
ubra = BinanceRestApiManager(exchange="binance.com", socks5_proxy_server="127.0.0.1:9050")
Read the docs or this how to for more information or try example_socks5_proxy.py.
-
Excessively tested on Linux, Mac and Windows
If you like the project, please it on GitHub!
Installation and Upgrade
The module requires Python 3.7 or above, as it depends on Pythons latest asyncio features for asynchronous/concurrent processing.
For the PyPy interpreter we offer packages only from Python version 3.9 and higher.
The current dependencies are listed here.
If you run into errors during the installation take a look here.
A Cython binary, PyPy or source code based CPython wheel of the latest version with pip
from PyPI
Our Cython and PyPy Wheels are available on PyPI, these wheels offer significant advantages for Python developers:
- Performance Boost with Cython Wheels: Cython is a programming language that supplements Python with static typing and C-level performance. By compiling Python code into C, Cython Wheels can significantly enhance the execution speed of Python code, especially in computationally intensive tasks. This means faster runtimes and more efficient processing for users of our package.
- PyPy Wheels for Enhanced Efficiency: PyPy is an alternative Python interpreter known for its speed and efficiency. It uses Just-In-Time (JIT) compilation, which can dramatically improve the performance of Python code. Our PyPy Wheels are tailored for compatibility with PyPy, allowing users to leverage this speed advantage seamlessly.
Both Cython and PyPy Wheels on PyPI make the installation process simpler and more straightforward. They ensure that you get the optimized version of our package with minimal setup, allowing you to focus on development rather than configuration.
Installation
pip install unicorn-binance-rest-api
Update
pip install unicorn-binance-rest-api --upgrade
A Conda Package of the latest version with conda
from Anaconda
The unicorn-binance-rest-api
package is available 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.1.2) you determined here:
pip install https://github.com/LUCIT-Systems-and-Development/unicorn-binance-rest-api/archive/2.1.2.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
- example_buy_and_sell_oco_order_isolated_margin.py
- example_doing_something.py
- example_easy_migration_from_python-binance.py
- example_historical_data.py
- example_logging.py
- example_orders.py
- example_socks5_proxy.py
- example_version_of_this_package.py
Howto
- How to Obtain and Use a Unicorn Binance Suite License Key and Run the UBS Module According to Best Practice
- Restful Binance Requests in Python with UNICORN Binance REST API
- How to Download Klines from Binance using Python?
- How to Connect to binance.com REST API using Python via a SOCKS5 Proxy
- Buy an Asset and instantly create a Take Profit and Stop Loss OCO Sell Order using Python in Binance Isolated Margin
Project Homepage
https://github.com/LUCIT-Systems-and-Development/unicorn-binance-rest-api
Wiki
https://github.com/LUCIT-Systems-and-Development/unicorn-binance-rest-api/wiki
Social
Receive Notifications
To receive notifications on available updates you can
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:
- https://t.me/binance_api_announcements
- https://t.me/binance_api_english
- https://t.me/Binance_USA
- https://t.me/TRBinanceTR
- https://t.me/BinanceDEXchange
- https://t.me/BinanceExchange
How to report Bugs or suggest Improvements?
List of planned features - click 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!
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
We open source!
You want to say Thank You?
We hope you are enjoying using our libraries and that they are proving to be useful to you. If you have a moment, we would greatly appreciate it if you could leave us a review on Google. Thank you for your support!
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
Do you need a developer, operator or consultant? Contact us for a non-binding initial consultation!
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
File details
Details for the file unicorn-binance-rest-api-2.1.2.tar.gz
.
File metadata
- Download URL: unicorn-binance-rest-api-2.1.2.tar.gz
- Upload date:
- Size: 520.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 097d6b48ad40b7649f173d566bbfc79f4d567c9e9573b5d726b93d0d45519f60 |
|
MD5 | f9d36a66c7f27e1562d2e344752931f2 |
|
BLAKE2b-256 | 322233d57357b37391e7cd9645f62c09b36dad4ebab92661f14943d3b6f2a106 |
File details
Details for the file unicorn_binance_rest_api-2.1.2-pp310-pypy310_pp73-win_amd64.whl
.
File metadata
- Download URL: unicorn_binance_rest_api-2.1.2-pp310-pypy310_pp73-win_amd64.whl
- Upload date:
- Size: 317.6 kB
- Tags: PyPy, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f21915a1881b070c232d050ea824dcf7140914bf80802ad91716dcddaf8f6427 |
|
MD5 | e2350daeeeadbf40b1be6d9eef5fa77f |
|
BLAKE2b-256 | 2fda4509758432c63e336a8e1d9c1b912a6f2fd6ee461b6701ee0332b4aac361 |
File details
Details for the file unicorn_binance_rest_api-2.1.2-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: unicorn_binance_rest_api-2.1.2-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 354.1 kB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.5+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c58549584cac66d98bfcb2fdea015a2d3079251a12cf25f828c68504460061ef |
|
MD5 | 6fa6f2bb3bbb24891aabe4bf04274882 |
|
BLAKE2b-256 | 6d852a036ff4d1f5892f6f86ee3bd1b5fd36f8c2391e006117a57d29fc0f0af1 |
File details
Details for the file unicorn_binance_rest_api-2.1.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: unicorn_binance_rest_api-2.1.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 346.6 kB
- Tags: PyPy, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 27844a9823c82726d5e70cf0a52d9eb891a796c92c45c0f2c2cd425c3a8e85f0 |
|
MD5 | 8f8592f0328e57bb5ce70315b1474b06 |
|
BLAKE2b-256 | dc34164f685ab46e5c6140eea1b712d5b050a486d9612ea95f80e73e9d7bc58f |
File details
Details for the file unicorn_binance_rest_api-2.1.2-pp310-pypy310_pp73-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: unicorn_binance_rest_api-2.1.2-pp310-pypy310_pp73-macosx_10_9_x86_64.whl
- Upload date:
- Size: 326.2 kB
- Tags: PyPy, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5d29ffad2ac47080e31759646a15fe31599e9dcb8faf244a055a23e2d64f45b3 |
|
MD5 | 63310f3beaabe77bdc1c8e8df8dcdeb5 |
|
BLAKE2b-256 | 7871dc8b558861c2983ea288fb8caac41ffbd9d1df04fe46b091caa594357e2b |
File details
Details for the file unicorn_binance_rest_api-2.1.2-pp39-pypy39_pp73-win_amd64.whl
.
File metadata
- Download URL: unicorn_binance_rest_api-2.1.2-pp39-pypy39_pp73-win_amd64.whl
- Upload date:
- Size: 317.6 kB
- Tags: PyPy, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 020269fb19a4ef97be19a46b55934071a1a140b6f6a1067c102fdc054a099785 |
|
MD5 | 4997ee7a6979de6b5f2f80b28ff1512e |
|
BLAKE2b-256 | a083bfeee78680d79c0e45aed9c4168269d7b5c1229f2a6312b4c1ee55aa269d |
File details
Details for the file unicorn_binance_rest_api-2.1.2-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: unicorn_binance_rest_api-2.1.2-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 354.3 kB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.5+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3d339a936e1c1645d7891fbdae32911734e30e067ab445c4a156d5119dbbd3e8 |
|
MD5 | 9cee98576fda911454637685bf19c2f9 |
|
BLAKE2b-256 | c5bc379f6d3a595f1868f742d602dcab0ad560c6bdd12a3c9c759874422a853e |
File details
Details for the file unicorn_binance_rest_api-2.1.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: unicorn_binance_rest_api-2.1.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 346.9 kB
- Tags: PyPy, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 294fe11efa1f52ae3cc159070dab967a2241effffbb27e8769c4f873c5e429b6 |
|
MD5 | f423106991f95b68dae1fe0f58d3ab68 |
|
BLAKE2b-256 | 9417e8028ef93cf5e06e1981734d36dfb7fffc58d5e718ac4fbe7935d2be296c |
File details
Details for the file unicorn_binance_rest_api-2.1.2-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: unicorn_binance_rest_api-2.1.2-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
- Upload date:
- Size: 326.1 kB
- Tags: PyPy, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 89da868db60518b32ed456f03dd9eff1b3c4040293e8ecd479b92bc029b2907e |
|
MD5 | f0d6bf0460957f6e51a7f15aab5e10c7 |
|
BLAKE2b-256 | 00d966c156808da599fd32ea3ff3d13016677493d8526b920222bc1775020861 |
File details
Details for the file unicorn_binance_rest_api-2.1.2-pp38-pypy38_pp73-win_amd64.whl
.
File metadata
- Download URL: unicorn_binance_rest_api-2.1.2-pp38-pypy38_pp73-win_amd64.whl
- Upload date:
- Size: 317.7 kB
- Tags: PyPy, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2975dc91ace6c608747b12becc9231d4edd18dccea0f8ca751c77e8c14111790 |
|
MD5 | da89b3370d956cb55c5c80bbf3d20b82 |
|
BLAKE2b-256 | f737d81c669990c1332236577e5cb0d72e932c54e96c20eabb54301292800a3f |
File details
Details for the file unicorn_binance_rest_api-2.1.2-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: unicorn_binance_rest_api-2.1.2-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 351.1 kB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.5+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 21245af40af0def9a973cbcbd72c4e8722f0df54eab704a89cd3b0a91a6f566a |
|
MD5 | 749d120685810fc6f2334c6686fab88d |
|
BLAKE2b-256 | df608ab6a8b1e812b156f7785eaf190a9e838dd7747877a4f62c7ec7f0a669cb |
File details
Details for the file unicorn_binance_rest_api-2.1.2-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: unicorn_binance_rest_api-2.1.2-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 345.3 kB
- Tags: PyPy, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d8c68d3593e0b5ea5da15662c1b1274babdcdcfa970608b0fc7b7ebaf713c2fa |
|
MD5 | fd5c5fb55e7280c616bad83542479c11 |
|
BLAKE2b-256 | b49ee7c33f41ef0eed282bd8f3ffe79d0a2ec6e68035977222c3742743e3c8e7 |
File details
Details for the file unicorn_binance_rest_api-2.1.2-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: unicorn_binance_rest_api-2.1.2-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
- Upload date:
- Size: 324.5 kB
- Tags: PyPy, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 25243af76f1a0803225fecf8c07f4670675359fb3bbb0badd2b72d3dbbac4795 |
|
MD5 | e7eda4123306e744001872f40066fae0 |
|
BLAKE2b-256 | cc1fbbb3c08237a9833f1b21dc8b5255f1a200a03b0b9d0ee38d074b169d8c5d |
File details
Details for the file unicorn_binance_rest_api-2.1.2-pp37-pypy37_pp73-win_amd64.whl
.
File metadata
- Download URL: unicorn_binance_rest_api-2.1.2-pp37-pypy37_pp73-win_amd64.whl
- Upload date:
- Size: 317.8 kB
- Tags: PyPy, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b0e8d8e5d8a8190584fe79af0b22d2a80e1238d471a1cfa2e038a280604405b0 |
|
MD5 | 866d39082041a3658c34c6b3335dffa2 |
|
BLAKE2b-256 | c67bdb845f5878e7940f1873fc6abbfa24792503e57238ab26402a7d76946aed |
File details
Details for the file unicorn_binance_rest_api-2.1.2-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: unicorn_binance_rest_api-2.1.2-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 351.1 kB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.5+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 16bd0c8a3ec1140685bf02c00db24b0aeabfaacfb4afeda8b8207195a2e4f86f |
|
MD5 | 5cf1bbeeb4caf9f8c22e6e4ab8028562 |
|
BLAKE2b-256 | 0cdfb449e483dc72b8d276b43a7dcc2b11ff492b9b2a245f2ce49d34c851954b |
File details
Details for the file unicorn_binance_rest_api-2.1.2-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: unicorn_binance_rest_api-2.1.2-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 345.3 kB
- Tags: PyPy, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 43696ca06aa64950f891064b0ad7678299fd4e23d96735653dc64c343fd1ce22 |
|
MD5 | 729bb11e5aed9095883c8e13d00b0fb5 |
|
BLAKE2b-256 | 4be46d95c6be3b72acef65d21540f8668553030084ae905f4f40c0c04084e7bc |
File details
Details for the file unicorn_binance_rest_api-2.1.2-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: unicorn_binance_rest_api-2.1.2-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
- Upload date:
- Size: 324.5 kB
- Tags: PyPy, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6b1c2be7725f0bded56f08a372949a4f39bb847733b524e34a7bac4536f76b2e |
|
MD5 | b5eeb4868341a4e07442192f746756a4 |
|
BLAKE2b-256 | 9071566ee28411da556d5414dd2eb824e4ebb9e25e58873b87ff6ee3b54b8f96 |
File details
Details for the file unicorn_binance_rest_api-2.1.2-cp312-cp312-win_amd64.whl
.
File metadata
- Download URL: unicorn_binance_rest_api-2.1.2-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 341.7 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 97eb25fde9a9c94794776ac78d1bb710dbc33b150ebd109a6a33411596872ec8 |
|
MD5 | 28359b6904edf1439fdfbe7d4f81c0ce |
|
BLAKE2b-256 | 9df4423c72f9fc3c6689b84c194788b93c0972c9c11bb47bdbd9c5e236ebbad3 |
File details
Details for the file unicorn_binance_rest_api-2.1.2-cp312-cp312-win32.whl
.
File metadata
- Download URL: unicorn_binance_rest_api-2.1.2-cp312-cp312-win32.whl
- Upload date:
- Size: 293.6 kB
- Tags: CPython 3.12, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f2addb57e50b2aa850f30473b270662d3acb70a2b8a0f05dd5465cacbb5ab5d5 |
|
MD5 | 872fa529f97e351537b83e3d8c01f4a8 |
|
BLAKE2b-256 | de382b658fdb5de7bdbc9fd238d983ede1f31005bc08501430f811daf6bc48c3 |
File details
Details for the file unicorn_binance_rest_api-2.1.2-cp312-cp312-musllinux_1_1_x86_64.whl
.
File metadata
- Download URL: unicorn_binance_rest_api-2.1.2-cp312-cp312-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 2.2 MB
- Tags: CPython 3.12, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 82c15c291e6210f343214d250357641e03eed9d34fe26e49efc076687ca79f11 |
|
MD5 | 48b6bf995a18b5260478b2c27470bcea |
|
BLAKE2b-256 | 59440d6c7ce5d17a40b288245edd4306090c1b7125bc93b26c737c28dc146a4b |
File details
Details for the file unicorn_binance_rest_api-2.1.2-cp312-cp312-musllinux_1_1_i686.whl
.
File metadata
- Download URL: unicorn_binance_rest_api-2.1.2-cp312-cp312-musllinux_1_1_i686.whl
- Upload date:
- Size: 2.0 MB
- Tags: CPython 3.12, musllinux: musl 1.1+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 46346b6336310bbcc5f3a0073e9fac649f64a57e08b4b52297177b8d136dfe07 |
|
MD5 | 8181ba07eba16a66ea6471d46f7bcc9b |
|
BLAKE2b-256 | ded0e051e28bf3eb2007f7e7b4d8a8055c39e404c8ddde03be9adf995f9140bf |
File details
Details for the file unicorn_binance_rest_api-2.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: unicorn_binance_rest_api-2.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 2.2 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 24f7050a20ea933e27d035e2f8c4365a46f73b652127d26157b471f48dea238c |
|
MD5 | 7248f1853ca0c6a3a80654c502861473 |
|
BLAKE2b-256 | 87cb84329005457a7de170794f3378799dbb5ea250e130ccdc712564416a81c7 |
File details
Details for the file unicorn_binance_rest_api-2.1.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: unicorn_binance_rest_api-2.1.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 2.0 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9215d73903bd818200ec4074c3ed38239415b0373500ec5e81fe6c3a03216238 |
|
MD5 | 2c88fa4f1c775340f9b7b4a1afa1cfb6 |
|
BLAKE2b-256 | 5f6cf2154df4081c2a7b45d1152e1e8b55b8efd55a492eb0bbc069cd2630f9f4 |
File details
Details for the file unicorn_binance_rest_api-2.1.2-cp312-cp312-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: unicorn_binance_rest_api-2.1.2-cp312-cp312-macosx_10_9_x86_64.whl
- Upload date:
- Size: 402.6 kB
- Tags: CPython 3.12, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 69f04f3270d43b19450c20f40661bfcae0fc3cd25a6f7b4d8befa5de4f5dcd67 |
|
MD5 | 3d89299d6a811c4f74ceb511b6925639 |
|
BLAKE2b-256 | cacfe9122e086adce0f80251f2b5de8ee043122dd87d6fac74e1904d627c1a4f |
File details
Details for the file unicorn_binance_rest_api-2.1.2-cp311-cp311-win_amd64.whl
.
File metadata
- Download URL: unicorn_binance_rest_api-2.1.2-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 342.6 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8f00b4c63c2de8f2e481ff43b6b692f24a9234221bf1ceec9cb3b3f2447a62af |
|
MD5 | abfbcde63abed652f4c08a090b3b197d |
|
BLAKE2b-256 | 2f8bef257d014c003efae165e143e9b19b919dbf1e37d2ef266623b2a1712c60 |
File details
Details for the file unicorn_binance_rest_api-2.1.2-cp311-cp311-win32.whl
.
File metadata
- Download URL: unicorn_binance_rest_api-2.1.2-cp311-cp311-win32.whl
- Upload date:
- Size: 295.4 kB
- Tags: CPython 3.11, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b22a364345f839ab293e40296903e4a923fb828e7301a7982777c0d3e67fd88f |
|
MD5 | 76226708edfed06b7f8a03bc5664692b |
|
BLAKE2b-256 | 682ac70c3ba844e4b606acf35528195d5d8c6136917ee52b11689327fcb257c6 |
File details
Details for the file unicorn_binance_rest_api-2.1.2-cp311-cp311-musllinux_1_1_x86_64.whl
.
File metadata
- Download URL: unicorn_binance_rest_api-2.1.2-cp311-cp311-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 2.2 MB
- Tags: CPython 3.11, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c0ea710e3ed3d0fd32ecaaa48c15ee78730bbc25b45ee036f43d3a6f4900781b |
|
MD5 | 45f713b58eb57a31497ef9018f372023 |
|
BLAKE2b-256 | 5e8c7ca3acbf1670a8aa225aac22086d567e0867c54aafc008869f1074219349 |
File details
Details for the file unicorn_binance_rest_api-2.1.2-cp311-cp311-musllinux_1_1_i686.whl
.
File metadata
- Download URL: unicorn_binance_rest_api-2.1.2-cp311-cp311-musllinux_1_1_i686.whl
- Upload date:
- Size: 2.1 MB
- Tags: CPython 3.11, musllinux: musl 1.1+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d3776f63b103d42dccad99ce723300d73a094aef5f625ce6e6c1644afbebd06f |
|
MD5 | dd4a1823f961d258783a53335c130e29 |
|
BLAKE2b-256 | 0d60a6713134836c1a5c82fadd7ec7a08004e34e64a1f15152fe3589f3c32f54 |
File details
Details for the file unicorn_binance_rest_api-2.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: unicorn_binance_rest_api-2.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 2.2 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 200a112353d8cc723d85f9126c3b5ad70e629824ba96935921ab8d1aeea9c694 |
|
MD5 | 176cbc51fed211cabf5f7125f4b62156 |
|
BLAKE2b-256 | 1fda329869318615ee57f2e6bd1198c90312572efb3dd0004faa56f39dd4be42 |
File details
Details for the file unicorn_binance_rest_api-2.1.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: unicorn_binance_rest_api-2.1.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 2.0 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 62d69062dae7984e48dd712fa999179cc1f61678f6c4a68bd0b12b6113163000 |
|
MD5 | e61c73bf8c5112b508afa25aab0b1e6c |
|
BLAKE2b-256 | 569122dccf203cf08be1e3ea18158b619fac2ff3bcb3bf68934f3ecb5457e378 |
File details
Details for the file unicorn_binance_rest_api-2.1.2-cp311-cp311-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: unicorn_binance_rest_api-2.1.2-cp311-cp311-macosx_10_9_x86_64.whl
- Upload date:
- Size: 403.9 kB
- Tags: CPython 3.11, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e53d0611c6a0c3b510dcbc66e5b4345d68be51ceed0dd29168802c17db77a6cf |
|
MD5 | 4f1e7957c799ad0b452ee11489df014a |
|
BLAKE2b-256 | 534eed0dac1408d163cca8747ed97edfaffa391234a1b23cecb00be84a167172 |
File details
Details for the file unicorn_binance_rest_api-2.1.2-cp310-cp310-win_amd64.whl
.
File metadata
- Download URL: unicorn_binance_rest_api-2.1.2-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 341.4 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 37302bc7c3897ab7bb22a592c1c8ac32bd77b08e7333aa4dbe82e6cb15029df6 |
|
MD5 | f732ce6e1588d481bbba26c45cb30fd4 |
|
BLAKE2b-256 | 3d77b85af274120864df9821254f259a7fccd76ff35af84e45bef217dd99acea |
File details
Details for the file unicorn_binance_rest_api-2.1.2-cp310-cp310-win32.whl
.
File metadata
- Download URL: unicorn_binance_rest_api-2.1.2-cp310-cp310-win32.whl
- Upload date:
- Size: 295.2 kB
- Tags: CPython 3.10, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8a4198ed0a56174ad3023d488885dfb9b7d9a9cf8a3ad41dd02eee5d5c7b2a7d |
|
MD5 | d1b0b08e983caea3162e4be2219c612f |
|
BLAKE2b-256 | 1a138abf041552e82f1d0b8d286068b9318e04d8790bce2c48fc92dc0cc3e890 |
File details
Details for the file unicorn_binance_rest_api-2.1.2-cp310-cp310-musllinux_1_1_x86_64.whl
.
File metadata
- Download URL: unicorn_binance_rest_api-2.1.2-cp310-cp310-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 2.0 MB
- Tags: CPython 3.10, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8269892060c2cb58e895f087601e8f77d971c5c96889a6f5a8c0f89cd0ba13d5 |
|
MD5 | 7f2987f24285bc4a93b344a92a933fba |
|
BLAKE2b-256 | 24a44516360457b2666ba1a763d019d64802b2f9f6a3bdfe03b68281dbd5c34e |
File details
Details for the file unicorn_binance_rest_api-2.1.2-cp310-cp310-musllinux_1_1_i686.whl
.
File metadata
- Download URL: unicorn_binance_rest_api-2.1.2-cp310-cp310-musllinux_1_1_i686.whl
- Upload date:
- Size: 1.9 MB
- Tags: CPython 3.10, musllinux: musl 1.1+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 49219cb183dcf82078a2717377401899eabb27e4793084b2fe829631fe52c348 |
|
MD5 | b2a1fb3f5ad8ac7a525ece5811ddadbc |
|
BLAKE2b-256 | e089b2275e707b2cd9a59ccbfb40388e8126d51f0d341be09646372f0dd9f947 |
File details
Details for the file unicorn_binance_rest_api-2.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: unicorn_binance_rest_api-2.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 2.0 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 965b0cfac7b8ad908dadbd90549d8d44e7924632cf4d47f4918176f06b938e0a |
|
MD5 | 15f99882bdd29d39823424cbcecc7085 |
|
BLAKE2b-256 | 421f395ca4fb3867e79c42a85aa13e578452f82400480dff88044af9a2450187 |
File details
Details for the file unicorn_binance_rest_api-2.1.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: unicorn_binance_rest_api-2.1.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d4efe52fa4a4ec3a978bdaa8bb096846ad4f98413c906daec82ca3b68850c22a |
|
MD5 | 96097ef94c0de66e9c7a1e0e474936b8 |
|
BLAKE2b-256 | 9cdc57265d5ff01cadd6a5389f0dbe81e269729c5604254f8544f49ed8039183 |
File details
Details for the file unicorn_binance_rest_api-2.1.2-cp310-cp310-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: unicorn_binance_rest_api-2.1.2-cp310-cp310-macosx_10_9_x86_64.whl
- Upload date:
- Size: 398.6 kB
- Tags: CPython 3.10, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7c58d41a6b5eb614d378ea6c40cd86a5a2b5fa72625a36b0b39a98ff3291c331 |
|
MD5 | 5099efd75ff86493e51be255908fb944 |
|
BLAKE2b-256 | a88ef648f260366d63d73389878f1267df2a0d805583a8460fa24ee901cce33f |
File details
Details for the file unicorn_binance_rest_api-2.1.2-cp39-cp39-win_amd64.whl
.
File metadata
- Download URL: unicorn_binance_rest_api-2.1.2-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 341.5 kB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7a79122cc9b71b5188ac2718395bb1905c1ca85992caf87762e05731c752f7bd |
|
MD5 | 79ab13ebb5740e872249e7724cdbdda2 |
|
BLAKE2b-256 | ae8504202a5ff4a2c2610887fe705905c07858097bf7360f8bd89d149d17200d |
File details
Details for the file unicorn_binance_rest_api-2.1.2-cp39-cp39-win32.whl
.
File metadata
- Download URL: unicorn_binance_rest_api-2.1.2-cp39-cp39-win32.whl
- Upload date:
- Size: 295.2 kB
- Tags: CPython 3.9, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 688119cf64e2162b1169d96bb0a10b3b59a0feb3489487b3d005af20175a7726 |
|
MD5 | 8feda0b55053172ccc9038b1347b6ded |
|
BLAKE2b-256 | 6b0118e10e762ddd8cf1a0b0faa30a76b3bdb765b33f90bc528a2342a02b2f0d |
File details
Details for the file unicorn_binance_rest_api-2.1.2-cp39-cp39-musllinux_1_1_x86_64.whl
.
File metadata
- Download URL: unicorn_binance_rest_api-2.1.2-cp39-cp39-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 2.0 MB
- Tags: CPython 3.9, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8783b2fa0249b313683b83beaf5ff6922fcacbc164efc78fee311fa338df165f |
|
MD5 | c1c3cd66518f16079583abce8fad989b |
|
BLAKE2b-256 | 3ec4c51a7c1c07f9979d618fdee0d12a34f9d29043e3f1c20fc587198282f24f |
File details
Details for the file unicorn_binance_rest_api-2.1.2-cp39-cp39-musllinux_1_1_i686.whl
.
File metadata
- Download URL: unicorn_binance_rest_api-2.1.2-cp39-cp39-musllinux_1_1_i686.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.9, musllinux: musl 1.1+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e0ef7c26e13ea6154b4d44ffa45d19d08311f5760877bf36df67923992fe45f4 |
|
MD5 | a8eb5f6ec8c4cff1975c744e34ca9142 |
|
BLAKE2b-256 | 625833e45a06c028fe326e6868876853576cd3c0c4de217a521d36f3745a6eeb |
File details
Details for the file unicorn_binance_rest_api-2.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: unicorn_binance_rest_api-2.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 2.0 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2cb4e5254beb1a508c3d3e8bd137dba5a1c4a116dad30225120fc2f3106541f2 |
|
MD5 | f20c8dbd96b686f056db442c1e00e2e1 |
|
BLAKE2b-256 | 2c911d0ed4ac7660f6aa892e05fc9858ce909ad256fb56456a1c672fc1a6f6bf |
File details
Details for the file unicorn_binance_rest_api-2.1.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: unicorn_binance_rest_api-2.1.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fa7307d2dc30499e8921171066c373beead4eaf924be50414f1b1ed2eeaa023d |
|
MD5 | d697fdc31720137ead572a6ec15c1edf |
|
BLAKE2b-256 | c57a5c00c30be46ea2817f61d7a1cef11d0ec19e1cd98e6c81d7525a9dbd7f8b |
File details
Details for the file unicorn_binance_rest_api-2.1.2-cp39-cp39-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: unicorn_binance_rest_api-2.1.2-cp39-cp39-macosx_10_9_x86_64.whl
- Upload date:
- Size: 398.9 kB
- Tags: CPython 3.9, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 90bbc8ad124f8860eaa24b62a3f3938995605ee08ee24b9984905cfa7975b169 |
|
MD5 | 79d73dd27a4271683bdc9c864b7f02e4 |
|
BLAKE2b-256 | 9cb3e2340fc471559379f22e40fe721990aa776c92250793d8e2de9b1486d367 |
File details
Details for the file unicorn_binance_rest_api-2.1.2-cp38-cp38-win_amd64.whl
.
File metadata
- Download URL: unicorn_binance_rest_api-2.1.2-cp38-cp38-win_amd64.whl
- Upload date:
- Size: 342.4 kB
- Tags: CPython 3.8, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | be91fdd4dbcd1e3d85f71d24db8698c7ac7858ce7a94e687676933a3b82a0e7c |
|
MD5 | 38510c52971449b5c2cac6cbb51ce037 |
|
BLAKE2b-256 | 95b66d11b28d7ef23b64386a0620f32c6dbec358dc1149ec68310beab67f36d7 |
File details
Details for the file unicorn_binance_rest_api-2.1.2-cp38-cp38-win32.whl
.
File metadata
- Download URL: unicorn_binance_rest_api-2.1.2-cp38-cp38-win32.whl
- Upload date:
- Size: 295.6 kB
- Tags: CPython 3.8, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | cf6f4308a210e9157109d4e345618359098e0787ce766b5b66e88237f5d37f13 |
|
MD5 | 59788bfed6ce66bf17376b6427f4ad21 |
|
BLAKE2b-256 | 94c5101b8666ae0d1a673ab73c3a3fa75d754786eea635f058b2c0caf2867259 |
File details
Details for the file unicorn_binance_rest_api-2.1.2-cp38-cp38-musllinux_1_1_x86_64.whl
.
File metadata
- Download URL: unicorn_binance_rest_api-2.1.2-cp38-cp38-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 2.1 MB
- Tags: CPython 3.8, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e3f235132bc428c29e970772737569c21b90b39489242ee0273de684b0d226fd |
|
MD5 | d9adb72fb0067a514d138d5eb21b0a48 |
|
BLAKE2b-256 | 99b3838dcfe57d951f19dc4abe298558dd8ef5eb96a23580896dce9890be8591 |
File details
Details for the file unicorn_binance_rest_api-2.1.2-cp38-cp38-musllinux_1_1_i686.whl
.
File metadata
- Download URL: unicorn_binance_rest_api-2.1.2-cp38-cp38-musllinux_1_1_i686.whl
- Upload date:
- Size: 2.0 MB
- Tags: CPython 3.8, musllinux: musl 1.1+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1a5eca27987f27d15fc5b7918dc1a035bcc9fcbde67ebdeeea668fdddd005842 |
|
MD5 | 43ae8d710d5cb015c4f238ccdc6110cd |
|
BLAKE2b-256 | 06c32182e1347acf1429cec1751d4803064e9c633d0c91a6ccdcf00d5812ed74 |
File details
Details for the file unicorn_binance_rest_api-2.1.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: unicorn_binance_rest_api-2.1.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 2.0 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f1af6c9681cddb5b3a53ac97a1270186daef28b08d9ec39764d1fb810733eaba |
|
MD5 | fa43c5459b0938a9e9ae06ddcdd0a846 |
|
BLAKE2b-256 | 032d018d4aa704e8e431afe2d5c2cbd21b296e609b0ee671027cf0e81415263a |
File details
Details for the file unicorn_binance_rest_api-2.1.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: unicorn_binance_rest_api-2.1.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 1.9 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b43a4e9affbfb9ca390310aa0dd277f1de77f80ec2a4f420ccca6bfb1ac7a32b |
|
MD5 | 961e02b85ee029610850d7582b9cbdeb |
|
BLAKE2b-256 | 98ba6525dc86ce9e2c7a2e1202906d7c27ec9d7d306ed6e236d271d02c44016b |
File details
Details for the file unicorn_binance_rest_api-2.1.2-cp38-cp38-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: unicorn_binance_rest_api-2.1.2-cp38-cp38-macosx_10_9_x86_64.whl
- Upload date:
- Size: 391.0 kB
- Tags: CPython 3.8, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e1a509af3db21ed03ffaa7e82a1999cb056cea55f7ad1e9fc3089982f5302b87 |
|
MD5 | 2e5deef769f35d47d41b99a0b3cdaeb8 |
|
BLAKE2b-256 | ad5ceb2eba804be9e601adbcadd36e7a39ca02fa17f165ffabf9fe9f4e938139 |
File details
Details for the file unicorn_binance_rest_api-2.1.2-cp37-cp37m-win_amd64.whl
.
File metadata
- Download URL: unicorn_binance_rest_api-2.1.2-cp37-cp37m-win_amd64.whl
- Upload date:
- Size: 330.3 kB
- Tags: CPython 3.7m, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a25cdad75e4bf3f898c6e0d7a411ea84824121e423194401b0038b7a540adff3 |
|
MD5 | 707bca4a5c098bfdcf293cd7ad5e0a57 |
|
BLAKE2b-256 | 603b6706db915b851d4711ce9704670d2ccf22ff374ef070b3ebfc26f0062683 |
File details
Details for the file unicorn_binance_rest_api-2.1.2-cp37-cp37m-win32.whl
.
File metadata
- Download URL: unicorn_binance_rest_api-2.1.2-cp37-cp37m-win32.whl
- Upload date:
- Size: 285.3 kB
- Tags: CPython 3.7m, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b5da46f2c8ecb410809682b0043657fff56278f8ef0fd3b9ea38fb2a5a3bc176 |
|
MD5 | 260f5128063f558f8cf11a69a5e10814 |
|
BLAKE2b-256 | 9a57bb001317acb5213f09baeed046f717ca392ce9b84fd3757e4355f810db38 |
File details
Details for the file unicorn_binance_rest_api-2.1.2-cp37-cp37m-musllinux_1_1_x86_64.whl
.
File metadata
- Download URL: unicorn_binance_rest_api-2.1.2-cp37-cp37m-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.7m, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a4eb3857da957a7d57f3bdd5597451c76b48a4279b72f01e083aa93ecefd4345 |
|
MD5 | 17e3654d05bca1d0baa86ec7822da304 |
|
BLAKE2b-256 | baf723cdb8c5b2e67b2ba6a5445342afa95dcc6922ae8ec97031d67a06f3a766 |
File details
Details for the file unicorn_binance_rest_api-2.1.2-cp37-cp37m-musllinux_1_1_i686.whl
.
File metadata
- Download URL: unicorn_binance_rest_api-2.1.2-cp37-cp37m-musllinux_1_1_i686.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.7m, musllinux: musl 1.1+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 00c8b18bd98087b15c659d3f6e3d2fd7c633fea39cf684b40215b49ee795ecd4 |
|
MD5 | a36bb97b0de01b3ce8555bb0d47c0cd5 |
|
BLAKE2b-256 | 8103e09ac391b8c2c26a33ecdd286d472f9523e4d1b9cebf1eda79b9386d59ea |
File details
Details for the file unicorn_binance_rest_api-2.1.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: unicorn_binance_rest_api-2.1.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.7m, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 499f730b6188ba1c8a4c875a9d7bda6e6f27326ffbb3df369261f6e8bece40d8 |
|
MD5 | d1fc5022a23e8ca5a64852e6ef4e39c1 |
|
BLAKE2b-256 | f00b59def1966e71a3a299adcbac99999f1f947a12034a50f5ae389c17a80bfc |
File details
Details for the file unicorn_binance_rest_api-2.1.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: unicorn_binance_rest_api-2.1.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.7m, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 89354ec93eb8d7432749a2a4db36e1e05103d46705451cd27dd030454ce8ccce |
|
MD5 | 9b9a12e696ac34fa855a129903f0e79b |
|
BLAKE2b-256 | a8a6bbb934832ec2cfa468b10d834631df2302a93bc54f7dd7330979d6776fba |
File details
Details for the file unicorn_binance_rest_api-2.1.2-cp37-cp37m-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: unicorn_binance_rest_api-2.1.2-cp37-cp37m-macosx_10_9_x86_64.whl
- Upload date:
- Size: 381.0 kB
- Tags: CPython 3.7m, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f6673cdc33ef25916704c22dd4cd8e2d7c60f5e42560d793b590118620e7d881 |
|
MD5 | 3f72a0db763be0621b78626ec2effe52 |
|
BLAKE2b-256 | 06d08769d4ff9ef15ef18291a4228e38b49be159cb4c96316fa812059aa58535 |