[![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)
[![GitHub Release](https://img.shields.io/github/release/LUCIT-Systems-and-Development/unicorn-fy.svg?label=github)](https://github.com/LUCIT-Systems-and-Development/unicorn-fy/releases)
[![GitHub Downloads](https://img.shields.io/github/downloads/LUCIT-Systems-and-Development/unicorn-fy/total?color=blue)](https://github.com/LUCIT-Systems-and-Development/unicorn-fy/releases)
![Anaconda Release](https://img.shields.io/conda/v/lucit/unicorn-fy?color=blue)
![Anaconda Downloads](https://img.shields.io/conda/dn/lucit/unicorn-fy?color=blue)
[![PyPi Release](https://img.shields.io/pypi/v/unicorn-fy?color=blue)](https://pypi.org/project/unicorn-fy/)
[![PyPi Downloads](https://pepy.tech/badge/unicorn-fy)](https://pepy.tech/project/unicorn-fy)
[![License](https://img.shields.io/github/license/LUCIT-Systems-and-Development/unicorn-fy.svg?color=blue)](https://unicorn-fy.docs.lucit.tech/license.html)
[![Supported Python Version](https://img.shields.io/pypi/pyversions/unicorn_fy.svg)](https://www.python.org/downloads/)
[![PyPI - Status](https://img.shields.io/pypi/status/unicorn_fy.svg)](https://github.com/LUCIT-Systems-and-Development/unicorn-fy/issues)
[![codecov](https://codecov.io/gh/LUCIT-Systems-and-Development/unicorn-fy/branch/master/graph/badge.svg?token=5I03AZ3F5S)](https://codecov.io/gh/LUCIT-Systems-and-Development/unicorn-fy)
[![CodeQL](https://github.com/LUCIT-Systems-and-Development/unicorn-fy/actions/workflows/codeql-analysis.yml/badge.svg)](https://github.com/LUCIT-Systems-and-Development/unicorn-fy/actions/workflows/codeql-analysis.yml)
[![Unit Tests](https://github.com/LUCIT-Systems-and-Development/unicorn-fy/actions/workflows/unit-tests.yml/badge.svg)](https://github.com/LUCIT-Systems-and-Development/unicorn-fy/actions/workflows/unit-tests.yml)
[![Build and Publish GH+PyPi](https://github.com/LUCIT-Systems-and-Development/unicorn-fy/actions/workflows/build_wheels.yml/badge.svg)](https://github.com/LUCIT-Systems-and-Development/unicorn-fy/actions/workflows/build_wheels.yml)
[![Build and Publish Anaconda](https://github.com/LUCIT-Systems-and-Development/unicorn-fy/actions/workflows/build_conda.yml/badge.svg)](https://github.com/LUCIT-Systems-and-Development/unicorn-fy/actions/workflows/build_conda.yml)
[![Read the Docs](https://img.shields.io/badge/read-%20docs-yellow)](https://unicorn-fy.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-fy)
[![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-fy?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)
[![ChatGPT UNICORN Binance Suite Assistant](https://img.shields.io/badge/chatgpt-%20ubs%20assistant-DA70D6)](https://chat.openai.com/g/g-VjCOjRhCJ-unicorn-binance-suite-assistant)
[![LUCIT-UNICORNFY-Banner](https://raw.githubusercontent.com/lucit-systems-and-development/unicorn-fy/master/images/logo/LUCIT-UNICORNFY-Banner-Readme.png)](https://www.lucit.tech/unicorn-fy.html)
# UnicornFy
[Supported Exchanges](#supported-exchanges) | [Installation](#installation-and-upgrade) | [Change Log](#change-log) | [Documentation](#documentation) |
[Examples](#examples) | [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 convert received raw data from crypto exchange API endpoints
into well-formed python dictionaries.
Part of ['UNICORN Binance Suite'](https://www.lucit.tech/unicorn-binance-suite.html).
Get help with the integration of the `UNICORN Binance Suite` modules from the
[`UNICORN Binance Suite Assistant` GPT](https://chat.openai.com/g/g-VjCOjRhCJ-unicorn-binance-suite-assistant) or
[a real human LUCIT employee](https://www.lucit.tech/get-support.html).
```
import unicorn_fy
received_stream_data_json = {"stream": "btcusdt@trade",
"data": {"e": "trade",
"E": 1556876873656,
"s": "BTCUSDT",
"t": 117727701,
"p": "5786.76000000",
"q": "0.03200500",
"b": 341831847,
"a": 341831876,
"T": 1556876873648,
"m": True,
"M": True}}
ufy = unicorn_fy.UnicornFy()
unicorn_fied_stream_data = ufy.binance_com_websocket(received_stream_data_json)
print(unicorn_fied_stream_data)
```
Output:
```
{'stream_type': 'btcusdt@trade', 'event_type': 'trade', 'event_time': 1556876873656, 'symbol': 'BTCUSDT',
'trade_id': 117727701, 'price': '5786.76000000', 'quantity': '0.03200500', 'buyer_order_id': 341831847,
'seller_order_id': 341831876, 'trade_time': 1556876873648, 'is_market_maker': True, 'ignore': True,
'unicorn_fied': ['binance', '0.14.2']}
```
This lib is integrated into
[UNICORN Binance WebSocket API](https://www.lucit.tech/unicorn-binance-websocket-api.html)
and can be activated by setting parameter
[`output_default` of `BinanceWebSocketApiManager()` to `UnicornFy`](https://lucit-systems-and-development.github.io/unicorn-binance-websocket-api/unicorn_binance_websocket_api.html?highlight=output_default#module-unicorn_binance_websocket_api.manager)
or for specific streams with the parameter
[`output` of `create_stream()` to `UnicornFy`](https://lucit-systems-and-development.github.io/unicorn-binance-websocket-api/unicorn_binance_websocket_api.html?highlight=output#unicorn_binance_websocket_api.manager.BinanceWebSocketApiManager.create_stream).
## Get the right [logger](https://github.com/LUCIT-Systems-and-Development/unicorn-fy/blob/master/example_logging.py):
```
logging.getLogger("unicorn_fy")
```
## Supported Exchanges
### Websockets
| Exchange | Docs | Status |
| -------- | --------------- | ------ |
| [Binance](https://www.binance.com) ([API](https://github.com/binance-exchange/binance-official-api-docs)) | [`binance_com_websocket(stream_data_json)`](https://unicorn-fy.docs.lucit.tech//unicorn_fy.html?highlight=binance_com#unicorn_fy.unicorn_fy.UnicornFy.binance_com_websocket) | STABLE |
| [Binance Testnet](https://testnet.binance.vision/) ([API](https://github.com/binance-exchange/binance-official-api-docs)) | [`binance_com_websocket(stream_data_json)`](https://unicorn-fy.docs.lucit.tech//unicorn_fy.html?highlight=binance_com#unicorn_fy.unicorn_fy.UnicornFy.binance_com_websocket) | STABLE |
| [Binance Margin](https://www.binance.com) ([API](https://github.com/binance-exchange/binance-official-api-docs)) | [`binance_com_margin_websocket(stream_data_json)`](https://unicorn-fy.docs.lucit.tech//unicorn_fy.html?highlight=binance_com#unicorn_fy.unicorn_fy.UnicornFy.binance_com_margin_websocket) | STABLE |
| [Binance Margin Testnet](https://testnet.binance.vision/) ([API](https://github.com/binance-exchange/binance-official-api-docs)) | [`binance_com_margin_websocket(stream_data_json)`](https://unicorn-fy.docs.lucit.tech//unicorn_fy.html?highlight=binance_com#unicorn_fy.unicorn_fy.UnicornFy.binance_com_margin_websocket) | STABLE |
| [Binance Isolated Margin](https://www.binance.com) ([API](https://github.com/binance-exchange/binance-official-api-docs)) | [`binance_com_isolated_margin_websocket(stream_data_json)`](https://unicorn-fy.docs.lucit.tech//unicorn_fy.html?highlight=binance_com#unicorn_fy.unicorn_fy.UnicornFy.binance_com_isolated_margin_websocket) | STABLE |
| [Binance Isolated Margin Testnet](https://testnet.binance.vision/) ([API](https://github.com/binance-exchange/binance-official-api-docs)) | [`binance_com_isolated_margin_websocket(stream_data_json)`](https://unicorn-fy.docs.lucit.tech//unicorn_fy.html?highlight=binance_com#unicorn_fy.unicorn_fy.UnicornFy.binance_com_isolated_margin_websocket) | STABLE |
| [Binance Futures](https://www.binance.com) ([API](https://github.com/binance-exchange/binance-official-api-docs)) | [`binance_com_futures_websocket(stream_data_json)`](https://unicorn-fy.docs.lucit.tech//unicorn_fy.html?highlight=binance_com#unicorn_fy.unicorn_fy.UnicornFy.binance_com_futures_websocket) | STABLE |
| [Binance Futures Testnet](https://testnet.binancefuture.com) ([API](https://github.com/binance-exchange/binance-official-api-docs)) | [`binance_com_futures_websocket(stream_data_json)`](https://unicorn-fy.docs.lucit.tech//unicorn_fy.html?highlight=binance_com#unicorn_fy.unicorn_fy.UnicornFy.binance_com_coin_futures_websocket) | STABLE |
| [Binance Coin Futures](https://www.binance.com) ([API](https://github.com/binance-exchange/binance-official-api-docs)) | [`binance_com_coin_futures_websocket(stream_data_json)`](https://unicorn-fy.docs.lucit.tech//unicorn_fy.html?highlight=binance_com#unicorn_fy.unicorn_fy.UnicornFy.binance_com_coin_futures_websocket) | NEEDS_YOUR_HELP |
| [Binance Coin Futures Testnet](https://testnet.binancefuture.com) ([API](https://github.com/binance-exchange/binance-official-api-docs)) | [`binance_com_coin_futures_websocket(stream_data_json)`](https://unicorn-fy.docs.lucit.tech//unicorn_fy.html?highlight=binance_com#unicorn_fy.unicorn_fy.UnicornFy.binance_com_futures_websocket) | NEEDS_YOUR_HELP |
| [Binance Jersey](https://www.binance.je) ([API](https://github.com/binance-jersey/binance-official-api-docs/)) | [`binance_je_websocket(stream_data_json)`](https://unicorn-fy.docs.lucit.tech//unicorn_fy.html?highlight=binance_com#unicorn_fy.unicorn_fy.UnicornFy.binance_je_websocket) | STABLE |
| [Binance US](https://www.binance.us) ([API](https://github.com/binance-us/binance-official-api-docs)) | [`binance_us_websocket(stream_data_json)`](https://unicorn-fy.docs.lucit.tech//unicorn_fy.html?highlight=binance_com#unicorn_fy.unicorn_fy.UnicornFy.binance_us_websocket) | STABLE |
| [Binance TR](https://www.trbinance.com) ([API](https://www.trbinance.com/apidocs)) | [`trbinance_com_websocket(stream_data_json)`](https://unicorn-fy.docs.lucit.tech//unicorn_fy.html?highlight=binance_com#unicorn_fy.unicorn_fy.UnicornFy.trbinance_com_websocket) | STABLE |
| [Binance JEX](https://www.jex.com) ([API](https://jexapi.github.io/api-doc/spot.html#change-log)) | [`jex_com_websocket(stream_data_json)`](https://unicorn-fy.docs.lucit.tech//unicorn_fy.html?highlight=binance_com#unicorn_fy.unicorn_fy.UnicornFy.jex_com_websocket) | STABLE |
| [Binance DEX](https://www.binance.org) ([API](https://docs.binance.org/)) | [`binance_org_websocket(stream_data_json)`](https://unicorn-fy.docs.lucit.tech//unicorn_fy.html?highlight=binance_com#unicorn_fy.unicorn_fy.UnicornFy.binance_org_websocket) | NEEDS_YOUR_HELP |
| [Binance DEX Testnet](https://testnet.binance.org) ([API](https://docs.binance.org/)) | [`binance_org_websocket(stream_data_json)`](https://unicorn-fy.docs.lucit.tech//unicorn_fy.html?highlight=binance_com#unicorn_fy.unicorn_fy.UnicornFy.binance_org_websocket) | NEEDS_YOUR_HELP |
### REST
- none
If you like the project, please
[![star](https://raw.githubusercontent.com/lucit-systems-and-development/unicorn-fy/master/images/misc/star.png)](https://github.com/LUCIT-Systems-and-Development/unicorn-fy/stargazers) it on
[GitHub](https://github.com/LUCIT-Systems-and-Development/unicorn-fy)!
## Installation and Upgrade
The module requires Python 3.7.0 or above.
For Anaconda we offer packages only from Python version 3.8 and higher.
For the PyPy interpreter we offer packages only from Python version 3.9 and higher.
The current dependencies are listed
[here](https://github.com/LUCIT-Systems-and-Development/unicorn-fy/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-fy/actions/workflows/build_conda.yml)
- [Build and Publish GH+PyPi](https://github.com/LUCIT-Systems-and-Development/unicorn-fy/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-fy`
#### Update
`pip install unicorn-fy --upgrade`
### A Conda Package of the latest version with `conda` from [Anaconda](https://anaconda.org/lucit)
The `unicorn-fy` 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-fy
```
#### Update
`conda update -c lucit unicorn-fy`
### From source of the latest release with PIP from [Github](https://github.com/LUCIT-Systems-and-Development/unicorn-fy)
#### Linux, macOS, ...
Run in bash:
`pip install https://github.com/LUCIT-Systems-and-Development/unicorn-fy/archive/$(curl -s https://api.github.com/repos/lucit-systems-and-development/unicorn-fy/releases/latest | grep -oP '"tag_name": "\K(.*)(?=")').tar.gz --upgrade`
#### Windows
Use the below command with the version (such as 0.14.2) you determined [here](https://github.com/LUCIT-Systems-and-Development/unicorn-fy/releases/latest):
`pip install https://github.com/LUCIT-Systems-and-Development/unicorn-fy/archive/0.14.2.tar.gz --upgrade`
### From the latest source (dev-stage) with PIP from [GitHub](https://github.com/LUCIT-Systems-and-Development/unicorn-fy)
This is not a release version and can not be considered to be stable!
`pip install https://github.com/LUCIT-Systems-and-Development/unicorn-fy/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-fy/releases/latest)
or the [current master branch](https://github.com/LUCIT-Systems-and-Development/unicorn-fy/archive/master.zip)
and use:
- ./environment.yml
- ./meta.yaml
- ./pyproject.toml
- ./requirements.txt
- ./setup.py
## Change Log
[https://unicorn-fy.docs.lucit.tech/changelog.html](https://unicorn-fy.docs.lucit.tech/changelog.html)
## Documentation
- [General](https://unicorn-fy.docs.lucit.tech/)
- [Modules](https://unicorn-fy.docs.lucit.tech/modules.html)
## Examples
- [Look here!](https://github.com/LUCIT-Systems-and-Development/unicorn-fy/tree/master/examples/)
## Project Homepage
[https://www.lucit.tech/unicorn-fy.html](https://www.lucit.tech/unicorn-fy.html)
## Wiki
[https://github.com/LUCIT-Systems-and-Development/unicorn-fy/wiki](https://github.com/LUCIT-Systems-and-Development/unicorn-fy/wiki)
## Social
- [Discussions](https://github.com/LUCIT-Systems-and-Development/unicorn-fy/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-fy/master/images/misc/watch.png)](https://github.com/LUCIT-Systems-and-Development/unicorn-fy/watchers)
the repository on [GitHub](https://github.com/LUCIT-Systems-and-Development/unicorn-fy), write your
[own script](https://github.com/LUCIT-Systems-and-Development/unicorn-fy/blob/master/example_version_of_this_package.py)
with using
[`is_update_available()`](https://unicorn-fy.docs.lucit.tech//unicorn_fy.html?highlight=is_update#unicorn_fy.unicorn_fy.UnicornFy.is_update_availabe)
or you use the
[monitoring API service](https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/wiki/UNICORN-Monitoring-API-Service).
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)!
## How to report Bugs or suggest Improvements?
[List of planned features](https://github.com/LUCIT-Systems-and-Development/unicorn-fy/issues?q=is%3Aissue+is%3Aopen+label%3Aenhancement) -
click ![thumbs-up](https://raw.githubusercontent.com/lucit-systems-and-development/unicorn-fy/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-fy#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 dont find an issue related to your topic, please open a new issue:
[https://github.com/LUCIT-Systems-and-Development/unicorn-fy/issues](https://github.com/LUCIT-Systems-and-Development/unicorn-fy/issues)
[Report a security bug!](https://github.com/LUCIT-Systems-and-Development/unicorn-fy/security/policy)
## Contributing
[UnicornFy](https://www.lucit.tech/unicorn-fy.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-fy/blob/master/CONTRIBUTING.md).
### Contributors
[![Contributors](https://contributors-img.web.app/image?repo=lucit-systems-and-development/unicorn-fy)](https://github.com/LUCIT-Systems-and-Development/unicorn-fy/graphs/contributors)
We ![love](https://raw.githubusercontent.com/lucit-systems-and-development/unicorn-fy/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.
## 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-fy",
"name": "unicorn-fy",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.7.0",
"maintainer_email": null,
"keywords": "binance, api, exchange, unify, binance-dex, binance-chain, rest-api, websockets",
"author": "LUCIT Systems and Development",
"author_email": "info@lucit.tech",
"download_url": "https://files.pythonhosted.org/packages/81/29/99f69af171c8f24fb21ed28f5f69dd56891c117b94d79d2d50fc6669cb43/unicorn_fy-0.14.2.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[![GitHub Release](https://img.shields.io/github/release/LUCIT-Systems-and-Development/unicorn-fy.svg?label=github)](https://github.com/LUCIT-Systems-and-Development/unicorn-fy/releases)\n[![GitHub Downloads](https://img.shields.io/github/downloads/LUCIT-Systems-and-Development/unicorn-fy/total?color=blue)](https://github.com/LUCIT-Systems-and-Development/unicorn-fy/releases)\n![Anaconda Release](https://img.shields.io/conda/v/lucit/unicorn-fy?color=blue)\n![Anaconda Downloads](https://img.shields.io/conda/dn/lucit/unicorn-fy?color=blue)\n[![PyPi Release](https://img.shields.io/pypi/v/unicorn-fy?color=blue)](https://pypi.org/project/unicorn-fy/)\n[![PyPi Downloads](https://pepy.tech/badge/unicorn-fy)](https://pepy.tech/project/unicorn-fy)\n[![License](https://img.shields.io/github/license/LUCIT-Systems-and-Development/unicorn-fy.svg?color=blue)](https://unicorn-fy.docs.lucit.tech/license.html)\n[![Supported Python Version](https://img.shields.io/pypi/pyversions/unicorn_fy.svg)](https://www.python.org/downloads/)\n[![PyPI - Status](https://img.shields.io/pypi/status/unicorn_fy.svg)](https://github.com/LUCIT-Systems-and-Development/unicorn-fy/issues)\n[![codecov](https://codecov.io/gh/LUCIT-Systems-and-Development/unicorn-fy/branch/master/graph/badge.svg?token=5I03AZ3F5S)](https://codecov.io/gh/LUCIT-Systems-and-Development/unicorn-fy)\n[![CodeQL](https://github.com/LUCIT-Systems-and-Development/unicorn-fy/actions/workflows/codeql-analysis.yml/badge.svg)](https://github.com/LUCIT-Systems-and-Development/unicorn-fy/actions/workflows/codeql-analysis.yml)\n[![Unit Tests](https://github.com/LUCIT-Systems-and-Development/unicorn-fy/actions/workflows/unit-tests.yml/badge.svg)](https://github.com/LUCIT-Systems-and-Development/unicorn-fy/actions/workflows/unit-tests.yml)\n[![Build and Publish GH+PyPi](https://github.com/LUCIT-Systems-and-Development/unicorn-fy/actions/workflows/build_wheels.yml/badge.svg)](https://github.com/LUCIT-Systems-and-Development/unicorn-fy/actions/workflows/build_wheels.yml)\n[![Build and Publish Anaconda](https://github.com/LUCIT-Systems-and-Development/unicorn-fy/actions/workflows/build_conda.yml/badge.svg)](https://github.com/LUCIT-Systems-and-Development/unicorn-fy/actions/workflows/build_conda.yml)\n[![Read the Docs](https://img.shields.io/badge/read-%20docs-yellow)](https://unicorn-fy.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-fy)\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-fy?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[![ChatGPT UNICORN Binance Suite Assistant](https://img.shields.io/badge/chatgpt-%20ubs%20assistant-DA70D6)](https://chat.openai.com/g/g-VjCOjRhCJ-unicorn-binance-suite-assistant)\n\n[![LUCIT-UNICORNFY-Banner](https://raw.githubusercontent.com/lucit-systems-and-development/unicorn-fy/master/images/logo/LUCIT-UNICORNFY-Banner-Readme.png)](https://www.lucit.tech/unicorn-fy.html)\n\n# UnicornFy\n[Supported Exchanges](#supported-exchanges) | [Installation](#installation-and-upgrade) | [Change Log](#change-log) | [Documentation](#documentation) | \n[Examples](#examples) | [Wiki](#wiki) | [Social](#social) | [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 convert received raw data from crypto exchange API endpoints \ninto well-formed python dictionaries.\n\nPart of ['UNICORN Binance Suite'](https://www.lucit.tech/unicorn-binance-suite.html).\n\nGet help with the integration of the `UNICORN Binance Suite` modules from the \n[`UNICORN Binance Suite Assistant` GPT](https://chat.openai.com/g/g-VjCOjRhCJ-unicorn-binance-suite-assistant) or \n[a real human LUCIT employee](https://www.lucit.tech/get-support.html).\n\n```\nimport unicorn_fy\n\nreceived_stream_data_json = {\"stream\": \"btcusdt@trade\",\n \"data\": {\"e\": \"trade\",\n \"E\": 1556876873656,\n \"s\": \"BTCUSDT\",\n \"t\": 117727701,\n \"p\": \"5786.76000000\",\n \"q\": \"0.03200500\",\n \"b\": 341831847,\n \"a\": 341831876,\n \"T\": 1556876873648,\n \"m\": True,\n \"M\": True}}\n\nufy = unicorn_fy.UnicornFy()\n\nunicorn_fied_stream_data = ufy.binance_com_websocket(received_stream_data_json)\nprint(unicorn_fied_stream_data)\n```\n\nOutput:\n\n```\n{'stream_type': 'btcusdt@trade', 'event_type': 'trade', 'event_time': 1556876873656, 'symbol': 'BTCUSDT',\n 'trade_id': 117727701, 'price': '5786.76000000', 'quantity': '0.03200500', 'buyer_order_id': 341831847,\n 'seller_order_id': 341831876, 'trade_time': 1556876873648, 'is_market_maker': True, 'ignore': True,\n 'unicorn_fied': ['binance', '0.14.2']}\n```\n\nThis lib is integrated into \n[UNICORN Binance WebSocket API](https://www.lucit.tech/unicorn-binance-websocket-api.html) \nand can be activated by setting parameter \n[`output_default` of `BinanceWebSocketApiManager()` to `UnicornFy`](https://lucit-systems-and-development.github.io/unicorn-binance-websocket-api/unicorn_binance_websocket_api.html?highlight=output_default#module-unicorn_binance_websocket_api.manager) \nor for specific streams with the parameter \n[`output` of `create_stream()` to `UnicornFy`](https://lucit-systems-and-development.github.io/unicorn-binance-websocket-api/unicorn_binance_websocket_api.html?highlight=output#unicorn_binance_websocket_api.manager.BinanceWebSocketApiManager.create_stream).\n\n## Get the right [logger](https://github.com/LUCIT-Systems-and-Development/unicorn-fy/blob/master/example_logging.py):\n```\nlogging.getLogger(\"unicorn_fy\")\n```\n\n## Supported Exchanges\n### Websockets\n\n| Exchange | Docs | Status | \n| -------- | --------------- | ------ |\n| [Binance](https://www.binance.com) ([API](https://github.com/binance-exchange/binance-official-api-docs)) | [`binance_com_websocket(stream_data_json)`](https://unicorn-fy.docs.lucit.tech//unicorn_fy.html?highlight=binance_com#unicorn_fy.unicorn_fy.UnicornFy.binance_com_websocket) | STABLE |\n| [Binance Testnet](https://testnet.binance.vision/) ([API](https://github.com/binance-exchange/binance-official-api-docs)) | [`binance_com_websocket(stream_data_json)`](https://unicorn-fy.docs.lucit.tech//unicorn_fy.html?highlight=binance_com#unicorn_fy.unicorn_fy.UnicornFy.binance_com_websocket) | STABLE |\n| [Binance Margin](https://www.binance.com) ([API](https://github.com/binance-exchange/binance-official-api-docs)) | [`binance_com_margin_websocket(stream_data_json)`](https://unicorn-fy.docs.lucit.tech//unicorn_fy.html?highlight=binance_com#unicorn_fy.unicorn_fy.UnicornFy.binance_com_margin_websocket) | STABLE |\n| [Binance Margin Testnet](https://testnet.binance.vision/) ([API](https://github.com/binance-exchange/binance-official-api-docs)) | [`binance_com_margin_websocket(stream_data_json)`](https://unicorn-fy.docs.lucit.tech//unicorn_fy.html?highlight=binance_com#unicorn_fy.unicorn_fy.UnicornFy.binance_com_margin_websocket) | STABLE |\n| [Binance Isolated Margin](https://www.binance.com) ([API](https://github.com/binance-exchange/binance-official-api-docs)) | [`binance_com_isolated_margin_websocket(stream_data_json)`](https://unicorn-fy.docs.lucit.tech//unicorn_fy.html?highlight=binance_com#unicorn_fy.unicorn_fy.UnicornFy.binance_com_isolated_margin_websocket) | STABLE |\n| [Binance Isolated Margin Testnet](https://testnet.binance.vision/) ([API](https://github.com/binance-exchange/binance-official-api-docs)) | [`binance_com_isolated_margin_websocket(stream_data_json)`](https://unicorn-fy.docs.lucit.tech//unicorn_fy.html?highlight=binance_com#unicorn_fy.unicorn_fy.UnicornFy.binance_com_isolated_margin_websocket) | STABLE |\n| [Binance Futures](https://www.binance.com) ([API](https://github.com/binance-exchange/binance-official-api-docs)) | [`binance_com_futures_websocket(stream_data_json)`](https://unicorn-fy.docs.lucit.tech//unicorn_fy.html?highlight=binance_com#unicorn_fy.unicorn_fy.UnicornFy.binance_com_futures_websocket) | STABLE |\n| [Binance Futures Testnet](https://testnet.binancefuture.com) ([API](https://github.com/binance-exchange/binance-official-api-docs)) | [`binance_com_futures_websocket(stream_data_json)`](https://unicorn-fy.docs.lucit.tech//unicorn_fy.html?highlight=binance_com#unicorn_fy.unicorn_fy.UnicornFy.binance_com_coin_futures_websocket) | STABLE |\n| [Binance Coin Futures](https://www.binance.com) ([API](https://github.com/binance-exchange/binance-official-api-docs)) | [`binance_com_coin_futures_websocket(stream_data_json)`](https://unicorn-fy.docs.lucit.tech//unicorn_fy.html?highlight=binance_com#unicorn_fy.unicorn_fy.UnicornFy.binance_com_coin_futures_websocket) | NEEDS_YOUR_HELP |\n| [Binance Coin Futures Testnet](https://testnet.binancefuture.com) ([API](https://github.com/binance-exchange/binance-official-api-docs)) | [`binance_com_coin_futures_websocket(stream_data_json)`](https://unicorn-fy.docs.lucit.tech//unicorn_fy.html?highlight=binance_com#unicorn_fy.unicorn_fy.UnicornFy.binance_com_futures_websocket) | NEEDS_YOUR_HELP |\n| [Binance Jersey](https://www.binance.je) ([API](https://github.com/binance-jersey/binance-official-api-docs/)) | [`binance_je_websocket(stream_data_json)`](https://unicorn-fy.docs.lucit.tech//unicorn_fy.html?highlight=binance_com#unicorn_fy.unicorn_fy.UnicornFy.binance_je_websocket) | STABLE |\n| [Binance US](https://www.binance.us) ([API](https://github.com/binance-us/binance-official-api-docs)) | [`binance_us_websocket(stream_data_json)`](https://unicorn-fy.docs.lucit.tech//unicorn_fy.html?highlight=binance_com#unicorn_fy.unicorn_fy.UnicornFy.binance_us_websocket) | STABLE |\n| [Binance TR](https://www.trbinance.com) ([API](https://www.trbinance.com/apidocs)) | [`trbinance_com_websocket(stream_data_json)`](https://unicorn-fy.docs.lucit.tech//unicorn_fy.html?highlight=binance_com#unicorn_fy.unicorn_fy.UnicornFy.trbinance_com_websocket) | STABLE |\n| [Binance JEX](https://www.jex.com) ([API](https://jexapi.github.io/api-doc/spot.html#change-log)) | [`jex_com_websocket(stream_data_json)`](https://unicorn-fy.docs.lucit.tech//unicorn_fy.html?highlight=binance_com#unicorn_fy.unicorn_fy.UnicornFy.jex_com_websocket) | STABLE |\n| [Binance DEX](https://www.binance.org) ([API](https://docs.binance.org/)) | [`binance_org_websocket(stream_data_json)`](https://unicorn-fy.docs.lucit.tech//unicorn_fy.html?highlight=binance_com#unicorn_fy.unicorn_fy.UnicornFy.binance_org_websocket) | NEEDS_YOUR_HELP |\n| [Binance DEX Testnet](https://testnet.binance.org) ([API](https://docs.binance.org/)) | [`binance_org_websocket(stream_data_json)`](https://unicorn-fy.docs.lucit.tech//unicorn_fy.html?highlight=binance_com#unicorn_fy.unicorn_fy.UnicornFy.binance_org_websocket) | NEEDS_YOUR_HELP |\n\n### REST\n- none\n\nIf you like the project, please \n[![star](https://raw.githubusercontent.com/lucit-systems-and-development/unicorn-fy/master/images/misc/star.png)](https://github.com/LUCIT-Systems-and-Development/unicorn-fy/stargazers) it on \n[GitHub](https://github.com/LUCIT-Systems-and-Development/unicorn-fy)! \n\n## Installation and Upgrade\nThe module requires Python 3.7.0 or above. \n\nFor Anaconda we offer packages only from Python version 3.8 and higher.\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-fy/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-fy/actions/workflows/build_conda.yml)\n- [Build and Publish GH+PyPi](https://github.com/LUCIT-Systems-and-Development/unicorn-fy/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 \n typing and C-level performance. By compiling Python code into C, Cython Wheels can significantly enhance the \n execution speed of Python code, especially in computationally intensive tasks. This means faster runtimes and more \n 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 \n efficiency. It uses Just-In-Time (JIT) compilation, which can dramatically improve the performance of Python code. \n Our PyPy Wheels are tailored for compatibility with 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-fy`\n\n#### Update\n`pip install unicorn-fy --upgrade`\n\n### A Conda Package of the latest version with `conda` from [Anaconda](https://anaconda.org/lucit)\nThe `unicorn-fy` 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-fy\n```\n\n#### Update\n`conda update -c lucit unicorn-fy`\n\n### From source of the latest release with PIP from [Github](https://github.com/LUCIT-Systems-and-Development/unicorn-fy)\n\n#### Linux, macOS, ...\nRun in bash:\n\n`pip install https://github.com/LUCIT-Systems-and-Development/unicorn-fy/archive/$(curl -s https://api.github.com/repos/lucit-systems-and-development/unicorn-fy/releases/latest | grep -oP '\"tag_name\": \"\\K(.*)(?=\")').tar.gz --upgrade`\n\n#### Windows\nUse the below command with the version (such as 0.14.2) you determined [here](https://github.com/LUCIT-Systems-and-Development/unicorn-fy/releases/latest):\n\n`pip install https://github.com/LUCIT-Systems-and-Development/unicorn-fy/archive/0.14.2.tar.gz --upgrade`\n\n### From the latest source (dev-stage) with PIP from [GitHub](https://github.com/LUCIT-Systems-and-Development/unicorn-fy)\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-fy/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-fy/releases/latest) \nor the [current master branch](https://github.com/LUCIT-Systems-and-Development/unicorn-fy/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-fy.docs.lucit.tech/changelog.html](https://unicorn-fy.docs.lucit.tech/changelog.html)\n\n## Documentation\n- [General](https://unicorn-fy.docs.lucit.tech/)\n- [Modules](https://unicorn-fy.docs.lucit.tech/modules.html)\n\n## Examples\n- [Look here!](https://github.com/LUCIT-Systems-and-Development/unicorn-fy/tree/master/examples/)\n\n## Project Homepage\n[https://www.lucit.tech/unicorn-fy.html](https://www.lucit.tech/unicorn-fy.html)\n\n## Wiki\n[https://github.com/LUCIT-Systems-and-Development/unicorn-fy/wiki](https://github.com/LUCIT-Systems-and-Development/unicorn-fy/wiki)\n\n## Social\n- [Discussions](https://github.com/LUCIT-Systems-and-Development/unicorn-fy/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-fy/master/images/misc/watch.png)](https://github.com/LUCIT-Systems-and-Development/unicorn-fy/watchers) \nthe repository on [GitHub](https://github.com/LUCIT-Systems-and-Development/unicorn-fy), write your \n[own script](https://github.com/LUCIT-Systems-and-Development/unicorn-fy/blob/master/example_version_of_this_package.py) \nwith using \n[`is_update_available()`](https://unicorn-fy.docs.lucit.tech//unicorn_fy.html?highlight=is_update#unicorn_fy.unicorn_fy.UnicornFy.is_update_availabe) \n or you use the \n[monitoring API service](https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/wiki/UNICORN-Monitoring-API-Service).\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\n## How to report Bugs or suggest Improvements?\n[List of planned features](https://github.com/LUCIT-Systems-and-Development/unicorn-fy/issues?q=is%3Aissue+is%3Aopen+label%3Aenhancement) - \nclick ![thumbs-up](https://raw.githubusercontent.com/lucit-systems-and-development/unicorn-fy/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-fy#installation-and-upgrade). \nIf the issue still exists, provide the error trace, OS and python version and explain how to reproduce the error. \nA demo script is appreciated.\n\nIf you dont find an issue related to your topic, please open a new issue:\n[https://github.com/LUCIT-Systems-and-Development/unicorn-fy/issues](https://github.com/LUCIT-Systems-and-Development/unicorn-fy/issues)\n\n[Report a security bug!](https://github.com/LUCIT-Systems-and-Development/unicorn-fy/security/policy)\n\n## Contributing\n[UnicornFy](https://www.lucit.tech/unicorn-fy.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-fy/blob/master/CONTRIBUTING.md).\n \n### Contributors\n[![Contributors](https://contributors-img.web.app/image?repo=lucit-systems-and-development/unicorn-fy)](https://github.com/LUCIT-Systems-and-Development/unicorn-fy/graphs/contributors)\n\nWe ![love](https://raw.githubusercontent.com/lucit-systems-and-development/unicorn-fy/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## 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 convert received raw data from crypto exchange API endpoints into well-formed python dictionaries.",
"version": "0.14.2",
"project_urls": {
"Author": "https://www.lucit.tech",
"Changes": "https://unicorn-fy.docs.lucit.tech/changelog.html",
"Chat": "https://gitter.im/unicorn-binance-suite/unicorn-fy",
"Documentation": "https://unicorn-fy.docs.lucit.tech",
"Get Support": "https://www.lucit.tech/get-support.html",
"Homepage": "https://github.com/LUCIT-Systems-and-Development/unicorn-fy",
"Issue Tracker": "https://github.com/LUCIT-Systems-and-Development/unicorn-fy/issues",
"License": "https://unicorn-fy.docs.lucit.tech/license.html",
"Telegram": "https://t.me/unicorndevs",
"Wiki": "https://github.com/LUCIT-Systems-and-Development/unicorn-fy/wiki"
},
"split_keywords": [
"binance",
" api",
" exchange",
" unify",
" binance-dex",
" binance-chain",
" rest-api",
" websockets"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "346258901a48e230f979c65c21e74d6de75e703648546bfc1577190c5d4dea33",
"md5": "8c48b83d094fb1d81d0c9f59e67bf73c",
"sha256": "7a36e47ebc250c025033e8500f00269c4711bd784196a9b2fc7b0c0bd3fc8e1c"
},
"downloads": -1,
"filename": "unicorn_fy-0.14.2-cp310-cp310-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "8c48b83d094fb1d81d0c9f59e67bf73c",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.7.0",
"size": 356003,
"upload_time": "2024-05-09T19:44:30",
"upload_time_iso_8601": "2024-05-09T19:44:30.759139Z",
"url": "https://files.pythonhosted.org/packages/34/62/58901a48e230f979c65c21e74d6de75e703648546bfc1577190c5d4dea33/unicorn_fy-0.14.2-cp310-cp310-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0c51000c0ff94f868d0c7c9296dadc4cc630a4820b267cd273ecf09f0797c700",
"md5": "630d3fc49cf886af9689c06e98b6948f",
"sha256": "119fb1a86da62ee06f9fc6ab086bf664271dcf4f013d92e685a81710a4864d08"
},
"downloads": -1,
"filename": "unicorn_fy-0.14.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "630d3fc49cf886af9689c06e98b6948f",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.7.0",
"size": 1027208,
"upload_time": "2024-05-09T19:44:33",
"upload_time_iso_8601": "2024-05-09T19:44:33.183323Z",
"url": "https://files.pythonhosted.org/packages/0c/51/000c0ff94f868d0c7c9296dadc4cc630a4820b267cd273ecf09f0797c700/unicorn_fy-0.14.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "21ae58daf9d044aa2a2b9e9b7797e9c19d10153bd33f9f763b851c145fe02018",
"md5": "13963c3625efd8ef1055d09b4d440150",
"sha256": "f807dd490dae13a00baf14ac703def889027c35d5e5845b0a9511096c5defba4"
},
"downloads": -1,
"filename": "unicorn_fy-0.14.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "13963c3625efd8ef1055d09b4d440150",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.7.0",
"size": 1000484,
"upload_time": "2024-05-09T19:44:34",
"upload_time_iso_8601": "2024-05-09T19:44:34.780350Z",
"url": "https://files.pythonhosted.org/packages/21/ae/58daf9d044aa2a2b9e9b7797e9c19d10153bd33f9f763b851c145fe02018/unicorn_fy-0.14.2-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": "1e2bfae2abf3669098c936d7960bf720df9f8bf6e0a3b18dec2071bf11aed1ae",
"md5": "a412673a51cb424ee18144d49e6cbeba",
"sha256": "57b5dd38ab5cbc2363cf6d564bfd2e35d6c3ad5b595a6ec7007232b8a59113cb"
},
"downloads": -1,
"filename": "unicorn_fy-0.14.2-cp310-cp310-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "a412673a51cb424ee18144d49e6cbeba",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.7.0",
"size": 1046304,
"upload_time": "2024-05-09T19:44:36",
"upload_time_iso_8601": "2024-05-09T19:44:36.345887Z",
"url": "https://files.pythonhosted.org/packages/1e/2b/fae2abf3669098c936d7960bf720df9f8bf6e0a3b18dec2071bf11aed1ae/unicorn_fy-0.14.2-cp310-cp310-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ac0ab0a2e6b255ce7af78215f350f0c6f95e35f54208a10d49a3781567a67930",
"md5": "bde1d9438ccbbcb706deb38111e73822",
"sha256": "9d16c207df9d1cb01f10b17dc4e21977e4dea991b8988d1f754e5e4aa1927dcb"
},
"downloads": -1,
"filename": "unicorn_fy-0.14.2-cp310-cp310-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "bde1d9438ccbbcb706deb38111e73822",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.7.0",
"size": 1193871,
"upload_time": "2024-05-09T19:44:37",
"upload_time_iso_8601": "2024-05-09T19:44:37.842739Z",
"url": "https://files.pythonhosted.org/packages/ac/0a/b0a2e6b255ce7af78215f350f0c6f95e35f54208a10d49a3781567a67930/unicorn_fy-0.14.2-cp310-cp310-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4655217d8be43663427fdd00da742470a969be40487233de97df8f21d77ae60e",
"md5": "6dc91f729af37320dae79a0d327d44fe",
"sha256": "a9dbe574bbb835b2bdd9cc494a9ba900664a5c1378e7d32b8a88eb35ad863614"
},
"downloads": -1,
"filename": "unicorn_fy-0.14.2-cp310-cp310-win32.whl",
"has_sig": false,
"md5_digest": "6dc91f729af37320dae79a0d327d44fe",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.7.0",
"size": 320780,
"upload_time": "2024-05-09T19:44:39",
"upload_time_iso_8601": "2024-05-09T19:44:39.913789Z",
"url": "https://files.pythonhosted.org/packages/46/55/217d8be43663427fdd00da742470a969be40487233de97df8f21d77ae60e/unicorn_fy-0.14.2-cp310-cp310-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4142d2d4d752b70136aac6dde42fb7c98868559b915b487e869e6d9601b608a8",
"md5": "3941ddbc6290f7c8e8d58e1d754eab1b",
"sha256": "bef2de2bd4e7dcb095f9015745d211cbd8708daf104ab54a7f89210c1c610cd0"
},
"downloads": -1,
"filename": "unicorn_fy-0.14.2-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "3941ddbc6290f7c8e8d58e1d754eab1b",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.7.0",
"size": 333364,
"upload_time": "2024-05-09T19:44:41",
"upload_time_iso_8601": "2024-05-09T19:44:41.932574Z",
"url": "https://files.pythonhosted.org/packages/41/42/d2d4d752b70136aac6dde42fb7c98868559b915b487e869e6d9601b608a8/unicorn_fy-0.14.2-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d6b199c0158b18460f08362bb29f3c5a07536ed783e7b7ec2add528ec13c1ed4",
"md5": "3a12e2ef312570abeefc976e41aa6985",
"sha256": "97c0930be357836261d3f8c3d4e59e23c6813293845a69dffa0de1560a053336"
},
"downloads": -1,
"filename": "unicorn_fy-0.14.2-cp311-cp311-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "3a12e2ef312570abeefc976e41aa6985",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.7.0",
"size": 355539,
"upload_time": "2024-05-09T19:44:44",
"upload_time_iso_8601": "2024-05-09T19:44:44.121385Z",
"url": "https://files.pythonhosted.org/packages/d6/b1/99c0158b18460f08362bb29f3c5a07536ed783e7b7ec2add528ec13c1ed4/unicorn_fy-0.14.2-cp311-cp311-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8c2cd75638d0c0898d08c7a5f5a9d4e46a9cd95d30034cbd4a5f7252f1bdedc0",
"md5": "29c4478d573f8b1aae8cac5d2ffedeb4",
"sha256": "43302bd04f981510e2dff9ef9f06414f1eb57973fdac161a3c8f44c5ad69061f"
},
"downloads": -1,
"filename": "unicorn_fy-0.14.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "29c4478d573f8b1aae8cac5d2ffedeb4",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.7.0",
"size": 1194582,
"upload_time": "2024-05-09T19:44:45",
"upload_time_iso_8601": "2024-05-09T19:44:45.842414Z",
"url": "https://files.pythonhosted.org/packages/8c/2c/d75638d0c0898d08c7a5f5a9d4e46a9cd95d30034cbd4a5f7252f1bdedc0/unicorn_fy-0.14.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2f075a52c23b59ec8803216bcac2051228de132835ee85b91458065e0ac973e2",
"md5": "b3aab92e4200ba24a81bed8ca12f3907",
"sha256": "4faa0a8551fd0c443d9c35061d50d0ce83f970be2b95621651fe7fa770400839"
},
"downloads": -1,
"filename": "unicorn_fy-0.14.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "b3aab92e4200ba24a81bed8ca12f3907",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.7.0",
"size": 1168487,
"upload_time": "2024-05-09T19:44:47",
"upload_time_iso_8601": "2024-05-09T19:44:47.519512Z",
"url": "https://files.pythonhosted.org/packages/2f/07/5a52c23b59ec8803216bcac2051228de132835ee85b91458065e0ac973e2/unicorn_fy-0.14.2-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": "f728538736475cdb680329006ee94d58d5e23f558e111bea1f093101fcedc758",
"md5": "6643a1107d7c27b71826e51448fcb90d",
"sha256": "e1a5792ac3bda7e5c9893e1c1e38b29ddfe8a90a64bbca2797d6b54655dfbb64"
},
"downloads": -1,
"filename": "unicorn_fy-0.14.2-cp311-cp311-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "6643a1107d7c27b71826e51448fcb90d",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.7.0",
"size": 1125599,
"upload_time": "2024-05-09T19:44:49",
"upload_time_iso_8601": "2024-05-09T19:44:49.789417Z",
"url": "https://files.pythonhosted.org/packages/f7/28/538736475cdb680329006ee94d58d5e23f558e111bea1f093101fcedc758/unicorn_fy-0.14.2-cp311-cp311-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "edf711e5f6d936917e4270151ef9d090eb8f96e456bebbeac6c3930b1d89655c",
"md5": "39eb15cb47a8c1ac0e0600e52c0caad2",
"sha256": "224f855f490082c2ec710d8f4c6652a6f07cee8afa62c3d5317835310c086bc4"
},
"downloads": -1,
"filename": "unicorn_fy-0.14.2-cp311-cp311-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "39eb15cb47a8c1ac0e0600e52c0caad2",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.7.0",
"size": 1207347,
"upload_time": "2024-05-09T19:44:51",
"upload_time_iso_8601": "2024-05-09T19:44:51.764038Z",
"url": "https://files.pythonhosted.org/packages/ed/f7/11e5f6d936917e4270151ef9d090eb8f96e456bebbeac6c3930b1d89655c/unicorn_fy-0.14.2-cp311-cp311-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7dbb63df24256b177d0308cd64ea4850b33c63b87319b8a66c78b89e3adda5de",
"md5": "f7f9132a6b73167826f88d80447ae374",
"sha256": "7a0680b07268501e9fbca20e629e0e7109ba9b3c1acd77d5592d73d9dc5fb16f"
},
"downloads": -1,
"filename": "unicorn_fy-0.14.2-cp311-cp311-win32.whl",
"has_sig": false,
"md5_digest": "f7f9132a6b73167826f88d80447ae374",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.7.0",
"size": 320258,
"upload_time": "2024-05-09T19:44:53",
"upload_time_iso_8601": "2024-05-09T19:44:53.843553Z",
"url": "https://files.pythonhosted.org/packages/7d/bb/63df24256b177d0308cd64ea4850b33c63b87319b8a66c78b89e3adda5de/unicorn_fy-0.14.2-cp311-cp311-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "818729477178ab1411c948faa10439985d33867a63b5414d181f832d966e35fd",
"md5": "3bbf60cd748c631e2530e2ce534e2e42",
"sha256": "2b2d98e5173b240fd565927dc7dfc113cc43eb1959955ff5cc6937060221df65"
},
"downloads": -1,
"filename": "unicorn_fy-0.14.2-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "3bbf60cd748c631e2530e2ce534e2e42",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.7.0",
"size": 333213,
"upload_time": "2024-05-09T19:44:55",
"upload_time_iso_8601": "2024-05-09T19:44:55.985171Z",
"url": "https://files.pythonhosted.org/packages/81/87/29477178ab1411c948faa10439985d33867a63b5414d181f832d966e35fd/unicorn_fy-0.14.2-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "342fe4dc7cd4e126edc6322c6387c6c9e77943448ed4f59c300d4652cdfa4a77",
"md5": "e4076a010066029d6a8413495c416153",
"sha256": "868ff7212320574489d8d8a0997a897585b8ba7d08ad677f8f0b3b993b06d7db"
},
"downloads": -1,
"filename": "unicorn_fy-0.14.2-cp312-cp312-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "e4076a010066029d6a8413495c416153",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.7.0",
"size": 353233,
"upload_time": "2024-05-09T19:44:58",
"upload_time_iso_8601": "2024-05-09T19:44:58.029510Z",
"url": "https://files.pythonhosted.org/packages/34/2f/e4dc7cd4e126edc6322c6387c6c9e77943448ed4f59c300d4652cdfa4a77/unicorn_fy-0.14.2-cp312-cp312-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "41718b13572fefe4a4ec1487fcf92db38876fd19bf62454797ae0c3c1dd8a9c2",
"md5": "512bc529e9af30456a3e6cc37d6f5917",
"sha256": "9adc735f6b4be69e9641e8d063bf35c28da1805250d33960df25d2318d2c2e02"
},
"downloads": -1,
"filename": "unicorn_fy-0.14.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "512bc529e9af30456a3e6cc37d6f5917",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.7.0",
"size": 1237145,
"upload_time": "2024-05-09T19:45:00",
"upload_time_iso_8601": "2024-05-09T19:45:00.145352Z",
"url": "https://files.pythonhosted.org/packages/41/71/8b13572fefe4a4ec1487fcf92db38876fd19bf62454797ae0c3c1dd8a9c2/unicorn_fy-0.14.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "058e67b78d1b69d1886de0db2ccdeca71c72c3bd05dc1e382bd0fd421c25d8b9",
"md5": "7e6b3d6bf35510f57fd9f7c14405e490",
"sha256": "c2790998f804f3c32e50620519f79dc22cc983a6ca097e7dbdc4b56eb37f404f"
},
"downloads": -1,
"filename": "unicorn_fy-0.14.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "7e6b3d6bf35510f57fd9f7c14405e490",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.7.0",
"size": 1199541,
"upload_time": "2024-05-09T19:45:02",
"upload_time_iso_8601": "2024-05-09T19:45:02.411830Z",
"url": "https://files.pythonhosted.org/packages/05/8e/67b78d1b69d1886de0db2ccdeca71c72c3bd05dc1e382bd0fd421c25d8b9/unicorn_fy-0.14.2-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": "a9458235c59496e4481c4287ee307417041993902621c51b119fbd727e8e4d3b",
"md5": "c18c473fa8f69df8cc9b1863f9a9266a",
"sha256": "18e639c8b53922d0fdb2ca8fa8271e83cf4fdeff0e7f84f73ecca2256120b093"
},
"downloads": -1,
"filename": "unicorn_fy-0.14.2-cp312-cp312-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "c18c473fa8f69df8cc9b1863f9a9266a",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.7.0",
"size": 1151273,
"upload_time": "2024-05-09T19:45:04",
"upload_time_iso_8601": "2024-05-09T19:45:04.994352Z",
"url": "https://files.pythonhosted.org/packages/a9/45/8235c59496e4481c4287ee307417041993902621c51b119fbd727e8e4d3b/unicorn_fy-0.14.2-cp312-cp312-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "79fc07012da7468f2cee0d1a381ad5225f7221dc5b372294f8ea4b3541eb1df5",
"md5": "a13a53245723d2d62abbef62e8df7a0b",
"sha256": "d134f103fc74acb60d39ae6dfc7dff73a28b6d72dd80dedf5290d3e37d3cc5c4"
},
"downloads": -1,
"filename": "unicorn_fy-0.14.2-cp312-cp312-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "a13a53245723d2d62abbef62e8df7a0b",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.7.0",
"size": 1228261,
"upload_time": "2024-05-09T19:45:06",
"upload_time_iso_8601": "2024-05-09T19:45:06.798825Z",
"url": "https://files.pythonhosted.org/packages/79/fc/07012da7468f2cee0d1a381ad5225f7221dc5b372294f8ea4b3541eb1df5/unicorn_fy-0.14.2-cp312-cp312-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "915f1f32efc53ec9318362f9a27a82d165d38c244bbf201177f2053ea6a36a4d",
"md5": "3a1ecab43dc888ec8813759b42475775",
"sha256": "7d6d75b3779f808b5d33f88f36cc3eeb14b0fcd4fb9b6329daaf00f6b4678b59"
},
"downloads": -1,
"filename": "unicorn_fy-0.14.2-cp312-cp312-win32.whl",
"has_sig": false,
"md5_digest": "3a1ecab43dc888ec8813759b42475775",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.7.0",
"size": 317508,
"upload_time": "2024-05-09T19:45:08",
"upload_time_iso_8601": "2024-05-09T19:45:08.499851Z",
"url": "https://files.pythonhosted.org/packages/91/5f/1f32efc53ec9318362f9a27a82d165d38c244bbf201177f2053ea6a36a4d/unicorn_fy-0.14.2-cp312-cp312-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "441470620ce91fd284e14fcccfb4fdee7dbe3b82856db129d4974f460fe07a3c",
"md5": "5f5196caceb022dba7b3d22af11bab49",
"sha256": "2681253073a88751867914299c96c93cf1f533f4b499deb92d8a1b6c15a4e274"
},
"downloads": -1,
"filename": "unicorn_fy-0.14.2-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "5f5196caceb022dba7b3d22af11bab49",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.7.0",
"size": 333651,
"upload_time": "2024-05-09T19:45:10",
"upload_time_iso_8601": "2024-05-09T19:45:10.811781Z",
"url": "https://files.pythonhosted.org/packages/44/14/70620ce91fd284e14fcccfb4fdee7dbe3b82856db129d4974f460fe07a3c/unicorn_fy-0.14.2-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9171201ea6ed435b9d68de52ea2c855f6f27c050664d27ce52a9f14099f41df4",
"md5": "a92d081c94a107fa45ceb54ec26bb266",
"sha256": "1a230edadd3b07258867e759d7bbe795445b7052328e72d4da03c1bdfa9f7bc8"
},
"downloads": -1,
"filename": "unicorn_fy-0.14.2-cp37-cp37m-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "a92d081c94a107fa45ceb54ec26bb266",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.7.0",
"size": 348602,
"upload_time": "2024-05-09T19:45:12",
"upload_time_iso_8601": "2024-05-09T19:45:12.353847Z",
"url": "https://files.pythonhosted.org/packages/91/71/201ea6ed435b9d68de52ea2c855f6f27c050664d27ce52a9f14099f41df4/unicorn_fy-0.14.2-cp37-cp37m-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "75e35957c3e1ead89f563c06544ba704d5bccd834a4b8f8bf4e0d079c9005126",
"md5": "f602e03f39d3d93ff341230f0bf0d6a0",
"sha256": "95af01c3a57939424f0561c80267283a4555576ad1560059ab8ac5f333609092"
},
"downloads": -1,
"filename": "unicorn_fy-0.14.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "f602e03f39d3d93ff341230f0bf0d6a0",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.7.0",
"size": 904261,
"upload_time": "2024-05-09T19:45:14",
"upload_time_iso_8601": "2024-05-09T19:45:14.174075Z",
"url": "https://files.pythonhosted.org/packages/75/e3/5957c3e1ead89f563c06544ba704d5bccd834a4b8f8bf4e0d079c9005126/unicorn_fy-0.14.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b1c586befe0bc65ae77c549303ba9fafda459148953c5aac670f1c1670dfe5c4",
"md5": "d8d580b60b4ec8516c0688588813e06c",
"sha256": "b375ae4e24b067473ad25b75581b3a4e7b8241fa8a139b996df9c922444faa1a"
},
"downloads": -1,
"filename": "unicorn_fy-0.14.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "d8d580b60b4ec8516c0688588813e06c",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.7.0",
"size": 857299,
"upload_time": "2024-05-09T19:45:16",
"upload_time_iso_8601": "2024-05-09T19:45:16.495462Z",
"url": "https://files.pythonhosted.org/packages/b1/c5/86befe0bc65ae77c549303ba9fafda459148953c5aac670f1c1670dfe5c4/unicorn_fy-0.14.2-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": "bba19bc47e0893ed2cd2bd472075faa5296f029c12587002c592017953af2e11",
"md5": "be8c14ebdd541a80741e920389169d42",
"sha256": "9eb2a6aab8a43eeba5c4650a54877502dd7bd2170c66c32fa8b360594b9cffae"
},
"downloads": -1,
"filename": "unicorn_fy-0.14.2-cp37-cp37m-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "be8c14ebdd541a80741e920389169d42",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.7.0",
"size": 837129,
"upload_time": "2024-05-09T19:45:18",
"upload_time_iso_8601": "2024-05-09T19:45:18.078580Z",
"url": "https://files.pythonhosted.org/packages/bb/a1/9bc47e0893ed2cd2bd472075faa5296f029c12587002c592017953af2e11/unicorn_fy-0.14.2-cp37-cp37m-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "687e6e622419c0f181a2c5c7e8a756f0b6c5925ca7bf8f7edb8cfc2b4b5da18f",
"md5": "4a665ca2490baeab9736754017ab16f3",
"sha256": "5c4a58630cfceed8646f2562abcf09ccc1b4b8367465e277c8a49ee93b7a4b5f"
},
"downloads": -1,
"filename": "unicorn_fy-0.14.2-cp37-cp37m-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "4a665ca2490baeab9736754017ab16f3",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.7.0",
"size": 919234,
"upload_time": "2024-05-09T19:45:20",
"upload_time_iso_8601": "2024-05-09T19:45:20.471018Z",
"url": "https://files.pythonhosted.org/packages/68/7e/6e622419c0f181a2c5c7e8a756f0b6c5925ca7bf8f7edb8cfc2b4b5da18f/unicorn_fy-0.14.2-cp37-cp37m-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f72f07ce7856413790f9bf95fda7e3d7ca798f283bdd8d95386419c95f478509",
"md5": "68777e0671088cc71464399b44a99112",
"sha256": "18706dc167d4dadeb007f6cc9cf83ac44837c84209b8b31f21c07cf684dceb13"
},
"downloads": -1,
"filename": "unicorn_fy-0.14.2-cp37-cp37m-win32.whl",
"has_sig": false,
"md5_digest": "68777e0671088cc71464399b44a99112",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.7.0",
"size": 310873,
"upload_time": "2024-05-09T19:45:23",
"upload_time_iso_8601": "2024-05-09T19:45:23.238594Z",
"url": "https://files.pythonhosted.org/packages/f7/2f/07ce7856413790f9bf95fda7e3d7ca798f283bdd8d95386419c95f478509/unicorn_fy-0.14.2-cp37-cp37m-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "682c7f786c006bf389062788bcb896d09f2584d6c83614237d20348a175b4adf",
"md5": "4dcb25637efb727c5b044975f0a0579e",
"sha256": "33e788d30579d09e3ad97016bd132fcb0e3d1cbcc69cc549eaf0783f7ff9573e"
},
"downloads": -1,
"filename": "unicorn_fy-0.14.2-cp37-cp37m-win_amd64.whl",
"has_sig": false,
"md5_digest": "4dcb25637efb727c5b044975f0a0579e",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.7.0",
"size": 326504,
"upload_time": "2024-05-09T19:45:25",
"upload_time_iso_8601": "2024-05-09T19:45:25.165815Z",
"url": "https://files.pythonhosted.org/packages/68/2c/7f786c006bf389062788bcb896d09f2584d6c83614237d20348a175b4adf/unicorn_fy-0.14.2-cp37-cp37m-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "62cb7047b54a9fe6b0400bf2ea5ac2d3a518d636d7f8a85c5a220591334bbe55",
"md5": "597b204bbbb16fa30ac6eae0e0372f9d",
"sha256": "2f161a86fbd1a4a7b655afeb394d13e352a0aebf28715db977c94c74a5ce79ce"
},
"downloads": -1,
"filename": "unicorn_fy-0.14.2-cp38-cp38-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "597b204bbbb16fa30ac6eae0e0372f9d",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.7.0",
"size": 355879,
"upload_time": "2024-05-09T19:45:26",
"upload_time_iso_8601": "2024-05-09T19:45:26.963120Z",
"url": "https://files.pythonhosted.org/packages/62/cb/7047b54a9fe6b0400bf2ea5ac2d3a518d636d7f8a85c5a220591334bbe55/unicorn_fy-0.14.2-cp38-cp38-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e2e03725e44311ffcde16d9a6e2de982d852b54d824717c752e81e2b86520020",
"md5": "9774d8e2886ecbf3b15c0bb8cbf7287b",
"sha256": "c35cba35f28a35f643fd24b12b64426c811d53987be46846110e720537741c70"
},
"downloads": -1,
"filename": "unicorn_fy-0.14.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "9774d8e2886ecbf3b15c0bb8cbf7287b",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.7.0",
"size": 1030077,
"upload_time": "2024-05-09T19:45:28",
"upload_time_iso_8601": "2024-05-09T19:45:28.641048Z",
"url": "https://files.pythonhosted.org/packages/e2/e0/3725e44311ffcde16d9a6e2de982d852b54d824717c752e81e2b86520020/unicorn_fy-0.14.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "87b7e6e5137ad0902d915f760eaf37573fb8b9210ad5e3a76bf26d9f4bae33f3",
"md5": "61f1a981cc9bba8831d0bf505684397c",
"sha256": "4861694d7ae35ac83de57f7e38f8de28ba5d6eb5add3a6e3b57e3626c903e281"
},
"downloads": -1,
"filename": "unicorn_fy-0.14.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "61f1a981cc9bba8831d0bf505684397c",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.7.0",
"size": 1003888,
"upload_time": "2024-05-09T19:45:30",
"upload_time_iso_8601": "2024-05-09T19:45:30.475018Z",
"url": "https://files.pythonhosted.org/packages/87/b7/e6e5137ad0902d915f760eaf37573fb8b9210ad5e3a76bf26d9f4bae33f3/unicorn_fy-0.14.2-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": "d16785bbe2f01f47508d858e4172a199fdb4ff32d997c96b2697e06466cfdcce",
"md5": "4d28f6484f106f41344e76b75a3b4995",
"sha256": "e4b0f9ef09d23054092e0ab44d74cc85dfdef5753ac69173f34d09d8ff39225b"
},
"downloads": -1,
"filename": "unicorn_fy-0.14.2-cp38-cp38-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "4d28f6484f106f41344e76b75a3b4995",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.7.0",
"size": 1483495,
"upload_time": "2024-05-09T19:45:32",
"upload_time_iso_8601": "2024-05-09T19:45:32.116283Z",
"url": "https://files.pythonhosted.org/packages/d1/67/85bbe2f01f47508d858e4172a199fdb4ff32d997c96b2697e06466cfdcce/unicorn_fy-0.14.2-cp38-cp38-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "74c578e602dc535bc31d1f7a1f2df2b707e57c2ae6532984ea1b45557888e26f",
"md5": "043efe00d890faf00a14f9d13fb573b1",
"sha256": "de4c6738ce75962afb881115268b870bd929e41046658cbc3f26d5955222b98d"
},
"downloads": -1,
"filename": "unicorn_fy-0.14.2-cp38-cp38-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "043efe00d890faf00a14f9d13fb573b1",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.7.0",
"size": 1708371,
"upload_time": "2024-05-09T19:45:34",
"upload_time_iso_8601": "2024-05-09T19:45:34.764930Z",
"url": "https://files.pythonhosted.org/packages/74/c5/78e602dc535bc31d1f7a1f2df2b707e57c2ae6532984ea1b45557888e26f/unicorn_fy-0.14.2-cp38-cp38-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5be73b0ade64b5213e47757da503db9c096a4b42cba07990891c1af93ef1b12e",
"md5": "e4823c5aeb365925c0c45526d02c15a1",
"sha256": "52ab8ec30ba40fd137658857bfd6dc39d9639e45b7892bece2b3fff2e2c3e672"
},
"downloads": -1,
"filename": "unicorn_fy-0.14.2-cp38-cp38-win32.whl",
"has_sig": false,
"md5_digest": "e4823c5aeb365925c0c45526d02c15a1",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.7.0",
"size": 322794,
"upload_time": "2024-05-09T19:45:36",
"upload_time_iso_8601": "2024-05-09T19:45:36.834828Z",
"url": "https://files.pythonhosted.org/packages/5b/e7/3b0ade64b5213e47757da503db9c096a4b42cba07990891c1af93ef1b12e/unicorn_fy-0.14.2-cp38-cp38-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ddaa722b7da9e7a85773a1dbc68513612d70460568e81a98d0c1effc1f42c4a3",
"md5": "5ba8d3b2e2baef3045c2ad8f488add08",
"sha256": "36e2bbe1d13f364e6f71a97f6d8c1d5465553b3ae2e2aa878da6e5390898da51"
},
"downloads": -1,
"filename": "unicorn_fy-0.14.2-cp38-cp38-win_amd64.whl",
"has_sig": false,
"md5_digest": "5ba8d3b2e2baef3045c2ad8f488add08",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.7.0",
"size": 340203,
"upload_time": "2024-05-09T19:45:38",
"upload_time_iso_8601": "2024-05-09T19:45:38.247235Z",
"url": "https://files.pythonhosted.org/packages/dd/aa/722b7da9e7a85773a1dbc68513612d70460568e81a98d0c1effc1f42c4a3/unicorn_fy-0.14.2-cp38-cp38-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "088ce2e8a708cb8eb78ba436ce314d47dca0803d08aa209c544a8a8b23c333f2",
"md5": "2a8c0c03b858e03b00071b9f3399ebcb",
"sha256": "e8e5a259abc1a0c04d6cd67fd5fc0c36744c8e45d3ffdd6884af93f4158a50e2"
},
"downloads": -1,
"filename": "unicorn_fy-0.14.2-cp39-cp39-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "2a8c0c03b858e03b00071b9f3399ebcb",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.7.0",
"size": 356005,
"upload_time": "2024-05-09T19:45:39",
"upload_time_iso_8601": "2024-05-09T19:45:39.774805Z",
"url": "https://files.pythonhosted.org/packages/08/8c/e2e8a708cb8eb78ba436ce314d47dca0803d08aa209c544a8a8b23c333f2/unicorn_fy-0.14.2-cp39-cp39-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "771fca9374694007a5d11c54e8d1bc32a9ad038214fb94791835d865ba7a01cc",
"md5": "b8357b76499438fe489ffe8300afcef6",
"sha256": "599ffe4ed40e277dcabc9c15949deb19e30bdf47919a78e1210f87707de9bc10"
},
"downloads": -1,
"filename": "unicorn_fy-0.14.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "b8357b76499438fe489ffe8300afcef6",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.7.0",
"size": 1026998,
"upload_time": "2024-05-09T19:45:41",
"upload_time_iso_8601": "2024-05-09T19:45:41.452984Z",
"url": "https://files.pythonhosted.org/packages/77/1f/ca9374694007a5d11c54e8d1bc32a9ad038214fb94791835d865ba7a01cc/unicorn_fy-0.14.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6c6aea1dbeaa67a84bdb80b1901e6042e94e0113fe3ca9528b66aac9800b30f1",
"md5": "75601bab583d7a13a2a53df9287a1511",
"sha256": "287aeae74a9cf3f1c4f852c8ef5cd06f8f2672b0bca4a775153f63d347ad670c"
},
"downloads": -1,
"filename": "unicorn_fy-0.14.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "75601bab583d7a13a2a53df9287a1511",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.7.0",
"size": 999810,
"upload_time": "2024-05-09T19:45:43",
"upload_time_iso_8601": "2024-05-09T19:45:43.201078Z",
"url": "https://files.pythonhosted.org/packages/6c/6a/ea1dbeaa67a84bdb80b1901e6042e94e0113fe3ca9528b66aac9800b30f1/unicorn_fy-0.14.2-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": "fd095592627d0f98da1badcbbe2a0c42bd23e5218acb43c9591c30680bbe009d",
"md5": "a00a7d1a243499f6fba20a659e8be9bb",
"sha256": "b0098520313572a5a77d6bdc516ae709f8c1f97a38dde6ab9e7d5feabe0f28a5"
},
"downloads": -1,
"filename": "unicorn_fy-0.14.2-cp39-cp39-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "a00a7d1a243499f6fba20a659e8be9bb",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.7.0",
"size": 1045401,
"upload_time": "2024-05-09T19:45:44",
"upload_time_iso_8601": "2024-05-09T19:45:44.745528Z",
"url": "https://files.pythonhosted.org/packages/fd/09/5592627d0f98da1badcbbe2a0c42bd23e5218acb43c9591c30680bbe009d/unicorn_fy-0.14.2-cp39-cp39-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "179abc6789d95993d8a42049263111d002536a39afe5cc2fe5db77e4c61e7808",
"md5": "5560ff825be675b296b00e933b669c18",
"sha256": "0e7faa9390f76abf992389d401e19cd3188b5525a09169fea2df2f16e701bc0d"
},
"downloads": -1,
"filename": "unicorn_fy-0.14.2-cp39-cp39-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "5560ff825be675b296b00e933b669c18",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.7.0",
"size": 1193086,
"upload_time": "2024-05-09T19:45:46",
"upload_time_iso_8601": "2024-05-09T19:45:46.235199Z",
"url": "https://files.pythonhosted.org/packages/17/9a/bc6789d95993d8a42049263111d002536a39afe5cc2fe5db77e4c61e7808/unicorn_fy-0.14.2-cp39-cp39-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "498bbd393617d61a2143b627a803bcc341732edf6dc659b07366bde0bcc740a7",
"md5": "9082e9c81c6eed0fedd1ea99f3a45f48",
"sha256": "69e5a2a1e6041f25acab65b3a1a1192ba61a46860b75b2c72e270199c0c32c0e"
},
"downloads": -1,
"filename": "unicorn_fy-0.14.2-cp39-cp39-win32.whl",
"has_sig": false,
"md5_digest": "9082e9c81c6eed0fedd1ea99f3a45f48",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.7.0",
"size": 320750,
"upload_time": "2024-05-09T19:45:47",
"upload_time_iso_8601": "2024-05-09T19:45:47.938828Z",
"url": "https://files.pythonhosted.org/packages/49/8b/bd393617d61a2143b627a803bcc341732edf6dc659b07366bde0bcc740a7/unicorn_fy-0.14.2-cp39-cp39-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3fb6c3a7d9c4984e0de6c1036ff77db2febec2da3765dc00826c8a569e6dc878",
"md5": "138b581a5bb54806ed61f4472bbd46a0",
"sha256": "28370333ce4a489076541752a34042acc54cf7b7bcddc12b7880d9c69ac66f8d"
},
"downloads": -1,
"filename": "unicorn_fy-0.14.2-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "138b581a5bb54806ed61f4472bbd46a0",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.7.0",
"size": 333351,
"upload_time": "2024-05-09T19:45:49",
"upload_time_iso_8601": "2024-05-09T19:45:49.360198Z",
"url": "https://files.pythonhosted.org/packages/3f/b6/c3a7d9c4984e0de6c1036ff77db2febec2da3765dc00826c8a569e6dc878/unicorn_fy-0.14.2-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "97b35d29d82f069b0944934b133a67c0a990e5a6ad2cc639db1b3309c746c253",
"md5": "bb24c00a393594ad4c3183f02bbac839",
"sha256": "9b79cbb3afa06a53ef6e84af9453202b227322487d2aa7ee8226c75eda1711c7"
},
"downloads": -1,
"filename": "unicorn_fy-0.14.2-pp310-pypy310_pp73-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "bb24c00a393594ad4c3183f02bbac839",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.7.0",
"size": 312795,
"upload_time": "2024-05-09T19:45:50",
"upload_time_iso_8601": "2024-05-09T19:45:50.756820Z",
"url": "https://files.pythonhosted.org/packages/97/b3/5d29d82f069b0944934b133a67c0a990e5a6ad2cc639db1b3309c746c253/unicorn_fy-0.14.2-pp310-pypy310_pp73-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7302fb6447e5bc5338586cfc113044acd611b0bf2bd5892479359ca0c05fd1cd",
"md5": "5803b94123427ca9395ca47878607ab3",
"sha256": "545060ffa489c55d37613ffbfe857700aaa9f715dbd096429bc594cd2fedf25d"
},
"downloads": -1,
"filename": "unicorn_fy-0.14.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "5803b94123427ca9395ca47878607ab3",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.7.0",
"size": 322308,
"upload_time": "2024-05-09T19:45:52",
"upload_time_iso_8601": "2024-05-09T19:45:52.221528Z",
"url": "https://files.pythonhosted.org/packages/73/02/fb6447e5bc5338586cfc113044acd611b0bf2bd5892479359ca0c05fd1cd/unicorn_fy-0.14.2-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": "c22dc63a4a2468a44362eaf2e7d1ed06c0595b043e0be1e8d9fe9e3fa3577864",
"md5": "73dab513d33eece9fa108b8a665fe78e",
"sha256": "c360271c9dd72655ebfaad77d09a704037fce435cde5ca0f5de08f447894f230"
},
"downloads": -1,
"filename": "unicorn_fy-0.14.2-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": "73dab513d33eece9fa108b8a665fe78e",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.7.0",
"size": 323776,
"upload_time": "2024-05-09T19:45:53",
"upload_time_iso_8601": "2024-05-09T19:45:53.733387Z",
"url": "https://files.pythonhosted.org/packages/c2/2d/c63a4a2468a44362eaf2e7d1ed06c0595b043e0be1e8d9fe9e3fa3577864/unicorn_fy-0.14.2-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": "99057de074118d04185cc3f8a080a55d2bfbd6aa2200a19a9c7c62ced74afdf9",
"md5": "d45cace0fb32de1798a3dc85238ec59c",
"sha256": "1d635e3ba7e1195d40479bd4078b70c6bdae6879933152226f7c8673f42cb10f"
},
"downloads": -1,
"filename": "unicorn_fy-0.14.2-pp310-pypy310_pp73-win_amd64.whl",
"has_sig": false,
"md5_digest": "d45cace0fb32de1798a3dc85238ec59c",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.7.0",
"size": 308165,
"upload_time": "2024-05-09T19:45:55",
"upload_time_iso_8601": "2024-05-09T19:45:55.403673Z",
"url": "https://files.pythonhosted.org/packages/99/05/7de074118d04185cc3f8a080a55d2bfbd6aa2200a19a9c7c62ced74afdf9/unicorn_fy-0.14.2-pp310-pypy310_pp73-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "05c049af7e270e351b91759a17eb1c35dcc9d206030cdcac3f9f91402d312760",
"md5": "4039ed34298e7cac71ae66595a79001d",
"sha256": "c06ccd67471e0aaf88dd054c60583f9b2052cc627a8369fb16f353e41738eda7"
},
"downloads": -1,
"filename": "unicorn_fy-0.14.2-pp39-pypy39_pp73-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "4039ed34298e7cac71ae66595a79001d",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.7.0",
"size": 312797,
"upload_time": "2024-05-09T19:45:56",
"upload_time_iso_8601": "2024-05-09T19:45:56.948772Z",
"url": "https://files.pythonhosted.org/packages/05/c0/49af7e270e351b91759a17eb1c35dcc9d206030cdcac3f9f91402d312760/unicorn_fy-0.14.2-pp39-pypy39_pp73-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ec50f354b873661782c7025a8155e05e6946e29b8c8a976d225ec743ed5749fb",
"md5": "510fdf0290951eab53f7ba74dce0443c",
"sha256": "b1de4abe9b7f916741333c0a620163d7a6f511da81fe9524acfd8077ac7d566a"
},
"downloads": -1,
"filename": "unicorn_fy-0.14.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "510fdf0290951eab53f7ba74dce0443c",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.7.0",
"size": 322437,
"upload_time": "2024-05-09T19:45:58",
"upload_time_iso_8601": "2024-05-09T19:45:58.392554Z",
"url": "https://files.pythonhosted.org/packages/ec/50/f354b873661782c7025a8155e05e6946e29b8c8a976d225ec743ed5749fb/unicorn_fy-0.14.2-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": "6d9ffd9a72a32ee948b035a44d06102c0684dfe1fee84ab4cb132223cd85f7ea",
"md5": "86e7278f955eb180005b0d5b4fac2d35",
"sha256": "4e3af9f0b484b08ee6d165757d77476ba3c8af521a3cad5e23b6e2da73331c4b"
},
"downloads": -1,
"filename": "unicorn_fy-0.14.2-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": "86e7278f955eb180005b0d5b4fac2d35",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.7.0",
"size": 324175,
"upload_time": "2024-05-09T19:45:59",
"upload_time_iso_8601": "2024-05-09T19:45:59.832801Z",
"url": "https://files.pythonhosted.org/packages/6d/9f/fd9a72a32ee948b035a44d06102c0684dfe1fee84ab4cb132223cd85f7ea/unicorn_fy-0.14.2-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": "1d73d8ecee79f340d11546075b1e85364d828e9cfdc1ab91caf358e1a2ad9576",
"md5": "4d25be14498fdf09316e6d659f78b9f5",
"sha256": "de88542bad90f8f6f4685f387361464b636cfc2cdeb6274efb3fb95323c33a20"
},
"downloads": -1,
"filename": "unicorn_fy-0.14.2-pp39-pypy39_pp73-win_amd64.whl",
"has_sig": false,
"md5_digest": "4d25be14498fdf09316e6d659f78b9f5",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.7.0",
"size": 308155,
"upload_time": "2024-05-09T19:46:01",
"upload_time_iso_8601": "2024-05-09T19:46:01.698280Z",
"url": "https://files.pythonhosted.org/packages/1d/73/d8ecee79f340d11546075b1e85364d828e9cfdc1ab91caf358e1a2ad9576/unicorn_fy-0.14.2-pp39-pypy39_pp73-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "812999f69af171c8f24fb21ed28f5f69dd56891c117b94d79d2d50fc6669cb43",
"md5": "2df6993f6b761bb363949b47ec4f4b02",
"sha256": "73f31a007c1864e538be3c85cedce4db7bf4728346685f9d43d570b683532b29"
},
"downloads": -1,
"filename": "unicorn_fy-0.14.2.tar.gz",
"has_sig": false,
"md5_digest": "2df6993f6b761bb363949b47ec4f4b02",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.7.0",
"size": 198418,
"upload_time": "2024-05-09T19:46:03",
"upload_time_iso_8601": "2024-05-09T19:46:03.181631Z",
"url": "https://files.pythonhosted.org/packages/81/29/99f69af171c8f24fb21ed28f5f69dd56891c117b94d79d2d50fc6669cb43/unicorn_fy-0.14.2.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-05-09 19:46:03",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "LUCIT-Systems-and-Development",
"github_project": "unicorn-fy",
"travis_ci": false,
"coveralls": true,
"github_actions": true,
"requirements": [
{
"name": "Cython",
"specs": []
},
{
"name": "ujson",
"specs": []
},
{
"name": "requests",
"specs": []
}
],
"lcname": "unicorn-fy"
}