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

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

pip install https://github.com/oliver-zehentleitner/unicorn-fy/archive/0.17.1.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.1.tar.gz (221.6 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.1-cp314-cp314-win_amd64.whl (331.8 kB view details)

Uploaded CPython 3.14Windows x86-64

unicorn_fy-0.17.1-cp314-cp314-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

unicorn_fy-0.17.1-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.1-cp314-cp314-macosx_11_0_arm64.whl (333.2 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

unicorn_fy-0.17.1-cp314-cp314-macosx_10_15_x86_64.whl (345.2 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

unicorn_fy-0.17.1-cp314-cp314-macosx_10_15_universal2.whl (454.5 kB view details)

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

unicorn_fy-0.17.1-cp313-cp313-win_amd64.whl (335.3 kB view details)

Uploaded CPython 3.13Windows x86-64

unicorn_fy-0.17.1-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.1-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.1-cp313-cp313-macosx_11_0_arm64.whl (332.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

unicorn_fy-0.17.1-cp313-cp313-macosx_10_13_x86_64.whl (345.1 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

unicorn_fy-0.17.1-cp313-cp313-macosx_10_13_universal2.whl (454.1 kB view details)

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

unicorn_fy-0.17.1-cp312-cp312-win_amd64.whl (335.2 kB view details)

Uploaded CPython 3.12Windows x86-64

unicorn_fy-0.17.1-cp312-cp312-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

unicorn_fy-0.17.1-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.1-cp312-cp312-macosx_11_0_arm64.whl (333.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

unicorn_fy-0.17.1-cp312-cp312-macosx_10_13_x86_64.whl (345.5 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

unicorn_fy-0.17.1-cp312-cp312-macosx_10_13_universal2.whl (455.0 kB view details)

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

unicorn_fy-0.17.1-cp311-cp311-win_amd64.whl (334.2 kB view details)

Uploaded CPython 3.11Windows x86-64

unicorn_fy-0.17.1-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.1-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.1-cp311-cp311-macosx_11_0_arm64.whl (371.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

unicorn_fy-0.17.1-cp311-cp311-macosx_10_9_x86_64.whl (390.2 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

unicorn_fy-0.17.1-cp311-cp311-macosx_10_9_universal2.whl (538.4 kB view details)

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

unicorn_fy-0.17.1-cp310-cp310-win_amd64.whl (334.5 kB view details)

Uploaded CPython 3.10Windows x86-64

unicorn_fy-0.17.1-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.1-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.1-cp310-cp310-macosx_11_0_arm64.whl (372.6 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

unicorn_fy-0.17.1-cp310-cp310-macosx_10_9_x86_64.whl (390.4 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

unicorn_fy-0.17.1-cp310-cp310-macosx_10_9_universal2.whl (539.4 kB view details)

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

unicorn_fy-0.17.1-cp39-cp39-win_amd64.whl (334.6 kB view details)

Uploaded CPython 3.9Windows x86-64

unicorn_fy-0.17.1-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.1-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.1-cp39-cp39-macosx_11_0_arm64.whl (372.7 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

unicorn_fy-0.17.1-cp39-cp39-macosx_10_9_x86_64.whl (390.6 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

unicorn_fy-0.17.1-cp39-cp39-macosx_10_9_universal2.whl (539.6 kB view details)

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

File details

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

File metadata

  • Download URL: unicorn_fy-0.17.1.tar.gz
  • Upload date:
  • Size: 221.6 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.1.tar.gz
Algorithm Hash digest
SHA256 5de8f40580651169a27ebe598f2ebce91ac78147a4c5eeda3448c23bde404275
MD5 2ab79228823ec3e9fcbfd9d9b6e0f183
BLAKE2b-256 c8c1662ec1a8e562d8307d7d3af7eacb04d03b53145c92bf124de8a2918fb4ed

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: unicorn_fy-0.17.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 331.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.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 1ab737e8126d6bcf497271e18b83410b19d1de871197e45782ec3b000f9cccca
MD5 d7c26c652e8ca6da03796a0a647fef65
BLAKE2b-256 c396ff3d2d60f8c044dc5991bdaf70bf09793d183bdaf9690443adb669f60ce9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_fy-0.17.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 04dd593f3fe7090f7c74aca3eeb3e8e3daa16226f133436686187efdbfef274f
MD5 362394873bc22e52ce5065d168ed2b86
BLAKE2b-256 841cccbaa09afbd8f2496ea4cb75820d227d951991bf00b30c02b6a2ad5767bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_fy-0.17.1-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.1-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.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 24b28e2f7ddb582c243b35f1f8f0e831a8abc58621898de4d5f7bf6482c51e95
MD5 35acca7f5bbfc9e497cdd345ce7b50fa
BLAKE2b-256 fe1c6326bec60dbc98d7f28873340b7b01aada8c69afe952799cedca0d76a3ad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_fy-0.17.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9f11d302b44a1cd4de46de5bf4fcc8c942f92816fe08577f8a2eaf6f24f50756
MD5 41d373db554f164f291be44455df68eb
BLAKE2b-256 52f69c732a5fe705c755aa4436fafd0f95b77653c86c67e478114894a72b3968

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_fy-0.17.1-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 1ad8d9f534a6f8db23875e576648d73c0e1d380cd5401124de3a98c72faf0bc1
MD5 808bb487abe090a5e46a1f0cb0b237cf
BLAKE2b-256 88fe370b3c89d4c161a40f5cf13bbaf395406d4d8e23bc1b8dde723e4be42167

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_fy-0.17.1-cp314-cp314-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 a1c4893823cb41e72f6b4b4e0091af49a692402089be1263a5390544ec806565
MD5 92f88af7e10d2020cee57eae6f135832
BLAKE2b-256 74c9b288bd78e74b1085f82a1c72832907ad95e75aad514e66af91d164fd5d4f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: unicorn_fy-0.17.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 335.3 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.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 1707b0a22f38c2cbe24de885c67b9446a15bfe732a82f3371b9b2728c5eb0163
MD5 567d729bda3d87964c379da9b7793bec
BLAKE2b-256 bc959a331baa247563245ab688b6e82a58383046aa83d93e8c43522f1bb66eb5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_fy-0.17.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 95f03e1e3b5044b213dd836d37dc42648e56e749723b919e310696def260205b
MD5 fac203bc91abec9710d10df5c15da35f
BLAKE2b-256 3e494ae9f00749e8a2a2f0955f0db0dd101056bbaf09969eb26845e6a84aeb63

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_fy-0.17.1-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.1-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.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 68c8581c02f1393141404478f496c5271ba4a6b4261fc2de6d5c2a2a730e3fcd
MD5 058b1faccf70029281d45e88672277cb
BLAKE2b-256 3b1250ab6daebb6479991475bed8bb932637eca8bff8083f1e796ad406957046

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_fy-0.17.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a8b870573f63ed22aadcc1638fd68ac2cef749b2dbe50cbcc30f61fb35a6de2e
MD5 000c39aac69d364a1c8b0102c75790eb
BLAKE2b-256 f9aedf5b37848e56a866ac0205f41d053cc7dbe94d6a0e567b206e6dfbbce711

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_fy-0.17.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 49b61c4c024d95fbe2978367f17f1213144902b244d350fd951ecccbe3cb5b9a
MD5 dd129d690c83102c813e55704af88810
BLAKE2b-256 268144ddea009d4b1629987639d9f539632de54e4acb5fc33791ef4e594a6cd7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_fy-0.17.1-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 237028611477c672eb4f049644f5622bbfa03465b99bc7989505506f9a1fdeaf
MD5 a7207503bf8962f3f207fc201196b15a
BLAKE2b-256 b63981d237e3bd830f170bc6f93a529ecdb3f7060867ca0d838aecd6ed30dd9b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: unicorn_fy-0.17.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 335.2 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.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 03f5a4dbcad24784a89cbbf891f1b926e5da88f1831188f5d49bfc1ef78fbe5b
MD5 9d29b712b50aa1f1ee205189bef0f7e3
BLAKE2b-256 00c3c2c8a3c1fe0147e1e557bc0577c69bb587c7f4428d3f1da438e6e2e2722f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_fy-0.17.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0ec6cd07417a09bf5ef7d8cdcb2d7e85eac0c0ea0d1b738faa794c0676bff140
MD5 e1c0fca301d1841dfe08bbafc4cc09d7
BLAKE2b-256 5c337dd29208a9e204635bf1e62a6dc140947c502fc3fa8f63dbb4ee1c1219ef

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_fy-0.17.1-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.1-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.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cdf51270c424ff8d30160b29b1e25f8205cca581c0fc80416840c8aa58022e53
MD5 2eb1d3788f72e1ee6731ed9e1cff8225
BLAKE2b-256 71c30539684bd18e06f24aa2a1596d12cddd33c6cb53a8ca85ae8cd1c6cf3e41

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_fy-0.17.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7d3413da5fdc1e59fbc8a87effc2fe1f3bcdaa4a8458a62f452ad5a5dc862a7d
MD5 17bb4d44f32a3563df912f342052d25d
BLAKE2b-256 3890279c474433fa8f431c6f29ebc97bc44618d193d61c7e8525b4b01b6cf18d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_fy-0.17.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 7688e9735c51e66d6e949023526434f8ed6ababed6c871b6c8d1786b510d43e2
MD5 3a5b418291bf426d92eb20e0aaee4319
BLAKE2b-256 2ac0da94808b2af1194666608fb5bc18467903f5c0d1dc35ddbe94aee0df6032

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_fy-0.17.1-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 55e9c5963da5617396f9515414ced5a5f57698ca779886f1625ffb15a4d967d7
MD5 f49e1a88f8ed6b2f760ec618820c0b5d
BLAKE2b-256 63c50f6fdf34c7bc56087c5d5e136b43253c53b9be1aa245f16c2c2861b83c32

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: unicorn_fy-0.17.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 334.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.17.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 7eaafb63fe9c13ded357883d004337c752400d4ee2012d1ecba735e2fc22e0f6
MD5 5f859f019826993b700103273d39beac
BLAKE2b-256 bd46f8b47415d2775ed647f857916e7cd078666637417c65c06a0d03587f1959

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_fy-0.17.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4473acd838d158f96f3ba8890437e673ea4fd8322ea87a5160d63d6d848123e5
MD5 11ee494afb797ed2e4290e199a2a06da
BLAKE2b-256 9b74be05a16125ec46ebf2312ddb61d6c47aab8a6b7b2a7750fe7a58ed55fc57

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_fy-0.17.1-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.1-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.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 96c6351368dfb599b76112fc26b044acc33ab55e6a9bf6460d1f391fa35165b3
MD5 eba4437839c0c53159c2bf256c4e9930
BLAKE2b-256 01e1cc07e60684d78e16bba6203c4b5b58295ad062c94fcd34da978a2b14af57

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_fy-0.17.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fb6330c0629a498bdd6ec56a79b0b617798ca3e510189645fcfa200fe7d48a5d
MD5 3de69e8b456f1a1e8b465888cc51209a
BLAKE2b-256 a29ead0643bb3e00bdba7adf8c187cb5d7ca35235735006e18c0b4db197428a1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_fy-0.17.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 178662fe09fbd4276fffed74afe5cc69653f3ce1287b32951a89833dd21f8c83
MD5 da0a1ffa088051c95fffaea65e6008d0
BLAKE2b-256 562ac9b8d4afebd7e3695b6adfef3ad7496f36945be84b4de3f86574157abf18

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_fy-0.17.1-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 b83d7ab6e86812effb0007a6a0055bbf36a4d6078ed3b1209e02ad26a5036227
MD5 3e709ab89efbbb0fd19efe26601c0ab6
BLAKE2b-256 3e9dc8743f38c37fd7c79f271ffffad327c432c66be7510a7ff07e477dfd97eb

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: unicorn_fy-0.17.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 334.5 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.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 870d68645b25a8cda93e784ae435117484656868141b19b55971908237117df3
MD5 b25e96f5c2657d3ad5be3622fbbe5fc9
BLAKE2b-256 49fc679666d12b0df71edc73d81e4f6975d19ed583954ed624d0cf9522cf17c5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_fy-0.17.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3799334b01efa3cd32ee3ba443c537704fe31fe123d1709d7258e1752a6e1436
MD5 8ba1a860e0e3dcc5a5814c155d5609ab
BLAKE2b-256 50b345796b61b443ebac9ca1c1720f1043c37647fdd1f0f62cf233ca2e315cdb

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_fy-0.17.1-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.1-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.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a02182f790c2b576d84a48e520ca65cd9234d62910813111d29c55efdd79f6f3
MD5 1f1058ba5d43b596be5796d6fad2b4f2
BLAKE2b-256 c5e792b4b2d55e5570df4090229f4b124370e454afd6a71678ffafc21cd0cf8b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_fy-0.17.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 08f53dbeca66be628be06edf39f9de15ee27a1c678f174d0da425c55ebc86524
MD5 0a11583567e3a27276765dfbaebd3757
BLAKE2b-256 dfaf1530190a62de0bc1ecbd1e205fb38aaaddb836b81b9e29786b3dcf660fa1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_fy-0.17.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ec4765fa22d67b8d970e029e98869dd3a6b7bdffe3bb12f742c0c3560cd85773
MD5 c96ee02fadaaa3b71e6f3122e5ca9c76
BLAKE2b-256 6857d97253073c377eef2153b9d019898df4340c19692702a0e2ab9e8bdd1bc0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_fy-0.17.1-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 5e8e948a598befdfd68aed776182d4b730616dcd88fb27fe34108e6f7522d071
MD5 d452a9a4c1160a3d1521b2d36c922c40
BLAKE2b-256 d0b5878c718d40d9ddf3b0908da18071a12c40240b02fdd348e841895aaf5d11

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: unicorn_fy-0.17.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 334.6 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.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 cea28249a639a4982af38205b7d608a91c0f78769bfa18690c65d5337d7f702e
MD5 5a1ba6704793b9446453c16578cc8d47
BLAKE2b-256 f85d2707190904ef106161b0ebe352bc7da73a7fbe6977bd0226e5e457015fbd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_fy-0.17.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ef4729de38e00a7460c3c58bf2814e5c2d4a7d3bdc4709d80592ee511687a220
MD5 66442eaf720d6c9bf75af86a3429896f
BLAKE2b-256 6c710f18e13fdc25ef7fa04ec44df6d1f61c1c315a2658dab2e66be15b37a0d2

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_fy-0.17.1-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.1-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.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 597a2febf64074b641bdc2a0586193ebc76e79e5ba727a1c70c8be0417d29253
MD5 1abee216333a4db092eba255ed5be15b
BLAKE2b-256 39da2cc14fa3c0ea325e191716b0464dde14a2edefd3560cb06c9e86acdd4a61

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_fy-0.17.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1525b590a827a86c29301952b7c8483e8e96586bcba45f63a6fc260d71755ed6
MD5 47f602e75ee79054d327b904dd37d26d
BLAKE2b-256 6acf2e68a89de45d89fdbe5357d01806d876daaac40de7ff71cd10cd060d113b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_fy-0.17.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d5c23f9039d5759b7c63088a55ecfe74fef08de3dca1e9d82c299569e5277305
MD5 4604e82dda267e328e028d8f933176da
BLAKE2b-256 7ddab3c5c55759f48e3908916cc63ec118cd6bd6c543224208b8745356a1324d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_fy-0.17.1-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 9ad07654c4af237dc183d88fa9bf4a45bbd3edf943d17326165b46ad8d358fe0
MD5 e3a3fdc5ffe07f21884c07c57a61eab3
BLAKE2b-256 dadf347e9d22a6a8fd6da1108dfbc9754e9b409166b4365519e661b59d2b9f99

See more details on using hashes here.

Provenance

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