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

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.16.2) you determined here:

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

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

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

pip install https://github.com/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.16.2.tar.gz (220.4 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.16.2-cp314-cp314-win_amd64.whl (329.8 kB view details)

Uploaded CPython 3.14Windows x86-64

unicorn_fy-0.16.2-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.16.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.1 MB view details)

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

unicorn_fy-0.16.2-cp314-cp314-macosx_11_0_arm64.whl (331.0 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

unicorn_fy-0.16.2-cp314-cp314-macosx_10_15_x86_64.whl (342.6 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

unicorn_fy-0.16.2-cp314-cp314-macosx_10_15_universal2.whl (451.2 kB view details)

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

unicorn_fy-0.16.2-cp313-cp313-win_amd64.whl (333.2 kB view details)

Uploaded CPython 3.13Windows x86-64

unicorn_fy-0.16.2-cp313-cp313-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

unicorn_fy-0.16.2-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.16.2-cp313-cp313-macosx_11_0_arm64.whl (330.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

unicorn_fy-0.16.2-cp313-cp313-macosx_10_13_x86_64.whl (342.5 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

unicorn_fy-0.16.2-cp313-cp313-macosx_10_13_universal2.whl (450.8 kB view details)

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

unicorn_fy-0.16.2-cp312-cp312-win_amd64.whl (333.1 kB view details)

Uploaded CPython 3.12Windows x86-64

unicorn_fy-0.16.2-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.16.2-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.16.2-cp312-cp312-macosx_11_0_arm64.whl (331.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

unicorn_fy-0.16.2-cp312-cp312-macosx_10_13_x86_64.whl (342.9 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

unicorn_fy-0.16.2-cp312-cp312-macosx_10_13_universal2.whl (451.6 kB view details)

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

unicorn_fy-0.16.2-cp311-cp311-win_amd64.whl (332.2 kB view details)

Uploaded CPython 3.11Windows x86-64

unicorn_fy-0.16.2-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.16.2-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.16.2-cp311-cp311-macosx_11_0_arm64.whl (370.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

unicorn_fy-0.16.2-cp311-cp311-macosx_10_9_x86_64.whl (387.4 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

unicorn_fy-0.16.2-cp311-cp311-macosx_10_9_universal2.whl (535.5 kB view details)

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

unicorn_fy-0.16.2-cp310-cp310-win_amd64.whl (332.4 kB view details)

Uploaded CPython 3.10Windows x86-64

unicorn_fy-0.16.2-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.16.2-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.16.2-cp310-cp310-macosx_11_0_arm64.whl (369.8 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

unicorn_fy-0.16.2-cp310-cp310-macosx_10_9_x86_64.whl (387.7 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

unicorn_fy-0.16.2-cp310-cp310-macosx_10_9_universal2.whl (535.4 kB view details)

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

unicorn_fy-0.16.2-cp39-cp39-win_amd64.whl (332.5 kB view details)

Uploaded CPython 3.9Windows x86-64

unicorn_fy-0.16.2-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.16.2-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.16.2-cp39-cp39-macosx_11_0_arm64.whl (369.9 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

unicorn_fy-0.16.2-cp39-cp39-macosx_10_9_x86_64.whl (387.9 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

unicorn_fy-0.16.2-cp39-cp39-macosx_10_9_universal2.whl (535.6 kB view details)

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

File details

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

File metadata

  • Download URL: unicorn_fy-0.16.2.tar.gz
  • Upload date:
  • Size: 220.4 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.16.2.tar.gz
Algorithm Hash digest
SHA256 bbfca94eb6cabd65deb34a332023dad153fce1b14a474db3d78d1f2f3148b7a0
MD5 6bd7ad7cbeda6b070a875c6bb864702f
BLAKE2b-256 df8d0a148bcb9d0bbdcffcb651fa109a27dad082b1b80d6ee94d894b4c3fa685

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_fy-0.16.2.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.16.2-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: unicorn_fy-0.16.2-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 329.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.16.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 28ce0c900801f35a4ccd9769cf73c2be85e1e9e8618550582fbd2b6da746341d
MD5 0f0ab895521e278808b498e2a5292f42
BLAKE2b-256 1f0c923962df48ec0eef193f3572ee69321508b4e6f5353224c701c235f1e1fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_fy-0.16.2-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.16.2-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_fy-0.16.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 03e9a72d314b4888c1223d5355e43378765d8ccece88a7a5cc34efebf7a75a6c
MD5 57ae17dd87f6347597430aa710b0f0a6
BLAKE2b-256 317733493c6bda7b9af0f82365749211e83729371919f2e113b885e4877d52c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_fy-0.16.2-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.16.2-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.16.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0cf1284fa252860fe7fc265939baff43085f112151352518bbf3aed66da2689e
MD5 8ff7fff01403b6c0309e121472d32d5f
BLAKE2b-256 8169af05d612c723b811714cca6f31ad8117b79b95ab7a93be978c3273f13118

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_fy-0.16.2-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.16.2-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for unicorn_fy-0.16.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d05013830f44b460874de25e9a09602dc78c94072bdd8d214db63ae6a434d88a
MD5 df73fea8c24ede88a31af8ade5b529a1
BLAKE2b-256 4508aa0d1e79638e6802a84100d30648031a36e0e1f63a9bd319c6f5c0e5547e

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_fy-0.16.2-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.16.2-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_fy-0.16.2-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 76c58596b11742de64c9f7e77417c0d98a9a7b076ae09cfe6eec5a85d3497df0
MD5 61a38895e9e507c6308a2dac54d43317
BLAKE2b-256 7526fe785a7b88472c01e4c6f471a326dcbcb312c31439c86fdae89c55cc46bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_fy-0.16.2-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.16.2-cp314-cp314-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for unicorn_fy-0.16.2-cp314-cp314-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 540f4a8de007c3ed30c7df5796b73e5b3bdd737ca62004f0ff10115062825783
MD5 e18d52623ecb3ff1017d651beb1e26bb
BLAKE2b-256 a0c2b70cebf5097fc05d241f1fe59a003499ffb1d0a0d147100a7e5473232c02

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_fy-0.16.2-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.16.2-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: unicorn_fy-0.16.2-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 333.2 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.16.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 334877b9cdf5cd7e1c35e7723d9f314456b47a641c95811e2b556e10c8e7cea3
MD5 9a5cb0aad5157574517d1bc151760e96
BLAKE2b-256 80780471b721ad98fb08520052eb278e2f67f55da4172990f56b4a2e5172875b

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_fy-0.16.2-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.16.2-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_fy-0.16.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a382d3bddcc77de224e8fa6db5a695befd9fbae8c792d3d1522bfdf81db8c795
MD5 e3f575ade2df43eb433bc57074f39409
BLAKE2b-256 18be031e241db2e18d325975c61e1feb3d2bf3ecd9953e49997581ff5ad508d4

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_fy-0.16.2-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.16.2-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.16.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9294402b279e5dc22e6c9230a478bb09d6c3f07312c2ebd6258272163abf6cff
MD5 dc12242ca3fb7d95a5567291408d5063
BLAKE2b-256 8a0f565f69be28e23fb0b03eff51dc06fcc1b5ee37c19c56a65065660897dbf5

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_fy-0.16.2-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.16.2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for unicorn_fy-0.16.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 251c6d665e4292655fbb9d434d5fb13afd73dc5065b9395d27cfd0ee40a58e4d
MD5 90fe0632cd6f7259a1cb2db5eda54c7e
BLAKE2b-256 42dda2cc7cc7a83c86b34fee6e218ec2247d42739f8252f5eba6053b09530671

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_fy-0.16.2-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.16.2-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_fy-0.16.2-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 553654309afd9853ba0e8bbb50d3ef63ccef91615d7e2f729fa8d62b8720a5bc
MD5 74060d675e7bf504dd56bb9e1f876e8b
BLAKE2b-256 d07ad1e29c9c1ea134e9ee79043d9a125e6e2e5f898150e5f38c9d227277a8e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_fy-0.16.2-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.16.2-cp313-cp313-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for unicorn_fy-0.16.2-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 5673cec517c9409eb040da207c07d33e9644919781cb83a64c840d5c98dbdf30
MD5 17913170d9121424a9435d9b24ef583e
BLAKE2b-256 6655a72b700f339a48a7ede81f7998c06b0b6540502d0d906f3301897181b245

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_fy-0.16.2-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.16.2-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: unicorn_fy-0.16.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 333.1 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.16.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 52b5174eea7560f2bbe602c84ae04bd91d97bb6bec58a2a4eff0d5d44c216f39
MD5 325d1c94ae7295f54500a1b467971b55
BLAKE2b-256 50fb27b2bd6cf446078e0495b6c66db920918ed024bb888f281d982c68389e13

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_fy-0.16.2-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.16.2-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_fy-0.16.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8dfa31af6388e7e17acb89b14650d1bb1403a3696523e8f2a6d1645d46899343
MD5 d9298529a802949b003fc2b4146d10e3
BLAKE2b-256 7ad6f3409390d850414068e91564dc7c88caf510346f70746ec7e15f9d9460f4

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_fy-0.16.2-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.16.2-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.16.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 855bb90a250d2f6a8c382f1df502015bac5f176797c8e168c7a17ad700d9e108
MD5 3570b03041ed99919a2ed14a6620f553
BLAKE2b-256 e755c4db0bfa7fe023a153624b28ce95f6382cf43eabee7ce23f5f5e1c03b8e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_fy-0.16.2-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.16.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for unicorn_fy-0.16.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2998ad437b92b9dedc2efabbc9fd149480c94af08c3110846cd42283cc319e9b
MD5 c0a8f53ecec335fff16ebc74d6dd6f3f
BLAKE2b-256 1c154c3b81442dcabf9111b9c42b593f1b7b59d48ca376718747252d86b088e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_fy-0.16.2-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.16.2-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_fy-0.16.2-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 1a5e5d8e04197184b0be953286d1e4d48c73c462e6d275d6eef2f7087dfdf4f3
MD5 b0666ba5b02e6176e7d3e2f2fcfe6598
BLAKE2b-256 4ed65cfb5b2d0fed8e000d2505b09e551e829be8999aa18dc8cce0150a266efb

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_fy-0.16.2-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.16.2-cp312-cp312-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for unicorn_fy-0.16.2-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 77a0aa74aad1b0ec7fe14816130b7e8e1530899ecb27ef517f09a680563a3f78
MD5 c26a9730390cd9d2dba30c6cc36b7e99
BLAKE2b-256 4a2ed0eb37ad91b835dcf23c3f2a947894d747d7ecb14e1f217a47b0b4482949

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_fy-0.16.2-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.16.2-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: unicorn_fy-0.16.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 332.2 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.16.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c9f09e2c7f64d1409ccc68c197dfa813743a6c742521a74878a9eb83f035736b
MD5 1df7fd7f619ab6503b4e999ec19ab616
BLAKE2b-256 288b9df7e1e8945a627b0335d2b13885a22b2e3caaffdac476fdbfa8143711e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_fy-0.16.2-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.16.2-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_fy-0.16.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8fff30b4ed14bf1487fa062f314fb97108af99e647044c57935ffb08d5866e95
MD5 e2a280dd9af6b78ce6a304c671db4126
BLAKE2b-256 fd349281f9a8e19c96000c024ec91ac24ee60dd1bc256e26c3ae5988577d465d

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_fy-0.16.2-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.16.2-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.16.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bcc498686006c543aca58b268fe8ef8f966571d8cef4691539bb3601f894fc42
MD5 7a3592d9ab311cb078063ce18111685d
BLAKE2b-256 a76fb74d92d1ce7db68128ff2e3b37f6ad19560c6722360bdd75971214539b7e

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_fy-0.16.2-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.16.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for unicorn_fy-0.16.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0cfbfb0f7b8e1d370621bab94820de2915ad5d58e72c008b3df1eefcb783961f
MD5 f959feea5b9710341a3b0d94f4897df0
BLAKE2b-256 a4cb096391d4c4c7ef2468f41aa46852ef01aabdec8718aaeba951bdf10165bc

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_fy-0.16.2-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.16.2-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_fy-0.16.2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fb90adb9286e4a82251582d62a3078ec76041f55d32f0fc9e0870129a2c1306e
MD5 be1480764dd14cd59cf1c79d067e4ea8
BLAKE2b-256 c543be759c9afe8ba9025af4a474f4c5a1c00c767077dc45a8733c6a581f9fee

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_fy-0.16.2-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.16.2-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for unicorn_fy-0.16.2-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 a0825d7522af7cdcbedaaf16ea0d7b59e22a8815259afb33f6e6be994e195515
MD5 c6388aac4cb02c3c889ee531fd4f026a
BLAKE2b-256 0e2fbce4e4d85ef9ac0a516714e8d7713693034f6861f0d96a7f866520484383

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_fy-0.16.2-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.16.2-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: unicorn_fy-0.16.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 332.4 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.16.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e1f49d9c9ff0b7fa18c46492c12838dff17c4af6cb9c2204b56bf74a6b7b5c1d
MD5 3c94838ad194f282b3a002e53bd6c2ba
BLAKE2b-256 fd68a555b9753edf746916212e3a00139f8ccf3788028ecaffaefec2e8bc3725

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_fy-0.16.2-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.16.2-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_fy-0.16.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8e790dd0715cc54072683bd289999e91ee1dbe931f60c6c6a6f9ccc5ecbedc29
MD5 bcfb56d4a7024c9c3603a849524247f0
BLAKE2b-256 3bf5e466113d179d5df1c74762ec369d1244eca80e84fd41ce209b5742a9c5a8

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_fy-0.16.2-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.16.2-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.16.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4573b33bbec9d848c448db0a55ee665ce17d0e9cf514b9b327e1123811b7b7e6
MD5 8c0f5f51a5180533c5aba5a08041e3e9
BLAKE2b-256 786484e1a37d7436588e6da4ccacbf099743183c83ef0cbb2b36019a003eba91

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_fy-0.16.2-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.16.2-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for unicorn_fy-0.16.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d56007aea5481391a3b20a19f355d2dd5c6de000994cf10a14803d1cdd536554
MD5 c1fd2ed3623d8b4610622fde19de8640
BLAKE2b-256 a72e47590c901dfece9d8920aa1b7b65523d44688f7240144adefdc5ea022ae8

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_fy-0.16.2-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.16.2-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_fy-0.16.2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d3c4447b56596cbd1ff99edefc1b7e7cf097b060648ad9dc086b0448fb558194
MD5 b79271207ed2961e3421104ac2e66835
BLAKE2b-256 d2d79fe66f9948c5208093b2a3c7f49b578748ce2ad3ae222e9ad305df80c427

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_fy-0.16.2-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.16.2-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for unicorn_fy-0.16.2-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 f36cb9092476a3177630fb21b207c684ada7f1592e73a6d396e77a762e684974
MD5 e024fa5978d590478af72b75593f00c4
BLAKE2b-256 7a7f943e9301f9611d33e17bf97e1ca3fbf1fa06a29b854747ea971b58b42d99

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_fy-0.16.2-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.16.2-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: unicorn_fy-0.16.2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 332.5 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.16.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 06a134c1b40b792a71453f019403ec73fa961031b3305c880dc6fc486b40072f
MD5 18724d28b68febf27041117b7eb16e74
BLAKE2b-256 1e53919e4e0d1f7956e73314ad4bc7691ce2b54112ddbdd281f610f9f41ad870

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_fy-0.16.2-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.16.2-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_fy-0.16.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 beebae53733c22cec5d4c2fcd21e11a539078382c4304bae9f55f9ae70f73ba5
MD5 363e6905183ef00f75f485b04367733e
BLAKE2b-256 d4facecb38bbe2931ffe7481f4bb5ef4bf89b4a3de45ee4524ce908bcb04a8f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_fy-0.16.2-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.16.2-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.16.2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cfe3becc75ae9fada41abd3abc2b96893edf1dc34ac9fa62cb9c437856136bc9
MD5 1fbbb4dca08f77c9f40ba38d874921ee
BLAKE2b-256 a83d270800d9e4f0ae0800d27f1d6a594a6536c982d7166f3480f9158e7c5b66

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_fy-0.16.2-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.16.2-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for unicorn_fy-0.16.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 107e7393031737df40bc461ef7ce848dc20266cf7e000332731d9b907162c64d
MD5 8b269b3b39257c6a50d23cb546767fa7
BLAKE2b-256 1096a0c21abb9a141592c1266f8081bcaa5bf7c79400e4fa1eb00e628664dca4

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_fy-0.16.2-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.16.2-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_fy-0.16.2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3b563a8b7bdef190826086f0a0f1af19e1a6c1fe4dc910530479c34d230a7317
MD5 5f2ecdae28d0b0c5617a30c90a32d1cd
BLAKE2b-256 359a6629bd73c280e181fb43ac7be4baf1e1fc386cb84467b6ecbb0f762c2e31

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_fy-0.16.2-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.16.2-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for unicorn_fy-0.16.2-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 52e11e45b4af0e14df0089af93a3be14609586173ae0276a60a3859992764d43
MD5 91c7c2e22c254873f9ae8c98f5e56993
BLAKE2b-256 ecded7056aa6b8d532a76d0005e51d6f5a2a0083abd87d67cdfacad656748892

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_fy-0.16.2-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