Skip to main content

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

Release files for horusdemodlib 0.6.2

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for horusdemodlib 0.6.2
File Size Uploaded
horusdemodlib-0.6.2.tar.gz 273.6 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for horusdemodlib 0.6.2
File
horusdemodlib-0.6.2-cp314-cp314-win_amd64.whl CPython 3.14 CPython 3.14 Windows x86-64 Details
horusdemodlib-0.6.2-cp314-cp314-musllinux_1_2_x86_64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ x86-64 Details
horusdemodlib-0.6.2-cp314-cp314-musllinux_1_2_armv7l.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ ARMv7l Details
horusdemodlib-0.6.2-cp314-cp314-musllinux_1_2_aarch64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ ARM64 Details
horusdemodlib-0.6.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
horusdemodlib-0.6.2-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl CPython 3.14 CPython 3.14 Linux glibc 2.31+ ARMv7l, Linux glibc 2.17+ ARMv7l Details
horusdemodlib-0.6.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
horusdemodlib-0.6.2-cp314-cp314-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 macOS 11.0+ ARM64 Details
horusdemodlib-0.6.2-cp314-cp314-macosx_10_15_x86_64.whl CPython 3.14 CPython 3.14 macOS 10.15+ x86-64 Details
horusdemodlib-0.6.2-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
horusdemodlib-0.6.2-cp313-cp313-musllinux_1_2_x86_64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ x86-64 Details
horusdemodlib-0.6.2-cp313-cp313-musllinux_1_2_armv7l.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ ARMv7l Details
horusdemodlib-0.6.2-cp313-cp313-musllinux_1_2_aarch64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ ARM64 Details
horusdemodlib-0.6.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.28+ x86-64, Linux glibc 2.17+ x86-64 Details
horusdemodlib-0.6.2-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl CPython 3.13 CPython 3.13 Linux glibc 2.31+ ARMv7l, Linux glibc 2.17+ ARMv7l Details
horusdemodlib-0.6.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.28+ ARM64, Linux glibc 2.17+ ARM64 Details
horusdemodlib-0.6.2-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
horusdemodlib-0.6.2-cp313-cp313-macosx_10_13_x86_64.whl CPython 3.13 CPython 3.13 macOS 10.13+ x86-64 Details
horusdemodlib-0.6.2-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
horusdemodlib-0.6.2-cp312-cp312-musllinux_1_2_x86_64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-64 Details
horusdemodlib-0.6.2-cp312-cp312-musllinux_1_2_armv7l.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ ARMv7l Details
horusdemodlib-0.6.2-cp312-cp312-musllinux_1_2_aarch64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ ARM64 Details
horusdemodlib-0.6.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
horusdemodlib-0.6.2-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl CPython 3.12 CPython 3.12 Linux glibc 2.31+ ARMv7l, Linux glibc 2.17+ ARMv7l Details
horusdemodlib-0.6.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
horusdemodlib-0.6.2-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
horusdemodlib-0.6.2-cp312-cp312-macosx_10_13_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.13+ x86-64 Details
horusdemodlib-0.6.2-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
horusdemodlib-0.6.2-cp311-cp311-musllinux_1_2_x86_64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ x86-64 Details
horusdemodlib-0.6.2-cp311-cp311-musllinux_1_2_armv7l.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ ARMv7l Details
horusdemodlib-0.6.2-cp311-cp311-musllinux_1_2_aarch64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ ARM64 Details
horusdemodlib-0.6.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
horusdemodlib-0.6.2-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl CPython 3.11 CPython 3.11 Linux glibc 2.31+ ARMv7l, Linux glibc 2.17+ ARMv7l Details
horusdemodlib-0.6.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
horusdemodlib-0.6.2-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
horusdemodlib-0.6.2-cp311-cp311-macosx_10_9_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.9+ x86-64 Details
horusdemodlib-0.6.2-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
horusdemodlib-0.6.2-cp310-cp310-musllinux_1_2_x86_64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ x86-64 Details
horusdemodlib-0.6.2-cp310-cp310-musllinux_1_2_armv7l.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ ARMv7l Details
horusdemodlib-0.6.2-cp310-cp310-musllinux_1_2_aarch64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ ARM64 Details
horusdemodlib-0.6.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
horusdemodlib-0.6.2-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ ARMv7l, Linux glibc 2.31+ ARMv7l Details
horusdemodlib-0.6.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
horusdemodlib-0.6.2-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
horusdemodlib-0.6.2-cp310-cp310-macosx_10_9_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.9+ x86-64 Details
horusdemodlib-0.6.2-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
horusdemodlib-0.6.2-cp39-cp39-musllinux_1_2_x86_64.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ x86-64 Details
horusdemodlib-0.6.2-cp39-cp39-musllinux_1_2_armv7l.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ ARMv7l Details
horusdemodlib-0.6.2-cp39-cp39-musllinux_1_2_aarch64.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ ARM64 Details
horusdemodlib-0.6.2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
horusdemodlib-0.6.2-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ ARMv7l, Linux glibc 2.31+ ARMv7l Details
horusdemodlib-0.6.2-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
horusdemodlib-0.6.2-cp39-cp39-macosx_11_0_arm64.whl CPython 3.9 CPython 3.9 macOS 11.0+ ARM64 Details
horusdemodlib-0.6.2-cp39-cp39-macosx_10_9_x86_64.whl CPython 3.9 CPython 3.9 macOS 10.9+ x86-64 Details

Total release size:10.1 MB

Release files / horusdemodlib-0.6.2.tar.gz

Download URL horusdemodlib-0.6.2.tar.gz
Size 273.6 kB
Tags Source
SHA-256 checksum
How to use checksums
d1eab6cbf65f110df1a997508d86c753be3dce99eee8935af8b0267077fce498
BLAKE2b-256 checksum
How to use checksums
4cea121b378547ba5975fcb525088fc66ea49f8ec06be6d285f5e555c13ead15
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 25, 2026.

Transparency log

Release files / horusdemodlib-0.6.2-cp314-cp314-win_amd64.whl

Download URL horusdemodlib-0.6.2-cp314-cp314-win_amd64.whl
Size 129.4 kB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
f61f9b8f746ee465279f70fac3ae89422aa3e2ce7be0f672888e59e25425a894
BLAKE2b-256 checksum
How to use checksums
4a3b687080002141080a662fee493cbbc32a5382933c4778d814510e7f5af6f3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 25, 2026.

Transparency log

Release files / horusdemodlib-0.6.2-cp314-cp314-musllinux_1_2_x86_64.whl

Download URL horusdemodlib-0.6.2-cp314-cp314-musllinux_1_2_x86_64.whl
Size 214.3 kB
Tags CPython 3.14 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
4482e357b2312fd385dcc6e697d75d30c7deea05c33f3aa18ddc81b557527c3e
BLAKE2b-256 checksum
How to use checksums
cfb3c021a9d34b5471f2b6e7f1546cf049c93818f8805eddd81ccf8a92985ec9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 25, 2026.

Transparency log

Release files / horusdemodlib-0.6.2-cp314-cp314-musllinux_1_2_armv7l.whl

Download URL horusdemodlib-0.6.2-cp314-cp314-musllinux_1_2_armv7l.whl
Size 201.4 kB
Tags CPython 3.14 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
e534039a80749fe208093032cc3cf7865638ecf90dc7e19dff39c1cd5190cb76
BLAKE2b-256 checksum
How to use checksums
695d266f45e20f910c570be82a12d11d032ca1a83830479c616b5fed67333657
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 25, 2026.

Transparency log

Release files / horusdemodlib-0.6.2-cp314-cp314-musllinux_1_2_aarch64.whl

Download URL horusdemodlib-0.6.2-cp314-cp314-musllinux_1_2_aarch64.whl
Size 212.8 kB
Tags CPython 3.14 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
74f34d49b1f74378f65a3fb901b615811aeba9ced462467128cc3d2382b21212
BLAKE2b-256 checksum
How to use checksums
37e1791af19c5c15f84f3e20bbd2c761ad847396ffe376c1018fcff93254f371
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 25, 2026.

Transparency log

Release files / horusdemodlib-0.6.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL horusdemodlib-0.6.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 216.2 kB
Tags CPython 3.14 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
4191ce73c0cec6b43bde0a3a33d58675d991e1cdd60b7d6445382a48b05d8b28
BLAKE2b-256 checksum
How to use checksums
3faf71f3ab514f868e11fe63fe590408963f6ff73707479d88c80c2ede882a4a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 25, 2026.

Transparency log

Release files / horusdemodlib-0.6.2-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl

Download URL horusdemodlib-0.6.2-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Size 207.1 kB
Tags CPython 3.14 Linux glibc 2.17+ ARMv7l Linux glibc 2.31+ ARMv7l
SHA-256 checksum
How to use checksums
ccd9b56a413dab801d78b0a1cb328866c0937bb31087f886025fe959b893782d
BLAKE2b-256 checksum
How to use checksums
afd5c95a3e6a7959d98d7eb50bb938df4b778b3c4cac8fac6d2bf8b767f24500
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 25, 2026.

Transparency log

Release files / horusdemodlib-0.6.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL horusdemodlib-0.6.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 215.1 kB
Tags CPython 3.14 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
45e6f7c27606a538bb490dc0be3a67bd56b01ce48409e58f62109a80271c1c17
BLAKE2b-256 checksum
How to use checksums
47d14c2a0053b96197fefebe20c08f1f66877041b9fcfc610bbaf617566669ef
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 25, 2026.

Transparency log

Release files / horusdemodlib-0.6.2-cp314-cp314-macosx_11_0_arm64.whl

Download URL horusdemodlib-0.6.2-cp314-cp314-macosx_11_0_arm64.whl
Size 118.6 kB
Tags CPython 3.14 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
d58512963ecc0c3be46953658a98a3dcb8cfa5106c96b74762cddc702af47c9d
BLAKE2b-256 checksum
How to use checksums
9756cd04481bfe22a7f2df1c7f4d91922669954c5c266fba493ad617ea8171fd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 25, 2026.

Transparency log

Release files / horusdemodlib-0.6.2-cp314-cp314-macosx_10_15_x86_64.whl

Download URL horusdemodlib-0.6.2-cp314-cp314-macosx_10_15_x86_64.whl
Size 122.1 kB
Tags CPython 3.14 macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
302746da9094fcd3976b759f2835b05e141c69345aa377a0e8f917e46b6b24a1
BLAKE2b-256 checksum
How to use checksums
eae52720e7b5720f5fb7859eae199057a3e8e8985364ab291f3b2c55cec007b6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 25, 2026.

Transparency log

Release files / horusdemodlib-0.6.2-cp313-cp313-win_amd64.whl

Download URL horusdemodlib-0.6.2-cp313-cp313-win_amd64.whl
Size 127.9 kB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
7dfb65e40485bae3f3a34783e33c70fbaa8fddbbc277979c8e32eb3b1804bd23
BLAKE2b-256 checksum
How to use checksums
d77b25897a76783a2b814a35567927de4e13ee98b6519539098fdf72b5636cad
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 25, 2026.

Transparency log

Release files / horusdemodlib-0.6.2-cp313-cp313-musllinux_1_2_x86_64.whl

Download URL horusdemodlib-0.6.2-cp313-cp313-musllinux_1_2_x86_64.whl
Size 214.4 kB
Tags CPython 3.13 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
1a3edff375446ed83e6dcb2a2810ed39368f71fe822b76d94974412521c00d48
BLAKE2b-256 checksum
How to use checksums
89ed6ad2876147477120a98be3a19a90958160e65bfefc8dd6ef069f971b572a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 25, 2026.

Transparency log

Release files / horusdemodlib-0.6.2-cp313-cp313-musllinux_1_2_armv7l.whl

Download URL horusdemodlib-0.6.2-cp313-cp313-musllinux_1_2_armv7l.whl
Size 201.5 kB
Tags CPython 3.13 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
bc694ea6b821785faa59031d36be1792417e358c61cb65f0ba82e36022baa99b
BLAKE2b-256 checksum
How to use checksums
92642bf8a3970256bc537643f6778f8dc77e9d9eadf1b4343d9d06424ad92b1d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 25, 2026.

Transparency log

Release files / horusdemodlib-0.6.2-cp313-cp313-musllinux_1_2_aarch64.whl

Download URL horusdemodlib-0.6.2-cp313-cp313-musllinux_1_2_aarch64.whl
Size 212.8 kB
Tags CPython 3.13 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
0e9e53d742b5fa797e769f2ec2a20bb587fe586bb9909e3852e6fbbeba2f0dcd
BLAKE2b-256 checksum
How to use checksums
f618ba81739c5be9cfb139b2235245c11dbe8055fa86de96587f10a93a6ddd4f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 25, 2026.

Transparency log

Release files / horusdemodlib-0.6.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL horusdemodlib-0.6.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 216.2 kB
Tags CPython 3.13 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
e690f8112bbecade36e6194fe439578ea5d06a99f7870fcb9b2b7edde39d77e5
BLAKE2b-256 checksum
How to use checksums
03862d3b084e69168ae662ef8fd5af6d71662b85ba300878d2e36c999527dbec
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 25, 2026.

Transparency log

Release files / horusdemodlib-0.6.2-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl

Download URL horusdemodlib-0.6.2-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Size 207.2 kB
Tags CPython 3.13 Linux glibc 2.17+ ARMv7l Linux glibc 2.31+ ARMv7l
SHA-256 checksum
How to use checksums
39b3e5965660f3a9dd5b8ed1d09d1780487b860e7da58ce4a72a0824cbbcb010
BLAKE2b-256 checksum
How to use checksums
5667731af5195819ed218ee254c2b0a927d41d6f2d65bb3a0e7963cc806b80b0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 25, 2026.

Transparency log

Release files / horusdemodlib-0.6.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL horusdemodlib-0.6.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 215.2 kB
Tags CPython 3.13 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
52ec44536e980ff608ec4e5f9d2670381e37c168fdb7c4872b561717395a6287
BLAKE2b-256 checksum
How to use checksums
4bf29a44f77a9c2ccf9b1e63ecd80db9e6f27f7bba0d5ad402404bb0b63c64fe
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 25, 2026.

Transparency log

Release files / horusdemodlib-0.6.2-cp313-cp313-macosx_11_0_arm64.whl

Download URL horusdemodlib-0.6.2-cp313-cp313-macosx_11_0_arm64.whl
Size 118.5 kB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
1c8e2efccdb03f4e9460c519a88a98bace46f71268e196a654be63fbf21927fa
BLAKE2b-256 checksum
How to use checksums
5af9b6c29d6e6a87ede2118780b941b4ad67ade58e0232b3973c639c3d92e0c8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 25, 2026.

Transparency log

Release files / horusdemodlib-0.6.2-cp313-cp313-macosx_10_13_x86_64.whl

Download URL horusdemodlib-0.6.2-cp313-cp313-macosx_10_13_x86_64.whl
Size 121.7 kB
Tags CPython 3.13 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
3e8bfff7f0204393ceba9f44506ea25040c43e48ec3504e1e83cd48a34aed9b8
BLAKE2b-256 checksum
How to use checksums
2aa5398b870554a4c61d8276ed71fc101479f70abe6f86d08bb7244b59ccef02
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 25, 2026.

Transparency log

Release files / horusdemodlib-0.6.2-cp312-cp312-win_amd64.whl

Download URL horusdemodlib-0.6.2-cp312-cp312-win_amd64.whl
Size 127.9 kB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
e5f09de760856d8615fd6763b37d471960af12da5e85cfa9badfdc1e61b9324e
BLAKE2b-256 checksum
How to use checksums
a9db4c5a3b421b86bf4b22de25120b18dfda9b950ea6eed3a2330e19a6e20e1b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 25, 2026.

Transparency log

Release files / horusdemodlib-0.6.2-cp312-cp312-musllinux_1_2_x86_64.whl

Download URL horusdemodlib-0.6.2-cp312-cp312-musllinux_1_2_x86_64.whl
Size 214.4 kB
Tags CPython 3.12 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
ab1d35fe29d1901995697bb25d95a0804430640a2dc05f8119d950ca35d4981b
BLAKE2b-256 checksum
How to use checksums
c99906cbe75ab4d19d3c9902ad34e68fcb77d8357b83bda198bcde2f83d0308b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 25, 2026.

Transparency log

Release files / horusdemodlib-0.6.2-cp312-cp312-musllinux_1_2_armv7l.whl

Download URL horusdemodlib-0.6.2-cp312-cp312-musllinux_1_2_armv7l.whl
Size 201.5 kB
Tags CPython 3.12 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
7b831022603ef4d859f0f8b327331cef1bb2a330199c9ec93bd31c647d2e3105
BLAKE2b-256 checksum
How to use checksums
5e09e66217d86324b1813876412fef48867fd9295621a8c169b96adf351d2101
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 25, 2026.

Transparency log

Release files / horusdemodlib-0.6.2-cp312-cp312-musllinux_1_2_aarch64.whl

Download URL horusdemodlib-0.6.2-cp312-cp312-musllinux_1_2_aarch64.whl
Size 212.8 kB
Tags CPython 3.12 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
08f2f09efb6af58ccee385990d80f2ff381957290c3e12ef8390f4ae9402d769
BLAKE2b-256 checksum
How to use checksums
a1867a4cc696d22c8f80c2c32e8dafc973c799193c90a88b4415f2e2e0414aaf
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 25, 2026.

Transparency log

Release files / horusdemodlib-0.6.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL horusdemodlib-0.6.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 216.2 kB
Tags CPython 3.12 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
c25548c2c83390f6d34461f90d7327fc3a1176bd34d3ee59918b84d98212453e
BLAKE2b-256 checksum
How to use checksums
1d31608bb605164b5bcdc009209f52b1ca0925e8a76db4e34a623a4596c4d965
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 25, 2026.

Transparency log

Release files / horusdemodlib-0.6.2-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl

Download URL horusdemodlib-0.6.2-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Size 207.2 kB
Tags CPython 3.12 Linux glibc 2.17+ ARMv7l Linux glibc 2.31+ ARMv7l
SHA-256 checksum
How to use checksums
f88643f6f5cef34fe28dd4721d5b6189a0c51f946cc53c45dfb49b5799a48878
BLAKE2b-256 checksum
How to use checksums
6edc4d4d934f3eb688dba8fcb340754a47670c05dc79ceb887d988f1ffb728cb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 25, 2026.

Transparency log

Release files / horusdemodlib-0.6.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL horusdemodlib-0.6.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 215.2 kB
Tags CPython 3.12 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
35802c37c33feaf6552bee48aac4c7e626eb2c4ed182ad5ea4dd917bec417bf5
BLAKE2b-256 checksum
How to use checksums
ee639937e5d9b5a4eba8c4a94450d56350d660a675054b8dc953e63dd2cf3e46
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 25, 2026.

Transparency log

Release files / horusdemodlib-0.6.2-cp312-cp312-macosx_11_0_arm64.whl

Download URL horusdemodlib-0.6.2-cp312-cp312-macosx_11_0_arm64.whl
Size 118.5 kB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
3291ba7bb82aba3a5a6e1d5f225696ef35ac6ac6e9b2b96d1107ce1d19f9b8ce
BLAKE2b-256 checksum
How to use checksums
2753ddcaa6ca062e6141a6694803cc31007acb8c9424c2fbad2a2431b2efec21
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 25, 2026.

Transparency log

Release files / horusdemodlib-0.6.2-cp312-cp312-macosx_10_13_x86_64.whl

Download URL horusdemodlib-0.6.2-cp312-cp312-macosx_10_13_x86_64.whl
Size 121.7 kB
Tags CPython 3.12 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
ab20997d8c6e08fdc3e30f6fe747247837118a039f436eef34808a06149fcbe1
BLAKE2b-256 checksum
How to use checksums
e199759cbfd82428fca1a2fb631c7cf9bc482e5ecdb567292514d40bdc136f98
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 25, 2026.

Transparency log

Release files / horusdemodlib-0.6.2-cp311-cp311-win_amd64.whl

Download URL horusdemodlib-0.6.2-cp311-cp311-win_amd64.whl
Size 127.8 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
97378fa616068851d09a11df43ba9045493f00492e6f56bfb7e76a9431667700
BLAKE2b-256 checksum
How to use checksums
110ffb800f782a66e29366a570d561f51efb115209a23bc654c529baadfaeb37
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 25, 2026.

Transparency log

Release files / horusdemodlib-0.6.2-cp311-cp311-musllinux_1_2_x86_64.whl

Download URL horusdemodlib-0.6.2-cp311-cp311-musllinux_1_2_x86_64.whl
Size 213.9 kB
Tags CPython 3.11 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
e9fb69a796ac49cb6d6165f6cd5e3d753a28c82f3a54b0bbe38fe417acc6f888
BLAKE2b-256 checksum
How to use checksums
7a58d3d0b4a7b0d8bd2ea35e705ce4205f26f1f60d97910ded6fce7020f12c79
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 25, 2026.

Transparency log

Release files / horusdemodlib-0.6.2-cp311-cp311-musllinux_1_2_armv7l.whl

Download URL horusdemodlib-0.6.2-cp311-cp311-musllinux_1_2_armv7l.whl
Size 201.2 kB
Tags CPython 3.11 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
dc3ea210de376e5aec08588a896db03c9873d4777aa52c9b3c0716dc08e4e760
BLAKE2b-256 checksum
How to use checksums
1555f30e8a6224b038ae190c766e0f4fe62c2fb678cc6602c62c918f7a69454e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 25, 2026.

Transparency log

Release files / horusdemodlib-0.6.2-cp311-cp311-musllinux_1_2_aarch64.whl

Download URL horusdemodlib-0.6.2-cp311-cp311-musllinux_1_2_aarch64.whl
Size 212.6 kB
Tags CPython 3.11 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
bd1e27dd60d3d6ce886f1c4798e67ba10e4b378d5aa1761307caa2352aca9fb5
BLAKE2b-256 checksum
How to use checksums
3418e6dade07f7632ed283d7f1c0de503488e4490dd98ca33531a0a135a85fae
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 25, 2026.

Transparency log

Release files / horusdemodlib-0.6.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL horusdemodlib-0.6.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 215.7 kB
Tags CPython 3.11 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
1eeec5987f478d16f86e618fda8a63aa192372c4ef6bb77d39552e02604fa7bc
BLAKE2b-256 checksum
How to use checksums
f34833e86cffdf5edf06e3c17d9c70ef682cc35c6a034703d88aa99686337323
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 25, 2026.

Transparency log

Release files / horusdemodlib-0.6.2-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl

Download URL horusdemodlib-0.6.2-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Size 206.8 kB
Tags CPython 3.11 Linux glibc 2.17+ ARMv7l Linux glibc 2.31+ ARMv7l
SHA-256 checksum
How to use checksums
f79141ce5a96508e9aa382872d06e1dbab5b9a5725444c6458727afc23687b1d
BLAKE2b-256 checksum
How to use checksums
e09ff7d7742ebf2c8afda009f3d12f337cc57d2b3f76ec2580dbe1fb069a1c4d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 25, 2026.

Transparency log

Release files / horusdemodlib-0.6.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL horusdemodlib-0.6.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 214.9 kB
Tags CPython 3.11 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
a75c2d0f943325336a3d89042bab3d8b0bb3eb27c71529a52eb267a97dae0842
BLAKE2b-256 checksum
How to use checksums
de799eb21abdefe03e5a0b4f620b525cb3b5ca085c0bcf179ba044c44945b6d9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 25, 2026.

Transparency log

Release files / horusdemodlib-0.6.2-cp311-cp311-macosx_11_0_arm64.whl

Download URL horusdemodlib-0.6.2-cp311-cp311-macosx_11_0_arm64.whl
Size 118.5 kB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
f5c69845f26a57b4f877c2f5b6b114cf648904ee779b1dce931cdf54e8a0af0b
BLAKE2b-256 checksum
How to use checksums
956204563b0eb75cc8f13314e180a211ccab2027f7c9e5a60afee553be3c2935
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 25, 2026.

Transparency log

Release files / horusdemodlib-0.6.2-cp311-cp311-macosx_10_9_x86_64.whl

Download URL horusdemodlib-0.6.2-cp311-cp311-macosx_10_9_x86_64.whl
Size 122.0 kB
Tags CPython 3.11 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
f54dc236dfaeb5820b47d4a1a832bd8ecab7a7e15a8e2ac5f46040c84e9dc5c8
BLAKE2b-256 checksum
How to use checksums
18cd342947be47d327e05d7f32107d3c9ed0a3852000b4aef6fd0973bd4902f4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 25, 2026.

Transparency log

Release files / horusdemodlib-0.6.2-cp310-cp310-win_amd64.whl

Download URL horusdemodlib-0.6.2-cp310-cp310-win_amd64.whl
Size 127.8 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
446f3100f8295778df25935573d7ca03f115b3bfa571c9e07c8b846046cc03da
BLAKE2b-256 checksum
How to use checksums
0227b9bcd70043ef2b58ee925af606ba015703f67f73a70b2e1736bbe0470f14
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 25, 2026.

Transparency log

Release files / horusdemodlib-0.6.2-cp310-cp310-musllinux_1_2_x86_64.whl

Download URL horusdemodlib-0.6.2-cp310-cp310-musllinux_1_2_x86_64.whl
Size 213.9 kB
Tags CPython 3.10 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
bc03b983cd34b3fd4cf16ace707d48f4f2a91eb9b55914f9f7f51ef673c14288
BLAKE2b-256 checksum
How to use checksums
7deb239b59d91acdff78ccbf292bee94eccdd45b62300676a9409e7c6f5c8507
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 25, 2026.

Transparency log

Release files / horusdemodlib-0.6.2-cp310-cp310-musllinux_1_2_armv7l.whl

Download URL horusdemodlib-0.6.2-cp310-cp310-musllinux_1_2_armv7l.whl
Size 201.2 kB
Tags CPython 3.10 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
91bd920b6584a71c19c1bde705869169300ac078cd77b9cf60aff41adb0f5731
BLAKE2b-256 checksum
How to use checksums
6198b4425908349c33348a01d34d1ba9d5b3439a22ed594382defab669af9fdc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 25, 2026.

Transparency log

Release files / horusdemodlib-0.6.2-cp310-cp310-musllinux_1_2_aarch64.whl

Download URL horusdemodlib-0.6.2-cp310-cp310-musllinux_1_2_aarch64.whl
Size 212.6 kB
Tags CPython 3.10 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
d5bf02b8e22d4d729621defdcfe01ddea982800de6a6b5753fa270edf60f6cde
BLAKE2b-256 checksum
How to use checksums
6602b498c3ee93c3cbcd8211db1a1ad1eb7b93d1a90cc4b9146d900e8c12df25
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 25, 2026.

Transparency log

Release files / horusdemodlib-0.6.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL horusdemodlib-0.6.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 215.7 kB
Tags CPython 3.10 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
4ea6c94a5e21f7e2b25186196b7597aa9d6ad145b20c951db7c165b851cd4194
BLAKE2b-256 checksum
How to use checksums
3ef194b7d9814a8d04e985237280faefccff36e78d7200cd3f88be7140773951
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 25, 2026.

Transparency log

Release files / horusdemodlib-0.6.2-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl

Download URL horusdemodlib-0.6.2-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Size 206.7 kB
Tags CPython 3.10 Linux glibc 2.17+ ARMv7l Linux glibc 2.31+ ARMv7l
SHA-256 checksum
How to use checksums
d0e398ffa21cc0b4a3b8c7dedfcf40f4ae9e691f754510a14c7f44cf8ce36e7f
BLAKE2b-256 checksum
How to use checksums
b2ae537831b7db6733cfcb709565d1802c77a58dd55ab18c71b411cc0cadc6a6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 25, 2026.

Transparency log

Release files / horusdemodlib-0.6.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL horusdemodlib-0.6.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 214.9 kB
Tags CPython 3.10 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
797bf383fe2fbe838ddb15317fbbd97372f68fcb84e21894e9883c729a864011
BLAKE2b-256 checksum
How to use checksums
05051ad2069bae7ce71f531d2a3a0732f2617179f9e1b145b0ccab6254d513bf
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 25, 2026.

Transparency log

Release files / horusdemodlib-0.6.2-cp310-cp310-macosx_11_0_arm64.whl

Download URL horusdemodlib-0.6.2-cp310-cp310-macosx_11_0_arm64.whl
Size 118.5 kB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
8b27709571fb3d67f75536326c3e7bd8d3b823809ef0f97ac28d48309e4f2dc2
BLAKE2b-256 checksum
How to use checksums
156e37ea5f97a7473d726a28511d181f6da348456ecf5c9424ba28434204d642
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 25, 2026.

Transparency log

Release files / horusdemodlib-0.6.2-cp310-cp310-macosx_10_9_x86_64.whl

Download URL horusdemodlib-0.6.2-cp310-cp310-macosx_10_9_x86_64.whl
Size 122.0 kB
Tags CPython 3.10 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
10203d2b242201d144579d13534b55891b2b4aa9cc55ebdd1ead7da28687d2e6
BLAKE2b-256 checksum
How to use checksums
d00e9c905cd7967548a8af382e3ad78fad3fe4a18c054f7abd23733b5e012998
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 25, 2026.

Transparency log

Release files / horusdemodlib-0.6.2-cp39-cp39-win_amd64.whl

Download URL horusdemodlib-0.6.2-cp39-cp39-win_amd64.whl
Size 127.8 kB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
a5855df945dadab4ef38003cbc96a719c2dfc5ac9226ba88db21187d8b9db860
BLAKE2b-256 checksum
How to use checksums
4e155cfe62ae6b1e9d479ba81bdaa83373a69b9e2465a802a7ff482d7da1c9d5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 25, 2026.

Transparency log

Release files / horusdemodlib-0.6.2-cp39-cp39-musllinux_1_2_x86_64.whl

Download URL horusdemodlib-0.6.2-cp39-cp39-musllinux_1_2_x86_64.whl
Size 213.9 kB
Tags CPython 3.9 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
53f383b004c124c745e2e4d9c5779eb414813fb33f660dc012224054af5e465e
BLAKE2b-256 checksum
How to use checksums
561f3c3cbe0918a49be3adfc984387ed184b890cb9d756e9d155d993dc19b294
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 25, 2026.

Transparency log

Release files / horusdemodlib-0.6.2-cp39-cp39-musllinux_1_2_armv7l.whl

Download URL horusdemodlib-0.6.2-cp39-cp39-musllinux_1_2_armv7l.whl
Size 201.2 kB
Tags CPython 3.9 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
0d2b0afe9d09b6109915ca75763ed7c854bca6e49dd1bca4e3382ebf5a759f28
BLAKE2b-256 checksum
How to use checksums
6632111bae2ca8f85909337e8d3cc6e7df8049b93b8b01138e8a7e1b9e2e5073
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 25, 2026.

Transparency log

Release files / horusdemodlib-0.6.2-cp39-cp39-musllinux_1_2_aarch64.whl

Download URL horusdemodlib-0.6.2-cp39-cp39-musllinux_1_2_aarch64.whl
Size 212.6 kB
Tags CPython 3.9 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
4b47245cae519b77dd30e3e9946ff46e2bfdcf3240399fa9a06cfab227c53493
BLAKE2b-256 checksum
How to use checksums
432e549016217d74067d56efc7e70e34f91c7ae0dea63ddd856ad7d1e1ec639e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 25, 2026.

Transparency log

Release files / horusdemodlib-0.6.2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL horusdemodlib-0.6.2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 215.7 kB
Tags CPython 3.9 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
cddee73dfb57ca71156cc30e88e14b4d7b5407c82143deb39e281c3a26cab2c8
BLAKE2b-256 checksum
How to use checksums
021433d848f8729506b009bdf4f7bc079ad66b883ca3816bd7963d3cbed141c1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 25, 2026.

Transparency log

Release files / horusdemodlib-0.6.2-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl

Download URL horusdemodlib-0.6.2-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Size 206.8 kB
Tags CPython 3.9 Linux glibc 2.17+ ARMv7l Linux glibc 2.31+ ARMv7l
SHA-256 checksum
How to use checksums
d4c2f543e35e721b6848b6558a5896445e916ffc0d370ee59c52e67b85782e2c
BLAKE2b-256 checksum
How to use checksums
04b94cf24d41b656110d3afb280c22d973803a56fad5761be148d8a095ffe96a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 25, 2026.

Transparency log

Release files / horusdemodlib-0.6.2-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL horusdemodlib-0.6.2-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 214.9 kB
Tags CPython 3.9 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
57809e42710bc1640784f480f794d10427a7bee002d965d9b62579c01913112f
BLAKE2b-256 checksum
How to use checksums
3393d6b3f231589018f435909f76eaeb7abfaacba887ecaad87a6fd554acbaa0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 25, 2026.

Transparency log

Release files / horusdemodlib-0.6.2-cp39-cp39-macosx_11_0_arm64.whl

Download URL horusdemodlib-0.6.2-cp39-cp39-macosx_11_0_arm64.whl
Size 118.5 kB
Tags CPython 3.9 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
b2d0e4de0f328758797be6789b290349775192a0774ebdca0e9e4868aa14c43b
BLAKE2b-256 checksum
How to use checksums
4bb18421c1229735812d03c5b45c8646f2df7e2d591609cbea97631ece97a534
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 25, 2026.

Transparency log

Release files / horusdemodlib-0.6.2-cp39-cp39-macosx_10_9_x86_64.whl

Download URL horusdemodlib-0.6.2-cp39-cp39-macosx_10_9_x86_64.whl
Size 122.0 kB
Tags CPython 3.9 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
a36386d2c51f924a0f586ea97255755e8dc2bc42ca6f002391a0ce0259a43443
BLAKE2b-256 checksum
How to use checksums
bf7afccf0f8f8e6b57124111c4d9054dd4d20082ac829463c98f09f743de7ceb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 25, 2026.

Transparency log

Release history Release notifications | RSS feed

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page