Skip to main content

Fast computation of rectangular histogram of oriented gradients (R-HOG) features using integral histogram

Project description

HOGpp

Linux macOS Windows codecov Documentation Status PyPI - Version

This repository contains an implementation of the rectangular histogram of oriented gradients feature descriptor (R-HOG) using integral histograms. The integral histogram representation allows to quickly compute HOG features in subregions of an image in constant time. This is particularly useful if the features in an image must be computed repeatedly, e.g., in a sliding window manner.

Features

  • C++ templated implementation
  • Python support for 32, 64, and 80 bit floating point precision
  • Unrestricted input size (e.g., OpenCV as of version 4.5.5 requires the input to be a multiple of the block size)
  • Support for arbitrary integer (8 bit to 64 bit, both signed and unsigned) and floating point input (e.g., OpenCV requires 8-bit unsigned integer input)
  • Masking support (i.e., spatial exclusion of gradient magnitudes from contributing to features)

For a complete summary of differences between HOGpp and existing implementations, refer to the feature matrix.

Getting Started

In Python:

from hogpp import IntegralHOGDescriptor

desc = IntegralHOGDescriptor()
# Load image
image = # ...
# Precompute the gradient histograms. This needs to be done only once for each image.
desc.compute(image)
# Extract the feature descriptor of a region of interest. The method can be
# called multiple times for different subregions of the above image. Note the
# use of matrix indexing along each axis opposed to Cartesian coordinates.
roi = (0, 0, 128, 64) # top left (row, column) size (height, width)
X = desc(roi)

License

HOGpp is provided under the Apache License 2.0.

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

hogpp-0.2.1a1.dev1.tar.gz (451.2 kB view details)

Uploaded Source

Built Distributions

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

hogpp-0.2.1a1.dev1-pp311-pypy311_pp73-win_amd64.whl (411.0 kB view details)

Uploaded PyPyWindows x86-64

hogpp-0.2.1a1.dev1-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (534.1 kB view details)

Uploaded PyPymanylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

hogpp-0.2.1a1.dev1-pp311-pypy311_pp73-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (531.3 kB view details)

Uploaded PyPymanylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

hogpp-0.2.1a1.dev1-pp311-pypy311_pp73-macosx_11_0_x86_64.whl (429.4 kB view details)

Uploaded PyPymacOS 11.0+ x86-64

hogpp-0.2.1a1.dev1-pp311-pypy311_pp73-macosx_11_0_arm64.whl (368.2 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

hogpp-0.2.1a1.dev1-cp314-cp314t-win_arm64.whl (339.7 kB view details)

Uploaded CPython 3.14tWindows ARM64

hogpp-0.2.1a1.dev1-cp314-cp314t-win_amd64.whl (453.6 kB view details)

Uploaded CPython 3.14tWindows x86-64

hogpp-0.2.1a1.dev1-cp314-cp314t-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

hogpp-0.2.1a1.dev1-cp314-cp314t-musllinux_1_2_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

hogpp-0.2.1a1.dev1-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (539.4 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

hogpp-0.2.1a1.dev1-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (548.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

hogpp-0.2.1a1.dev1-cp314-cp314t-macosx_11_0_x86_64.whl (463.3 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ x86-64

hogpp-0.2.1a1.dev1-cp314-cp314t-macosx_11_0_arm64.whl (396.1 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

hogpp-0.2.1a1.dev1-cp314-cp314-win_arm64.whl (326.5 kB view details)

Uploaded CPython 3.14Windows ARM64

hogpp-0.2.1a1.dev1-cp314-cp314-win_amd64.whl (425.5 kB view details)

Uploaded CPython 3.14Windows x86-64

hogpp-0.2.1a1.dev1-cp314-cp314-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

hogpp-0.2.1a1.dev1-cp314-cp314-musllinux_1_2_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

hogpp-0.2.1a1.dev1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (539.2 kB view details)

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

hogpp-0.2.1a1.dev1-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (519.4 kB view details)

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

hogpp-0.2.1a1.dev1-cp314-cp314-macosx_11_0_x86_64.whl (441.4 kB view details)

Uploaded CPython 3.14macOS 11.0+ x86-64

hogpp-0.2.1a1.dev1-cp314-cp314-macosx_11_0_arm64.whl (378.3 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

hogpp-0.2.1a1.dev1-cp313-cp313t-win_arm64.whl (331.2 kB view details)

Uploaded CPython 3.13tWindows ARM64

hogpp-0.2.1a1.dev1-cp313-cp313t-win_amd64.whl (437.0 kB view details)

Uploaded CPython 3.13tWindows x86-64

hogpp-0.2.1a1.dev1-cp313-cp313t-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

hogpp-0.2.1a1.dev1-cp313-cp313t-musllinux_1_2_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

hogpp-0.2.1a1.dev1-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (539.4 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

hogpp-0.2.1a1.dev1-cp313-cp313t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (548.8 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

hogpp-0.2.1a1.dev1-cp313-cp313t-macosx_11_0_x86_64.whl (463.3 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ x86-64

hogpp-0.2.1a1.dev1-cp313-cp313t-macosx_11_0_arm64.whl (396.1 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

hogpp-0.2.1a1.dev1-cp313-cp313-win_arm64.whl (317.4 kB view details)

Uploaded CPython 3.13Windows ARM64

hogpp-0.2.1a1.dev1-cp313-cp313-win_amd64.whl (412.4 kB view details)

Uploaded CPython 3.13Windows x86-64

hogpp-0.2.1a1.dev1-cp313-cp313-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

hogpp-0.2.1a1.dev1-cp313-cp313-musllinux_1_2_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

hogpp-0.2.1a1.dev1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (538.7 kB view details)

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

hogpp-0.2.1a1.dev1-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (519.0 kB view details)

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

hogpp-0.2.1a1.dev1-cp313-cp313-macosx_11_0_x86_64.whl (448.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ x86-64

hogpp-0.2.1a1.dev1-cp313-cp313-macosx_11_0_arm64.whl (376.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

hogpp-0.2.1a1.dev1-cp312-cp312-win_arm64.whl (317.4 kB view details)

Uploaded CPython 3.12Windows ARM64

hogpp-0.2.1a1.dev1-cp312-cp312-win_amd64.whl (412.4 kB view details)

Uploaded CPython 3.12Windows x86-64

hogpp-0.2.1a1.dev1-cp312-cp312-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

hogpp-0.2.1a1.dev1-cp312-cp312-musllinux_1_2_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

hogpp-0.2.1a1.dev1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (538.0 kB view details)

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

hogpp-0.2.1a1.dev1-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (521.0 kB view details)

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

hogpp-0.2.1a1.dev1-cp312-cp312-macosx_11_0_x86_64.whl (448.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ x86-64

hogpp-0.2.1a1.dev1-cp312-cp312-macosx_11_0_arm64.whl (376.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

hogpp-0.2.1a1.dev1-cp311-cp311-win_arm64.whl (316.6 kB view details)

Uploaded CPython 3.11Windows ARM64

hogpp-0.2.1a1.dev1-cp311-cp311-win_amd64.whl (412.0 kB view details)

Uploaded CPython 3.11Windows x86-64

hogpp-0.2.1a1.dev1-cp311-cp311-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

hogpp-0.2.1a1.dev1-cp311-cp311-musllinux_1_2_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

hogpp-0.2.1a1.dev1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (539.7 kB view details)

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

hogpp-0.2.1a1.dev1-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (532.3 kB view details)

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

hogpp-0.2.1a1.dev1-cp311-cp311-macosx_11_0_x86_64.whl (429.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ x86-64

hogpp-0.2.1a1.dev1-cp311-cp311-macosx_11_0_arm64.whl (368.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

hogpp-0.2.1a1.dev1-cp310-cp310-win_arm64.whl (315.9 kB view details)

Uploaded CPython 3.10Windows ARM64

hogpp-0.2.1a1.dev1-cp310-cp310-win_amd64.whl (409.6 kB view details)

Uploaded CPython 3.10Windows x86-64

hogpp-0.2.1a1.dev1-cp310-cp310-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

hogpp-0.2.1a1.dev1-cp310-cp310-musllinux_1_2_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

hogpp-0.2.1a1.dev1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (539.4 kB view details)

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

hogpp-0.2.1a1.dev1-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (531.4 kB view details)

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

hogpp-0.2.1a1.dev1-cp310-cp310-macosx_11_0_x86_64.whl (428.3 kB view details)

Uploaded CPython 3.10macOS 11.0+ x86-64

hogpp-0.2.1a1.dev1-cp310-cp310-macosx_11_0_arm64.whl (367.2 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

hogpp-0.2.1a1.dev1-cp39-cp39-win_arm64.whl (316.0 kB view details)

Uploaded CPython 3.9Windows ARM64

hogpp-0.2.1a1.dev1-cp39-cp39-win_amd64.whl (413.2 kB view details)

Uploaded CPython 3.9Windows x86-64

hogpp-0.2.1a1.dev1-cp39-cp39-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

hogpp-0.2.1a1.dev1-cp39-cp39-musllinux_1_2_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

hogpp-0.2.1a1.dev1-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (537.8 kB view details)

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

hogpp-0.2.1a1.dev1-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (531.4 kB view details)

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

hogpp-0.2.1a1.dev1-cp39-cp39-macosx_11_0_x86_64.whl (428.4 kB view details)

Uploaded CPython 3.9macOS 11.0+ x86-64

hogpp-0.2.1a1.dev1-cp39-cp39-macosx_11_0_arm64.whl (367.2 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

File details

Details for the file hogpp-0.2.1a1.dev1.tar.gz.

File metadata

  • Download URL: hogpp-0.2.1a1.dev1.tar.gz
  • Upload date:
  • Size: 451.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for hogpp-0.2.1a1.dev1.tar.gz
Algorithm Hash digest
SHA256 5b496f6a8cda3d669713211548ff106844c63cb2d4e8f87b8b00b21f0b5d8896
MD5 35258e96432e18d05b4d74d18c3f6e6b
BLAKE2b-256 5efaa8f04acf616ebd9526f6c5cd08e0e8c7f8576867647d5d019a6889faec83

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.1a1.dev1.tar.gz:

Publisher: wheels.yml on sergiud/hogpp

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

File details

Details for the file hogpp-0.2.1a1.dev1-pp311-pypy311_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.1a1.dev1-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 667530d2b8f171d595fb215f505f2ecdca6155f34ee8c7baab507daa55a6e98f
MD5 e298f09362def04911d9dc5a03f116d7
BLAKE2b-256 408d68d0e87923d667aa83f61c8c8c12e1f322b8c28ea90871e33b93fbd96f86

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.1a1.dev1-pp311-pypy311_pp73-win_amd64.whl:

Publisher: wheels.yml on sergiud/hogpp

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

File details

Details for the file hogpp-0.2.1a1.dev1-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.1a1.dev1-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 93c711a6c246414140d35f3e056b2344d3ca8e9fd81b5c8bda14a157874923c1
MD5 13418ab1ad5453a9f216726f0aa7352d
BLAKE2b-256 16ac95c3e52f7a4110c9ac6d60b9afc2ebd136a0110672c99d328189e336839d

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.1a1.dev1-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on sergiud/hogpp

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

File details

Details for the file hogpp-0.2.1a1.dev1-pp311-pypy311_pp73-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.1a1.dev1-pp311-pypy311_pp73-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a49199c36de190bd241c4d9fb0628631cc8bfaaf2e5e1673a827f53116678ed2
MD5 d33ac3378abfd0a1b62225d7f2319a61
BLAKE2b-256 ad8c7f0099e89696eb226d34081224434ded72e46a56b41fed6845d0afecdffe

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.1a1.dev1-pp311-pypy311_pp73-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on sergiud/hogpp

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

File details

Details for the file hogpp-0.2.1a1.dev1-pp311-pypy311_pp73-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.1a1.dev1-pp311-pypy311_pp73-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 9a931283d90116806dd8f78a65836b99018ed17e35e4a5e7f5488b667f747eae
MD5 ec4013e94e2e6c1324b81266c26c0ca0
BLAKE2b-256 11ef7c9c5b51488329ae5573b9e9e9f8386c5f0d98bae54ad23cfa44ff4eacfe

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.1a1.dev1-pp311-pypy311_pp73-macosx_11_0_x86_64.whl:

Publisher: wheels.yml on sergiud/hogpp

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

File details

Details for the file hogpp-0.2.1a1.dev1-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.1a1.dev1-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4b97923ce06c024c40226589c9f7730664260de81608c0b4f1f2c3c5a83d39e0
MD5 8c933b8394a8050be45e306fd5485f78
BLAKE2b-256 66dffba1f89cec031620a5dc9ecba4fabd9cfe9026e5c5d8a270963f249ba4e6

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.1a1.dev1-pp311-pypy311_pp73-macosx_11_0_arm64.whl:

Publisher: wheels.yml on sergiud/hogpp

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

File details

Details for the file hogpp-0.2.1a1.dev1-cp314-cp314t-win_arm64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.1a1.dev1-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 2317145e78624b69b6e6ddefcd469440865e41b4ee2ba9497973338bb9a2525d
MD5 c9fcb31d175cd5341079fa84b20842f6
BLAKE2b-256 63be63ff965e328a9528d6b9f9ddcd6952b332e4ab68f3398a2ae6e57bcec214

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.1a1.dev1-cp314-cp314t-win_arm64.whl:

Publisher: wheels.yml on sergiud/hogpp

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

File details

Details for the file hogpp-0.2.1a1.dev1-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.1a1.dev1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 78b73262dbcb0a9efecca80339174def04c58b6cedc6206e6dd0e792cf306801
MD5 5084401d77d1108b14f09db3567ae287
BLAKE2b-256 e73388ce644753cf89a4f5c2b5566fb17448095b186ffec56cc9167c264b6275

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.1a1.dev1-cp314-cp314t-win_amd64.whl:

Publisher: wheels.yml on sergiud/hogpp

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

File details

Details for the file hogpp-0.2.1a1.dev1-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.1a1.dev1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6fc275997e0ec977c956297a955c6b159ee1e29e252df1486879740f2c668feb
MD5 14e1b8cfde70810f2791d018a6a650ed
BLAKE2b-256 6546eca506b7834a431b56df7edc5a63eab2280c49b1f4bfe6752186333a4e17

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.1a1.dev1-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on sergiud/hogpp

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

File details

Details for the file hogpp-0.2.1a1.dev1-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.1a1.dev1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5795c450bb8bc960abfc499fa97f026f39702dcc83e536374587bd0bad08690e
MD5 558d694826d4423dbf9ad3d64755eb83
BLAKE2b-256 f3b51fb139e0a6922d6d31b1327d21d96092762025f57268ed59e81b30e79849

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.1a1.dev1-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: wheels.yml on sergiud/hogpp

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

File details

Details for the file hogpp-0.2.1a1.dev1-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.1a1.dev1-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ae8204938d1961a32614f9ea457d011a91aeaa1df45ff885e5660601861910d9
MD5 d3701e3e4ef29ccf180d248f5a585469
BLAKE2b-256 261f269bca38b516515d5a6ad309cb6f7a7091eec8acc9958a7e0c8fa86943ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.1a1.dev1-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on sergiud/hogpp

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

File details

Details for the file hogpp-0.2.1a1.dev1-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.1a1.dev1-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 97eef65580354579451331e3be1df953208ae7211e4d020075b75f15c79d4f23
MD5 461deb689d5912808adf4cbb64dad811
BLAKE2b-256 334b32681b85d45b36f32ff817f344d83c056a08f956b0d99b0830c888efe606

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.1a1.dev1-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on sergiud/hogpp

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

File details

Details for the file hogpp-0.2.1a1.dev1-cp314-cp314t-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.1a1.dev1-cp314-cp314t-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 bd0b4ed16364b9fb49a5dab486f409a24be6c4d4643291f5b0fe88d40f5b95f7
MD5 362216a2f6cb7c0714604e1986d959a3
BLAKE2b-256 fb072903d883409a4324d4a16a877a23f09f6ebed52fd359d8f9a74895feab8d

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.1a1.dev1-cp314-cp314t-macosx_11_0_x86_64.whl:

Publisher: wheels.yml on sergiud/hogpp

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

File details

Details for the file hogpp-0.2.1a1.dev1-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.1a1.dev1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0211635f5cfda40206796ec689b3a58e07431aa52837f1a1cbc26a7b61586b50
MD5 196bf3bc8a8f05d2f7e6417306ff8c9c
BLAKE2b-256 96d1fbf42f466b11b586a782b4d9b5a3f59a37ee175eb0dd058806f7d7eb4ac9

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.1a1.dev1-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: wheels.yml on sergiud/hogpp

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

File details

Details for the file hogpp-0.2.1a1.dev1-cp314-cp314-win_arm64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.1a1.dev1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 9ecae6bb901cede70aadc91c0732310d4e02f188f120c690e2a1abb49496b56e
MD5 1b0144f33b2b1be60da00a3661987d14
BLAKE2b-256 e8d420a23d1c5932a362125b5258f7902529ce1fcf068b8b2717ff7fa2e0a758

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.1a1.dev1-cp314-cp314-win_arm64.whl:

Publisher: wheels.yml on sergiud/hogpp

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

File details

Details for the file hogpp-0.2.1a1.dev1-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.1a1.dev1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 e504768a7d02d3098464e2f3063c50a8d1c606f102ac677a0a60ebf110b3ff1f
MD5 095907139c025ba020ea9b0538b893b8
BLAKE2b-256 275c2661727afbfc9a430e1b7c720b44422f7f6b5dba60ed69bc11a826d0584e

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.1a1.dev1-cp314-cp314-win_amd64.whl:

Publisher: wheels.yml on sergiud/hogpp

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

File details

Details for the file hogpp-0.2.1a1.dev1-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.1a1.dev1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a88279ad1ac808d4bda7f653c90c4c3564c81e88c94d677412cd3f88ea8246bc
MD5 f31bc75abe4225a4346db9a4bf90d970
BLAKE2b-256 8473eea486e285688b3cc238d0ab9e33080f6f61cb5bbbe2bf5bea0d88b2ffbb

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.1a1.dev1-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on sergiud/hogpp

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

File details

Details for the file hogpp-0.2.1a1.dev1-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.1a1.dev1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b36bce908d1851d1162bf2b0be8e537cfcc02fef1e4458ab4bba5c5e67c6bc9e
MD5 4d78e1728a7a52856099d5e019607d74
BLAKE2b-256 d7205e4e2fbbd9f8a5e189f52a1ae4ae7b851f0e1581cd84cd6a621a8b3ac48f

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.1a1.dev1-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: wheels.yml on sergiud/hogpp

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

File details

Details for the file hogpp-0.2.1a1.dev1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.1a1.dev1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1806ebcabf676ab8daaef27b54112eb13c1dbba66e5d9abaf8ab7cbfe8b8e89a
MD5 87fc88b99b265496e61e24dfa3a5afdc
BLAKE2b-256 754557060c4bc74c9aebb0a7dd1bcf8a24e6cbff395a48958830dae84e4da9cc

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.1a1.dev1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on sergiud/hogpp

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

File details

Details for the file hogpp-0.2.1a1.dev1-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.1a1.dev1-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c86f4b68acf53629b673f979f1a7779ded96a2514e321d5c9695858d7f857371
MD5 9a76178e769314b27f241469044a8cd1
BLAKE2b-256 5357b4e1e9d38c1de16c2359e145a44f49b2206704d8e9312c2d3712d4f17cdc

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.1a1.dev1-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on sergiud/hogpp

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

File details

Details for the file hogpp-0.2.1a1.dev1-cp314-cp314-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.1a1.dev1-cp314-cp314-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 977544e5f7125878ca063972750de585b8c84cbddfccbd3b610142e680d014c7
MD5 d2554baad4ff9816438a1e3f58900156
BLAKE2b-256 da2c9358ae5011efe5ae449c1b8c32b4294ed8307f6ab084738ba7a951ec5fe0

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.1a1.dev1-cp314-cp314-macosx_11_0_x86_64.whl:

Publisher: wheels.yml on sergiud/hogpp

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

File details

Details for the file hogpp-0.2.1a1.dev1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.1a1.dev1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6f7d1c47337ad2ff66f0b5484ad154490a07f074d96281927785054e8362bd43
MD5 4766cc054945673b1b4b83f0fad670ae
BLAKE2b-256 59465c516aef0b0efa15c44f451b91c8ddeb7bae6deef904a96bc1e0a9c460dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.1a1.dev1-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: wheels.yml on sergiud/hogpp

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

File details

Details for the file hogpp-0.2.1a1.dev1-cp313-cp313t-win_arm64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.1a1.dev1-cp313-cp313t-win_arm64.whl
Algorithm Hash digest
SHA256 b261a6e54024394649688440a617680470f78a464ab2196e481b00667fd5fbe4
MD5 e29727327268321c69124a7f980e953c
BLAKE2b-256 62bc4e3253e3212ac5b6406f9d24edfc368272df22b749dae5709c8c3ad4eb0a

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.1a1.dev1-cp313-cp313t-win_arm64.whl:

Publisher: wheels.yml on sergiud/hogpp

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

File details

Details for the file hogpp-0.2.1a1.dev1-cp313-cp313t-win_amd64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.1a1.dev1-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 2855a1d3d666abda1335b6e37e6ac22a9f016f05f002156d4197063aa009e7f6
MD5 e970febb80500af9db7be2b7c837b0f8
BLAKE2b-256 019206c9c810e4c70606851938635d954817d31b326f7711c2d59d19eed3cde7

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.1a1.dev1-cp313-cp313t-win_amd64.whl:

Publisher: wheels.yml on sergiud/hogpp

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

File details

Details for the file hogpp-0.2.1a1.dev1-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.1a1.dev1-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 813af3d8e001142519f1f1d55f9001d1cbca805b6ef757f3002285cb62baf9db
MD5 439ae1284cc64ef9f1f1c2e1b1769123
BLAKE2b-256 cf820e2a8deaf57230383805554fce1a90c7083f882377b06b87838c043e8c26

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.1a1.dev1-cp313-cp313t-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on sergiud/hogpp

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

File details

Details for the file hogpp-0.2.1a1.dev1-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.1a1.dev1-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 73be4c76fef18f73639d0d3dc2c82e0d21b29c85190d4ea17498dd6f169ead9a
MD5 59fd2c2a12c15023ec58b39286a09ce0
BLAKE2b-256 e5a000481531b8a4572aa9568af4a0eed232ba79e489a1776907f3a2128fb833

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.1a1.dev1-cp313-cp313t-musllinux_1_2_aarch64.whl:

Publisher: wheels.yml on sergiud/hogpp

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

File details

Details for the file hogpp-0.2.1a1.dev1-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.1a1.dev1-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2fa197bc73db6bba3211901f10b17cc7909e0cfd42eebcd3f118d38450169315
MD5 fdf697062c7206abe9b0c5e469ee915d
BLAKE2b-256 2bad0ed0481f12c5678ce9fe68a5dfb107b19dcc1061ca35f94bd1f9c42335f5

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.1a1.dev1-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on sergiud/hogpp

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

File details

Details for the file hogpp-0.2.1a1.dev1-cp313-cp313t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.1a1.dev1-cp313-cp313t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 34f9d5a97f3afbb0efa2149fb473939018467187b0f7e0deb757f83fa0d6ca5e
MD5 506645d2c326bb77799d373598400e74
BLAKE2b-256 7adb1be7d2982a1731ccd35183695c98f73a64359dbb3927a0318a421443b80a

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.1a1.dev1-cp313-cp313t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on sergiud/hogpp

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

File details

Details for the file hogpp-0.2.1a1.dev1-cp313-cp313t-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.1a1.dev1-cp313-cp313t-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 906a1207c6d7a6786f2a775196e3624f8f7611d6cc748d5451a8ee8f123237b2
MD5 380fbce4827deb01fee28c43010bba86
BLAKE2b-256 fb565c2d750a0fe68839635e404fda534db3129ce9eb9f7fd9d2a783b4ffd3c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.1a1.dev1-cp313-cp313t-macosx_11_0_x86_64.whl:

Publisher: wheels.yml on sergiud/hogpp

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

File details

Details for the file hogpp-0.2.1a1.dev1-cp313-cp313t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.1a1.dev1-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c6937fae1f0eee43dad7fb94e263776c4695961a624e2530f215e04587f46bc4
MD5 530b32525fbc5b04a6d371d0dc250396
BLAKE2b-256 003e675681b29436e5e7ea4f2a05ee12f16d89bee6d60917fe7211faac9cb842

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.1a1.dev1-cp313-cp313t-macosx_11_0_arm64.whl:

Publisher: wheels.yml on sergiud/hogpp

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

File details

Details for the file hogpp-0.2.1a1.dev1-cp313-cp313-win_arm64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.1a1.dev1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 350127ca653821f86d5b68cccbf893ab495ff9dc67743feb5497271de80d7169
MD5 8dc47d7ab8f0e845a7ee5198dcaf2698
BLAKE2b-256 29722f0009997d6bfd7425f150b6fd7e6753877aad3a5870c8a40301d6e9cc5a

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.1a1.dev1-cp313-cp313-win_arm64.whl:

Publisher: wheels.yml on sergiud/hogpp

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

File details

Details for the file hogpp-0.2.1a1.dev1-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.1a1.dev1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 963f98abc5935df7af7294caed33bc1783844bc6e33bb087b158b6a90822ef4e
MD5 23a7408b1fb8f2dc7c8f7239d90376fd
BLAKE2b-256 fa1f6b428ea35b479e8fb0a7b930e19874013f0bc8c305fec78f118204226a08

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.1a1.dev1-cp313-cp313-win_amd64.whl:

Publisher: wheels.yml on sergiud/hogpp

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

File details

Details for the file hogpp-0.2.1a1.dev1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.1a1.dev1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0c19b652f69a65194365cb5fce2886be0221276a3e94f1ca9f9c2c5461cff5bf
MD5 9b0f596e2cb8aa90d4e63aa6e5d21e36
BLAKE2b-256 eb8992cee416072b18abd0486f626fefdca0c07ea0601ec1a661c995192b15f2

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.1a1.dev1-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on sergiud/hogpp

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

File details

Details for the file hogpp-0.2.1a1.dev1-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.1a1.dev1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ad47aba1901c884b81025709858b0b6b65dfe208604091a868f5f9dc70351669
MD5 b7d84be5663b8ba0e3a13a77ff164647
BLAKE2b-256 a85b74acdfb4cedb761e6e49187435236ff17f68292e32e9a0345b9db28f355d

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.1a1.dev1-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: wheels.yml on sergiud/hogpp

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

File details

Details for the file hogpp-0.2.1a1.dev1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.1a1.dev1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 906cd0fec49b38087bc843c7cc956113d3906a5aa640375eef5f7b83fc56b577
MD5 c4bee00740133e5704eed64283f30b12
BLAKE2b-256 972d28e1b8c3591a8e8de36b8ed54c194f0e53cf45a3458c685c3bb0eb519996

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.1a1.dev1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on sergiud/hogpp

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

File details

Details for the file hogpp-0.2.1a1.dev1-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.1a1.dev1-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 69aa53fc75bccf6de3f40dbdda27fe4ef52879685bd96dfa010bf7b24b132639
MD5 a2ab166afde1260044473a520a3e34df
BLAKE2b-256 6bf754ae956eacfa3e81c99bf0fcc231459b626ca91d67c6762902252d8fa40e

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.1a1.dev1-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on sergiud/hogpp

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

File details

Details for the file hogpp-0.2.1a1.dev1-cp313-cp313-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.1a1.dev1-cp313-cp313-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 b892c3547517998ce0a9a37de53eaefcc25821770f29cd9126de8510a7be4485
MD5 4c78c3764fbc1dd5a0b8332d7b7c16b8
BLAKE2b-256 6ab9137952ac6e2292d69df5fdff535fe5bd2a47cc37e97cda142cd6147b6881

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.1a1.dev1-cp313-cp313-macosx_11_0_x86_64.whl:

Publisher: wheels.yml on sergiud/hogpp

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

File details

Details for the file hogpp-0.2.1a1.dev1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.1a1.dev1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2e5931765c8ca2749cfdd963628b019ff70ff68cab04ec80c96da131c1e0ed4f
MD5 86a3e38a520f3f24972c86e8edd36d13
BLAKE2b-256 9ac85d3278aa13fe005f746135f59e1429d50aef7684e24f75b13558eb4ad95f

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.1a1.dev1-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: wheels.yml on sergiud/hogpp

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

File details

Details for the file hogpp-0.2.1a1.dev1-cp312-cp312-win_arm64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.1a1.dev1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 ed35517130f5ed4b41fb086a00eebe7e190272ae29604329ad062f02599ee106
MD5 83d3d48016c80db3eaad357e5ae1132b
BLAKE2b-256 bd4a5c26777beeeb570efafbd543a56520513899c33ea209419415d5d78184fa

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.1a1.dev1-cp312-cp312-win_arm64.whl:

Publisher: wheels.yml on sergiud/hogpp

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

File details

Details for the file hogpp-0.2.1a1.dev1-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.1a1.dev1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 18e78e4ba5b1a544697a2c744a5bc41d3c363777e23526dac15fa126428e9501
MD5 b379fc6d8ad81e26e80987026f6f00af
BLAKE2b-256 d4f26bf97a89a5ea5d82a0bc9bbe36ea2292ea296c1cef04919f940298762340

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.1a1.dev1-cp312-cp312-win_amd64.whl:

Publisher: wheels.yml on sergiud/hogpp

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

File details

Details for the file hogpp-0.2.1a1.dev1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.1a1.dev1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 411bf5382b1d3f1eadb330d118c419853df5a9750a129baa1dc26d848ee8e7eb
MD5 d7e6fc0a77067299b76bc4f41b448c63
BLAKE2b-256 b4e80fdff128a848fcfaa6b0cf6a557fc4cce6d7e3791847c329f8a5e525ca96

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.1a1.dev1-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on sergiud/hogpp

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

File details

Details for the file hogpp-0.2.1a1.dev1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.1a1.dev1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 41f3dd77f04d6bd15578bcd9e3012f740e112916c52e2af463e5e780e0a26a90
MD5 cd80ce0a29d00dfd2e7813790c302e12
BLAKE2b-256 862c2dd4c5350cc51b939623a10e11c0c708b7eaeb6e68ae21cacf47e06bc454

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.1a1.dev1-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: wheels.yml on sergiud/hogpp

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

File details

Details for the file hogpp-0.2.1a1.dev1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.1a1.dev1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7c3305fa514c7db0c419969254288dd5b14e7594d7e88a3f49ae968c998f45ea
MD5 9befc700f6f4f7e81eb9ae8105a0faf4
BLAKE2b-256 8778978cf3c047c77c433f3d9c0ae3d259938cb635f3f2597385bf8066de6424

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.1a1.dev1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on sergiud/hogpp

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

File details

Details for the file hogpp-0.2.1a1.dev1-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.1a1.dev1-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4cfd8365303a318ae649fb6917a21bdf32935748a8ed0973f22a19818161bf28
MD5 a6348bf977dbd5f28382e60fde672947
BLAKE2b-256 2e5af66e7c1e6b0962cb668c7155aac8b1d7bb803970de65dfa633a9a157d4da

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.1a1.dev1-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on sergiud/hogpp

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

File details

Details for the file hogpp-0.2.1a1.dev1-cp312-cp312-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.1a1.dev1-cp312-cp312-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 98d85447d77c88a019439d5c73531717b11a14f4cd8718226516071a53337375
MD5 1c6a752e60f5eb12d7b376bed21cee9f
BLAKE2b-256 b6a9320551adcf8ad23a638ec27fed0da8b3b33e070ddb0e6d5a02b5ab6b79d3

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.1a1.dev1-cp312-cp312-macosx_11_0_x86_64.whl:

Publisher: wheels.yml on sergiud/hogpp

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

File details

Details for the file hogpp-0.2.1a1.dev1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.1a1.dev1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b93815f591e7e5394d2d2411524abde8d326ea55980d79cebd38f5f9a0e36439
MD5 58c78c951f509cd944b08fd6d85382cf
BLAKE2b-256 f8286d567ae35b27cb8f87c62430a7132fd51b89be290388cb836f2329e9a0e7

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.1a1.dev1-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: wheels.yml on sergiud/hogpp

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

File details

Details for the file hogpp-0.2.1a1.dev1-cp311-cp311-win_arm64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.1a1.dev1-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 92cfdb23ffad0764bd7574f6d0b1bd7bf218ed0f576048d3f85fb72cd153b803
MD5 d02a7a7d210e5bdd5b2c9e0c3f95878b
BLAKE2b-256 59f8039aab54410a6f584de0fc7989622de045cfbd805bea25fdfb3dae297f7b

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.1a1.dev1-cp311-cp311-win_arm64.whl:

Publisher: wheels.yml on sergiud/hogpp

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

File details

Details for the file hogpp-0.2.1a1.dev1-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.1a1.dev1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d27b23cd53b7833c4f8944ea8e3f2921e7e54d4847a67bdd6b26c7de7b96f97e
MD5 de51d14c2e393a092b90fb0a63c1dbc1
BLAKE2b-256 20e1e16c57aa664cb84cbf8d63fee6d158739ca55e9622a67956c97226545d32

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.1a1.dev1-cp311-cp311-win_amd64.whl:

Publisher: wheels.yml on sergiud/hogpp

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

File details

Details for the file hogpp-0.2.1a1.dev1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.1a1.dev1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9c43a0bd4399bbfdbf3675509d169390a307c3f457c0e44e13ade25e6ae28fb6
MD5 acd57c224bdbc3e22693831afaaf6ae5
BLAKE2b-256 aed6176dfaa784770dee9c650974f22db2fa90eaad22c32e9f0f291a04498d01

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.1a1.dev1-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on sergiud/hogpp

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

File details

Details for the file hogpp-0.2.1a1.dev1-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.1a1.dev1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3b9c618549956d0f9cbcd394db8d4b1892abc2eaf7c1248d45af5884d0e62475
MD5 4f894a346ffe438fa866d0f9d259551d
BLAKE2b-256 c59e4a54f11eca3b75d75c28321ee9d0fdba368688cfbcaddf36f40e074ff561

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.1a1.dev1-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: wheels.yml on sergiud/hogpp

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

File details

Details for the file hogpp-0.2.1a1.dev1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.1a1.dev1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ff0cde9b4a2250252a1ae8275ba246eab8f52a59ae2a9c5370eea496e31bb279
MD5 84c2aea21f77aaadbe100dea8d538c75
BLAKE2b-256 c00c54dd84f584997b6af91293fdaa2cc0945714e92623abe1ac51868f32afcc

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.1a1.dev1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on sergiud/hogpp

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

File details

Details for the file hogpp-0.2.1a1.dev1-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.1a1.dev1-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bdc020d1932afc53463885d018ca786141789d8c8a8ff598a9b4f1e68a865364
MD5 86f5322c3f3a2e9367e8e47bad3db102
BLAKE2b-256 b6426ad7af3b54eee7584c6fbf68b0dd342d272bd77266e11a9880aaaf0fe943

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.1a1.dev1-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on sergiud/hogpp

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

File details

Details for the file hogpp-0.2.1a1.dev1-cp311-cp311-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.1a1.dev1-cp311-cp311-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 4c5b25f07569189f99e440010a235814340ae5058b8f0ffaa3f1261321dd8744
MD5 efe50a06f088df575f75124ff9dec618
BLAKE2b-256 8d15cab703f020d4fefa6af459048249706d4dea6d22f4adcb063c0c798c6f0b

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.1a1.dev1-cp311-cp311-macosx_11_0_x86_64.whl:

Publisher: wheels.yml on sergiud/hogpp

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

File details

Details for the file hogpp-0.2.1a1.dev1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.1a1.dev1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5127806a956010fb1fdfc61207313dbc8323610822d16ab263300a247bf89ece
MD5 a46f14c3f26be47fc9a823d6651b7802
BLAKE2b-256 51ed37c185df98257fb42cb4ed7cc19ca0d062916b994799c1396caef4095a10

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.1a1.dev1-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: wheels.yml on sergiud/hogpp

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

File details

Details for the file hogpp-0.2.1a1.dev1-cp310-cp310-win_arm64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.1a1.dev1-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 dbb2aa645dc6c73375b3eca2733ef04d1e4f2fb22db3c7ce208888c9a2becbe4
MD5 76a803dac925aeafddba79ebfd7c1742
BLAKE2b-256 5e162242368eea28e566e2a7e6192d19925dc9d0d25f2c07aa2645f0b6a864dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.1a1.dev1-cp310-cp310-win_arm64.whl:

Publisher: wheels.yml on sergiud/hogpp

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

File details

Details for the file hogpp-0.2.1a1.dev1-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.1a1.dev1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d15aee84538e4c59e3df4294f1132bb1f2fac5865d9df0b343ef8b3d2a2963ca
MD5 499d54dc1891cfc009c799083829e954
BLAKE2b-256 177cba306d503919380b9c25211d75b108f07424b688347080e2fcd14e3e6e32

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.1a1.dev1-cp310-cp310-win_amd64.whl:

Publisher: wheels.yml on sergiud/hogpp

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

File details

Details for the file hogpp-0.2.1a1.dev1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.1a1.dev1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cbdbb0f183f15294ae42edac9186982f3e6a6bc782b7b363d4802e864c42459d
MD5 6ae7d5311558242a414237cc5d5fc436
BLAKE2b-256 a1d4bad3ab4014d5683d82006f286064e80f808e462d94055f85d8872c020c64

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.1a1.dev1-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on sergiud/hogpp

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

File details

Details for the file hogpp-0.2.1a1.dev1-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.1a1.dev1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 32a9e8cfb46ddeb50858233eac6451f591184f81e176a449ae4bbdc56cb1326a
MD5 9d35fac5fda85817784b70d0c7aed618
BLAKE2b-256 07bb944e8f1a4622cfa1d3da8f40278b1604189de66f8e7789c0c43cdb01c5bc

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.1a1.dev1-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: wheels.yml on sergiud/hogpp

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

File details

Details for the file hogpp-0.2.1a1.dev1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.1a1.dev1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b87351f54e6464217c00916f4c51ff933600ccbc2cbb7cb6fa6c71a495bf8685
MD5 9e7a57e0372b140280984ff0f2979f1b
BLAKE2b-256 34c93ba2d1c716cb36221bdff7821ce8fa5ccaef6f5f5bc69cb97fb5667cd33f

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.1a1.dev1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on sergiud/hogpp

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

File details

Details for the file hogpp-0.2.1a1.dev1-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.1a1.dev1-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1d8b5f3492b2468b4ea35568ce77925962b83c70e082395977f6d235d8b4ced2
MD5 68691d525adc4e57dcac3b5a83c5ccd6
BLAKE2b-256 ccab0f75569c8ebe0bed069e6d143e434cfc2f3503c4c55f9aa508fd64d0ffcf

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.1a1.dev1-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on sergiud/hogpp

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

File details

Details for the file hogpp-0.2.1a1.dev1-cp310-cp310-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.1a1.dev1-cp310-cp310-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 d3201c46aa9e4ca360fc3e3d15de90b03b41ba803bf48dc421495dbc4500a29e
MD5 496c1ba1600f32843510537896929de5
BLAKE2b-256 0e30d2f428c73d2a5f37817a9f7f6fa6d7d1e0b1d3b5e08aff37f205da73c2bf

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.1a1.dev1-cp310-cp310-macosx_11_0_x86_64.whl:

Publisher: wheels.yml on sergiud/hogpp

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

File details

Details for the file hogpp-0.2.1a1.dev1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.1a1.dev1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 40676db8a56e69d9c3e0c4069c9e6af2940625d61405483120ff81026fd68c3f
MD5 5f3fa921f52a442b6cd9c14010462b50
BLAKE2b-256 ba7a840e955898a89d552b78bc938839e40a5743c61c4da0d898a96ad06caa23

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.1a1.dev1-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: wheels.yml on sergiud/hogpp

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

File details

Details for the file hogpp-0.2.1a1.dev1-cp39-cp39-win_arm64.whl.

File metadata

  • Download URL: hogpp-0.2.1a1.dev1-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 316.0 kB
  • Tags: CPython 3.9, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for hogpp-0.2.1a1.dev1-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 17487ab4fc78e5708655a5a978b1f96297a17864ab9574eac158c6a024842e32
MD5 db70da81fd2ffc0b6283bb94a662fe62
BLAKE2b-256 eb87a35726dff3d529168a4a00d49f48602ea8062caaaae3dd045940d51b3453

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.1a1.dev1-cp39-cp39-win_arm64.whl:

Publisher: wheels.yml on sergiud/hogpp

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

File details

Details for the file hogpp-0.2.1a1.dev1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: hogpp-0.2.1a1.dev1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 413.2 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for hogpp-0.2.1a1.dev1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 7246639f91dc05d9434b7b60b50f701b9f5de04477e560bef68c3589b659607e
MD5 ffbdb5ec666ae668783f7e2a193149f6
BLAKE2b-256 0a31725341126926081959e7c89a6d0fd47ce08ca9fc69cb00e21f3b831f9887

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.1a1.dev1-cp39-cp39-win_amd64.whl:

Publisher: wheels.yml on sergiud/hogpp

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

File details

Details for the file hogpp-0.2.1a1.dev1-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.1a1.dev1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5192b2c136ecdf6608ebef7f170acc9558d6b8410d9db31c0fe5cfc485524518
MD5 d800c5bf57c310449975b83a39a08e87
BLAKE2b-256 14282728b6f7ae0308262e5053ff0c912b7884585a0f701285ca8bc47ed9a90c

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.1a1.dev1-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on sergiud/hogpp

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

File details

Details for the file hogpp-0.2.1a1.dev1-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.1a1.dev1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 690e771a9b0def326279732b55670a3741e868e771617f0b405912c15f3a0fd8
MD5 2f2c4f3b23504f3390b5e7ebb5ec480e
BLAKE2b-256 118ebbf9d01b171bc3a8b5170859bb2d522541b6651cbdce8dbdb3e175b362ba

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.1a1.dev1-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: wheels.yml on sergiud/hogpp

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

File details

Details for the file hogpp-0.2.1a1.dev1-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.1a1.dev1-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9fa0fe29e70a492804285f18d07d6c76574a13b3e659a1e1679fc233b2ce6392
MD5 a42371c302a612fdcc2a1946bb3bb71c
BLAKE2b-256 d69d52b61707ab30c1889a36882e2cba6ffa672dac5546cb6a619ce7b60bbca9

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.1a1.dev1-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on sergiud/hogpp

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

File details

Details for the file hogpp-0.2.1a1.dev1-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.1a1.dev1-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3cf39adbfdad8e33bb1810d3be8683b2f0cca96d9145b9791a20d24aa1d43ed8
MD5 0f2ff3131473e79a3e91aeb0b7970c15
BLAKE2b-256 d27f6323f3751c3a15bd51c6595e6b1546e52322ceb6c16eebe0d1625ffdc187

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.1a1.dev1-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on sergiud/hogpp

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

File details

Details for the file hogpp-0.2.1a1.dev1-cp39-cp39-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.1a1.dev1-cp39-cp39-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 ee9f187fdbde2aa4e9377d32bbeece1abc9b954c13cbc70aecb290b1253126af
MD5 463adf2ab698288b039cccab2db68c5a
BLAKE2b-256 20ae59674c8ec46f4bed92cb316f7b5f9dea9f80a0f94d4336544dad6bc8626d

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.1a1.dev1-cp39-cp39-macosx_11_0_x86_64.whl:

Publisher: wheels.yml on sergiud/hogpp

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

File details

Details for the file hogpp-0.2.1a1.dev1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.1a1.dev1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 60efab03214ceb3f15909fdd79f882f9a9f871b1a61d9a614dc58b276e680ce7
MD5 eb9582e27ab40650dfdb1fa235eaf797
BLAKE2b-256 d9747a9d1f712f2791202864b36da0d4088ac9032c039a503eb05fbea8dd2287

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.1a1.dev1-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: wheels.yml on sergiud/hogpp

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