[![Get a UNICORN Binance Suite License](https://raw.githubusercontent.com/LUCIT-Systems-and-Development/unicorn-binance-suite/master/images/logo/LUCIT-UBS-License-Offer.png)](https://shop.lucit.services)
[![Anaconda Release](https://img.shields.io/conda/v/lucit/unicorn-binance-rest-api?color=blue)](https://anaconda.org/lucit/unicorn-binance-rest-api)
[![GitHub Release](https://img.shields.io/github/release/LUCIT-Systems-and-Development/unicorn-binance-rest-api.svg?label=github)](https://github.com/LUCIT-Systems-and-Development/unicorn-binance-rest-api/releases)
[![PyPi Release](https://img.shields.io/pypi/v/unicorn-binance-rest-api?color=blue)](https://pypi.org/project/unicorn-binance-rest-api/)
[![Supported Python Version](https://img.shields.io/pypi/pyversions/unicorn_binance_rest_api.svg)](https://www.python.org/downloads/)
[![License](https://img.shields.io/badge/license-LSOSL-blue)](https://unicorn-binance-rest-api.docs.lucit.tech/license.html)
[![PyPi Downloads](https://pepy.tech/badge/unicorn-binance-rest-api)](https://pepy.tech/project/unicorn-binance-rest-api)
[![PyPi Downloads](https://pepy.tech/badge/unicorn-binance-rest_api/month)](https://pepy.tech/project/unicorn-binance-rest-api)
[![PyPi Downloads](https://pepy.tech/badge/unicorn-binance-rest_api/week)](https://pepy.tech/project/unicorn-binance-rest-api)
[![PyPI - Status](https://img.shields.io/pypi/status/unicorn_binance_rest_api.svg)](https://github.com/LUCIT-Systems-and-Development/unicorn-binance-rest-api/issues)
[![codecov](https://codecov.io/gh/LUCIT-Systems-and-Development/unicorn-binance-rest-api/branch/master/graph/badge.svg?token=5I03AZ3F5S)](https://codecov.io/gh/LUCIT-Systems-and-Development/unicorn-binance-rest-api)
[![CodeQL](https://github.com/LUCIT-Systems-and-Development/unicorn-binance-rest-api/actions/workflows/codeql-analysis.yml/badge.svg)](https://github.com/LUCIT-Systems-and-Development/unicorn-binance-rest-api/actions/workflows/codeql-analysis.yml)
[![Unittests](https://github.com/LUCIT-Systems-and-Development/unicorn-binance-rest-api/actions/workflows/unit-tests.yml/badge.svg)](https://github.com/LUCIT-Systems-and-Development/unicorn-binance-rest-api/actions/workflows/unit-tests.yml)
[![Build and Publish GH+PyPi](https://github.com/LUCIT-Systems-and-Development/unicorn-binance-rest-api/actions/workflows/build_wheels.yml/badge.svg)](https://github.com/LUCIT-Systems-and-Development/unicorn-binance-rest-api/actions/workflows/build_wheels.yml)
[![Build and Publish Anaconda](https://github.com/LUCIT-Systems-and-Development/unicorn-binance-rest-api/actions/workflows/build_conda.yml/badge.svg)](https://github.com/LUCIT-Systems-and-Development/unicorn-binance-rest-api/actions/workflows/build_conda.yml)
[![Read the Docs](https://img.shields.io/badge/read-%20docs-yellow)](https://unicorn-binance-rest-api.docs.lucit.tech/)
[![Read How To`s](https://img.shields.io/badge/read-%20howto-yellow)](https://medium.lucit.tech)
[![Github](https://img.shields.io/badge/source-github-cbc2c8)](https://github.com/LUCIT-Systems-and-Development/unicorn-binance-rest-api)
[![Telegram](https://img.shields.io/badge/community-telegram-41ab8c)](https://t.me/unicorndevs)
[![Gitter](https://img.shields.io/badge/community-gitter-41ab8c)](https://gitter.im/unicorn-binance-suite/unicorn-binance-rest-api?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
[![Get Free Professional Support](https://img.shields.io/badge/chat-lucit%20support-004166)](https://www.lucit.tech/get-support.html)
[![LUCIT-UBRA-Banner](https://raw.githubusercontent.com/lucit-systems-and-development/unicorn-binance-rest-api/master/images/logo/LUCIT-UBRA-Banner-Readme.png)](https://www.lucit.tech/unicorn-binance-rest-api.html)
# UNICORN Binance REST API
[Description](#description) | [Installation](#installation-and-upgrade) | [How To](#howto) |
[Documentation](#documentation) | [Examples](#examples) | [Change Log](#change-log) | [Wiki](#wiki) | [Social](#social) |
[Notifications](#receive-notifications) | [Bugs](#how-to-report-bugs-or-suggest-improvements) |
[Contributing](#contributing) | [Disclaimer](#disclaimer) | [Commercial Support](#commercial-support)
A Python SDK by [LUCIT](https://www.lucit.tech) 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'](https://www.lucit.tech/unicorn-binance-suite.html).
[Get help](https://www.lucit.tech/get-support.html) 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](https://medium.lucit.tech/how-to-obtain-and-use-a-unicorn-binance-suite-license-key-and-run-the-ubs-module-according-to-best-87b0088124a8#4ca4)!
## 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](https://unicorn-binance-rest-api.docs.lucit.tech/unicorn_binance_rest_api.html)
or try our [examples](#examples)!
## Description
The Python module [UNICORN Binance REST API](https://www.lucit.tech/unicorn-binance-rest-api.html)
provides an API to the Binance REST API`s of
[Binance](https://github.com/binance-exchange/binance-official-api-docs)
([+Testnet](https://testnet.binance.vision/)),
[Binance Margin](https://binance-docs.github.io/apidocs/spot/en/#user-data-streams)
([+Testnet](https://testnet.binance.vision/)),
[Binance Isolated Margin](https://binance-docs.github.io/apidocs/spot/en/#listen-key-isolated-margin)
([+Testnet](https://testnet.binance.vision/)),
[Binance Futures](https://binance-docs.github.io/apidocs/futures/en/#websocket-market-streams)
([+Testnet](https://testnet.binancefuture.com)),
[Binance COIN-M Futures](https://binance-docs.github.io/apidocs/delivery/en/#change-log),
[Binance US](https://github.com/binance-us/binance-official-api-docs) and
[Binance TR](https://www.trbinance.com/apidocs) and needs to be used with a valid
[api_key and api_secret](https://medium.lucit.tech/how-to-create-a-binance-api-key-and-api-secret-3bb5f47e360d)
from the Binance Exchange
[www.binance.com](https://www.binance.com/userCenter/createApi.html),
[testnet.binance.vision](https://testnet.binance.vision/) or
[www.binance.us](https://www.binance.us/userCenter/createApi.html).
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](https://www.lucit.tech/unicorn-binance-websocket-api.html) in
combination.
### What are the benefits of the UNICORN Binance REST API?
- Supported exchanges:
| Exchange | Exchange string |
|--------------------------------------------------------------------|---------------------------------------|
| [Binance](https://www.binance.com) | `binance.com` |
| [Binance Testnet](https://testnet.binance.vision/) | `binance.com-testnet` |
| [Binance Margin](https://www.binance.com) | `binance.com-margin` |
| [Binance Margin Testnet](https://testnet.binance.vision/) | `binance.com-margin-testnet` |
| [Binance Isolated Margin](https://www.binance.com) | `binance.com-isolated_margin` |
| [Binance Isolated Margin Testnet](https://testnet.binance.vision/) | `binance.com-isolated_margin-testnet` |
| [Binance USD-M Futures](https://www.binance.com) | `binance.com-futures` |
| [Binance USD-M Futures Testnet](https://testnet.binancefuture.com) | `binance.com-futures-testnet` |
| [Binance Coin-M Futures](https://www.binance.com) | `binance.com-coin_futures` |
| [Binance US](https://www.binance.us) | `binance.us` |
| [Binance TR](https://www.trbinance.com) | `trbinance.com` |
- Helpful management features like
[`get_used_weight()`](https://unicorn-binance-rest-api.docs.lucit.tech/unicorn_binance_rest_api.html#unicorn_binance_rest_api.manager.BinanceRestApiManager.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.](#installation-and-upgrade)
- Integration of [test cases](https://github.com/LUCIT-Systems-and-Development/unicorn-binance-rest-api/actions/workflows/unit-tests.yml) and [examples](#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](https://unicorn-binance-rest-api.docs.lucit.tech/unicorn_binance_rest_api.html#unicorn_binance_rest_api.manager.BinanceRestApiManager)
or this [how to](https://medium.com/@oliverzehentleitner/how-to-connect-to-binance-com-rest-api-using-python-via-a-socks5-proxy-638dbbecacfd)
for more information or try
[example_socks5_proxy.py](https://github.com/LUCIT-Systems-and-Development/unicorn-binance-rest-api/blob/master/examples/_archive/example_socks5_proxy.py).
- Excessively tested on Linux, Mac and Windows
If you like the project, please [![star](https://raw.githubusercontent.com/lucit-systems-and-development/unicorn-binance-rest-api/master/images/misc/star.png)](https://github.com/LUCIT-Systems-and-Development/unicorn-binance-rest-api/stargazers) it on
[GitHub](https://github.com/LUCIT-Systems-and-Development/unicorn-binance-rest-api)!
## 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](https://github.com/LUCIT-Systems-and-Development/unicorn-binance-rest-api/blob/master/requirements.txt).
If you run into errors during the installation take a look [here](https://github.com/LUCIT-Systems-and-Development/unicorn-binance-suite/wiki/Installation).
### Packages are created automatically with GitHub Actions
When a new release is to be created, we start two GitHubActions:
- [Build and Publish Anaconda](https://github.com/LUCIT-Systems-and-Development/unicorn-binance-rest-api/actions/workflows/build_conda.yml)
- [Build and Publish GH+PyPi](https://github.com/LUCIT-Systems-and-Development/unicorn-binance-rest-api/actions/workflows/build_wheels.yml)
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](https://pypi.org/project/unicorn-binance-rest-api/)
Our [Cython](https://cython.org/) and [PyPy](https://www.pypy.org/) Wheels are available on [PyPI](https://pypi.org/),
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](https://anaconda.org/lucit)
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](https://docs.conda.io/en/latest/) through the
[`lucit` channel](https://anaconda.org/lucit).
For optimal compatibility and performance, it is recommended to source the necessary dependencies from the
[`conda-forge` channel](https://anaconda.org/conda-forge).
#### 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](https://github.com/LUCIT-Systems-and-Development/unicorn-binance-rest-api)
#### 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](https://github.com/LUCIT-Systems-and-Development/unicorn-binance-rest-api/releases/latest):
`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](https://github.com/LUCIT-Systems-and-Development/unicorn-binance-rest-api)
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](https://conda.io/projects/conda/en/latest/user-guide/tasks/manage-environments.html), [Virtualenv](https://virtualenv.pypa.io/en/latest/) or plain [Python](https://www.python.org)
Download the [latest release](https://github.com/LUCIT-Systems-and-Development/unicorn-binance-rest-api/releases/latest)
or the [current master branch](https://github.com/LUCIT-Systems-and-Development/unicorn-binance-rest-api/archive/master.zip)
and use:
- ./environment.yml
- ./meta.yaml
- ./pyproject.toml
- ./requirements.txt
- ./setup.py
## Change Log
[https://unicorn-binance-rest-api.docs.lucit.tech/changelog.html](https://unicorn-binance-rest-api.docs.lucit.tech/changelog.html)
## Documentation
- [General](https://unicorn-binance-rest-api.docs.lucit.tech/)
- [Modules](https://unicorn-binance-rest-api.docs.lucit.tech/modules.html)
## Examples
- [Look here!](https://github.com/LUCIT-Systems-and-Development/unicorn-binance-rest-api/tree/master/examples/)
## Howto
- [How to Obtain and Use a Unicorn Binance Suite License Key and Run the UBS Module According to Best Practice](https://medium.lucit.tech/how-to-obtain-and-use-a-unicorn-binance-suite-license-key-and-run-the-ubs-module-according-to-best-87b0088124a8)
- [Restful Binance Requests in Python with UNICORN Binance REST API](https://medium.lucit.tech/restful-binance-requests-in-python-with-unicorn-binance-rest-api-288f364e92a8)
- [How to Download Klines from Binance using Python?](https://medium.lucit.tech/how-to-download-data-from-binance-using-python-8f1b6e8f19f3)
- [How to Connect to binance.com REST API using Python via a SOCKS5 Proxy](https://medium.lucit.tech/how-to-connect-to-binance-com-rest-api-using-python-via-a-socks5-proxy-638dbbecacfd)
- [Buy an Asset and instantly create a Take Profit and Stop Loss OCO Sell Order using Python in Binance Isolated Margin](https://medium.lucit.tech/buy-an-asset-and-instantly-create-a-take-profit-and-stop-loss-oco-sell-order-using-python-in-5d68a5d22a9b)
## Project Homepage
[https://www.lucit.tech/unicorn-binance-rest-api.html](https://www.lucit.tech/unicorn-binance-rest-api.html)
## Wiki
[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
- [Discussions](https://github.com/LUCIT-Systems-and-Development/unicorn-binance-rest-api/discussions)
- [https://t.me/unicorndevs](https://t.me/unicorndevs)
- [https://dev.binance.vision](https://dev.binance.vision)
- [https://community.binance.org](https://community.binance.org)
## Receive Notifications
To receive notifications on available updates you can
[![watch](https://raw.githubusercontent.com/lucit-systems-and-development/unicorn-binance-rest-api/master/images/misc/watch.png)](https://github.com/LUCIT-Systems-and-Development/unicorn-binance-rest-api/watchers)
the repository on [GitHub](https://github.com/LUCIT-Systems-and-Development/unicorn-binance-rest-api), write your
[own script](https://github.com/LUCIT-Systems-and-Development/unicorn-binance-rest-api/blob/master/examples/_archive/example_version_of_this_package.py)
with using
[`is_update_availabe()`](https://unicorn-binance-rest-api.docs.lucit.tech/unicorn_binance_rest_api.html?highlight=is_update_availabe#unicorn_binance_rest_api.manager.BinanceRestApiManager.is_update_availabe).
Follow us on [GitHub](https://github.com/LUCIT-Systems-and-Development), [Medium](https://medium.lucit.tech/),
[YouTube](https://www.youtube.com/@LUCIT_Systems_and_Development),
[LinkedIn](https://www.linkedin.com/company/lucit-systems-and-development),
[X](https://twitter.com/LUCIT_SysDev) or [Facebook](https://www.facebook.com/lucit.systems.and.development)!
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_announcements)
- [https://t.me/binance_api_english](https://t.me/binance_api_english)
- [https://t.me/Binance_USA](https://t.me/Binance_USA)
- [https://t.me/TRBinanceTR](https://t.me/TRBinanceTR)
- [https://t.me/BinanceDEXchange](https://t.me/BinanceDEXchange)
- [https://t.me/BinanceExchange](https://t.me/BinanceExchange)
## How to report Bugs or suggest Improvements?
[List of planned features](https://github.com/LUCIT-Systems-and-Development/unicorn-binance-rest-api/issues?q=is%3Aissue+is%3Aopen+label%3Aenhancement) -
click ![thumbs-up](https://raw.githubusercontent.com/lucit-systems-and-development/unicorn-binance-rest-api/master/images/misc/thumbup.png) if you need one of them or suggest a new feature!
Before you report a bug, [try the latest release](https://github.com/LUCIT-Systems-and-Development/unicorn-binance-rest-api#installation-and-upgrade). 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](https://github.com/LUCIT-Systems-and-Development/unicorn-binance-rest-api/issues)!
[Report a security bug!](https://github.com/LUCIT-Systems-and-Development/unicorn-binance-rest-api/security/policy)
## Contributing
[UNICORN Binance REST API](https://www.lucit.tech/unicorn-binance-rest-api.html) 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](https://github.com/LUCIT-Systems-and-Development/unicorn-binance-rest-api/blob/master/CONTRIBUTING.md).
### Contributors
[![Contributors](https://contributors-img.web.app/image?repo=lucit-systems-and-development/unicorn-binance-rest-api)](https://github.com/LUCIT-Systems-and-Development/unicorn-binance-rest-api/graphs/contributors)
We ![love](https://raw.githubusercontent.com/lucit-systems-and-development/unicorn-binance-rest-api/master/images/misc/heart.png) 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](https://raw.githubusercontent.com/LUCIT-Systems-and-Development/unicorn-binance-suite/master/images/support/LUCIT-get-professional-and-fast-support.png)](https://www.lucit.tech/get-support.html)
***Do you need a developer, operator or consultant?*** [Contact us](https://www.lucit.tech/contact.html) for a non-binding initial consultation!
Raw data
{
"_id": null,
"home_page": "https://github.com/LUCIT-Systems-and-Development/unicorn-binance-rest-api",
"name": "unicorn-binance-rest-api",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.7.0",
"maintainer_email": null,
"keywords": null,
"author": "LUCIT Systems and Development",
"author_email": "info@lucit.tech",
"download_url": "https://files.pythonhosted.org/packages/1a/31/2eb4ebc6374c5d2973576a0aa26efb10d592efbbde0e095592ce34ad2ed4/unicorn_binance_rest_api-2.6.1.tar.gz",
"platform": null,
"description": "[![Get a UNICORN Binance Suite License](https://raw.githubusercontent.com/LUCIT-Systems-and-Development/unicorn-binance-suite/master/images/logo/LUCIT-UBS-License-Offer.png)](https://shop.lucit.services)\n\n[![Anaconda Release](https://img.shields.io/conda/v/lucit/unicorn-binance-rest-api?color=blue)](https://anaconda.org/lucit/unicorn-binance-rest-api)\n[![GitHub Release](https://img.shields.io/github/release/LUCIT-Systems-and-Development/unicorn-binance-rest-api.svg?label=github)](https://github.com/LUCIT-Systems-and-Development/unicorn-binance-rest-api/releases)\n[![PyPi Release](https://img.shields.io/pypi/v/unicorn-binance-rest-api?color=blue)](https://pypi.org/project/unicorn-binance-rest-api/)\n[![Supported Python Version](https://img.shields.io/pypi/pyversions/unicorn_binance_rest_api.svg)](https://www.python.org/downloads/)\n[![License](https://img.shields.io/badge/license-LSOSL-blue)](https://unicorn-binance-rest-api.docs.lucit.tech/license.html)\n[![PyPi Downloads](https://pepy.tech/badge/unicorn-binance-rest-api)](https://pepy.tech/project/unicorn-binance-rest-api)\n[![PyPi Downloads](https://pepy.tech/badge/unicorn-binance-rest_api/month)](https://pepy.tech/project/unicorn-binance-rest-api)\n[![PyPi Downloads](https://pepy.tech/badge/unicorn-binance-rest_api/week)](https://pepy.tech/project/unicorn-binance-rest-api)\n[![PyPI - Status](https://img.shields.io/pypi/status/unicorn_binance_rest_api.svg)](https://github.com/LUCIT-Systems-and-Development/unicorn-binance-rest-api/issues)\n[![codecov](https://codecov.io/gh/LUCIT-Systems-and-Development/unicorn-binance-rest-api/branch/master/graph/badge.svg?token=5I03AZ3F5S)](https://codecov.io/gh/LUCIT-Systems-and-Development/unicorn-binance-rest-api)\n[![CodeQL](https://github.com/LUCIT-Systems-and-Development/unicorn-binance-rest-api/actions/workflows/codeql-analysis.yml/badge.svg)](https://github.com/LUCIT-Systems-and-Development/unicorn-binance-rest-api/actions/workflows/codeql-analysis.yml)\n[![Unittests](https://github.com/LUCIT-Systems-and-Development/unicorn-binance-rest-api/actions/workflows/unit-tests.yml/badge.svg)](https://github.com/LUCIT-Systems-and-Development/unicorn-binance-rest-api/actions/workflows/unit-tests.yml)\n[![Build and Publish GH+PyPi](https://github.com/LUCIT-Systems-and-Development/unicorn-binance-rest-api/actions/workflows/build_wheels.yml/badge.svg)](https://github.com/LUCIT-Systems-and-Development/unicorn-binance-rest-api/actions/workflows/build_wheels.yml)\n[![Build and Publish Anaconda](https://github.com/LUCIT-Systems-and-Development/unicorn-binance-rest-api/actions/workflows/build_conda.yml/badge.svg)](https://github.com/LUCIT-Systems-and-Development/unicorn-binance-rest-api/actions/workflows/build_conda.yml)\n[![Read the Docs](https://img.shields.io/badge/read-%20docs-yellow)](https://unicorn-binance-rest-api.docs.lucit.tech/)\n[![Read How To`s](https://img.shields.io/badge/read-%20howto-yellow)](https://medium.lucit.tech)\n[![Github](https://img.shields.io/badge/source-github-cbc2c8)](https://github.com/LUCIT-Systems-and-Development/unicorn-binance-rest-api)\n[![Telegram](https://img.shields.io/badge/community-telegram-41ab8c)](https://t.me/unicorndevs)\n[![Gitter](https://img.shields.io/badge/community-gitter-41ab8c)](https://gitter.im/unicorn-binance-suite/unicorn-binance-rest-api?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\n[![Get Free Professional Support](https://img.shields.io/badge/chat-lucit%20support-004166)](https://www.lucit.tech/get-support.html)\n\n[![LUCIT-UBRA-Banner](https://raw.githubusercontent.com/lucit-systems-and-development/unicorn-binance-rest-api/master/images/logo/LUCIT-UBRA-Banner-Readme.png)](https://www.lucit.tech/unicorn-binance-rest-api.html)\n\n# UNICORN Binance REST API\n\n[Description](#description) | [Installation](#installation-and-upgrade) | [How To](#howto) |\n[Documentation](#documentation) | [Examples](#examples) | [Change Log](#change-log) | [Wiki](#wiki) | [Social](#social) |\n[Notifications](#receive-notifications) | [Bugs](#how-to-report-bugs-or-suggest-improvements) | \n[Contributing](#contributing) | [Disclaimer](#disclaimer) | [Commercial Support](#commercial-support)\n\nA Python SDK by [LUCIT](https://www.lucit.tech) to use the Binance REST API`s (com+testnet, com-margin+testnet, \ncom-isolated_margin+testnet, com-futures+testnet, us, tr) in a simple, fast, flexible, robust and fully-featured way. \n\nPart of ['UNICORN Binance Suite'](https://www.lucit.tech/unicorn-binance-suite.html).\n\n[Get help](https://www.lucit.tech/get-support.html) with the integration of the `UNICORN Binance Suite` modules!\n\n## Get a UNICORN Binance Suite License\n\nTo run modules of the *UNICORN Binance Suite* you need a [valid license](https://medium.lucit.tech/how-to-obtain-and-use-a-unicorn-binance-suite-license-key-and-run-the-ubs-module-according-to-best-87b0088124a8#4ca4)!\n\n## Receive Data from Binance REST API Endpoints\n\n### Initiate `BinanceRestApiManager()`\n```\nfrom unicorn_binance_rest_api import BinanceRestApiManager\n\nubra = BinanceRestApiManager(api_key=\"YOUR_BINANCE_API_KEY\", \n api_secret=\"YOUR_BINANCE_API_SECRET\", \n exchange=\"binance.com\")\n```\n\n### Print a snapshot of an order book\n```\nprint(f\"BNBBTC order book: {ubra.get_order_book(symbol='BNBBTC')}\")\n```\n\n### Get all symbol prices\n```\nprint(f\"All tickers:\\r\\n{ubra.get_all_tickers()}\")\n```\n\n### Get the used weight \n***Please Note:*** \nhttps://github.com/binance-us/binance-official-api-docs/blob/master/rest-api.md#limits\n\n```\nprint(f\"Used weight: {ubra.get_used_weight()}\")\n```\n\n## Send data to Binance REST API Endpoints\n### Initiate `BinanceRestApiManager()`\n\n```\nubra = BinanceRestApiManager(api_key=\"YOUR_BINANCE_API_KEY\", \n api_secret=\"YOUR_BINANCE_API_SECRET\", \n exchange=\"binance.com-isolated_margin\")\n```\n\n### Buy BTC with a market order using 100 USDT\n```\nbuy_order = ubra.create_margin_order(symbol=\"BTCUSDT\",\n isIsolated=\"TRUE\",\n side=\"BUY\",\n type=\"MARKET\",\n quoteOrderQty=100)\nprint(f\"Buy Order Result: {buy_order}\")\n```\n\n## Stop `ubra` after usage to avoid memory leaks\n\nWhen you instantiate UBRA with `with`, `ubra.stop_manager()` is automatically executed upon exiting the `with`-block.\n\n```\nwith BinanceRestApiManager() as ubra:\n depth = ubra.get_order_book(symbol='BNBBTC')\n```\n\nWithout `with`, you must explicitly execute `ubra.stop_manager()` yourself.\n\n```\nubra.stop_manager()\n```\n\n## More?\n[Discover even more possibilities](https://unicorn-binance-rest-api.docs.lucit.tech/unicorn_binance_rest_api.html) \nor try our [examples](#examples)!\n\n## Description\nThe Python module [UNICORN Binance REST API](https://www.lucit.tech/unicorn-binance-rest-api.html) \nprovides an API to the Binance REST API`s of \n[Binance](https://github.com/binance-exchange/binance-official-api-docs) \n([+Testnet](https://testnet.binance.vision/)), \n[Binance Margin](https://binance-docs.github.io/apidocs/spot/en/#user-data-streams) \n([+Testnet](https://testnet.binance.vision/)), \n[Binance Isolated Margin](https://binance-docs.github.io/apidocs/spot/en/#listen-key-isolated-margin)\n([+Testnet](https://testnet.binance.vision/)), \n[Binance Futures](https://binance-docs.github.io/apidocs/futures/en/#websocket-market-streams) \n([+Testnet](https://testnet.binancefuture.com)), \n[Binance COIN-M Futures](https://binance-docs.github.io/apidocs/delivery/en/#change-log),\n[Binance US](https://github.com/binance-us/binance-official-api-docs) and\n[Binance TR](https://www.trbinance.com/apidocs) and needs to be used with a valid \n[api_key and api_secret](https://medium.lucit.tech/how-to-create-a-binance-api-key-and-api-secret-3bb5f47e360d)\nfrom the Binance Exchange \n[www.binance.com](https://www.binance.com/userCenter/createApi.html), \n[testnet.binance.vision](https://testnet.binance.vision/) or\n[www.binance.us](https://www.binance.us/userCenter/createApi.html).\n\nBe aware that the Binance REST API is request based. if you want to send and receive high frequency and high volume \ndata, you can use the [UNICORN Binance Websocket API](https://www.lucit.tech/unicorn-binance-websocket-api.html) in \ncombination. \n\n### What are the benefits of the UNICORN Binance REST API?\n- Supported exchanges:\n\n| Exchange | Exchange string |\n|--------------------------------------------------------------------|---------------------------------------|\n| [Binance](https://www.binance.com) | `binance.com` |\n| [Binance Testnet](https://testnet.binance.vision/) | `binance.com-testnet` |\n| [Binance Margin](https://www.binance.com) | `binance.com-margin` |\n| [Binance Margin Testnet](https://testnet.binance.vision/) | `binance.com-margin-testnet` |\n| [Binance Isolated Margin](https://www.binance.com) | `binance.com-isolated_margin` |\n| [Binance Isolated Margin Testnet](https://testnet.binance.vision/) | `binance.com-isolated_margin-testnet` |\n| [Binance USD-M Futures](https://www.binance.com) | `binance.com-futures` |\n| [Binance USD-M Futures Testnet](https://testnet.binancefuture.com) | `binance.com-futures-testnet` |\n| [Binance Coin-M Futures](https://www.binance.com) | `binance.com-coin_futures` |\n| [Binance US](https://www.binance.us) | `binance.us` |\n| [Binance TR](https://www.trbinance.com) | `trbinance.com` |\n\n- Helpful management features like \n[`get_used_weight()`](https://unicorn-binance-rest-api.docs.lucit.tech/unicorn_binance_rest_api.html#unicorn_binance_rest_api.manager.BinanceRestApiManager.get_used_weight), \n\n- Available as a package via `pip` and `conda` as precompiled C extension with stub files for improved Intellisense \n functions and source code for easier debugging of the source code. [To the installation.](#installation-and-upgrade)\n\n- Integration of [test cases](https://github.com/LUCIT-Systems-and-Development/unicorn-binance-rest-api/actions/workflows/unit-tests.yml) and [examples](#examples).\n\n- Customizable base URL and request timeout.\n\n- *Socks5 Proxy* support:\n ```\n ubra = BinanceRestApiManager(exchange=\"binance.com\", socks5_proxy_server=\"127.0.0.1:9050\") \n ```\n Read the [docs](https://unicorn-binance-rest-api.docs.lucit.tech/unicorn_binance_rest_api.html#unicorn_binance_rest_api.manager.BinanceRestApiManager)\n or this [how to](https://medium.com/@oliverzehentleitner/how-to-connect-to-binance-com-rest-api-using-python-via-a-socks5-proxy-638dbbecacfd) \n for more information or try \n [example_socks5_proxy.py](https://github.com/LUCIT-Systems-and-Development/unicorn-binance-rest-api/blob/master/examples/_archive/example_socks5_proxy.py).\n\n- Excessively tested on Linux, Mac and Windows\n\nIf you like the project, please [![star](https://raw.githubusercontent.com/lucit-systems-and-development/unicorn-binance-rest-api/master/images/misc/star.png)](https://github.com/LUCIT-Systems-and-Development/unicorn-binance-rest-api/stargazers) it on \n[GitHub](https://github.com/LUCIT-Systems-and-Development/unicorn-binance-rest-api)!\n\n## Installation and Upgrade\nThe module requires Python 3.7 and runs smoothly up to and including Python 3.12.\n\nAnaconda packages are available from Python version 3.8 and higher, but only in the latest version!\n\nFor the PyPy interpreter we offer packages only from Python version 3.9 and higher.\n\nThe current dependencies are listed \n[here](https://github.com/LUCIT-Systems-and-Development/unicorn-binance-rest-api/blob/master/requirements.txt).\n\nIf you run into errors during the installation take a look [here](https://github.com/LUCIT-Systems-and-Development/unicorn-binance-suite/wiki/Installation).\n\n### Packages are created automatically with GitHub Actions\nWhen a new release is to be created, we start two GitHubActions: \n\n- [Build and Publish Anaconda](https://github.com/LUCIT-Systems-and-Development/unicorn-binance-rest-api/actions/workflows/build_conda.yml)\n- [Build and Publish GH+PyPi](https://github.com/LUCIT-Systems-and-Development/unicorn-binance-rest-api/actions/workflows/build_wheels.yml) \n\nBoth start virtual Windows/Linux/Mac servers provided by GitHub in the cloud with preconfigured environments and \ncreate the respective compilations and stub files, pack them into wheels and conda packages and then publish them on \nGitHub, PYPI and Anaconda. This is a transparent method that makes it possible to trace the source code behind a \ncompilation.\n\n### A Cython binary, PyPy or source code based CPython wheel of the latest version with `pip` from [PyPI](https://pypi.org/project/unicorn-binance-rest-api/)\nOur [Cython](https://cython.org/) and [PyPy](https://www.pypy.org/) Wheels are available on [PyPI](https://pypi.org/), \nthese wheels offer significant advantages for Python developers:\n\n- ***Performance Boost with Cython Wheels:*** Cython is a programming language that supplements Python with static typing and C-level performance. By compiling \n Python code into C, Cython Wheels can significantly enhance the execution speed of Python code, especially in \n computationally intensive tasks. This means faster runtimes and more efficient processing for users of our package. \n\n- ***PyPy Wheels for Enhanced Efficiency:*** PyPy is an alternative Python interpreter known for its speed and efficiency. It uses Just-In-Time (JIT) compilation, \n which can dramatically improve the performance of Python code. Our PyPy Wheels are tailored for compatibility with \n PyPy, allowing users to leverage this speed advantage seamlessly.\n\nBoth Cython and PyPy Wheels on PyPI make the installation process simpler and more straightforward. They ensure that \nyou get the optimized version of our package with minimal setup, allowing you to focus on development rather than \nconfiguration.\n\nOn Raspberry Pi and other architectures for which there are no pre-compiled versions, the package can still be \ninstalled with PIP. PIP then compiles the package locally on the target system during installation. Please be patient, \nthis may take some time!\n\n#### Installation\n`pip install unicorn-binance-rest-api`\n\n#### Update\n`pip install unicorn-binance-rest-api --upgrade`\n\n### A Conda Package of the latest version with `conda` from [Anaconda](https://anaconda.org/lucit)\nThe `unicorn-binance-rest-api` package is also available as a Cython version for the `linux-64`, `osx-64` \nand `win-64` architectures with [Conda](https://docs.conda.io/en/latest/) through the \n[`lucit` channel](https://anaconda.org/lucit). \n\nFor optimal compatibility and performance, it is recommended to source the necessary dependencies from the \n[`conda-forge` channel](https://anaconda.org/conda-forge). \n\n#### Installation\n```\nconda config --add channels conda-forge\nconda config --add channels lucit\nconda install -c lucit unicorn-binance-rest-api\n```\n\n#### Update\n`conda update -c lucit unicorn-binance-rest-api`\n\n### From source of the latest release with PIP from [GitHub](https://github.com/LUCIT-Systems-and-Development/unicorn-binance-rest-api)\n#### Linux, macOS, ...\nRun in bash:\n\n`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`\n\n#### Windows\nUse the below command with the version (such as 2.6.1) you determined \n[here](https://github.com/LUCIT-Systems-and-Development/unicorn-binance-rest-api/releases/latest):\n\n`pip install https://github.com/LUCIT-Systems-and-Development/unicorn-binance-rest-api/archive/2.6.1.tar.gz --upgrade`\n\n### From the latest source (dev-stage) with PIP from [GitHub](https://github.com/LUCIT-Systems-and-Development/unicorn-binance-rest-api)\nThis is not a release version and can not be considered to be stable!\n\n`pip install https://github.com/LUCIT-Systems-and-Development/unicorn-binance-rest-api/tarball/master --upgrade`\n\n### [Conda environment](https://conda.io/projects/conda/en/latest/user-guide/tasks/manage-environments.html), [Virtualenv](https://virtualenv.pypa.io/en/latest/) or plain [Python](https://www.python.org)\nDownload the [latest release](https://github.com/LUCIT-Systems-and-Development/unicorn-binance-rest-api/releases/latest) \nor the [current master branch](https://github.com/LUCIT-Systems-and-Development/unicorn-binance-rest-api/archive/master.zip)\n and use:\n \n- ./environment.yml\n- ./meta.yaml\n- ./pyproject.toml\n- ./requirements.txt\n- ./setup.py\n\n## Change Log\n[https://unicorn-binance-rest-api.docs.lucit.tech/changelog.html](https://unicorn-binance-rest-api.docs.lucit.tech/changelog.html)\n\n## Documentation\n- [General](https://unicorn-binance-rest-api.docs.lucit.tech/)\n- [Modules](https://unicorn-binance-rest-api.docs.lucit.tech/modules.html)\n\n## Examples\n- [Look here!](https://github.com/LUCIT-Systems-and-Development/unicorn-binance-rest-api/tree/master/examples/)\n\n## Howto\n- [How to Obtain and Use a Unicorn Binance Suite License Key and Run the UBS Module According to Best Practice](https://medium.lucit.tech/how-to-obtain-and-use-a-unicorn-binance-suite-license-key-and-run-the-ubs-module-according-to-best-87b0088124a8)\n- [Restful Binance Requests in Python with UNICORN Binance REST API](https://medium.lucit.tech/restful-binance-requests-in-python-with-unicorn-binance-rest-api-288f364e92a8)\n- [How to Download Klines from Binance using Python?](https://medium.lucit.tech/how-to-download-data-from-binance-using-python-8f1b6e8f19f3)\n- [How to Connect to binance.com REST API using Python via a SOCKS5 Proxy](https://medium.lucit.tech/how-to-connect-to-binance-com-rest-api-using-python-via-a-socks5-proxy-638dbbecacfd)\n- [Buy an Asset and instantly create a Take Profit and Stop Loss OCO Sell Order using Python in Binance Isolated Margin](https://medium.lucit.tech/buy-an-asset-and-instantly-create-a-take-profit-and-stop-loss-oco-sell-order-using-python-in-5d68a5d22a9b)\n\n## Project Homepage\n[https://www.lucit.tech/unicorn-binance-rest-api.html](https://www.lucit.tech/unicorn-binance-rest-api.html)\n\n## Wiki\n[https://github.com/LUCIT-Systems-and-Development/unicorn-binance-rest-api/wiki](https://github.com/LUCIT-Systems-and-Development/unicorn-binance-rest-api/wiki)\n\n## Social\n- [Discussions](https://github.com/LUCIT-Systems-and-Development/unicorn-binance-rest-api/discussions)\n- [https://t.me/unicorndevs](https://t.me/unicorndevs)\n- [https://dev.binance.vision](https://dev.binance.vision)\n- [https://community.binance.org](https://community.binance.org)\n\n## Receive Notifications\nTo receive notifications on available updates you can \n[![watch](https://raw.githubusercontent.com/lucit-systems-and-development/unicorn-binance-rest-api/master/images/misc/watch.png)](https://github.com/LUCIT-Systems-and-Development/unicorn-binance-rest-api/watchers) \nthe repository on [GitHub](https://github.com/LUCIT-Systems-and-Development/unicorn-binance-rest-api), write your \n[own script](https://github.com/LUCIT-Systems-and-Development/unicorn-binance-rest-api/blob/master/examples/_archive/example_version_of_this_package.py) \nwith using \n[`is_update_availabe()`](https://unicorn-binance-rest-api.docs.lucit.tech/unicorn_binance_rest_api.html?highlight=is_update_availabe#unicorn_binance_rest_api.manager.BinanceRestApiManager.is_update_availabe).\n\nFollow us on [GitHub](https://github.com/LUCIT-Systems-and-Development), [Medium](https://medium.lucit.tech/),\n[YouTube](https://www.youtube.com/@LUCIT_Systems_and_Development), \n[LinkedIn](https://www.linkedin.com/company/lucit-systems-and-development), \n[X](https://twitter.com/LUCIT_SysDev) or [Facebook](https://www.facebook.com/lucit.systems.and.development)!\n\nTo receive news (like inspection windows/maintenance) about the Binance API`s subscribe to their telegram groups: \n\n- [https://t.me/binance_api_announcements](https://t.me/binance_api_announcements)\n- [https://t.me/binance_api_english](https://t.me/binance_api_english)\n- [https://t.me/Binance_USA](https://t.me/Binance_USA)\n- [https://t.me/TRBinanceTR](https://t.me/TRBinanceTR)\n- [https://t.me/BinanceDEXchange](https://t.me/BinanceDEXchange)\n- [https://t.me/BinanceExchange](https://t.me/BinanceExchange)\n\n## How to report Bugs or suggest Improvements?\n[List of planned features](https://github.com/LUCIT-Systems-and-Development/unicorn-binance-rest-api/issues?q=is%3Aissue+is%3Aopen+label%3Aenhancement) - \nclick ![thumbs-up](https://raw.githubusercontent.com/lucit-systems-and-development/unicorn-binance-rest-api/master/images/misc/thumbup.png) if you need one of them or suggest a new feature!\n\nBefore you report a bug, [try the latest release](https://github.com/LUCIT-Systems-and-Development/unicorn-binance-rest-api#installation-and-upgrade). If the issue still exists, provide the error trace, OS \nand Python version and explain how to reproduce the error. A demo script is appreciated.\n\nIf you don't find an issue related to your topic, please open a new [issue](https://github.com/LUCIT-Systems-and-Development/unicorn-binance-rest-api/issues)!\n\n[Report a security bug!](https://github.com/LUCIT-Systems-and-Development/unicorn-binance-rest-api/security/policy)\n\n## Contributing\n[UNICORN Binance REST API](https://www.lucit.tech/unicorn-binance-rest-api.html) is an open \nsource project which welcomes contributions which can be anything from simple documentation fixes and reporting dead links to new features. To \ncontribute follow \n[this guide](https://github.com/LUCIT-Systems-and-Development/unicorn-binance-rest-api/blob/master/CONTRIBUTING.md).\n \n### Contributors\n[![Contributors](https://contributors-img.web.app/image?repo=lucit-systems-and-development/unicorn-binance-rest-api)](https://github.com/LUCIT-Systems-and-Development/unicorn-binance-rest-api/graphs/contributors)\n\nWe ![love](https://raw.githubusercontent.com/lucit-systems-and-development/unicorn-binance-rest-api/master/images/misc/heart.png) open source!\n\n## Disclaimer\nThis project is for informational purposes only. You should not construe this information or any other material as \nlegal, tax, investment, financial or other advice. Nothing contained herein constitutes a solicitation, recommendation, \nendorsement or offer by us or any third party provider to buy or sell any securities or other financial instruments in \nthis or any other jurisdiction in which such solicitation or offer would be unlawful under the securities laws of such \njurisdiction.\n\n### If you intend to use real money, use it at your own risk!\n\nUnder no circumstances will we be responsible or liable for any claims, damages, losses, expenses, costs or liabilities \nof any kind, including but not limited to direct or indirect damages for loss of profits.\n\n### SOCKS5 Proxy / Geoblocking\nWe would like to explicitly point out that in our opinion US citizens are exclusively authorized to trade on Binance.US \nand that this restriction must not be circumvented!\n\nThe purpose of supporting a SOCKS5 proxy in the UNICORN Binance Suite and its modules is to allow non-US citizens to use \nUS services. For example, GitHub actions with UBS will not work without a SOCKS5 proxy, as they will inevitably run on \nservers in the US and be blocked by Binance.com. Moreover, it also seems justified that traders, data scientists and \ncompanies from the US analyze binance.com market data - as long as they do not trade there.\n\n## Commercial Support\n\n[![Get professional and fast support](https://raw.githubusercontent.com/LUCIT-Systems-and-Development/unicorn-binance-suite/master/images/support/LUCIT-get-professional-and-fast-support.png)](https://www.lucit.tech/get-support.html)\n\n***Do you need a developer, operator or consultant?*** [Contact us](https://www.lucit.tech/contact.html) for a non-binding initial consultation!\n",
"bugtrack_url": null,
"license": "LSOSL - LUCIT Synergetic Open Source License",
"summary": "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.",
"version": "2.6.1",
"project_urls": {
"Author": "https://www.lucit.tech",
"Changes": "https://unicorn-binance-rest-api.docs.lucit.tech/changelog.html",
"Chat": "https://gitter.im/unicorn-binance-suite/unicorn-binance-rest-api",
"Documentation": "https://unicorn-binance-rest-api.docs.lucit.tech",
"Get Support": "https://www.lucit.tech/get-support.html",
"Homepage": "https://github.com/LUCIT-Systems-and-Development/unicorn-binance-rest-api",
"Howto": "https://www.lucit.tech/unicorn-binance-rest-api.html#howto",
"Issue Tracker": "https://github.com/LUCIT-Systems-and-Development/unicorn-binance-rest-api/issues",
"LUCIT Online Shop": "https://shop.lucit.services/software",
"License": "https://unicorn-binance-rest-api.docs.lucit.tech/license.html",
"Telegram": "https://t.me/unicorndevs",
"Wiki": "https://github.com/LUCIT-Systems-and-Development/unicorn-binance-rest-api/wiki"
},
"split_keywords": [],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "c31759fc8e2de13040c04a2f55016d63ff30740b5a42d9e609e70c5e3036dec7",
"md5": "260a8e82178c2f8262768e2de0a1e815",
"sha256": "0bd9227f653de57c4414b1da2f2f1a77dc8cadb2e863ac3034a11e4f76975a3a"
},
"downloads": -1,
"filename": "unicorn_binance_rest_api-2.6.1-cp310-cp310-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "260a8e82178c2f8262768e2de0a1e815",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.7.0",
"size": 1277402,
"upload_time": "2024-05-17T08:19:40",
"upload_time_iso_8601": "2024-05-17T08:19:40.561428Z",
"url": "https://files.pythonhosted.org/packages/c3/17/59fc8e2de13040c04a2f55016d63ff30740b5a42d9e609e70c5e3036dec7/unicorn_binance_rest_api-2.6.1-cp310-cp310-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4461b4221403a8f4423d6ceaaf15fb2ce3acf447c07a1556038a05430bc17dee",
"md5": "575b62d2c7e531f279a1b8bcdcea8354",
"sha256": "4a7770b39babd2e62c6f667a14d68b2ecc48d0419fde871933d61f7f00d393ec"
},
"downloads": -1,
"filename": "unicorn_binance_rest_api-2.6.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "575b62d2c7e531f279a1b8bcdcea8354",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.7.0",
"size": 3397423,
"upload_time": "2024-05-17T08:19:43",
"upload_time_iso_8601": "2024-05-17T08:19:43.137509Z",
"url": "https://files.pythonhosted.org/packages/44/61/b4221403a8f4423d6ceaaf15fb2ce3acf447c07a1556038a05430bc17dee/unicorn_binance_rest_api-2.6.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f9afbd0d839c36c7fa946d70650e7e5c04efb3ac55fc82358c0925be3329af22",
"md5": "9aef09210c3f7fcf9e65ee054fae17b6",
"sha256": "7b037cbaf7c22957d0a013f8c0da073f61effec664c7a931056389baa7da9d03"
},
"downloads": -1,
"filename": "unicorn_binance_rest_api-2.6.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "9aef09210c3f7fcf9e65ee054fae17b6",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.7.0",
"size": 3225399,
"upload_time": "2024-05-17T08:19:44",
"upload_time_iso_8601": "2024-05-17T08:19:44.647773Z",
"url": "https://files.pythonhosted.org/packages/f9/af/bd0d839c36c7fa946d70650e7e5c04efb3ac55fc82358c0925be3329af22/unicorn_binance_rest_api-2.6.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0e7c7dbb21d4fecb8c825700c5bcac48f86f41928e0559bc212c08eacaa04f6e",
"md5": "22ac77d02026a8baa7876a426416a10e",
"sha256": "ff607fcd5db9e9386f2d9946402c9db950bd638e81c76db1f591caa40a89d5bb"
},
"downloads": -1,
"filename": "unicorn_binance_rest_api-2.6.1-cp310-cp310-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "22ac77d02026a8baa7876a426416a10e",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.7.0",
"size": 3241986,
"upload_time": "2024-05-17T08:19:47",
"upload_time_iso_8601": "2024-05-17T08:19:47.297832Z",
"url": "https://files.pythonhosted.org/packages/0e/7c/7dbb21d4fecb8c825700c5bcac48f86f41928e0559bc212c08eacaa04f6e/unicorn_binance_rest_api-2.6.1-cp310-cp310-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "47789da75920882bdfa634a1f2ebccc087eb53d3c6eb4c1486ccde967bd89eb6",
"md5": "66e073e3bbdc4e4e4ef4a1bd8f57d18e",
"sha256": "e2fc508287ad33bc05f9f49498c08546985d3d05241ef567bdbb120ac08492f1"
},
"downloads": -1,
"filename": "unicorn_binance_rest_api-2.6.1-cp310-cp310-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "66e073e3bbdc4e4e4ef4a1bd8f57d18e",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.7.0",
"size": 3409831,
"upload_time": "2024-05-17T08:19:49",
"upload_time_iso_8601": "2024-05-17T08:19:49.252966Z",
"url": "https://files.pythonhosted.org/packages/47/78/9da75920882bdfa634a1f2ebccc087eb53d3c6eb4c1486ccde967bd89eb6/unicorn_binance_rest_api-2.6.1-cp310-cp310-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "971aaa701c3418ab6872705d1d5fc5576de438c1ba5461279aa8f3c663fe33d9",
"md5": "e8347a47ce5186097652cae0e1e70475",
"sha256": "98757c09e1ff65f68b8c2f36259cbea795f5c53bfdb8342338ddbec4da6c129c"
},
"downloads": -1,
"filename": "unicorn_binance_rest_api-2.6.1-cp310-cp310-win32.whl",
"has_sig": false,
"md5_digest": "e8347a47ce5186097652cae0e1e70475",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.7.0",
"size": 1140010,
"upload_time": "2024-05-17T08:19:51",
"upload_time_iso_8601": "2024-05-17T08:19:51.474617Z",
"url": "https://files.pythonhosted.org/packages/97/1a/aa701c3418ab6872705d1d5fc5576de438c1ba5461279aa8f3c663fe33d9/unicorn_binance_rest_api-2.6.1-cp310-cp310-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e48e6a57b17a45a568cf2aa3687aa3020aeb008485a703601840a6b06fe06239",
"md5": "da56e0e4f87c7a866d9106a7178afe60",
"sha256": "971db35c88a17a3448d3803ece5ab8d6887c485233f043f9bafd49cba8ecb839"
},
"downloads": -1,
"filename": "unicorn_binance_rest_api-2.6.1-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "da56e0e4f87c7a866d9106a7178afe60",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.7.0",
"size": 1197858,
"upload_time": "2024-05-17T08:19:53",
"upload_time_iso_8601": "2024-05-17T08:19:53.801630Z",
"url": "https://files.pythonhosted.org/packages/e4/8e/6a57b17a45a568cf2aa3687aa3020aeb008485a703601840a6b06fe06239/unicorn_binance_rest_api-2.6.1-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2c2e31d241da15944e8d19cf54074e6155f7506b7ac1e8b400524c5e35b37358",
"md5": "413f22ebc2fba66be9a5b0cb56b4cbc9",
"sha256": "cea6eaea4d8485f19f50d716877074ea7baa00618e8e79afcfc8f475df737cd2"
},
"downloads": -1,
"filename": "unicorn_binance_rest_api-2.6.1-cp311-cp311-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "413f22ebc2fba66be9a5b0cb56b4cbc9",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.7.0",
"size": 1282302,
"upload_time": "2024-05-17T08:19:56",
"upload_time_iso_8601": "2024-05-17T08:19:56.088989Z",
"url": "https://files.pythonhosted.org/packages/2c/2e/31d241da15944e8d19cf54074e6155f7506b7ac1e8b400524c5e35b37358/unicorn_binance_rest_api-2.6.1-cp311-cp311-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f2b6d20c2cf81ed717b925b408ea1cb8f5e9ad892a38c7497bc4b8b63740d441",
"md5": "7f57699a474ba1ce21aa26b71a5ea484",
"sha256": "c262c5db79c28e5e26e88c602dced7d4763a6f44f89f4e289c6bebd0beef459c"
},
"downloads": -1,
"filename": "unicorn_binance_rest_api-2.6.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "7f57699a474ba1ce21aa26b71a5ea484",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.7.0",
"size": 3705961,
"upload_time": "2024-05-17T08:19:57",
"upload_time_iso_8601": "2024-05-17T08:19:57.954899Z",
"url": "https://files.pythonhosted.org/packages/f2/b6/d20c2cf81ed717b925b408ea1cb8f5e9ad892a38c7497bc4b8b63740d441/unicorn_binance_rest_api-2.6.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e09f69a0bfc1ed5f23ca21bec097a5893c5a7cfb2a819fd790403396de2c3401",
"md5": "76459904b3b5cd51c48302bb53c26c27",
"sha256": "a2e18558fbd5fd5a258f0d152d923fe412415174755b783a885a02151ec208a4"
},
"downloads": -1,
"filename": "unicorn_binance_rest_api-2.6.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "76459904b3b5cd51c48302bb53c26c27",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.7.0",
"size": 3508836,
"upload_time": "2024-05-17T08:19:59",
"upload_time_iso_8601": "2024-05-17T08:19:59.947254Z",
"url": "https://files.pythonhosted.org/packages/e0/9f/69a0bfc1ed5f23ca21bec097a5893c5a7cfb2a819fd790403396de2c3401/unicorn_binance_rest_api-2.6.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "64c67bb7cf89d4c2a2599deb0bc1edad953994765e8f7b7e1bdac09ae7a9ee4d",
"md5": "a7229165f4dd3d0cc7b3741755dd9c39",
"sha256": "ef4df09a1f6f7c196522a0f411b8551ced807c2f937c5133b6c47641ca0588a7"
},
"downloads": -1,
"filename": "unicorn_binance_rest_api-2.6.1-cp311-cp311-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "a7229165f4dd3d0cc7b3741755dd9c39",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.7.0",
"size": 3512502,
"upload_time": "2024-05-17T08:20:02",
"upload_time_iso_8601": "2024-05-17T08:20:02.860068Z",
"url": "https://files.pythonhosted.org/packages/64/c6/7bb7cf89d4c2a2599deb0bc1edad953994765e8f7b7e1bdac09ae7a9ee4d/unicorn_binance_rest_api-2.6.1-cp311-cp311-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3a01bb67b214ac1b9a77d879f6d14e2924a48af64ba2af6357572f02d1eb6e17",
"md5": "6f748cf48e1cfcf3a757336c76a03154",
"sha256": "0eaf8f26c0158f8d4cd1fea69f60b0844f878bf1ddf14072bd210ec19f499945"
},
"downloads": -1,
"filename": "unicorn_binance_rest_api-2.6.1-cp311-cp311-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "6f748cf48e1cfcf3a757336c76a03154",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.7.0",
"size": 3705638,
"upload_time": "2024-05-17T08:20:05",
"upload_time_iso_8601": "2024-05-17T08:20:05.114986Z",
"url": "https://files.pythonhosted.org/packages/3a/01/bb67b214ac1b9a77d879f6d14e2924a48af64ba2af6357572f02d1eb6e17/unicorn_binance_rest_api-2.6.1-cp311-cp311-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "129b7707c611ecc92a54368d22a703b01694f4600b68e53c71e0e9f4dde9d3ed",
"md5": "fbfe34132f0f76460ee369f5bef875d5",
"sha256": "d12a956f751e422c3bb79f782903b207424a3f51e7d6baa1e22d56ff3e408e33"
},
"downloads": -1,
"filename": "unicorn_binance_rest_api-2.6.1-cp311-cp311-win32.whl",
"has_sig": false,
"md5_digest": "fbfe34132f0f76460ee369f5bef875d5",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.7.0",
"size": 1140557,
"upload_time": "2024-05-17T08:20:07",
"upload_time_iso_8601": "2024-05-17T08:20:07.752608Z",
"url": "https://files.pythonhosted.org/packages/12/9b/7707c611ecc92a54368d22a703b01694f4600b68e53c71e0e9f4dde9d3ed/unicorn_binance_rest_api-2.6.1-cp311-cp311-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8128ce970abb283ef745cf4834a6bf01a1abed87820f8ac0905ee79aeac58d80",
"md5": "022c9e018aa8fab3c7319a2e44e02d37",
"sha256": "ad3d3af35edeb62c87d4035d8aa0ef17983ace020c61a7ca617f3648e8cff3a2"
},
"downloads": -1,
"filename": "unicorn_binance_rest_api-2.6.1-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "022c9e018aa8fab3c7319a2e44e02d37",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.7.0",
"size": 1201084,
"upload_time": "2024-05-17T08:20:09",
"upload_time_iso_8601": "2024-05-17T08:20:09.227844Z",
"url": "https://files.pythonhosted.org/packages/81/28/ce970abb283ef745cf4834a6bf01a1abed87820f8ac0905ee79aeac58d80/unicorn_binance_rest_api-2.6.1-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "dd5a7229df225d69f3cf9c2267ab23d0d08bb63ce2f518ef4b60b2210d0fb6b3",
"md5": "7e96a73216b60d8c3df2048e8377e2ed",
"sha256": "df1a7c6bab6939b1b2df2151ecfdc97fcf5b809012fde1486b0c9d07c914e652"
},
"downloads": -1,
"filename": "unicorn_binance_rest_api-2.6.1-cp312-cp312-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "7e96a73216b60d8c3df2048e8377e2ed",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.7.0",
"size": 1275948,
"upload_time": "2024-05-17T08:20:10",
"upload_time_iso_8601": "2024-05-17T08:20:10.816339Z",
"url": "https://files.pythonhosted.org/packages/dd/5a/7229df225d69f3cf9c2267ab23d0d08bb63ce2f518ef4b60b2210d0fb6b3/unicorn_binance_rest_api-2.6.1-cp312-cp312-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7628af3bf4b4c90a427f070622039cf0beaea1893a7de4a5689e6a7e47b9e01b",
"md5": "d30a4830bd482b377aab5ab757bb0d23",
"sha256": "9d006c6c651f2244183c70c0196b0622313ffbc14f58df23c550d975d42958c7"
},
"downloads": -1,
"filename": "unicorn_binance_rest_api-2.6.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "d30a4830bd482b377aab5ab757bb0d23",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.7.0",
"size": 3682312,
"upload_time": "2024-05-17T08:20:12",
"upload_time_iso_8601": "2024-05-17T08:20:12.673121Z",
"url": "https://files.pythonhosted.org/packages/76/28/af3bf4b4c90a427f070622039cf0beaea1893a7de4a5689e6a7e47b9e01b/unicorn_binance_rest_api-2.6.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "eac3dae3c8eb7228d7785b3e4d52575559f3e97d3751551f0383e3cbf1eba73e",
"md5": "df8719cce6c804cbcde22f0866eb30d3",
"sha256": "8e23ad9707086c193077cfe9566102867b1e59722581d81baa5189dd25b41162"
},
"downloads": -1,
"filename": "unicorn_binance_rest_api-2.6.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "df8719cce6c804cbcde22f0866eb30d3",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.7.0",
"size": 3489783,
"upload_time": "2024-05-17T08:20:15",
"upload_time_iso_8601": "2024-05-17T08:20:15.043582Z",
"url": "https://files.pythonhosted.org/packages/ea/c3/dae3c8eb7228d7785b3e4d52575559f3e97d3751551f0383e3cbf1eba73e/unicorn_binance_rest_api-2.6.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7b52f54327f020534515c5d8da150f1874e996d812dfe5af0c7d4c901f862aa5",
"md5": "4b8ba086c9f0e3b2e2ff9d45cae66161",
"sha256": "fe81b5bc848f274375ee2dcfc4ccc596c41cf145706661e0141b6eabf551ff02"
},
"downloads": -1,
"filename": "unicorn_binance_rest_api-2.6.1-cp312-cp312-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "4b8ba086c9f0e3b2e2ff9d45cae66161",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.7.0",
"size": 3449693,
"upload_time": "2024-05-17T08:20:17",
"upload_time_iso_8601": "2024-05-17T08:20:17.398426Z",
"url": "https://files.pythonhosted.org/packages/7b/52/f54327f020534515c5d8da150f1874e996d812dfe5af0c7d4c901f862aa5/unicorn_binance_rest_api-2.6.1-cp312-cp312-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4fb856f79c3c3750b78327ad78a7ca98b85ef0059cc919bb9cbdecb75fde8fa1",
"md5": "50a5e8bb79bf335967276164a69de770",
"sha256": "93808df7e42dcb42b10d948ea0707eb7dc19f2de4cb03fa1424a67dfb426ed12"
},
"downloads": -1,
"filename": "unicorn_binance_rest_api-2.6.1-cp312-cp312-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "50a5e8bb79bf335967276164a69de770",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.7.0",
"size": 3649013,
"upload_time": "2024-05-17T08:20:20",
"upload_time_iso_8601": "2024-05-17T08:20:20.288240Z",
"url": "https://files.pythonhosted.org/packages/4f/b8/56f79c3c3750b78327ad78a7ca98b85ef0059cc919bb9cbdecb75fde8fa1/unicorn_binance_rest_api-2.6.1-cp312-cp312-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "75ca8f1037863c5453b7f549d902b3fc8ccefa2a1e06440769c2254d90c44783",
"md5": "30399c867bf9ec74d69de15ca59d31bb",
"sha256": "39d3b1511b7a16e8d5972cdcfe959e367eb1823bc83c96d6e06cba2028cc709d"
},
"downloads": -1,
"filename": "unicorn_binance_rest_api-2.6.1-cp312-cp312-win32.whl",
"has_sig": false,
"md5_digest": "30399c867bf9ec74d69de15ca59d31bb",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.7.0",
"size": 1137335,
"upload_time": "2024-05-17T08:20:22",
"upload_time_iso_8601": "2024-05-17T08:20:22.467988Z",
"url": "https://files.pythonhosted.org/packages/75/ca/8f1037863c5453b7f549d902b3fc8ccefa2a1e06440769c2254d90c44783/unicorn_binance_rest_api-2.6.1-cp312-cp312-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5caab69f94a355fc541416df3417b884169c022e20afab7647b39b9cfd77d230",
"md5": "819e179ee1550d5908131fd351e298bd",
"sha256": "71d4f175953c72a15598a14462567a53a59c554fe936f03eec214436abad2f34"
},
"downloads": -1,
"filename": "unicorn_binance_rest_api-2.6.1-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "819e179ee1550d5908131fd351e298bd",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.7.0",
"size": 1195982,
"upload_time": "2024-05-17T08:20:24",
"upload_time_iso_8601": "2024-05-17T08:20:24.128259Z",
"url": "https://files.pythonhosted.org/packages/5c/aa/b69f94a355fc541416df3417b884169c022e20afab7647b39b9cfd77d230/unicorn_binance_rest_api-2.6.1-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f5544cab0d26e3490d32894e1a89afe228c36e264bc6c95ff4e59ff45035a63c",
"md5": "46d0da37a7d49233693987ba2567b1d4",
"sha256": "18581592aa4806aac3f37821ffa7c715188937ad345590162f0f4b10c46ed260"
},
"downloads": -1,
"filename": "unicorn_binance_rest_api-2.6.1-cp37-cp37m-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "46d0da37a7d49233693987ba2567b1d4",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.7.0",
"size": 1257406,
"upload_time": "2024-05-17T08:20:25",
"upload_time_iso_8601": "2024-05-17T08:20:25.764049Z",
"url": "https://files.pythonhosted.org/packages/f5/54/4cab0d26e3490d32894e1a89afe228c36e264bc6c95ff4e59ff45035a63c/unicorn_binance_rest_api-2.6.1-cp37-cp37m-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b985e480c5abd30d6c0da782a88c50fc9d9bb12872b18116c62f02c43f6fb346",
"md5": "ce4475d71f7ef6a4d84e4206c7d8de37",
"sha256": "eeab94027db921d52b440233addea57015e6dbd1f04accc84270bd10c9fe9c2b"
},
"downloads": -1,
"filename": "unicorn_binance_rest_api-2.6.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "ce4475d71f7ef6a4d84e4206c7d8de37",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.7.0",
"size": 3160656,
"upload_time": "2024-05-17T08:20:27",
"upload_time_iso_8601": "2024-05-17T08:20:27.438297Z",
"url": "https://files.pythonhosted.org/packages/b9/85/e480c5abd30d6c0da782a88c50fc9d9bb12872b18116c62f02c43f6fb346/unicorn_binance_rest_api-2.6.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "842c22e0594ac65d5cd6aeffadd5ac0598e620ae2a3e8456df274db2a073c133",
"md5": "b1f907ab924b721aa6e358bf9709441a",
"sha256": "061975f5928632e73f01ab2506cc036a29aaf76e6d680cdb106802398b1b5082"
},
"downloads": -1,
"filename": "unicorn_binance_rest_api-2.6.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "b1f907ab924b721aa6e358bf9709441a",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.7.0",
"size": 2994830,
"upload_time": "2024-05-17T08:20:29",
"upload_time_iso_8601": "2024-05-17T08:20:29.203152Z",
"url": "https://files.pythonhosted.org/packages/84/2c/22e0594ac65d5cd6aeffadd5ac0598e620ae2a3e8456df274db2a073c133/unicorn_binance_rest_api-2.6.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e0dbc23cef6f7432e2b807a66da294a06ab115b3af4cdc6edc131f8ad92ae253",
"md5": "a943ba1997036b2f323ed261b14e8091",
"sha256": "09b1489d3119002aec4e70e1664f986ee122f6b5b20bed606e766d2fabd0bac7"
},
"downloads": -1,
"filename": "unicorn_binance_rest_api-2.6.1-cp37-cp37m-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "a943ba1997036b2f323ed261b14e8091",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.7.0",
"size": 3006062,
"upload_time": "2024-05-17T08:20:30",
"upload_time_iso_8601": "2024-05-17T08:20:30.963665Z",
"url": "https://files.pythonhosted.org/packages/e0/db/c23cef6f7432e2b807a66da294a06ab115b3af4cdc6edc131f8ad92ae253/unicorn_binance_rest_api-2.6.1-cp37-cp37m-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7d87b38dbf576a93dcd5011a805d5e257ad1d64df2e51f0c0de73d230ae74b9e",
"md5": "30a8a0fa22b174d4c4cbf1313b93c4df",
"sha256": "b7f93679d38164ec3faa2f13e3dba24269e33c0a55345c4f27155c34d08ef0bf"
},
"downloads": -1,
"filename": "unicorn_binance_rest_api-2.6.1-cp37-cp37m-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "30a8a0fa22b174d4c4cbf1313b93c4df",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.7.0",
"size": 3181484,
"upload_time": "2024-05-17T08:20:32",
"upload_time_iso_8601": "2024-05-17T08:20:32.801341Z",
"url": "https://files.pythonhosted.org/packages/7d/87/b38dbf576a93dcd5011a805d5e257ad1d64df2e51f0c0de73d230ae74b9e/unicorn_binance_rest_api-2.6.1-cp37-cp37m-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8457a9e252bfadf8ec754cff5964412e2d6f1c5460649a3293ad5fd34f41b00f",
"md5": "2b40f4468f0936d9f4b6cfe07eb978e6",
"sha256": "8044c5279796eb9c2d824d602c60fa0166efb08ad431f05fa9d9cfcbd5e487c9"
},
"downloads": -1,
"filename": "unicorn_binance_rest_api-2.6.1-cp37-cp37m-win32.whl",
"has_sig": false,
"md5_digest": "2b40f4468f0936d9f4b6cfe07eb978e6",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.7.0",
"size": 1128586,
"upload_time": "2024-05-17T08:20:34",
"upload_time_iso_8601": "2024-05-17T08:20:34.467690Z",
"url": "https://files.pythonhosted.org/packages/84/57/a9e252bfadf8ec754cff5964412e2d6f1c5460649a3293ad5fd34f41b00f/unicorn_binance_rest_api-2.6.1-cp37-cp37m-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f09bdba5f676de1d1bad222e38767676b9657ab9a2086d5a8aa0bf21dbecbeda",
"md5": "4f0b39ac2fee91e77ad48ca586b6ce2e",
"sha256": "14b983996e69fe2d8aa6435b49391eec22da7ac89646a7ece0bebd427a026203"
},
"downloads": -1,
"filename": "unicorn_binance_rest_api-2.6.1-cp37-cp37m-win_amd64.whl",
"has_sig": false,
"md5_digest": "4f0b39ac2fee91e77ad48ca586b6ce2e",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.7.0",
"size": 1184559,
"upload_time": "2024-05-17T08:20:36",
"upload_time_iso_8601": "2024-05-17T08:20:36.301422Z",
"url": "https://files.pythonhosted.org/packages/f0/9b/dba5f676de1d1bad222e38767676b9657ab9a2086d5a8aa0bf21dbecbeda/unicorn_binance_rest_api-2.6.1-cp37-cp37m-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1f8e68cf97da68fadd605a5dea215dd1ab73fec54ef140ae801f4c95cf3accfd",
"md5": "8ff11f6b0fd447994bf17e64f526ab23",
"sha256": "7b40d7ffd18b1b303b5e151a4cf00d2c3bd7c3fb094d134e1a47b6be66ceb297"
},
"downloads": -1,
"filename": "unicorn_binance_rest_api-2.6.1-cp38-cp38-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "8ff11f6b0fd447994bf17e64f526ab23",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.7.0",
"size": 1267162,
"upload_time": "2024-05-17T08:20:37",
"upload_time_iso_8601": "2024-05-17T08:20:37.957526Z",
"url": "https://files.pythonhosted.org/packages/1f/8e/68cf97da68fadd605a5dea215dd1ab73fec54ef140ae801f4c95cf3accfd/unicorn_binance_rest_api-2.6.1-cp38-cp38-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ff8e69f8126e301c9ef44e917acd2f4cb9f50a29d0ca5d6014dc35f493311c71",
"md5": "623a8ee894b3c46d8a1d54588c0a71bd",
"sha256": "048a53e06758cfd4a04f626bf9edc6030f371269775714320160eacc4936c681"
},
"downloads": -1,
"filename": "unicorn_binance_rest_api-2.6.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "623a8ee894b3c46d8a1d54588c0a71bd",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.7.0",
"size": 3446848,
"upload_time": "2024-05-17T08:20:39",
"upload_time_iso_8601": "2024-05-17T08:20:39.703249Z",
"url": "https://files.pythonhosted.org/packages/ff/8e/69f8126e301c9ef44e917acd2f4cb9f50a29d0ca5d6014dc35f493311c71/unicorn_binance_rest_api-2.6.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f00f08d07d32fc5bdf84b0fb5399d0283fa59e823a727c16677b78dfec6cd9ae",
"md5": "57374f5f25cfd8b7276c44b8f7beb0a4",
"sha256": "df6939404c202e639eb7ed7d90c1c009ca34d952b01990c602339a780e90b919"
},
"downloads": -1,
"filename": "unicorn_binance_rest_api-2.6.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "57374f5f25cfd8b7276c44b8f7beb0a4",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.7.0",
"size": 3265328,
"upload_time": "2024-05-17T08:20:42",
"upload_time_iso_8601": "2024-05-17T08:20:42.176045Z",
"url": "https://files.pythonhosted.org/packages/f0/0f/08d07d32fc5bdf84b0fb5399d0283fa59e823a727c16677b78dfec6cd9ae/unicorn_binance_rest_api-2.6.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2cf81aa3789aba12abf87692a58cf9c8f19e88e0da187fd6c44fc8cd02d0a953",
"md5": "ad5abdfbd18dff8728e63c305d254882",
"sha256": "46d640e98f08e445bca06f031c50ab9cca7a718241b4d5210dbfcebcfcd4119e"
},
"downloads": -1,
"filename": "unicorn_binance_rest_api-2.6.1-cp38-cp38-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "ad5abdfbd18dff8728e63c305d254882",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.7.0",
"size": 3436293,
"upload_time": "2024-05-17T08:20:44",
"upload_time_iso_8601": "2024-05-17T08:20:44.707464Z",
"url": "https://files.pythonhosted.org/packages/2c/f8/1aa3789aba12abf87692a58cf9c8f19e88e0da187fd6c44fc8cd02d0a953/unicorn_binance_rest_api-2.6.1-cp38-cp38-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9a48ec3a022240ec7dc64fd8ec1a37052ae1577915a04e15e95d1c0cda03e14f",
"md5": "16afb67659a0779ca06831662b5b7ab7",
"sha256": "f83026b85b538075574110e420f6a1077dd2e695051f219bc90cd77c2b59d63b"
},
"downloads": -1,
"filename": "unicorn_binance_rest_api-2.6.1-cp38-cp38-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "16afb67659a0779ca06831662b5b7ab7",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.7.0",
"size": 3657427,
"upload_time": "2024-05-17T08:20:47",
"upload_time_iso_8601": "2024-05-17T08:20:47.211472Z",
"url": "https://files.pythonhosted.org/packages/9a/48/ec3a022240ec7dc64fd8ec1a37052ae1577915a04e15e95d1c0cda03e14f/unicorn_binance_rest_api-2.6.1-cp38-cp38-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e607959c0dc0f774f683466265989a2463de2a42375555837f01b08046444cd0",
"md5": "e8ed06d8b390d79db68dabc60573d9c7",
"sha256": "db30ba093bcd201e0d0efcd5e0d186bcfcc149e66a64d3807642554e7689d6f9"
},
"downloads": -1,
"filename": "unicorn_binance_rest_api-2.6.1-cp38-cp38-win32.whl",
"has_sig": false,
"md5_digest": "e8ed06d8b390d79db68dabc60573d9c7",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.7.0",
"size": 1142779,
"upload_time": "2024-05-17T08:20:48",
"upload_time_iso_8601": "2024-05-17T08:20:48.870494Z",
"url": "https://files.pythonhosted.org/packages/e6/07/959c0dc0f774f683466265989a2463de2a42375555837f01b08046444cd0/unicorn_binance_rest_api-2.6.1-cp38-cp38-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e059eae02c21a9f95abe2d9561063afc6644ae557d7abfc5fee3ebdfbbbbc1df",
"md5": "176a95b1508757107de10b1a16a4c364",
"sha256": "b6ee9ac2ca5ecbb771cf72e3b0638dd5585de51591c82b7f66bab5cd01c48dcc"
},
"downloads": -1,
"filename": "unicorn_binance_rest_api-2.6.1-cp38-cp38-win_amd64.whl",
"has_sig": false,
"md5_digest": "176a95b1508757107de10b1a16a4c364",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.7.0",
"size": 1201020,
"upload_time": "2024-05-17T08:20:50",
"upload_time_iso_8601": "2024-05-17T08:20:50.325589Z",
"url": "https://files.pythonhosted.org/packages/e0/59/eae02c21a9f95abe2d9561063afc6644ae557d7abfc5fee3ebdfbbbbc1df/unicorn_binance_rest_api-2.6.1-cp38-cp38-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "82fe9ae5f540863795ce61e697ceba83e4cdcd90d3416df08d04ff002bd404cb",
"md5": "a4a7ada07e1a8aa8e76307a1a38f171a",
"sha256": "4b7d02fadfa2b88b865d190d2f8973647ddba0fa53057a48f32db00a9382591d"
},
"downloads": -1,
"filename": "unicorn_binance_rest_api-2.6.1-cp39-cp39-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "a4a7ada07e1a8aa8e76307a1a38f171a",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.7.0",
"size": 1277480,
"upload_time": "2024-05-17T08:20:52",
"upload_time_iso_8601": "2024-05-17T08:20:52.053882Z",
"url": "https://files.pythonhosted.org/packages/82/fe/9ae5f540863795ce61e697ceba83e4cdcd90d3416df08d04ff002bd404cb/unicorn_binance_rest_api-2.6.1-cp39-cp39-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1c0c8637370012e43af5520d8196db740e5cd279615fec55fc800d31d7d203c5",
"md5": "3cbcaa90eb69b4dbadb47341035f689e",
"sha256": "95344242d1ed4633c96f6e8a2581cf7ea45e0d32c4608321e1177ed3da458a32"
},
"downloads": -1,
"filename": "unicorn_binance_rest_api-2.6.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "3cbcaa90eb69b4dbadb47341035f689e",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.7.0",
"size": 3395110,
"upload_time": "2024-05-17T08:20:53",
"upload_time_iso_8601": "2024-05-17T08:20:53.732409Z",
"url": "https://files.pythonhosted.org/packages/1c/0c/8637370012e43af5520d8196db740e5cd279615fec55fc800d31d7d203c5/unicorn_binance_rest_api-2.6.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e9ab4058fc2bfca75e8d8cb85cd5f5b1ec0f01ca3fb9d7a5612d8a053ae774ed",
"md5": "29eb65f1808ad361b7fcdd2356218900",
"sha256": "42fc49339f7b6b30a97a08d2dc24cacaf8fcae59de721db2f5d2c53f108e49e4"
},
"downloads": -1,
"filename": "unicorn_binance_rest_api-2.6.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "29eb65f1808ad361b7fcdd2356218900",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.7.0",
"size": 3224223,
"upload_time": "2024-05-17T08:20:55",
"upload_time_iso_8601": "2024-05-17T08:20:55.678543Z",
"url": "https://files.pythonhosted.org/packages/e9/ab/4058fc2bfca75e8d8cb85cd5f5b1ec0f01ca3fb9d7a5612d8a053ae774ed/unicorn_binance_rest_api-2.6.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "25b87c19146bc5481ea43634d99dfa73784b7cf242fde1b1c0470fa6c9e3ddf5",
"md5": "26836cf7f8c6e081459610a51794f8e5",
"sha256": "719cbf7510888249f1c2a86c60dcaea2949889bd4bf22fcf382a0dff6b8dec21"
},
"downloads": -1,
"filename": "unicorn_binance_rest_api-2.6.1-cp39-cp39-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "26836cf7f8c6e081459610a51794f8e5",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.7.0",
"size": 3236508,
"upload_time": "2024-05-17T08:20:58",
"upload_time_iso_8601": "2024-05-17T08:20:58.953834Z",
"url": "https://files.pythonhosted.org/packages/25/b8/7c19146bc5481ea43634d99dfa73784b7cf242fde1b1c0470fa6c9e3ddf5/unicorn_binance_rest_api-2.6.1-cp39-cp39-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9edff0761eda83c7b4afad92e57be13d9e31501191c43d0f81599edc633a453e",
"md5": "aeced2c0f7012fae7b54023ced85c754",
"sha256": "8634c0107d7f020a835d8c119210ebca6f594b78e49f14316fcb3b6cb8067057"
},
"downloads": -1,
"filename": "unicorn_binance_rest_api-2.6.1-cp39-cp39-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "aeced2c0f7012fae7b54023ced85c754",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.7.0",
"size": 3404825,
"upload_time": "2024-05-17T08:21:01",
"upload_time_iso_8601": "2024-05-17T08:21:01.147028Z",
"url": "https://files.pythonhosted.org/packages/9e/df/f0761eda83c7b4afad92e57be13d9e31501191c43d0f81599edc633a453e/unicorn_binance_rest_api-2.6.1-cp39-cp39-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "234f43d2cbfbccf3ac76127b5c62e2932f5cafb0b50798926bc0f5f133bdaa76",
"md5": "91f4512c102c0851053995c9fb1f48d6",
"sha256": "2b36b7b70394c5c23bfbfa2d23f88800854e624a89804a447343c0a5cdc9f6b8"
},
"downloads": -1,
"filename": "unicorn_binance_rest_api-2.6.1-cp39-cp39-win32.whl",
"has_sig": false,
"md5_digest": "91f4512c102c0851053995c9fb1f48d6",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.7.0",
"size": 1140354,
"upload_time": "2024-05-17T08:21:03",
"upload_time_iso_8601": "2024-05-17T08:21:03.691921Z",
"url": "https://files.pythonhosted.org/packages/23/4f/43d2cbfbccf3ac76127b5c62e2932f5cafb0b50798926bc0f5f133bdaa76/unicorn_binance_rest_api-2.6.1-cp39-cp39-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "864ee067ab46ebedd9fcdb3f7bc01ae35bf350f2e026fee207f6de68a92f48ae",
"md5": "33b7d98f712e6d0dd49e6327b23641cb",
"sha256": "113b3c664d2f65ae7772cc639b64698dab77121946c06ce509036dc590ff8bac"
},
"downloads": -1,
"filename": "unicorn_binance_rest_api-2.6.1-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "33b7d98f712e6d0dd49e6327b23641cb",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.7.0",
"size": 1197999,
"upload_time": "2024-05-17T08:21:05",
"upload_time_iso_8601": "2024-05-17T08:21:05.566630Z",
"url": "https://files.pythonhosted.org/packages/86/4e/e067ab46ebedd9fcdb3f7bc01ae35bf350f2e026fee207f6de68a92f48ae/unicorn_binance_rest_api-2.6.1-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "22211c6ab416420c39e8fc473cfb5a324d42f4731a461620053d19e796447543",
"md5": "fe557954c7a16b2092a7fd1f490eb9b0",
"sha256": "04525fb9d64e19798572d65b37772369e9bbd7ea6e57815db0fe59e947223e1f"
},
"downloads": -1,
"filename": "unicorn_binance_rest_api-2.6.1-pp310-pypy310_pp73-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "fe557954c7a16b2092a7fd1f490eb9b0",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.7.0",
"size": 1171382,
"upload_time": "2024-05-17T08:21:07",
"upload_time_iso_8601": "2024-05-17T08:21:07.908688Z",
"url": "https://files.pythonhosted.org/packages/22/21/1c6ab416420c39e8fc473cfb5a324d42f4731a461620053d19e796447543/unicorn_binance_rest_api-2.6.1-pp310-pypy310_pp73-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3035ff137e6ae7fd79ed301b30099aa6b0a5b0d161a8e8a0951923f549a47e14",
"md5": "60d240b966073df7a298f9096db6be04",
"sha256": "31d8c0159a14523324f447d67790a05dea7d0c0f50b98951d1dce6f6a5301407"
},
"downloads": -1,
"filename": "unicorn_binance_rest_api-2.6.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "60d240b966073df7a298f9096db6be04",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.7.0",
"size": 1200358,
"upload_time": "2024-05-17T08:21:09",
"upload_time_iso_8601": "2024-05-17T08:21:09.831740Z",
"url": "https://files.pythonhosted.org/packages/30/35/ff137e6ae7fd79ed301b30099aa6b0a5b0d161a8e8a0951923f549a47e14/unicorn_binance_rest_api-2.6.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "db541a535dc935e54fba34fdac6ad3a567be9d0fa81e46de17bddffa65e350e7",
"md5": "112025f7faf891f6042e072a8b9ab9aa",
"sha256": "d6a4fd38401d7176e1dd039f97ac42599b41696b02f729f2f0c57838f4d352ff"
},
"downloads": -1,
"filename": "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",
"has_sig": false,
"md5_digest": "112025f7faf891f6042e072a8b9ab9aa",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.7.0",
"size": 1203284,
"upload_time": "2024-05-17T08:21:11",
"upload_time_iso_8601": "2024-05-17T08:21:11.748063Z",
"url": "https://files.pythonhosted.org/packages/db/54/1a535dc935e54fba34fdac6ad3a567be9d0fa81e46de17bddffa65e350e7/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",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8c885379dc2bf57cd7f8c4eaedc8f68ee641479ceb8abe51fb26ea71072eaed2",
"md5": "4eb88c4c3e18c28c7614abb6af880fd6",
"sha256": "40ebbd6ccf8f689c37c3aa0c41a9e77a19bd2377d03c45a9fa505c240bf0c04f"
},
"downloads": -1,
"filename": "unicorn_binance_rest_api-2.6.1-pp310-pypy310_pp73-win_amd64.whl",
"has_sig": false,
"md5_digest": "4eb88c4c3e18c28c7614abb6af880fd6",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.7.0",
"size": 1155770,
"upload_time": "2024-05-17T08:21:13",
"upload_time_iso_8601": "2024-05-17T08:21:13.615914Z",
"url": "https://files.pythonhosted.org/packages/8c/88/5379dc2bf57cd7f8c4eaedc8f68ee641479ceb8abe51fb26ea71072eaed2/unicorn_binance_rest_api-2.6.1-pp310-pypy310_pp73-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4872d364b3add139de97f92033779ad728d9931cf4027d7b8efab9241f64f7cf",
"md5": "eb85d1d9176ef0913f860aa7ff1d179f",
"sha256": "c28e6007e5c0ea4a3bdff74e1425605582b39c8c7539e27d60d771ccf2be26bf"
},
"downloads": -1,
"filename": "unicorn_binance_rest_api-2.6.1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "eb85d1d9176ef0913f860aa7ff1d179f",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.7.0",
"size": 1171148,
"upload_time": "2024-05-17T08:21:15",
"upload_time_iso_8601": "2024-05-17T08:21:15.469709Z",
"url": "https://files.pythonhosted.org/packages/48/72/d364b3add139de97f92033779ad728d9931cf4027d7b8efab9241f64f7cf/unicorn_binance_rest_api-2.6.1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3ebaa69ad1beeca46a47c857310dd27271e4dfc5fab9e7c2d1bd72b58cb8db48",
"md5": "f49f93adf9011b4ced40c836c465e9ca",
"sha256": "d9455912fb15945b24afc05a2729f4a84099be95b83aceeb818a21efcffbd71f"
},
"downloads": -1,
"filename": "unicorn_binance_rest_api-2.6.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "f49f93adf9011b4ced40c836c465e9ca",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.7.0",
"size": 1200451,
"upload_time": "2024-05-17T08:21:17",
"upload_time_iso_8601": "2024-05-17T08:21:17.139778Z",
"url": "https://files.pythonhosted.org/packages/3e/ba/a69ad1beeca46a47c857310dd27271e4dfc5fab9e7c2d1bd72b58cb8db48/unicorn_binance_rest_api-2.6.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6f13964cb0c9d66068eaafaa0e85b718c1f3ec638f080c0d2528a093f296d036",
"md5": "04d02b4833557ab45a91fb64ea862146",
"sha256": "a18678310786b7ef76822743efb6698763f41ddfbbb0db87df4859265664ca64"
},
"downloads": -1,
"filename": "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",
"has_sig": false,
"md5_digest": "04d02b4833557ab45a91fb64ea862146",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.7.0",
"size": 1202694,
"upload_time": "2024-05-17T08:21:19",
"upload_time_iso_8601": "2024-05-17T08:21:19.191677Z",
"url": "https://files.pythonhosted.org/packages/6f/13/964cb0c9d66068eaafaa0e85b718c1f3ec638f080c0d2528a093f296d036/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",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "286bd608d6255a6fea31a3ea25e87316918ec44173866f9765b0d7dc2059d551",
"md5": "cc4b836d8fe1d3306c85efcffaecf4d0",
"sha256": "ab0056e57698ae1577b7bbe5ddf2511f46ba8abf409ba5d93b4190f0dfd3229b"
},
"downloads": -1,
"filename": "unicorn_binance_rest_api-2.6.1-pp39-pypy39_pp73-win_amd64.whl",
"has_sig": false,
"md5_digest": "cc4b836d8fe1d3306c85efcffaecf4d0",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.7.0",
"size": 1155398,
"upload_time": "2024-05-17T08:21:21",
"upload_time_iso_8601": "2024-05-17T08:21:21.304695Z",
"url": "https://files.pythonhosted.org/packages/28/6b/d608d6255a6fea31a3ea25e87316918ec44173866f9765b0d7dc2059d551/unicorn_binance_rest_api-2.6.1-pp39-pypy39_pp73-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1a312eb4ebc6374c5d2973576a0aa26efb10d592efbbde0e095592ce34ad2ed4",
"md5": "f8344d2decce0bfd1fcf2822f093f156",
"sha256": "5a72b68c88b327bace4a93b8d068804441b6a49581262ce57ca6f1c05db398be"
},
"downloads": -1,
"filename": "unicorn_binance_rest_api-2.6.1.tar.gz",
"has_sig": false,
"md5_digest": "f8344d2decce0bfd1fcf2822f093f156",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.7.0",
"size": 741860,
"upload_time": "2024-05-17T08:21:22",
"upload_time_iso_8601": "2024-05-17T08:21:22.904593Z",
"url": "https://files.pythonhosted.org/packages/1a/31/2eb4ebc6374c5d2973576a0aa26efb10d592efbbde0e095592ce34ad2ed4/unicorn_binance_rest_api-2.6.1.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-05-17 08:21:22",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "LUCIT-Systems-and-Development",
"github_project": "unicorn-binance-rest-api",
"travis_ci": false,
"coveralls": true,
"github_actions": true,
"requirements": [
{
"name": "certifi",
"specs": [
[
">=",
"2023.7.22"
]
]
},
{
"name": "colorama",
"specs": []
},
{
"name": "cryptography",
"specs": [
[
">=",
"42.0.4"
]
]
},
{
"name": "Cython",
"specs": []
},
{
"name": "dateparser",
"specs": []
},
{
"name": "lucit-licensing-python",
"specs": [
[
">=",
"1.8.2"
]
]
},
{
"name": "pyOpenSSL",
"specs": []
},
{
"name": "PySocks",
"specs": []
},
{
"name": "pytz",
"specs": []
},
{
"name": "regex",
"specs": []
},
{
"name": "requests",
"specs": [
[
">=",
"2.31.0"
]
]
},
{
"name": "service-identity",
"specs": []
},
{
"name": "ujson",
"specs": []
}
],
"lcname": "unicorn-binance-rest-api"
}