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.0a1.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.0a1-pp311-pypy311_pp73-win_amd64.whl (395.1 kB view details)

Uploaded PyPyWindows x86-64

hogpp-0.2.0a1-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (534.6 kB view details)

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

hogpp-0.2.0a1-pp311-pypy311_pp73-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (511.0 kB view details)

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

hogpp-0.2.0a1-pp311-pypy311_pp73-macosx_11_0_arm64.whl (352.6 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

hogpp-0.2.0a1-pp311-pypy311_pp73-macosx_10_15_x86_64.whl (430.5 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

hogpp-0.2.0a1-pp310-pypy310_pp73-win_amd64.whl (392.4 kB view details)

Uploaded PyPyWindows x86-64

hogpp-0.2.0a1-pp310-pypy310_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (532.9 kB view details)

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

hogpp-0.2.0a1-pp310-pypy310_pp73-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (511.2 kB view details)

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

hogpp-0.2.0a1-pp310-pypy310_pp73-macosx_11_0_arm64.whl (351.7 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

hogpp-0.2.0a1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (429.1 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

hogpp-0.2.0a1-cp314-cp314t-win_amd64.whl (438.3 kB view details)

Uploaded CPython 3.14tWindows x86-64

hogpp-0.2.0a1-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.0a1-cp314-cp314t-musllinux_1_2_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

hogpp-0.2.0a1-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (524.9 kB view details)

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

hogpp-0.2.0a1-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (519.8 kB view details)

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

hogpp-0.2.0a1-cp314-cp314t-macosx_11_0_arm64.whl (379.6 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

hogpp-0.2.0a1-cp314-cp314t-macosx_10_13_x86_64.whl (447.6 kB view details)

Uploaded CPython 3.14tmacOS 10.13+ x86-64

hogpp-0.2.0a1-cp314-cp314-win_amd64.whl (407.7 kB view details)

Uploaded CPython 3.14Windows x86-64

hogpp-0.2.0a1-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.0a1-cp314-cp314-musllinux_1_2_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

hogpp-0.2.0a1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (536.5 kB view details)

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

hogpp-0.2.0a1-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (525.8 kB view details)

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

hogpp-0.2.0a1-cp314-cp314-macosx_11_0_arm64.whl (354.0 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

hogpp-0.2.0a1-cp314-cp314-macosx_10_13_x86_64.whl (432.3 kB view details)

Uploaded CPython 3.14macOS 10.13+ x86-64

hogpp-0.2.0a1-cp313-cp313t-win_amd64.whl (421.3 kB view details)

Uploaded CPython 3.13tWindows x86-64

hogpp-0.2.0a1-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.0a1-cp313-cp313t-musllinux_1_2_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

hogpp-0.2.0a1-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (524.9 kB view details)

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

hogpp-0.2.0a1-cp313-cp313t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (519.8 kB view details)

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

hogpp-0.2.0a1-cp313-cp313t-macosx_11_0_arm64.whl (379.6 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

hogpp-0.2.0a1-cp313-cp313t-macosx_10_13_x86_64.whl (447.6 kB view details)

Uploaded CPython 3.13tmacOS 10.13+ x86-64

hogpp-0.2.0a1-cp313-cp313-win_amd64.whl (397.5 kB view details)

Uploaded CPython 3.13Windows x86-64

hogpp-0.2.0a1-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.0a1-cp313-cp313-musllinux_1_2_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

hogpp-0.2.0a1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (535.5 kB view details)

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

hogpp-0.2.0a1-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (525.2 kB view details)

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

hogpp-0.2.0a1-cp313-cp313-macosx_11_0_arm64.whl (353.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

hogpp-0.2.0a1-cp313-cp313-macosx_10_13_x86_64.whl (444.7 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

hogpp-0.2.0a1-cp312-cp312-win_amd64.whl (397.5 kB view details)

Uploaded CPython 3.12Windows x86-64

hogpp-0.2.0a1-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.0a1-cp312-cp312-musllinux_1_2_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

hogpp-0.2.0a1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (536.6 kB view details)

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

hogpp-0.2.0a1-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (525.5 kB view details)

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

hogpp-0.2.0a1-cp312-cp312-macosx_11_0_arm64.whl (353.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

hogpp-0.2.0a1-cp312-cp312-macosx_10_13_x86_64.whl (444.5 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

hogpp-0.2.0a1-cp311-cp311-win_amd64.whl (397.0 kB view details)

Uploaded CPython 3.11Windows x86-64

hogpp-0.2.0a1-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.0a1-cp311-cp311-musllinux_1_2_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

hogpp-0.2.0a1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (538.8 kB view details)

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

hogpp-0.2.0a1-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (511.4 kB view details)

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

hogpp-0.2.0a1-cp311-cp311-macosx_11_0_arm64.whl (352.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

hogpp-0.2.0a1-cp311-cp311-macosx_10_13_x86_64.whl (432.1 kB view details)

Uploaded CPython 3.11macOS 10.13+ x86-64

hogpp-0.2.0a1-cp310-cp310-win_amd64.whl (394.7 kB view details)

Uploaded CPython 3.10Windows x86-64

hogpp-0.2.0a1-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.0a1-cp310-cp310-musllinux_1_2_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

hogpp-0.2.0a1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (534.1 kB view details)

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

hogpp-0.2.0a1-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (511.7 kB view details)

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

hogpp-0.2.0a1-cp310-cp310-macosx_11_0_arm64.whl (351.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

hogpp-0.2.0a1-cp310-cp310-macosx_10_13_x86_64.whl (430.7 kB view details)

Uploaded CPython 3.10macOS 10.13+ x86-64

hogpp-0.2.0a1-cp39-cp39-win_amd64.whl (398.0 kB view details)

Uploaded CPython 3.9Windows x86-64

hogpp-0.2.0a1-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.0a1-cp39-cp39-musllinux_1_2_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

hogpp-0.2.0a1-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (534.4 kB view details)

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

hogpp-0.2.0a1-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (511.8 kB view details)

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

hogpp-0.2.0a1-cp39-cp39-macosx_11_0_arm64.whl (351.8 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

hogpp-0.2.0a1-cp39-cp39-macosx_10_13_x86_64.whl (430.9 kB view details)

Uploaded CPython 3.9macOS 10.13+ x86-64

File details

Details for the file hogpp-0.2.0a1.tar.gz.

File metadata

  • Download URL: hogpp-0.2.0a1.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.0a1.tar.gz
Algorithm Hash digest
SHA256 74f04cff0eafeccec26f7c3ade308a54d81547353bbefbb71b38bf06c4cad935
MD5 de66a7360b65df3e9ae48968e1e2a584
BLAKE2b-256 db763b592f026ef35e4e77a9f7998988e4e39df641db7e06a9333db67ff56855

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.0a1.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.0a1-pp311-pypy311_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.0a1-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 da53b33aa85422303dec555c7e5a7824bb12fc276c46b6e1ef6d654bb36d2fc2
MD5 da8666d521ff6e30c2d859161fbe32d4
BLAKE2b-256 34b6f1e123087783136501ab267f1f127de6f89a25f7011fc04751ceca145d73

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.0a1-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.0a1-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.0a1-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d2139e75a61441fefe7135442b0d140c20d6bb90b34a34b6267148668c314d9e
MD5 48f692d668d679101fa02cd74ffca954
BLAKE2b-256 c8b7ae82756623a2a4586d874153731cb0b6bc8aec9f9546cec1ad1f0d198f52

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.0a1-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.0a1-pp311-pypy311_pp73-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.0a1-pp311-pypy311_pp73-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e2ba75cf849e1b4bf90eaff9066fa9882273723a17bc9573b58d07ad69fc195c
MD5 ec082bb36e086d1b695f7b6fceb661e4
BLAKE2b-256 17eca9291031b4513367cd9c586c02060bd737020b95e628a9b8d5531451e2d7

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.0a1-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.0a1-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.0a1-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 54d70fee75372286a8d16ccd85ebd02930e46479b3e5a4835a302d41313e3bbc
MD5 afb69759b1dadc615d2c9744c36d2bc4
BLAKE2b-256 53e2a0c3149e88d391c7dcc951e1dedf89716f435355411ac79ac84a9136d773

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.0a1-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.0a1-pp311-pypy311_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.0a1-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 ea6e934e621feac10c8a50df78a9c48a483ac9cee79331181b66966a16423d68
MD5 d5884b320a6b9f9ea1f979783f85fb39
BLAKE2b-256 58b1ef68abea24a963fc5c3bf40d466dfd84eaf827bd2bf97aa240324fdf960b

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.0a1-pp311-pypy311_pp73-macosx_10_15_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.0a1-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.0a1-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 f6ee3906453b6c883f9eebeebfeab17189077e17358ba723107950b1fc4a0d2a
MD5 063d4a55bd64acba3150e5161d9db0c6
BLAKE2b-256 a448d65e1867828965f3bb9fa1e0ddab93f7ceac17ef553afb5ab4c7a8ddd2a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.0a1-pp310-pypy310_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.0a1-pp310-pypy310_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.0a1-pp310-pypy310_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f73d45fed7508e412814425b1abc9c4c136a8de64624807d2c4bdd3887da914f
MD5 dd46b9ffb35e9b72f0484b73c224b3a8
BLAKE2b-256 fd0a399c9a6d26714618bfa05ed8a9ed1dcc229cd66d58e9a8e193dbe1ec86df

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.0a1-pp310-pypy310_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.0a1-pp310-pypy310_pp73-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.0a1-pp310-pypy310_pp73-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 77ba577f627b3b64e21fe389fa5a1f7b29008113ce8c122280b844eb7acd3606
MD5 4135b7e4435a13bfd07f29e0f457bebd
BLAKE2b-256 b46a02f973f5ab1a4d65eb7978abe9afd00ad6f4c63243783e367146f5e5371e

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.0a1-pp310-pypy310_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.0a1-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.0a1-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ad78d797311d5119af2ec6efb0b3e58e50f6fabadfe4c209600b5cb49b59c180
MD5 3d447072013a1517a865a123a14efe2d
BLAKE2b-256 1e50fa77251eb6d481b6101806537386df3cb68b21f528b076fed33acb0a6d01

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.0a1-pp310-pypy310_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.0a1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.0a1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 7b2b14c01f714e857d2c53785d598d6a4421588c75ec16c4ee773e383e43d713
MD5 1de5282783723d03782047fbac1d478a
BLAKE2b-256 9356126cae1c0c03e0598964584508d027a53bc21fb036ee603bb79084bbdfb2

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.0a1-pp310-pypy310_pp73-macosx_10_15_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.0a1-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: hogpp-0.2.0a1-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 438.3 kB
  • Tags: CPython 3.14t, 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.0a1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 bd7629a49c9087aed50c7b2761ad85aa309f83c73a8833773135cb4d09b31e25
MD5 5045b82abb34f0ffc73d77d545584ea0
BLAKE2b-256 ee93935607da10417fa733c971b48dd6f11a94f638c1ccd90513b85e57186f8a

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.0a1-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.0a1-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.0a1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 11081c5f5a2eef78052774b88bfc2c4b66b71e1ef20001513f5c42251544e001
MD5 037a7f4490aafbe2671de506dcc734e3
BLAKE2b-256 41f53e6e57d9e26e5f57482c8b5caf677b9a6be89aa3f557f3e8cc56cb079914

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.0a1-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.0a1-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.0a1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 71717a980b4eea2481f8cb2169c88e2a2e1eefd906e92f04e211e4ef1bd2c8b2
MD5 509710b5c44e4bfe9a4cc72c5c1cef5b
BLAKE2b-256 50595444ad807469bcf4b155b83f6e2c5fb4fbcf11c14a48e90fbc1405f58a17

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.0a1-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.0a1-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.0a1-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e27f816543cc52bf60b958c82a4c1d7f367b6b985a1c22f8f828df91e9ffeb25
MD5 5d06b3390ccf6d58fc3f9ed4ef6559e2
BLAKE2b-256 aef7fec0e69c047eefdc31855ddd5ed0a4bba0062f8d98af88bf1ec1b5227c16

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.0a1-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.0a1-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.0a1-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8ef612380a381504421bf1d36624ceee6de6bff4b6d2965d33f43bccc2ddf6b0
MD5 e75ab91ce4ca73270deba2eac4c7f86b
BLAKE2b-256 57d03bbe029588af06fc1af819ad3097995186c44891730d2d6c50197d7bf32a

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.0a1-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.0a1-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.0a1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 340817b64b46b4a394a8e81b9ca5ac2103040782ef9c8e79a598b0feb9d844ba
MD5 e248a6482126c014554d6d0c363f58be
BLAKE2b-256 b682f525d076d8b5bb40b7025e57c5f4f9072b53a0297382a779078e0e6f2f7a

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.0a1-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.0a1-cp314-cp314t-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.0a1-cp314-cp314t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 56f0355bbef1e763d399276a4ae485765ac473f6e280c6061b0f86b2877f1da6
MD5 826f86b4e4741808a2468921823a60f2
BLAKE2b-256 c06b878cc96df2d38d61864167c8db478f94eed18c1af9ddac6ea1c14a2fd357

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.0a1-cp314-cp314t-macosx_10_13_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.0a1-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: hogpp-0.2.0a1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 407.7 kB
  • Tags: CPython 3.14, 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.0a1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 1145968aa5f1cf185287cc2e156b2e620989e1176dc8e67e3b88f43da888e59f
MD5 af9719d85435e957325969bc472d69aa
BLAKE2b-256 b38f8bbbea5eee9f312f87dea1c7c499c2f237bfae39c7d9305f6740d6f53421

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.0a1-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.0a1-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.0a1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b1785ce120eca80575b5c81b88205e36e183c79e63235b58533b226dba45202c
MD5 ad39cbc2876e5e1363f183d47c72cc80
BLAKE2b-256 e5d23c3618694bedc107d4080871c2b7462d396b3e87597d37aebaba76a23ff2

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.0a1-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.0a1-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.0a1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9c5e5cc084e53a1f8100c979142280a3bd6fab49f12e92ece69b3a3ecf33499e
MD5 63562025639ff90d665bcd988b709235
BLAKE2b-256 f716f2e8cbf4920f9ec394af31f05c842d59eed68671d74ccdcf09e4d17572fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.0a1-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.0a1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.0a1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 50966cc3100ea27529aa11692748ddcaa5d7aa12f4636d0462509445cab46085
MD5 8c6c68dc1d6ca061c61bde026cc1bfbd
BLAKE2b-256 9585fe5d7b50154a96d42249ff05a0be5977ff842b9df6716f4bf5510acabc40

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.0a1-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.0a1-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.0a1-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 13c1d375aac37d2313fdbf0f55058a7566f6fbe4a581551f0b24711f70ae27f6
MD5 f804e38b71743fc97c72307ee170cc98
BLAKE2b-256 69f95c7b7f45ce432e97f2175da93155cc4a7d0f48eb6f6e8f55d4213044b8a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.0a1-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.0a1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.0a1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dcc9b043524b5ca193c8286dfae8ec1afae73cd433a70d199976905372e6d74c
MD5 f00f08242a30bafb292376bfe8602166
BLAKE2b-256 0e6aa92abf90deb8af66bc40ade914dfbc941d64ddf0a550810c909cc5543119

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.0a1-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.0a1-cp314-cp314-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.0a1-cp314-cp314-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 5595dad58a1e6ceee7e447a99626b1a7ac2e726a2a4107516adc9862eefef161
MD5 f2f8ec301a7970685873ba4806ef55fa
BLAKE2b-256 5d0bbac65c1ec1813b9d09be0776ae49fb3dec05b803895d5e5a64c5f7419c65

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.0a1-cp314-cp314-macosx_10_13_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.0a1-cp313-cp313t-win_amd64.whl.

File metadata

  • Download URL: hogpp-0.2.0a1-cp313-cp313t-win_amd64.whl
  • Upload date:
  • Size: 421.3 kB
  • Tags: CPython 3.13t, 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.0a1-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 5c0eab9a0c53f31f644d7c8f898ade90d8d2b0a4798f57a9062729f6b9ba8919
MD5 c8edc68f516878fe2f0d6fa12fb3110b
BLAKE2b-256 8cac21348d8edb50a1bcb6641011846ea3362c60c8bb150d279100d823a3b230

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.0a1-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.0a1-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.0a1-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9dc5a9176a6383fef99a58318faaf2c8e3721d636fca9fa2d3b3da8ae960d99a
MD5 586ce1e5af7cf573a025ac60db626875
BLAKE2b-256 81b5e472304c30b8741af7d60e31626f2fc63c054974749710bf9f824809b283

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.0a1-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.0a1-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.0a1-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 385d435d5c94da4aca259ea3172158251e15a4c710a8b5aa03cf9b42fa0f5dc5
MD5 ccf606d822e0131554a3e74df29ff05a
BLAKE2b-256 945312313fa42ea6c3e3f50eb0d251fdf4710a90aab550ad03e29103920bd799

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.0a1-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.0a1-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.0a1-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0583a93142cadb9a499aa841165b112c0a2da63e19a6329cc0e6083211d3cae5
MD5 d57e36a4e27731e333084e0696848c7d
BLAKE2b-256 479caf0309fe9e52f837775f42e58d61780c8c1448acc7e537443fcc7833b81e

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.0a1-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.0a1-cp313-cp313t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.0a1-cp313-cp313t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4f81a0759766793a067ced44aa9cbeaf82281d8f0c6fb38c21a93093922322bc
MD5 8f24821fcead71843e387a0f125f42c2
BLAKE2b-256 3f0249d39e2ee3146c7ba80114eed7b5c1eb9eb28960f0ad08be5fcd4c3ecfb2

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.0a1-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.0a1-cp313-cp313t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.0a1-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 101a9fedd29c66b65a1ec06a7cb75023c3a2296595123ccfd866a1b95c2426af
MD5 81c0f8cabb5edf85162bc03f48fb30f9
BLAKE2b-256 2f1ba8e439d88e7f737ad173bb82af865283360025eb43f9ec6a92adecf918ac

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.0a1-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.0a1-cp313-cp313t-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.0a1-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 6e52acaaaf9ebbac9037f01ffd240351027f21f425227862c4a9b3310a97b719
MD5 55f1f3e9e237ff30a16fb0ba77c2cfbc
BLAKE2b-256 7273e7f5d9a8287712008cdc5909cfd10483b6aec967491673b817fc13b9624a

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.0a1-cp313-cp313t-macosx_10_13_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.0a1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: hogpp-0.2.0a1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 397.5 kB
  • Tags: CPython 3.13, 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.0a1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 6a94595262614bc4efdd09e3e18b281f34ff0de5d041957df8e9383a2a321cda
MD5 07f59d1f88e7cc828b34cc42c54b6ea0
BLAKE2b-256 42efbd98d7def27297110bab1408a8b5c568c6c3021597af05a5074a3a41e29c

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.0a1-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.0a1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.0a1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ec474916be54a3ce22ea07826b55c16421a136731996ba2aa72cdccfeb671cd2
MD5 a3fb17fa5bcf757918859502c12f7048
BLAKE2b-256 838b7fa4c6e75ffb1efdf5493be67a51249adc697019ff47078c00963af9bd6c

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.0a1-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.0a1-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.0a1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 63e2008d558a3641992fc8124cf341be382b09d741fc19cb1211a89d037f1cf5
MD5 713d821f3de622b1292c515d83f2be12
BLAKE2b-256 1f7b0c67781e8add25da2e9662c6c754d75583d9d2d264de15be382f320eda3c

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.0a1-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.0a1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.0a1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3b8a2c6f88eae2cc4080c456b44e907675d76ebb39e0413e012cb82c5e9b2cb0
MD5 bb4f1aa6814a50179a17a7779e071c7b
BLAKE2b-256 2f393c598f1eac227399fb35e72f57e977887e90c74958c2c01c44a42716510d

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.0a1-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.0a1-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.0a1-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1d8729b30ddb4d7fd62dda5218fee2388af71612fb2172561551182de400f342
MD5 844125679df5c5cb1221ce651f42094e
BLAKE2b-256 0ad95007f9d7364f12986e6a1d0ebd3d855bb3ab7734fba5d60f467cf052dec2

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.0a1-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.0a1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.0a1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 03907ae53695d864f3b3e8c2d736c5aec18fb9dacacd4e953a3d34b026b18288
MD5 66c0b720bf9d45f755387657b03ab844
BLAKE2b-256 e3d2df9651c36b2f88c6d0daac2cab306a6793507b991b966b94e4cd180fffed

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.0a1-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.0a1-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.0a1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 f4af0af3eeb1856a9cb0dcbeed2fe3b7e8dc1b0f50a7be38ef2eb0c426a97b1d
MD5 5c7fc6cd9ad2c257a93b9e2a731bd641
BLAKE2b-256 562fa19abc924a652fdd72e0366bcb6218fbc95432261bc6fded627232d0a5bc

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.0a1-cp313-cp313-macosx_10_13_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.0a1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: hogpp-0.2.0a1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 397.5 kB
  • Tags: CPython 3.12, 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.0a1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 210cdfa8faf2f5335bb5077e51c3e24eb88894f78da6df00691ebca6e8454c11
MD5 99052a170de476ac7a3958ec8dd1b57c
BLAKE2b-256 4b19100ece374d0a314f899c9a313b283b1dfb588c261cd7f564a074d20cb7cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.0a1-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.0a1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.0a1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 859d315312deb987d11882d6c54777fd1a8fc7f1688a628a9778a481e9d3c55d
MD5 5eca4e3c540f0d0b18ec6275aa1fe373
BLAKE2b-256 0bfa104e11c80fcc4c91f4bede027129fec6d41d7136f00f54baecaa16b9af05

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.0a1-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.0a1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.0a1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ef7dc91ecec74ab341d55c1f0bfa6da1977ba0e148eb6d2300cbf47b160998b0
MD5 1da64718ca967b39b7c6f7f2ec47b4ec
BLAKE2b-256 530146bc91c023c85ef603f4f503ced895e5ffb43d003b4e6214d1c8bddacdc8

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.0a1-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.0a1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.0a1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 59b12dbcacd28a6d2ac822eaa8f5bcafd45dc4022bd0dfbfd10c0e0d913f19bd
MD5 74dc2a5988b4e8009fb883c4354715b3
BLAKE2b-256 9c12a46b0639c020ad8f76198dc92525da19fdcfc66309c2e4d5c6617185cfb2

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.0a1-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.0a1-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.0a1-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 84eb9c547f12a82354fd169cd7a30d36278379a2c12957308df9e0fda27f1b25
MD5 14c96e54ab4676b97a361344d90bacb2
BLAKE2b-256 9b6a1bbad70b5ef1601d2f4af5b095ea01bd4bf2037eefae2ee265555c568fc6

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.0a1-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.0a1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.0a1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7c5d3101a85c3520910f7924e195e22c4706a43a26c184058a6998e8f3e190ac
MD5 8146d50c21850d0eaa53412909f79c9b
BLAKE2b-256 f9eb33fa0fe01f6035ea4d5868580ee6a1a37d1d7e7298cfa70e00b6f14f480f

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.0a1-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.0a1-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.0a1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 a451252249fb38788961c08104511a1ba4b23ebbdd2a5c7d418f49b5c95f0908
MD5 69869b224a5be111835a38fe2e3ad9f1
BLAKE2b-256 6bd34922fc4caa934f191e70f701719d7a533e90263b0f1029039f94191430d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.0a1-cp312-cp312-macosx_10_13_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.0a1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: hogpp-0.2.0a1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 397.0 kB
  • Tags: CPython 3.11, 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.0a1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 402545b4d1f6c732bf0391d9d1e0813158b3901fa1f3914c260de42c853accb8
MD5 8b56e634663dc824f0c568f46cf8db30
BLAKE2b-256 30090a512be9be01b0a378653acafc0e267749f3ea67231386ee813e7727129e

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.0a1-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.0a1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.0a1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 567323def71bc91c78f89d0a82b0a13d84ecdb50abb607b9fc86057e0b71e86f
MD5 4c5c306ec6761070dce3f5abb13d57a7
BLAKE2b-256 c3b56c2274a06aeeef1b28109cb1bfbe50a7e6a2965111d6f82d1ab7b4c0c420

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.0a1-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.0a1-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.0a1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 578d4895b2561c23251fde5e82b973ab47b06ba453499702ec63d79c8c8376c9
MD5 ce6e174a7986da4ac8dc7a461ac4cddf
BLAKE2b-256 72679fc7c7560ac703e62de9effd2da5ccea1f127fab5f5f83f944e7eaa63fd4

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.0a1-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.0a1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.0a1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d1dbdebaeb231f3b2190b9162059a68282f1a0a218ea6ac77abee347a4fb1e6b
MD5 b6a611d94b1f3e228e4fc2ee010fc2c8
BLAKE2b-256 af8f8754fa6bae085c603c53acf2378a5df4915d327560af27c29d16f847eb1f

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.0a1-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.0a1-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.0a1-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 aa4d715d01f7db3d460bcc7032ba50aafae9e6678ffde5bd50132ae4bdf97497
MD5 cd4f20cd3b095672659867cc260ed710
BLAKE2b-256 9cfd7215a48389e531859402edc7366c53ccd9b66f3f91a984dd41b967d5262d

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.0a1-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.0a1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.0a1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 45b06cd84dc43e6ec1c0eb76eabe329e543baf0d9812ac633f77331ca71d284b
MD5 c4b7da00d38855012163484d55fb8c2f
BLAKE2b-256 b46b086506a897c75dd3193d298f8aecfec98a10d30e925e354b4681e896a516

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.0a1-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.0a1-cp311-cp311-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.0a1-cp311-cp311-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 1bbc83e176a63378fe5570022c36c1196fda8f4235b0f2df03b2f1378f7a4788
MD5 cf1f29ea999165157de2963f09030e33
BLAKE2b-256 a7965a6a2ce5a86044afb14152927ced7af74665581171a34d66dc7054fb588e

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.0a1-cp311-cp311-macosx_10_13_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.0a1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: hogpp-0.2.0a1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 394.7 kB
  • Tags: CPython 3.10, 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.0a1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 71a3b4e1bc2577c770bfadae64ef3ba6fdd21b75d91d478ac32d0490da7e0019
MD5 1bf75da832315cb5e2e5d12703918652
BLAKE2b-256 43f7c588d74581ceb0748f2d32e53d36ab87afda1254c66a1d3b75f34409569b

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.0a1-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.0a1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.0a1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6e6edaad0c4c9edda085ea4a465c58b524a3b1c02e5c4e0ccaed2e96eea58744
MD5 2d0908f332ba965dec4cc867c1bd0deb
BLAKE2b-256 a210555262f975ea911bbd75ae6afac1238e861edf28f287f6171340f4d4f480

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.0a1-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.0a1-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.0a1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6e77341599281686868b1dfe047849885c6d2d4ff15db2fe58fcefbc4b65e474
MD5 d949b12631bd0567ed2fa4c2fee1a913
BLAKE2b-256 91c33711b282572102c706ea559fc1a5d5520a20c5bb65e2ac903fbb1761f0b3

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.0a1-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.0a1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.0a1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cefd292388791cba86c2e5eed9c6a5a47e6bbc9a0c1b27544e4338d9d0d142c4
MD5 1b6f2ea3ffb563d4b0993bf060f57562
BLAKE2b-256 37de92099465a03ec0227299270f9807ca2c457d9ccd7d1c5d78b19cde68d763

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.0a1-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.0a1-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.0a1-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 aefa98bf488b7c36ff4ac3019865c76f4996c7b198e98f1d6f00f7e64df95093
MD5 2a01dce3b685d6b6f5df8817c0753eda
BLAKE2b-256 c35273f5dfe322c5f6644b4bf481f82fde975e320e25dd526cc0d62b7460a0e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.0a1-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.0a1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.0a1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 94b2b20c39e6f8b00e116bd41e950062ce156c042088395f1105c4d30b31a548
MD5 c5b497f4da1bc45832ce759b00c399da
BLAKE2b-256 66d52e1771d03e9007488e25021bd73e6493e566bcac2b2e733135cfc905f9c7

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.0a1-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.0a1-cp310-cp310-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.0a1-cp310-cp310-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 72e52dca6be0ee8d3d6a4aa7c620fcd015e2bd176b6e5b785c18eb3109ef6075
MD5 54e9bbac1f970f6e5d64d3e2c8bc9609
BLAKE2b-256 a7f56555cb60b8e032084a863b7840fc6d48af7065a134bb6654e7d8b6a8b633

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.0a1-cp310-cp310-macosx_10_13_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.0a1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: hogpp-0.2.0a1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 398.0 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.0a1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 def509a74f5bd3f3ce054c1366e1d356e936151be06395c790cfe3a76b68b349
MD5 0dc5929fefca9c0397edaaeb839c33e6
BLAKE2b-256 4f1e376a9b0bef0fad3841f167caa2cdd28fb84fe66dbcb0c3834bc327b9f643

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.0a1-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.0a1-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.0a1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6775780320156ec1f7af83ea7515a20d650863a38dfebe155335f8fbf9608d17
MD5 afa71712ae685efac3b1c346549b04d1
BLAKE2b-256 e78b0f5203c247ae5eb90a45b9cf6f900cc250d6c11253eb53b17bd945c4c8b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.0a1-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.0a1-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.0a1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 44ea4c178ca5f94d661bb27363915303057cbb1da3316ff9c487f883f1d59e6e
MD5 e669aa0af441e7a32f92f74acdb5da33
BLAKE2b-256 294690cd50731ce41fa49fb7a13464c50309a377dc2aedfbbe7c1975e7d02748

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.0a1-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.0a1-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.0a1-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b7dfd40f3e09f9c323bd14b36f71bdad383e2c0123073ec90bf4b945f5587679
MD5 78896eac74d74e4527f37cd1661eb20a
BLAKE2b-256 8b4fae0bb5c66924a434562336d983e5589d078ce00198b2e882e3c027d04be1

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.0a1-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.0a1-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.0a1-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 152eb3dd275e9ba06503d28d8f7ced75018ae195a1b54fe57affa66e902230dc
MD5 592501bdfd0d918e6434cd423983ad2b
BLAKE2b-256 3c1276882fb12db268bf1b2b048357bf7b5747eab6be816c8ccdc4b8d66bf7e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.0a1-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.0a1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.0a1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5932e01b9466a324d180fa393ae4018d05522cfcf6101da21dbea06398cb8d9f
MD5 97d1915a79de2181806f881ce28b3df9
BLAKE2b-256 f032d616f3068d4dba93f42a831b756bcd3798ef28e453b7ce6ba76060c92f5c

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.0a1-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.

File details

Details for the file hogpp-0.2.0a1-cp39-cp39-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.0a1-cp39-cp39-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 8be2b7e3e1aaafdef2b4d3fc68500478171132d656f7a1e88c7133fb697c66ec
MD5 b7848400bfbb60456f563cdd682581fb
BLAKE2b-256 133306e6096061dbc3192bbf4ca4f5fa052c191f83821b809737d914180ba4dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.0a1-cp39-cp39-macosx_10_13_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.

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