Skip to main content

Project Horus HAB Telemetry Demodulators

Project description

Project Horus's Telemetry Demodulator Library

Horus Binary Modem FFT Above: Spectrogram of the Horus Binary 4-FSK modem signal.

What is it?

This repository contains:

  • libhorus - A C library containing a high performance 2/4-FSK-demodulator (originally developed as part of the Codec2 project by David Rowe), along with Golay and LDPC forward-error correction algorithms.
  • horus_demod - A command-line version of the 4-FSK demodulator, now implemented using Python and CFFI.
  • horusdemodlib - A Python library which wraps libhorus, and provides additional functions to decode telemetry into formats suitable for uploading to the Habhub tracker and other services.
  • horusbinaryv3 - ASN.1 specification, python tools and example C library for working with the binary format for Horus Binary v3

In particular, this library provides a decoder for the 'Horus Binary' telemetry system, which is the primary tracking system used in Project Horus's High-Altitude Balloon launches.

The modem in this library can also decode the standard UKHAS RTTY telemetry used on many other high-altitude balloon flights.

For the latest information on how and why to use this library, please visit the wiki pages.

If you're looking for a way to decode telemetry from a Horus Binary (or even an old-school RTTY) High-Altitude Balloon payload, read the guides available here.

Authors

Written by:

HorusDemodLib Python Library

The horusdemodlib Python library contains decoders for the different Project Horus telemetry formats, including:

  • Horus Binary v1 (Legacy 22-byte Golay-encoded format)
  • Horus Binary v2 (Golay-encoded 32-byte format)
  • Horus Binary v3 (Golay-encoded 32/48/64/96/128-byte formats, with ASN.1 encoded packets)

It also contains a wrapper around the C library (mentioned above), which contains the Horus modem demodulators.

The easiest way to install horusdemodlib is within a virtual environment ('venv') using pip:

First make sure pip is available on your system. Many platforms will have it installed already (try running pip in a terminal). On debian-based systems this can be installed with sudo apt-get install python3-pip. You may also need to install the python venv library, e.g. sudo apt-get install python3-venv

Note that we only support Python 3.9 or newer.

Clone this repository (while we'll be installing horusdemodlib from PyPi, we need some scripts and configuration files from here):

$ git clone https://github.com/projecthorus/horusdemodlib/
$ cd horusdemodlib

Create a virtual environment and then enter it by running:

$ python3 -m venv venv
$ . venv/bin/activate

Now install this library by running:

$ pip install horusdemodlib

If you want to install directly from this repository, you can run:

$ pip install -e .

Running Decoders

At this point it's time to head over to the wiki pages for the latest setup steps.

Updating

If you have installed horusdemodlib via pypi, then you can run (from within your venv, if you are using one):

$ pip install -U horusdemodlib

This will also install any new dependencies.

If you have installed 'directly', then you will need to run:

$ git stash 
$ git pull
$ pip install -e .

HorusDemodLib C Library

This contains the demodulator portions of horuslib, which are written in C. This does not typically need to be installed, as the python packages now build and include the C libraries using CFFI.

If you have a reason to, and really want to install it, you can compile and install the library using the below commands. Be aware that this will install the horus_demod utility which may conflict with the python version of this.

Building

The library can be built and installed using:

$ git clone https://github.com/projecthorus/horusdemodlib.git
$ cd horusdemodlib && mkdir build && cd build
$ cmake ..
$ make

The libraries and internal utilites can be installed systemwide with sudo make install.

Refer to the install guide for a more complete guide, including what dependencies are required.

Testing

Unit tests for the various demodulators can be run using:

$ cd build
$ ctest

Updates

In most cases, you can update this library by running:

$ git stash
$ git pull

and then following the build steps above from the cd horusdemodlib line.

API Reference

The main demodulator API is horus_api.h. An example of it in use in a C program is available in horus_demod.c

A Python wrapper is also available (via the horusdemodlib Python library which is also part of this repository). An example of its use is available here.

Further Reading

Here are some links to projects and blog posts that use this code:

  1. Horus-GUI - A cross-platform high-altitude balloon telemetry decoder.
  2. Testing HAB Telemetry, Horus binary waveform
  3. Wenet - high speed SSTV images from balloons at the edge of space.
  4. Wenet High speed SSTV images

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

horusdemodlib-0.6.2.tar.gz (273.6 kB view details)

Uploaded Source

Built Distributions

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

horusdemodlib-0.6.2-cp314-cp314-win_amd64.whl (129.4 kB view details)

Uploaded CPython 3.14Windows x86-64

horusdemodlib-0.6.2-cp314-cp314-musllinux_1_2_x86_64.whl (214.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

horusdemodlib-0.6.2-cp314-cp314-musllinux_1_2_armv7l.whl (201.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

horusdemodlib-0.6.2-cp314-cp314-musllinux_1_2_aarch64.whl (212.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

horusdemodlib-0.6.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (216.2 kB view details)

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

horusdemodlib-0.6.2-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (207.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

horusdemodlib-0.6.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (215.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

horusdemodlib-0.6.2-cp314-cp314-macosx_11_0_arm64.whl (118.6 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

horusdemodlib-0.6.2-cp314-cp314-macosx_10_15_x86_64.whl (122.1 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

horusdemodlib-0.6.2-cp313-cp313-win_amd64.whl (127.9 kB view details)

Uploaded CPython 3.13Windows x86-64

horusdemodlib-0.6.2-cp313-cp313-musllinux_1_2_x86_64.whl (214.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

horusdemodlib-0.6.2-cp313-cp313-musllinux_1_2_armv7l.whl (201.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

horusdemodlib-0.6.2-cp313-cp313-musllinux_1_2_aarch64.whl (212.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

horusdemodlib-0.6.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (216.2 kB view details)

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

horusdemodlib-0.6.2-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (207.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

horusdemodlib-0.6.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (215.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

horusdemodlib-0.6.2-cp313-cp313-macosx_11_0_arm64.whl (118.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

horusdemodlib-0.6.2-cp313-cp313-macosx_10_13_x86_64.whl (121.7 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

horusdemodlib-0.6.2-cp312-cp312-win_amd64.whl (127.9 kB view details)

Uploaded CPython 3.12Windows x86-64

horusdemodlib-0.6.2-cp312-cp312-musllinux_1_2_x86_64.whl (214.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

horusdemodlib-0.6.2-cp312-cp312-musllinux_1_2_armv7l.whl (201.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

horusdemodlib-0.6.2-cp312-cp312-musllinux_1_2_aarch64.whl (212.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

horusdemodlib-0.6.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (216.2 kB view details)

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

horusdemodlib-0.6.2-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (207.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

horusdemodlib-0.6.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (215.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

horusdemodlib-0.6.2-cp312-cp312-macosx_11_0_arm64.whl (118.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

horusdemodlib-0.6.2-cp312-cp312-macosx_10_13_x86_64.whl (121.7 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

horusdemodlib-0.6.2-cp311-cp311-win_amd64.whl (127.8 kB view details)

Uploaded CPython 3.11Windows x86-64

horusdemodlib-0.6.2-cp311-cp311-musllinux_1_2_x86_64.whl (213.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

horusdemodlib-0.6.2-cp311-cp311-musllinux_1_2_armv7l.whl (201.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

horusdemodlib-0.6.2-cp311-cp311-musllinux_1_2_aarch64.whl (212.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

horusdemodlib-0.6.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (215.7 kB view details)

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

horusdemodlib-0.6.2-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (206.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

horusdemodlib-0.6.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (214.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

horusdemodlib-0.6.2-cp311-cp311-macosx_11_0_arm64.whl (118.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

horusdemodlib-0.6.2-cp311-cp311-macosx_10_9_x86_64.whl (122.0 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

horusdemodlib-0.6.2-cp310-cp310-win_amd64.whl (127.8 kB view details)

Uploaded CPython 3.10Windows x86-64

horusdemodlib-0.6.2-cp310-cp310-musllinux_1_2_x86_64.whl (213.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

horusdemodlib-0.6.2-cp310-cp310-musllinux_1_2_armv7l.whl (201.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

horusdemodlib-0.6.2-cp310-cp310-musllinux_1_2_aarch64.whl (212.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

horusdemodlib-0.6.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (215.7 kB view details)

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

horusdemodlib-0.6.2-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (206.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

horusdemodlib-0.6.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (214.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

horusdemodlib-0.6.2-cp310-cp310-macosx_11_0_arm64.whl (118.5 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

horusdemodlib-0.6.2-cp310-cp310-macosx_10_9_x86_64.whl (122.0 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

horusdemodlib-0.6.2-cp39-cp39-win_amd64.whl (127.8 kB view details)

Uploaded CPython 3.9Windows x86-64

horusdemodlib-0.6.2-cp39-cp39-musllinux_1_2_x86_64.whl (213.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

horusdemodlib-0.6.2-cp39-cp39-musllinux_1_2_armv7l.whl (201.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

horusdemodlib-0.6.2-cp39-cp39-musllinux_1_2_aarch64.whl (212.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

horusdemodlib-0.6.2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (215.7 kB view details)

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

horusdemodlib-0.6.2-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (206.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

horusdemodlib-0.6.2-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (214.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

horusdemodlib-0.6.2-cp39-cp39-macosx_11_0_arm64.whl (118.5 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

horusdemodlib-0.6.2-cp39-cp39-macosx_10_9_x86_64.whl (122.0 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

Details for the file horusdemodlib-0.6.2.tar.gz.

File metadata

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

File hashes

Hashes for horusdemodlib-0.6.2.tar.gz
Algorithm Hash digest
SHA256 d1eab6cbf65f110df1a997508d86c753be3dce99eee8935af8b0267077fce498
MD5 b59170708c1e100a3b8e5a73f9b8d7a4
BLAKE2b-256 4cea121b378547ba5975fcb525088fc66ea49f8ec06be6d285f5e555c13ead15

See more details on using hashes here.

Provenance

The following attestation bundles were made for horusdemodlib-0.6.2.tar.gz:

Publisher: wheels.yml on projecthorus/horusdemodlib

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

File details

Details for the file horusdemodlib-0.6.2-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for horusdemodlib-0.6.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 f61f9b8f746ee465279f70fac3ae89422aa3e2ce7be0f672888e59e25425a894
MD5 4d640aaf6e0863e4ee2254435e09a337
BLAKE2b-256 4a3b687080002141080a662fee493cbbc32a5382933c4778d814510e7f5af6f3

See more details on using hashes here.

Provenance

The following attestation bundles were made for horusdemodlib-0.6.2-cp314-cp314-win_amd64.whl:

Publisher: wheels.yml on projecthorus/horusdemodlib

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

File details

Details for the file horusdemodlib-0.6.2-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for horusdemodlib-0.6.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4482e357b2312fd385dcc6e697d75d30c7deea05c33f3aa18ddc81b557527c3e
MD5 6cb1fd1a8e08dda5d6f65cbc13ea0e1e
BLAKE2b-256 cfb3c021a9d34b5471f2b6e7f1546cf049c93818f8805eddd81ccf8a92985ec9

See more details on using hashes here.

Provenance

The following attestation bundles were made for horusdemodlib-0.6.2-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on projecthorus/horusdemodlib

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

File details

Details for the file horusdemodlib-0.6.2-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for horusdemodlib-0.6.2-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e534039a80749fe208093032cc3cf7865638ecf90dc7e19dff39c1cd5190cb76
MD5 4e1e36b5a4f160f0d2a322a87f6dd9b5
BLAKE2b-256 695d266f45e20f910c570be82a12d11d032ca1a83830479c616b5fed67333657

See more details on using hashes here.

Provenance

The following attestation bundles were made for horusdemodlib-0.6.2-cp314-cp314-musllinux_1_2_armv7l.whl:

Publisher: wheels.yml on projecthorus/horusdemodlib

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

File details

Details for the file horusdemodlib-0.6.2-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for horusdemodlib-0.6.2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 74f34d49b1f74378f65a3fb901b615811aeba9ced462467128cc3d2382b21212
MD5 1566104314514dc55b35c1b947a20afc
BLAKE2b-256 37e1791af19c5c15f84f3e20bbd2c761ad847396ffe376c1018fcff93254f371

See more details on using hashes here.

Provenance

The following attestation bundles were made for horusdemodlib-0.6.2-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: wheels.yml on projecthorus/horusdemodlib

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

File details

Details for the file horusdemodlib-0.6.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for horusdemodlib-0.6.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4191ce73c0cec6b43bde0a3a33d58675d991e1cdd60b7d6445382a48b05d8b28
MD5 e39f417aff98ae0e907a6202dd84ca9a
BLAKE2b-256 3faf71f3ab514f868e11fe63fe590408963f6ff73707479d88c80c2ede882a4a

See more details on using hashes here.

Provenance

The following attestation bundles were made for horusdemodlib-0.6.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on projecthorus/horusdemodlib

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

File details

Details for the file horusdemodlib-0.6.2-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for horusdemodlib-0.6.2-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 ccd9b56a413dab801d78b0a1cb328866c0937bb31087f886025fe959b893782d
MD5 91d3e29ec59b8d3d33d0789054197c8a
BLAKE2b-256 afd5c95a3e6a7959d98d7eb50bb938df4b778b3c4cac8fac6d2bf8b767f24500

See more details on using hashes here.

Provenance

The following attestation bundles were made for horusdemodlib-0.6.2-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: wheels.yml on projecthorus/horusdemodlib

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

File details

Details for the file horusdemodlib-0.6.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for horusdemodlib-0.6.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 45e6f7c27606a538bb490dc0be3a67bd56b01ce48409e58f62109a80271c1c17
MD5 db06db8471953254c6765fb148422f92
BLAKE2b-256 47d14c2a0053b96197fefebe20c08f1f66877041b9fcfc610bbaf617566669ef

See more details on using hashes here.

Provenance

The following attestation bundles were made for horusdemodlib-0.6.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on projecthorus/horusdemodlib

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

File details

Details for the file horusdemodlib-0.6.2-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for horusdemodlib-0.6.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d58512963ecc0c3be46953658a98a3dcb8cfa5106c96b74762cddc702af47c9d
MD5 bca26f869a1b3852ba61a7819d67993b
BLAKE2b-256 9756cd04481bfe22a7f2df1c7f4d91922669954c5c266fba493ad617ea8171fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for horusdemodlib-0.6.2-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: wheels.yml on projecthorus/horusdemodlib

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

File details

Details for the file horusdemodlib-0.6.2-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for horusdemodlib-0.6.2-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 302746da9094fcd3976b759f2835b05e141c69345aa377a0e8f917e46b6b24a1
MD5 71fa75c07c2c10a1deb4c8666c5f2449
BLAKE2b-256 eae52720e7b5720f5fb7859eae199057a3e8e8985364ab291f3b2c55cec007b6

See more details on using hashes here.

Provenance

The following attestation bundles were made for horusdemodlib-0.6.2-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: wheels.yml on projecthorus/horusdemodlib

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

File details

Details for the file horusdemodlib-0.6.2-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for horusdemodlib-0.6.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 7dfb65e40485bae3f3a34783e33c70fbaa8fddbbc277979c8e32eb3b1804bd23
MD5 e7d5f7b46f5cf73b5f6b5e8e8b453d1c
BLAKE2b-256 d77b25897a76783a2b814a35567927de4e13ee98b6519539098fdf72b5636cad

See more details on using hashes here.

Provenance

The following attestation bundles were made for horusdemodlib-0.6.2-cp313-cp313-win_amd64.whl:

Publisher: wheels.yml on projecthorus/horusdemodlib

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

File details

Details for the file horusdemodlib-0.6.2-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for horusdemodlib-0.6.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1a3edff375446ed83e6dcb2a2810ed39368f71fe822b76d94974412521c00d48
MD5 bc7bf0a817e4a2439262d7a60c25d00a
BLAKE2b-256 89ed6ad2876147477120a98be3a19a90958160e65bfefc8dd6ef069f971b572a

See more details on using hashes here.

Provenance

The following attestation bundles were made for horusdemodlib-0.6.2-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on projecthorus/horusdemodlib

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

File details

Details for the file horusdemodlib-0.6.2-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for horusdemodlib-0.6.2-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 bc694ea6b821785faa59031d36be1792417e358c61cb65f0ba82e36022baa99b
MD5 bc8c84867e2e5beec32f4fdd95887d24
BLAKE2b-256 92642bf8a3970256bc537643f6778f8dc77e9d9eadf1b4343d9d06424ad92b1d

See more details on using hashes here.

Provenance

The following attestation bundles were made for horusdemodlib-0.6.2-cp313-cp313-musllinux_1_2_armv7l.whl:

Publisher: wheels.yml on projecthorus/horusdemodlib

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

File details

Details for the file horusdemodlib-0.6.2-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for horusdemodlib-0.6.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0e9e53d742b5fa797e769f2ec2a20bb587fe586bb9909e3852e6fbbeba2f0dcd
MD5 65cd4f2517056329eb645c8407f2fc38
BLAKE2b-256 f618ba81739c5be9cfb139b2235245c11dbe8055fa86de96587f10a93a6ddd4f

See more details on using hashes here.

Provenance

The following attestation bundles were made for horusdemodlib-0.6.2-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: wheels.yml on projecthorus/horusdemodlib

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

File details

Details for the file horusdemodlib-0.6.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for horusdemodlib-0.6.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e690f8112bbecade36e6194fe439578ea5d06a99f7870fcb9b2b7edde39d77e5
MD5 83c0b28058831e701f227bdd8ab24d40
BLAKE2b-256 03862d3b084e69168ae662ef8fd5af6d71662b85ba300878d2e36c999527dbec

See more details on using hashes here.

Provenance

The following attestation bundles were made for horusdemodlib-0.6.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on projecthorus/horusdemodlib

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

File details

Details for the file horusdemodlib-0.6.2-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for horusdemodlib-0.6.2-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 39b3e5965660f3a9dd5b8ed1d09d1780487b860e7da58ce4a72a0824cbbcb010
MD5 8ee86c767a0bb5448db51251083065b7
BLAKE2b-256 5667731af5195819ed218ee254c2b0a927d41d6f2d65bb3a0e7963cc806b80b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for horusdemodlib-0.6.2-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: wheels.yml on projecthorus/horusdemodlib

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

File details

Details for the file horusdemodlib-0.6.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for horusdemodlib-0.6.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 52ec44536e980ff608ec4e5f9d2670381e37c168fdb7c4872b561717395a6287
MD5 bcf6173461839dabdc07de8e0ab512a7
BLAKE2b-256 4bf29a44f77a9c2ccf9b1e63ecd80db9e6f27f7bba0d5ad402404bb0b63c64fe

See more details on using hashes here.

Provenance

The following attestation bundles were made for horusdemodlib-0.6.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on projecthorus/horusdemodlib

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

File details

Details for the file horusdemodlib-0.6.2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for horusdemodlib-0.6.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1c8e2efccdb03f4e9460c519a88a98bace46f71268e196a654be63fbf21927fa
MD5 ef6d635999b6c0f4c02cd358d9d1a47e
BLAKE2b-256 5af9b6c29d6e6a87ede2118780b941b4ad67ade58e0232b3973c639c3d92e0c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for horusdemodlib-0.6.2-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: wheels.yml on projecthorus/horusdemodlib

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

File details

Details for the file horusdemodlib-0.6.2-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for horusdemodlib-0.6.2-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 3e8bfff7f0204393ceba9f44506ea25040c43e48ec3504e1e83cd48a34aed9b8
MD5 fa33d4940cdf943935336371a53cf07b
BLAKE2b-256 2aa5398b870554a4c61d8276ed71fc101479f70abe6f86d08bb7244b59ccef02

See more details on using hashes here.

Provenance

The following attestation bundles were made for horusdemodlib-0.6.2-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: wheels.yml on projecthorus/horusdemodlib

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

File details

Details for the file horusdemodlib-0.6.2-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for horusdemodlib-0.6.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e5f09de760856d8615fd6763b37d471960af12da5e85cfa9badfdc1e61b9324e
MD5 b139b2bc6980b6e6517608865c499ce3
BLAKE2b-256 a9db4c5a3b421b86bf4b22de25120b18dfda9b950ea6eed3a2330e19a6e20e1b

See more details on using hashes here.

Provenance

The following attestation bundles were made for horusdemodlib-0.6.2-cp312-cp312-win_amd64.whl:

Publisher: wheels.yml on projecthorus/horusdemodlib

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

File details

Details for the file horusdemodlib-0.6.2-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for horusdemodlib-0.6.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ab1d35fe29d1901995697bb25d95a0804430640a2dc05f8119d950ca35d4981b
MD5 6420b122097c8b430c9001d5cba496ee
BLAKE2b-256 c99906cbe75ab4d19d3c9902ad34e68fcb77d8357b83bda198bcde2f83d0308b

See more details on using hashes here.

Provenance

The following attestation bundles were made for horusdemodlib-0.6.2-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on projecthorus/horusdemodlib

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

File details

Details for the file horusdemodlib-0.6.2-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for horusdemodlib-0.6.2-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7b831022603ef4d859f0f8b327331cef1bb2a330199c9ec93bd31c647d2e3105
MD5 8193bb4b37545c6833be2cb1bbd6fe45
BLAKE2b-256 5e09e66217d86324b1813876412fef48867fd9295621a8c169b96adf351d2101

See more details on using hashes here.

Provenance

The following attestation bundles were made for horusdemodlib-0.6.2-cp312-cp312-musllinux_1_2_armv7l.whl:

Publisher: wheels.yml on projecthorus/horusdemodlib

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

File details

Details for the file horusdemodlib-0.6.2-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for horusdemodlib-0.6.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 08f2f09efb6af58ccee385990d80f2ff381957290c3e12ef8390f4ae9402d769
MD5 423286147dafd0930bdd8941b65ca990
BLAKE2b-256 a1867a4cc696d22c8f80c2c32e8dafc973c799193c90a88b4415f2e2e0414aaf

See more details on using hashes here.

Provenance

The following attestation bundles were made for horusdemodlib-0.6.2-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: wheels.yml on projecthorus/horusdemodlib

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

File details

Details for the file horusdemodlib-0.6.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for horusdemodlib-0.6.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c25548c2c83390f6d34461f90d7327fc3a1176bd34d3ee59918b84d98212453e
MD5 78f4c07e1932fa7f5e7ac17d9ff7c7c1
BLAKE2b-256 1d31608bb605164b5bcdc009209f52b1ca0925e8a76db4e34a623a4596c4d965

See more details on using hashes here.

Provenance

The following attestation bundles were made for horusdemodlib-0.6.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on projecthorus/horusdemodlib

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

File details

Details for the file horusdemodlib-0.6.2-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for horusdemodlib-0.6.2-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 f88643f6f5cef34fe28dd4721d5b6189a0c51f946cc53c45dfb49b5799a48878
MD5 e5917da76175cd8a6b6e75afae239b6f
BLAKE2b-256 6edc4d4d934f3eb688dba8fcb340754a47670c05dc79ceb887d988f1ffb728cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for horusdemodlib-0.6.2-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: wheels.yml on projecthorus/horusdemodlib

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

File details

Details for the file horusdemodlib-0.6.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for horusdemodlib-0.6.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 35802c37c33feaf6552bee48aac4c7e626eb2c4ed182ad5ea4dd917bec417bf5
MD5 c617cc80a68ff2ea22070ac7f0f1537a
BLAKE2b-256 ee639937e5d9b5a4eba8c4a94450d56350d660a675054b8dc953e63dd2cf3e46

See more details on using hashes here.

Provenance

The following attestation bundles were made for horusdemodlib-0.6.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on projecthorus/horusdemodlib

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

File details

Details for the file horusdemodlib-0.6.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for horusdemodlib-0.6.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3291ba7bb82aba3a5a6e1d5f225696ef35ac6ac6e9b2b96d1107ce1d19f9b8ce
MD5 e26ff5c0f44aed94890fca0e4541b26e
BLAKE2b-256 2753ddcaa6ca062e6141a6694803cc31007acb8c9424c2fbad2a2431b2efec21

See more details on using hashes here.

Provenance

The following attestation bundles were made for horusdemodlib-0.6.2-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: wheels.yml on projecthorus/horusdemodlib

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

File details

Details for the file horusdemodlib-0.6.2-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for horusdemodlib-0.6.2-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 ab20997d8c6e08fdc3e30f6fe747247837118a039f436eef34808a06149fcbe1
MD5 6de540f1354aef80ae351ca80266d46a
BLAKE2b-256 e199759cbfd82428fca1a2fb631c7cf9bc482e5ecdb567292514d40bdc136f98

See more details on using hashes here.

Provenance

The following attestation bundles were made for horusdemodlib-0.6.2-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: wheels.yml on projecthorus/horusdemodlib

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

File details

Details for the file horusdemodlib-0.6.2-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for horusdemodlib-0.6.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 97378fa616068851d09a11df43ba9045493f00492e6f56bfb7e76a9431667700
MD5 e58a9afc8c38f9a1fc6499de240186ee
BLAKE2b-256 110ffb800f782a66e29366a570d561f51efb115209a23bc654c529baadfaeb37

See more details on using hashes here.

Provenance

The following attestation bundles were made for horusdemodlib-0.6.2-cp311-cp311-win_amd64.whl:

Publisher: wheels.yml on projecthorus/horusdemodlib

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

File details

Details for the file horusdemodlib-0.6.2-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for horusdemodlib-0.6.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e9fb69a796ac49cb6d6165f6cd5e3d753a28c82f3a54b0bbe38fe417acc6f888
MD5 542ddf148156229cfdb3a1738f27aec3
BLAKE2b-256 7a58d3d0b4a7b0d8bd2ea35e705ce4205f26f1f60d97910ded6fce7020f12c79

See more details on using hashes here.

Provenance

The following attestation bundles were made for horusdemodlib-0.6.2-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on projecthorus/horusdemodlib

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

File details

Details for the file horusdemodlib-0.6.2-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for horusdemodlib-0.6.2-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 dc3ea210de376e5aec08588a896db03c9873d4777aa52c9b3c0716dc08e4e760
MD5 95b9ef755ead51c37d81bc4de1af7508
BLAKE2b-256 1555f30e8a6224b038ae190c766e0f4fe62c2fb678cc6602c62c918f7a69454e

See more details on using hashes here.

Provenance

The following attestation bundles were made for horusdemodlib-0.6.2-cp311-cp311-musllinux_1_2_armv7l.whl:

Publisher: wheels.yml on projecthorus/horusdemodlib

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

File details

Details for the file horusdemodlib-0.6.2-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for horusdemodlib-0.6.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bd1e27dd60d3d6ce886f1c4798e67ba10e4b378d5aa1761307caa2352aca9fb5
MD5 16085c869dbb2f6ca3a1176f9077aaa6
BLAKE2b-256 3418e6dade07f7632ed283d7f1c0de503488e4490dd98ca33531a0a135a85fae

See more details on using hashes here.

Provenance

The following attestation bundles were made for horusdemodlib-0.6.2-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: wheels.yml on projecthorus/horusdemodlib

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

File details

Details for the file horusdemodlib-0.6.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for horusdemodlib-0.6.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1eeec5987f478d16f86e618fda8a63aa192372c4ef6bb77d39552e02604fa7bc
MD5 89e4fcdb83bcc3915cf3d0362e0f5b5c
BLAKE2b-256 f34833e86cffdf5edf06e3c17d9c70ef682cc35c6a034703d88aa99686337323

See more details on using hashes here.

Provenance

The following attestation bundles were made for horusdemodlib-0.6.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on projecthorus/horusdemodlib

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

File details

Details for the file horusdemodlib-0.6.2-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for horusdemodlib-0.6.2-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 f79141ce5a96508e9aa382872d06e1dbab5b9a5725444c6458727afc23687b1d
MD5 b988eb874b09103ca6b83298a88ce497
BLAKE2b-256 e09ff7d7742ebf2c8afda009f3d12f337cc57d2b3f76ec2580dbe1fb069a1c4d

See more details on using hashes here.

Provenance

The following attestation bundles were made for horusdemodlib-0.6.2-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: wheels.yml on projecthorus/horusdemodlib

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

File details

Details for the file horusdemodlib-0.6.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for horusdemodlib-0.6.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a75c2d0f943325336a3d89042bab3d8b0bb3eb27c71529a52eb267a97dae0842
MD5 4b028d912d101fe59f5bb71dc6635389
BLAKE2b-256 de799eb21abdefe03e5a0b4f620b525cb3b5ca085c0bcf179ba044c44945b6d9

See more details on using hashes here.

Provenance

The following attestation bundles were made for horusdemodlib-0.6.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on projecthorus/horusdemodlib

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

File details

Details for the file horusdemodlib-0.6.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for horusdemodlib-0.6.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f5c69845f26a57b4f877c2f5b6b114cf648904ee779b1dce931cdf54e8a0af0b
MD5 de35c9cf7aa4345f047f18195f1f58a2
BLAKE2b-256 956204563b0eb75cc8f13314e180a211ccab2027f7c9e5a60afee553be3c2935

See more details on using hashes here.

Provenance

The following attestation bundles were made for horusdemodlib-0.6.2-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: wheels.yml on projecthorus/horusdemodlib

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

File details

Details for the file horusdemodlib-0.6.2-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for horusdemodlib-0.6.2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f54dc236dfaeb5820b47d4a1a832bd8ecab7a7e15a8e2ac5f46040c84e9dc5c8
MD5 943a3c2c496b1c490445e4e6270077e6
BLAKE2b-256 18cd342947be47d327e05d7f32107d3c9ed0a3852000b4aef6fd0973bd4902f4

See more details on using hashes here.

Provenance

The following attestation bundles were made for horusdemodlib-0.6.2-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: wheels.yml on projecthorus/horusdemodlib

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

File details

Details for the file horusdemodlib-0.6.2-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for horusdemodlib-0.6.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 446f3100f8295778df25935573d7ca03f115b3bfa571c9e07c8b846046cc03da
MD5 2a24f7ec69439cad0140f275b2e17b3d
BLAKE2b-256 0227b9bcd70043ef2b58ee925af606ba015703f67f73a70b2e1736bbe0470f14

See more details on using hashes here.

Provenance

The following attestation bundles were made for horusdemodlib-0.6.2-cp310-cp310-win_amd64.whl:

Publisher: wheels.yml on projecthorus/horusdemodlib

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

File details

Details for the file horusdemodlib-0.6.2-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for horusdemodlib-0.6.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bc03b983cd34b3fd4cf16ace707d48f4f2a91eb9b55914f9f7f51ef673c14288
MD5 58cb11a9b540d67e1e2cd1f6721a7cfb
BLAKE2b-256 7deb239b59d91acdff78ccbf292bee94eccdd45b62300676a9409e7c6f5c8507

See more details on using hashes here.

Provenance

The following attestation bundles were made for horusdemodlib-0.6.2-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on projecthorus/horusdemodlib

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

File details

Details for the file horusdemodlib-0.6.2-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for horusdemodlib-0.6.2-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 91bd920b6584a71c19c1bde705869169300ac078cd77b9cf60aff41adb0f5731
MD5 80ae7683af1e1ac348af7d13f652a5f5
BLAKE2b-256 6198b4425908349c33348a01d34d1ba9d5b3439a22ed594382defab669af9fdc

See more details on using hashes here.

Provenance

The following attestation bundles were made for horusdemodlib-0.6.2-cp310-cp310-musllinux_1_2_armv7l.whl:

Publisher: wheels.yml on projecthorus/horusdemodlib

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

File details

Details for the file horusdemodlib-0.6.2-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for horusdemodlib-0.6.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d5bf02b8e22d4d729621defdcfe01ddea982800de6a6b5753fa270edf60f6cde
MD5 9d90c88e5df476125ef8b2345ffc997f
BLAKE2b-256 6602b498c3ee93c3cbcd8211db1a1ad1eb7b93d1a90cc4b9146d900e8c12df25

See more details on using hashes here.

Provenance

The following attestation bundles were made for horusdemodlib-0.6.2-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: wheels.yml on projecthorus/horusdemodlib

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

File details

Details for the file horusdemodlib-0.6.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for horusdemodlib-0.6.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4ea6c94a5e21f7e2b25186196b7597aa9d6ad145b20c951db7c165b851cd4194
MD5 a3f5c16091b2ab5c46ce06da50fd2360
BLAKE2b-256 3ef194b7d9814a8d04e985237280faefccff36e78d7200cd3f88be7140773951

See more details on using hashes here.

Provenance

The following attestation bundles were made for horusdemodlib-0.6.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on projecthorus/horusdemodlib

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

File details

Details for the file horusdemodlib-0.6.2-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for horusdemodlib-0.6.2-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 d0e398ffa21cc0b4a3b8c7dedfcf40f4ae9e691f754510a14c7f44cf8ce36e7f
MD5 f69d38c9cdceb6617cb607e02ac838b1
BLAKE2b-256 b2ae537831b7db6733cfcb709565d1802c77a58dd55ab18c71b411cc0cadc6a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for horusdemodlib-0.6.2-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: wheels.yml on projecthorus/horusdemodlib

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

File details

Details for the file horusdemodlib-0.6.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for horusdemodlib-0.6.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 797bf383fe2fbe838ddb15317fbbd97372f68fcb84e21894e9883c729a864011
MD5 3bbd8068c87c3551b53ff7f63838e0ff
BLAKE2b-256 05051ad2069bae7ce71f531d2a3a0732f2617179f9e1b145b0ccab6254d513bf

See more details on using hashes here.

Provenance

The following attestation bundles were made for horusdemodlib-0.6.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on projecthorus/horusdemodlib

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

File details

Details for the file horusdemodlib-0.6.2-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for horusdemodlib-0.6.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8b27709571fb3d67f75536326c3e7bd8d3b823809ef0f97ac28d48309e4f2dc2
MD5 9392de37deac7d10229818233ce9c067
BLAKE2b-256 156e37ea5f97a7473d726a28511d181f6da348456ecf5c9424ba28434204d642

See more details on using hashes here.

Provenance

The following attestation bundles were made for horusdemodlib-0.6.2-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: wheels.yml on projecthorus/horusdemodlib

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

File details

Details for the file horusdemodlib-0.6.2-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for horusdemodlib-0.6.2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 10203d2b242201d144579d13534b55891b2b4aa9cc55ebdd1ead7da28687d2e6
MD5 4b2956a4578f56731989738e8bcd3e7b
BLAKE2b-256 d00e9c905cd7967548a8af382e3ad78fad3fe4a18c054f7abd23733b5e012998

See more details on using hashes here.

Provenance

The following attestation bundles were made for horusdemodlib-0.6.2-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: wheels.yml on projecthorus/horusdemodlib

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

File details

Details for the file horusdemodlib-0.6.2-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: horusdemodlib-0.6.2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 127.8 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 horusdemodlib-0.6.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 a5855df945dadab4ef38003cbc96a719c2dfc5ac9226ba88db21187d8b9db860
MD5 eec240a9079f1183e91343658f7d3fc7
BLAKE2b-256 4e155cfe62ae6b1e9d479ba81bdaa83373a69b9e2465a802a7ff482d7da1c9d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for horusdemodlib-0.6.2-cp39-cp39-win_amd64.whl:

Publisher: wheels.yml on projecthorus/horusdemodlib

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

File details

Details for the file horusdemodlib-0.6.2-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for horusdemodlib-0.6.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 53f383b004c124c745e2e4d9c5779eb414813fb33f660dc012224054af5e465e
MD5 4b76b919cd0d1b9556c0af2d4ae69ff6
BLAKE2b-256 561f3c3cbe0918a49be3adfc984387ed184b890cb9d756e9d155d993dc19b294

See more details on using hashes here.

Provenance

The following attestation bundles were made for horusdemodlib-0.6.2-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on projecthorus/horusdemodlib

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

File details

Details for the file horusdemodlib-0.6.2-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for horusdemodlib-0.6.2-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0d2b0afe9d09b6109915ca75763ed7c854bca6e49dd1bca4e3382ebf5a759f28
MD5 be0218164d5fe49911765495a02c689b
BLAKE2b-256 6632111bae2ca8f85909337e8d3cc6e7df8049b93b8b01138e8a7e1b9e2e5073

See more details on using hashes here.

Provenance

The following attestation bundles were made for horusdemodlib-0.6.2-cp39-cp39-musllinux_1_2_armv7l.whl:

Publisher: wheels.yml on projecthorus/horusdemodlib

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

File details

Details for the file horusdemodlib-0.6.2-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for horusdemodlib-0.6.2-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4b47245cae519b77dd30e3e9946ff46e2bfdcf3240399fa9a06cfab227c53493
MD5 a04a38026d6e7243fd8287a964949fc6
BLAKE2b-256 432e549016217d74067d56efc7e70e34f91c7ae0dea63ddd856ad7d1e1ec639e

See more details on using hashes here.

Provenance

The following attestation bundles were made for horusdemodlib-0.6.2-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: wheels.yml on projecthorus/horusdemodlib

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

File details

Details for the file horusdemodlib-0.6.2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for horusdemodlib-0.6.2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cddee73dfb57ca71156cc30e88e14b4d7b5407c82143deb39e281c3a26cab2c8
MD5 a8dc52b255c94f3bb3505274d30a3530
BLAKE2b-256 021433d848f8729506b009bdf4f7bc079ad66b883ca3816bd7963d3cbed141c1

See more details on using hashes here.

Provenance

The following attestation bundles were made for horusdemodlib-0.6.2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on projecthorus/horusdemodlib

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

File details

Details for the file horusdemodlib-0.6.2-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for horusdemodlib-0.6.2-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 d4c2f543e35e721b6848b6558a5896445e916ffc0d370ee59c52e67b85782e2c
MD5 351a56da95230fd25f815dc937d3844a
BLAKE2b-256 04b94cf24d41b656110d3afb280c22d973803a56fad5761be148d8a095ffe96a

See more details on using hashes here.

Provenance

The following attestation bundles were made for horusdemodlib-0.6.2-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: wheels.yml on projecthorus/horusdemodlib

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

File details

Details for the file horusdemodlib-0.6.2-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for horusdemodlib-0.6.2-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 57809e42710bc1640784f480f794d10427a7bee002d965d9b62579c01913112f
MD5 2fbfa8cb2f227a46bf2abb1302aa65c7
BLAKE2b-256 3393d6b3f231589018f435909f76eaeb7abfaacba887ecaad87a6fd554acbaa0

See more details on using hashes here.

Provenance

The following attestation bundles were made for horusdemodlib-0.6.2-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on projecthorus/horusdemodlib

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

File details

Details for the file horusdemodlib-0.6.2-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for horusdemodlib-0.6.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b2d0e4de0f328758797be6789b290349775192a0774ebdca0e9e4868aa14c43b
MD5 5cb95b3d5e6f64a6e1715a77716eb7c5
BLAKE2b-256 4bb18421c1229735812d03c5b45c8646f2df7e2d591609cbea97631ece97a534

See more details on using hashes here.

Provenance

The following attestation bundles were made for horusdemodlib-0.6.2-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: wheels.yml on projecthorus/horusdemodlib

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

File details

Details for the file horusdemodlib-0.6.2-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for horusdemodlib-0.6.2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a36386d2c51f924a0f586ea97255755e8dc2bc42ca6f002391a0ce0259a43443
MD5 a7ef9d9cb4610ae9efbbf1843c099131
BLAKE2b-256 bf7afccf0f8f8e6b57124111c4d9054dd4d20082ac829463c98f09f743de7ceb

See more details on using hashes here.

Provenance

The following attestation bundles were made for horusdemodlib-0.6.2-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: wheels.yml on projecthorus/horusdemodlib

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