Skip to main content

A Python SDK to convert received raw data from crypto exchange API endpoints into well-formed python dictionaries.

Project description

GitHub Release GitHub Downloads PyPi Release PyPi Downloads License Supported Python Version PyPI - Status codecov CodeQL Unit Tests Build and Publish GH+PyPi Read the Docs Read How To`s Github Telegram

LUCIT-UNICORNFY-Banner

UnicornFy

Supported Exchanges | Installation | Change Log | Documentation | Examples | Wiki | Social | Notifications | Bugs | Contributing | Disclaimer

A Python SDK to convert received raw data from crypto exchange API endpoints into well-formed python dictionaries.

Part of 'UNICORN Binance Suite'.

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.17.0']}

This lib is integrated into UNICORN Binance WebSocket API and can be activated by setting parameter output_default of BinanceWebSocketApiManager() to UnicornFy or for specific streams with the parameter output of create_stream() to UnicornFy.

Get the right logger:

logging.getLogger("unicorn_fy")

What are the benefits of UnicornFy

Supported exchanges:

Websockets

Exchange Docs Status
Binance (API) binance_com_websocket(stream_data_json) STABLE
Binance Testnet (API) binance_com_websocket(stream_data_json) STABLE
Binance Margin (API) binance_com_margin_websocket(stream_data_json) STABLE
Binance Margin Testnet (API) binance_com_margin_websocket(stream_data_json) STABLE
Binance Isolated Margin (API) binance_com_isolated_margin_websocket(stream_data_json) STABLE
Binance Isolated Margin Testnet (API) binance_com_isolated_margin_websocket(stream_data_json) STABLE
Binance Futures (API) binance_com_futures_websocket(stream_data_json) STABLE
Binance Futures Testnet (API) binance_com_futures_websocket(stream_data_json) STABLE
Binance Coin Futures (API) binance_com_coin_futures_websocket(stream_data_json) NEEDS_YOUR_HELP
Binance Coin Futures Testnet (API) binance_com_coin_futures_websocket(stream_data_json) NEEDS_YOUR_HELP
Binance US (API) binance_us_websocket(stream_data_json) STABLE
Binance TR (API) trbinance_com_websocket(stream_data_json) STABLE

REST

None

  • 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.

  • Excessively tested on Linux, Mac and Windows

If you like the project, please star it on GitHub!

Installation and Upgrade

The module requires Python 3.9 and runs smoothly up to and including Python 3.14.

There is no conda support until the migration to conda-forge.

For the PyPy interpreter we offer packages only from Python version 3.9 and higher.

The current dependencies are listed here.

If you run into errors during the installation take a look here.

Packages are created automatically with GitHub Actions

When a new release is to be created, we start two GitHubActions:

Both start virtual Windows/Linux/Mac servers provided by GitHub in the cloud with preconfigured environments and create the respective compilations and stub files, pack them into wheels and conda packages and then publish them on GitHub, PYPI and Anaconda. This is a transparent method that makes it possible to trace the source code behind a compilation.

A Cython binary, PyPy or source code based CPython wheel of the latest version with pip from PyPI

Our Cython and PyPy Wheels are available on PyPI, these wheels offer significant advantages for Python developers:

  • Performance Boost with Cython Wheels: Cython is a programming language that supplements Python with static typing and C-level performance. By compiling Python code into C, Cython Wheels can significantly enhance the execution speed of Python code, especially in computationally intensive tasks. This means faster runtimes and more efficient processing for users of our package.

  • PyPy Wheels for Enhanced Efficiency: PyPy is an alternative Python interpreter known for its speed and efficiency. It uses Just-In-Time (JIT) compilation, which can dramatically improve the performance of Python code. Our PyPy Wheels are tailored for compatibility with PyPy, allowing users to leverage this speed advantage seamlessly.

Both Cython and PyPy Wheels on PyPI make the installation process simpler and more straightforward. They ensure that you get the optimized version of our package with minimal setup, allowing you to focus on development rather than configuration.

On Raspberry Pi and other architectures for which there are no pre-compiled versions, the package can still be installed with PIP. PIP then compiles the package locally on the target system during installation. Please be patient, this may take some time!

Installation

pip install unicorn-fy

Update

pip install unicorn-fy --upgrade

A Conda Package of the latest version with conda from Anaconda

There is no conda support until the migration to conda-forge.

The unicorn-fy package is also available as a Cython version for the linux-64, osx-64 and win-64 architectures with Conda through the lucit channel.

For optimal compatibility and performance, it is recommended to source the necessary dependencies from the conda-forge channel.

Installation

There is no conda support until the migration to conda-forge.

conda config --add channels conda-forge
conda config --add channels lucit
conda install -c lucit unicorn-fy

Update

There is no conda support until the migration to conda-forge.

conda update -c lucit unicorn-fy

From source of the latest release with PIP from GitHub

Linux, macOS, ...

Run in bash:

pip install https://github.com/oliver-zehentleitner/unicorn-fy/archive/$(curl -s https://api.github.com/repos/oliver-zehentleitner/unicorn-fy/releases/latest | grep -oP '"tag_name": "\K(.*)(?=")').tar.gz --upgrade

Windows

Use the below command with the version (such as 0.17.0) you determined here:

pip install https://github.com/oliver-zehentleitner/unicorn-fy/archive/0.17.0.tar.gz --upgrade

From the latest source (dev-stage) with PIP from GitHub

This is not a release version and can not be considered to be stable!

pip install https://github.com/oliver-zehentleitner/unicorn-fy/tarball/master --upgrade

Conda environment, Virtualenv or plain Python

Download the latest release or the current master branch and use:

  • ./environment.yml
  • ./meta.yaml
  • ./pyproject.toml
  • ./requirements.txt
  • ./setup.py

Change Log

https://oliver-zehentleitner.github.io/unicorn-fy/changelog.html

Documentation

Examples

Project Homepage

https://github.com/oliver-zehentleitner/unicorn-fy

Wiki

https://github.com/oliver-zehentleitner/unicorn-fy/wiki

Social

Receive Notifications

To receive notifications on available updates you can watch the repository on GitHub, write your own script with using is_update_available() or you use the monitoring API service.

How to report Bugs or suggest Improvements?

List of planned features - click thumbs-up if you need one of them or suggest a new feature!

Before you report a bug, try the latest release. If the issue still exists, provide the error trace, OS and python version and explain how to reproduce the error. A demo script is appreciated.

If you don't find an issue related to your topic, please open a new issue: https://github.com/oliver-zehentleitner/unicorn-fy/issues

Report a security bug!

Contributing

UnicornFy is an open source project which welcomes contributions which can be anything from simple documentation fixes and reporting dead links to new features. To contribute follow this guide.

Contributors

Contributors

We love open source!

Disclaimer

This project is for informational purposes only. You should not construe this information or any other material as legal, tax, investment, financial or other advice. Nothing contained herein constitutes a solicitation, recommendation, endorsement or offer by us or any third party provider to buy or sell any securities or other financial instruments in this or any other jurisdiction in which such solicitation or offer would be unlawful under the securities laws of such jurisdiction.

If you intend to use real money, use it at your own risk!

Under no circumstances will we be responsible or liable for any claims, damages, losses, expenses, costs or liabilities of any kind, including but not limited to direct or indirect damages for loss of profits.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

unicorn_fy-0.17.0.tar.gz (221.0 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

unicorn_fy-0.17.0-cp314-cp314-win_amd64.whl (330.8 kB view details)

Uploaded CPython 3.14Windows x86-64

unicorn_fy-0.17.0-cp314-cp314-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

unicorn_fy-0.17.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

unicorn_fy-0.17.0-cp314-cp314-macosx_11_0_arm64.whl (332.3 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

unicorn_fy-0.17.0-cp314-cp314-macosx_10_15_x86_64.whl (344.2 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

unicorn_fy-0.17.0-cp314-cp314-macosx_10_15_universal2.whl (453.4 kB view details)

Uploaded CPython 3.14macOS 10.15+ universal2 (ARM64, x86-64)

unicorn_fy-0.17.0-cp313-cp313-win_amd64.whl (334.4 kB view details)

Uploaded CPython 3.13Windows x86-64

unicorn_fy-0.17.0-cp313-cp313-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

unicorn_fy-0.17.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

unicorn_fy-0.17.0-cp313-cp313-macosx_11_0_arm64.whl (331.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

unicorn_fy-0.17.0-cp313-cp313-macosx_10_13_x86_64.whl (344.0 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

unicorn_fy-0.17.0-cp313-cp313-macosx_10_13_universal2.whl (452.9 kB view details)

Uploaded CPython 3.13macOS 10.13+ universal2 (ARM64, x86-64)

unicorn_fy-0.17.0-cp312-cp312-win_amd64.whl (334.3 kB view details)

Uploaded CPython 3.12Windows x86-64

unicorn_fy-0.17.0-cp312-cp312-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

unicorn_fy-0.17.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

unicorn_fy-0.17.0-cp312-cp312-macosx_11_0_arm64.whl (332.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

unicorn_fy-0.17.0-cp312-cp312-macosx_10_13_x86_64.whl (344.5 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

unicorn_fy-0.17.0-cp312-cp312-macosx_10_13_universal2.whl (453.8 kB view details)

Uploaded CPython 3.12macOS 10.13+ universal2 (ARM64, x86-64)

unicorn_fy-0.17.0-cp311-cp311-win_amd64.whl (333.3 kB view details)

Uploaded CPython 3.11Windows x86-64

unicorn_fy-0.17.0-cp311-cp311-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

unicorn_fy-0.17.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

unicorn_fy-0.17.0-cp311-cp311-macosx_11_0_arm64.whl (371.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

unicorn_fy-0.17.0-cp311-cp311-macosx_10_9_x86_64.whl (389.2 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

unicorn_fy-0.17.0-cp311-cp311-macosx_10_9_universal2.whl (537.3 kB view details)

Uploaded CPython 3.11macOS 10.9+ universal2 (ARM64, x86-64)

unicorn_fy-0.17.0-cp310-cp310-win_amd64.whl (333.6 kB view details)

Uploaded CPython 3.10Windows x86-64

unicorn_fy-0.17.0-cp310-cp310-musllinux_1_2_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

unicorn_fy-0.17.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

unicorn_fy-0.17.0-cp310-cp310-macosx_11_0_arm64.whl (371.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

unicorn_fy-0.17.0-cp310-cp310-macosx_10_9_x86_64.whl (389.4 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

unicorn_fy-0.17.0-cp310-cp310-macosx_10_9_universal2.whl (538.2 kB view details)

Uploaded CPython 3.10macOS 10.9+ universal2 (ARM64, x86-64)

unicorn_fy-0.17.0-cp39-cp39-win_amd64.whl (333.7 kB view details)

Uploaded CPython 3.9Windows x86-64

unicorn_fy-0.17.0-cp39-cp39-musllinux_1_2_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

unicorn_fy-0.17.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

unicorn_fy-0.17.0-cp39-cp39-macosx_11_0_arm64.whl (371.8 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

unicorn_fy-0.17.0-cp39-cp39-macosx_10_9_x86_64.whl (389.5 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

unicorn_fy-0.17.0-cp39-cp39-macosx_10_9_universal2.whl (538.4 kB view details)

Uploaded CPython 3.9macOS 10.9+ universal2 (ARM64, x86-64)

File details

Details for the file unicorn_fy-0.17.0.tar.gz.

File metadata

  • Download URL: unicorn_fy-0.17.0.tar.gz
  • Upload date:
  • Size: 221.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for unicorn_fy-0.17.0.tar.gz
Algorithm Hash digest
SHA256 8047ad175343a722b983d4c440d1f0ae1437015ecff0373af8191c05892fe77f
MD5 2c7386767a730bb16af3212350c0724c
BLAKE2b-256 43c8287e24b3566bd03b3ebb954649a6878943453f93a872edf417f631c0c16b

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_fy-0.17.0.tar.gz:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-fy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unicorn_fy-0.17.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: unicorn_fy-0.17.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 330.8 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for unicorn_fy-0.17.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 c8986607b3449a56cb7ab6e1d4f3e4a0d3c40e23e4206cba936e4a4d08e9f9e7
MD5 9475c55290b271c53bf7fb7b10a0e8a8
BLAKE2b-256 6a59d280d2716335d99cb64e46fb0ca385758f5a3840b4e4b9bdeeb35a1a71e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_fy-0.17.0-cp314-cp314-win_amd64.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-fy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unicorn_fy-0.17.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_fy-0.17.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e48c99e2d8e626996a8360db8df3da288f8209640d144a8636413a41c73f17f6
MD5 cbf61ba31606cb891b32f47c1d396d2f
BLAKE2b-256 3ca36fa4e47b8340d63def964a799f952684b62ff5806695ae8b00f256a54238

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_fy-0.17.0-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-fy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unicorn_fy-0.17.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_fy-0.17.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ba7cae104e046917dec8a2cc858f8bf7050c8d1c280e6dcd43847fe914a5c8aa
MD5 fa18e98f3c4858041d8eb2aa0e5d3585
BLAKE2b-256 83800507c572c4ee5d81974bf39f3325223ab24adabe188bf64703dd25636302

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_fy-0.17.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-fy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unicorn_fy-0.17.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for unicorn_fy-0.17.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a61d96658405b51fa00d62c93e46ce9128741f88275ca01dc136a0deb6a16bee
MD5 6926d7beb2dfdf45ea780883e4e13260
BLAKE2b-256 14c105c2b99c213335938859dfff6a179b07442b6d61ef24415a9787242ead4d

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_fy-0.17.0-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-fy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unicorn_fy-0.17.0-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_fy-0.17.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 1a5c89208574fb9d1399191a04f17d6553793f1a3be0c334a9e171bee581ba8b
MD5 c250bca3ec2ec78d182b0e6eaf300d9e
BLAKE2b-256 6116842be7edc5d4de3666bb0c0c7951216183f1210f495293d424e3674c9f59

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_fy-0.17.0-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-fy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unicorn_fy-0.17.0-cp314-cp314-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for unicorn_fy-0.17.0-cp314-cp314-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 5796e7c3e2849f358c5dc2e35c924660872a27f2334a1162510c80518cce5d63
MD5 1ae5006e86eb555a71cf053c96cec9c9
BLAKE2b-256 d3c4940e3737449a45add6a4db150a46538255466835a4270a69a77fc7b103e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_fy-0.17.0-cp314-cp314-macosx_10_15_universal2.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-fy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unicorn_fy-0.17.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: unicorn_fy-0.17.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 334.4 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for unicorn_fy-0.17.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 e7f5ad780276f0a17b7004bf3a8c2b4a4a493b4a387433afa68031269e0f1a88
MD5 0c0d1fa1de272f7b14234bf3bcb8908b
BLAKE2b-256 6d3f1c0ba12c7f993aba8da7f42409bb4bad8684fb85c6adce918a3318fb0a36

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_fy-0.17.0-cp313-cp313-win_amd64.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-fy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unicorn_fy-0.17.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_fy-0.17.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 02dc21348381997a3e05ff76f4d1bf15efc1095081fc85f1ff35672a81e50505
MD5 bf93d9ae1d59c199123893df4abafe05
BLAKE2b-256 ae53a01c7a10828cfae86e4d4a489ee3daa856d4f7bdd3e0b4bbf2ed98babdb9

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_fy-0.17.0-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-fy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unicorn_fy-0.17.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_fy-0.17.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 244c7e7c87e1cdefaa2740b1a73ffc74f3be622fee5c4af7cf6eabf9c34ff6f5
MD5 ec171360d4e759df2dda4a519755c33a
BLAKE2b-256 a81fc0f03c2a6265c6c67a74dd6edb8e0939c77fa88bb4f2b1b3da8ac405bd29

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_fy-0.17.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-fy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unicorn_fy-0.17.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for unicorn_fy-0.17.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3ad12f53fb8e12efecd187244cfe86e3991786c7129d02d2aa568c58ffb9456e
MD5 760898ca8e535657fd87eb422c7ff387
BLAKE2b-256 9c244a63e14843ec5ce3af6a741871c32f6c3651cc76890ac974bea1be19c9d6

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_fy-0.17.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-fy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unicorn_fy-0.17.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_fy-0.17.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 6ba9919a12e1c296344819a26065db9c650e5da17523dfaf527c19c705065476
MD5 710cb92c741f46f422c99e693c0ccd44
BLAKE2b-256 ac3e80eb466ec6043d43aa4f10122831ccd180d56db19ce3e8de6754efbb3db1

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_fy-0.17.0-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-fy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unicorn_fy-0.17.0-cp313-cp313-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for unicorn_fy-0.17.0-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 f0c522290aa9884aab7ef47a9da2f94bd8133e6e64918790b173250285821278
MD5 4bc5d4d7c35e025c2f4ce5df58d8b345
BLAKE2b-256 2461ccb54f31a76c5ec7a60d6ddcd100ec120469c5b9fdb22bd01bb9f4a0d883

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_fy-0.17.0-cp313-cp313-macosx_10_13_universal2.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-fy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unicorn_fy-0.17.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: unicorn_fy-0.17.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 334.3 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for unicorn_fy-0.17.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 784c7523926e553a6b0f9e7ac7897d448e98beac696db5e47c4f898dbd621a95
MD5 bde869353ee897b8dd5499704405858f
BLAKE2b-256 75b3e937ced54a1df825bf5af3a3716bbdeb65f8286c33caf99d6f55050be716

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_fy-0.17.0-cp312-cp312-win_amd64.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-fy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unicorn_fy-0.17.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_fy-0.17.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ee7f7873c0fcea9d3af7d77109bef375ccfd13e1ba53fa2ee6a4a7800909b809
MD5 dec7a188de4f50008ee897b363a89611
BLAKE2b-256 31dea46a42e29f976067d81d985add1257f0f2577e6f6118f291d38b087d939f

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_fy-0.17.0-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-fy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unicorn_fy-0.17.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_fy-0.17.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8a427e1cee273936e0d020f86472fcf22868291ff4b4a5d3db72cf63f631fb18
MD5 29d6ccd4a15a822f0d33842ee1541e67
BLAKE2b-256 23969bf1a2799b96400dd746c795abb0f205f3fe8b6c310fefe429c8dfa9199e

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_fy-0.17.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-fy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unicorn_fy-0.17.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for unicorn_fy-0.17.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 21ccf16df5ee37e8877d0cf17b7e32ad36ac73e3ce360f9ee6376df49df66e8c
MD5 231951075f1162b5691d3d83ff915332
BLAKE2b-256 5e39ac27e9c592e8c2934f406f2be3bd483c3a6eff584aa23a10468e286eecf7

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_fy-0.17.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-fy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unicorn_fy-0.17.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_fy-0.17.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 3810284995f7dd077d9e70f3ede99ecf3f04cc31f02506486780fa3d42de57e5
MD5 6822e3b210ffe2bca3a37742ab995bb1
BLAKE2b-256 22bb958ce736b741aee6ab0c07a079e949ed2393bfa1a07f47866ae397757e44

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_fy-0.17.0-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-fy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unicorn_fy-0.17.0-cp312-cp312-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for unicorn_fy-0.17.0-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 315be9d02d240457d8657b7f8bef9b2fb3069a20c67b0a0eb11fd75946c53d71
MD5 bb5d03a565fd66c90beb160c10b5f04a
BLAKE2b-256 a02850d4e6e30acfb3838e6a9fb4169df8020ad0427420d1a47b62df5e47427c

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_fy-0.17.0-cp312-cp312-macosx_10_13_universal2.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-fy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unicorn_fy-0.17.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: unicorn_fy-0.17.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 333.3 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for unicorn_fy-0.17.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 f656466af06e6d29ba819c3e283ce9c2fcd0299eaa9d2e72d9307c78387fce99
MD5 435f39b9299972d9e29addc38322fd4b
BLAKE2b-256 8df65c24b72798d034f598312fa41eaa0b043333e24a188c81126b64f5bd959a

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_fy-0.17.0-cp311-cp311-win_amd64.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-fy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unicorn_fy-0.17.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_fy-0.17.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bbc36a5526eda42852d6897213401784b8774f34827ed7dd0e1f082f2dd2b434
MD5 ec9077b2e9f11db92f284f85019d9bd9
BLAKE2b-256 c396060de862ce4286d4abc656cc7dc426a5b609db20b748719a31797700c562

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_fy-0.17.0-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-fy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unicorn_fy-0.17.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_fy-0.17.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 05d25b4d75a8899f5059eca53e6e8a97c2ff750a1bcef7bb9fcef7582575de97
MD5 4a2029499bd77f628cffc3c0782a7d0a
BLAKE2b-256 3705cc48a004aa177aa892362a7db7ced205efc9865216bf46fc95735bbb8177

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_fy-0.17.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-fy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unicorn_fy-0.17.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for unicorn_fy-0.17.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 56ff84da8549efa6c39b1fea5e7327d057f6be4309e6576e372970882b00f42f
MD5 58fe62cc43cf91fe7ce25a2047ee7d07
BLAKE2b-256 853b118d9d203fa5084fae3dfc3b57719f38c054fc8ba12a9f1ace5646f54517

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_fy-0.17.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-fy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unicorn_fy-0.17.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_fy-0.17.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 494254300094cbd48ab06db5a9530b188873c6d2fc6cf46e486082c5bfce2194
MD5 655e6f7c39852391b60781d5a2efe2ec
BLAKE2b-256 23a2f9a22809218e8e892a9c08657a6b95180ace457cc684bc7a30ffcb100ed8

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_fy-0.17.0-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-fy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unicorn_fy-0.17.0-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for unicorn_fy-0.17.0-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 f295fd5d16f0880b42ecb4d6d7515a4245a45d099307e6863f02d118b58e643e
MD5 a59feffd61e63e063d85a3fc75718499
BLAKE2b-256 2cf97e5539c7e94378e2872c222d679246bf6ef34e522182d26e114b37e7d3a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_fy-0.17.0-cp311-cp311-macosx_10_9_universal2.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-fy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unicorn_fy-0.17.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: unicorn_fy-0.17.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 333.6 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for unicorn_fy-0.17.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 45065abeaeb5702ca2a886c424f19015facac304c1f758a70c38c6401b655d4d
MD5 fbca40580e1fb976b8c20c6615484244
BLAKE2b-256 ae7c7518afa5e6cf93a1ef4afbe3b292dee0ff0d10403d85f91c26a98c03ee1d

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_fy-0.17.0-cp310-cp310-win_amd64.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-fy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unicorn_fy-0.17.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_fy-0.17.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cd9dc4a327c7b7c852108236aba2184534d3b6a500f312b10d000ea3598c045f
MD5 6e2fb971774ad4826be4baa9902334cd
BLAKE2b-256 5a4c185fea794f4ac70aa846d4db441429c9427d80cd3f0943f00086e58685ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_fy-0.17.0-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-fy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unicorn_fy-0.17.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_fy-0.17.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7f80c3579cee922bf90eee62d53d280f169ef07c85691a5914232ad123d16ef4
MD5 f09df25f579097cf24c998c785235114
BLAKE2b-256 6e3dc9ee75dcbf98759b6701a39c93b5685e40aee7b28289505dd93175932315

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_fy-0.17.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-fy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unicorn_fy-0.17.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for unicorn_fy-0.17.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0c110a7e40bbc72a0fd37d4b0fd8f5f7f4de59cf4458db64e2819e2d250f15aa
MD5 deca336e406feb6967d24e11243fa7f0
BLAKE2b-256 286b4c8010693d40fc100e24020af52697a482db9ffb06d2c6ec3b265796d33a

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_fy-0.17.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-fy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unicorn_fy-0.17.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_fy-0.17.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ae3e6368919bce7b6e3b103791cb7a2908d7cb10de9fad0be6a14f86d625096b
MD5 ae93c259f3f47335046029f8ea681ff9
BLAKE2b-256 b6bc6f54f093e15d98ba2b15684fad0a14f7feb3d1c4ef871cbef9f846b46ec8

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_fy-0.17.0-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-fy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unicorn_fy-0.17.0-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for unicorn_fy-0.17.0-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 3b24299af7ad558c28294504fd2590d3d5c30a8aa043ab4b35ce344d529d3eb4
MD5 d7b1f6af23d2f02ed7e6d7befca7b104
BLAKE2b-256 95e7e0bac1c59d8aa007706a767c22e93e74127857fb92c7927d508750601c24

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_fy-0.17.0-cp310-cp310-macosx_10_9_universal2.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-fy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unicorn_fy-0.17.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: unicorn_fy-0.17.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 333.7 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for unicorn_fy-0.17.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 2237cfbbd94c41bbf7ef15e7d76491128339925d0487493ae731d092ec11b9e8
MD5 86de1f668c2bc8430a4c24ce01e3420a
BLAKE2b-256 c8383c1c5dbdc4826d014e09a10d03ca3d00062b64502cdca5d447b49da53054

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_fy-0.17.0-cp39-cp39-win_amd64.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-fy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unicorn_fy-0.17.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_fy-0.17.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0bf5e38afc6463068ee232bc666b2e01c4f0122afc259c05c1eb2016bcbe1512
MD5 17ca49ac2b02da05f6775da1058bece4
BLAKE2b-256 7ccc79358ae24c7398fd37df88cc5becfee882736b7b6b3e3dde714e350b6b33

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_fy-0.17.0-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-fy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unicorn_fy-0.17.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_fy-0.17.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 74622829db6b68f5c3ba862a8a9bf67b366fd4dd944039fef4950d838fdbc90e
MD5 d65a989ffc2b6de8e08e20d0eb9c2d5e
BLAKE2b-256 1c9c852993463bcd4e10bc11675cae5db603565043922bbd1010d3ccfd6009a8

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_fy-0.17.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-fy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unicorn_fy-0.17.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for unicorn_fy-0.17.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b65094cf0a4fe59409f88ec53ffcb0a563812a8ddea8b1f7cdc5adb56cb396bd
MD5 d6c9f550893edb667056ae7f24cb7c46
BLAKE2b-256 9b2fd594365be6ea8bcfcff786712403442b41f8af2bcd5855e89fce86f59e2e

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_fy-0.17.0-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-fy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unicorn_fy-0.17.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_fy-0.17.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1e05e355047e3ce09304ce6e95980bd8b51f93bd7cf747719e496d2ad54621ce
MD5 cc6ea18c340b3452eb2b9ff8bbb863fd
BLAKE2b-256 2ccfc88c606f807d83d87c77c09b00a9ab2c317b33d763bf6807db3c4c7dff18

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_fy-0.17.0-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-fy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unicorn_fy-0.17.0-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for unicorn_fy-0.17.0-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 6735c31a620818807c8992e14f97ab1f710e5ad74663bab2ea05a212510ce8c7
MD5 84e5ff867e451d5a6dd7e00f66fde598
BLAKE2b-256 dc40329b09e787bbfc559d55e9b4529e66499f49c278be87869214bad68fe700

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_fy-0.17.0-cp39-cp39-macosx_10_9_universal2.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-fy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page