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.1a2.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.1a2-pp311-pypy311_pp73-win_amd64.whl (411.0 kB view details)

Uploaded PyPyWindows x86-64

hogpp-0.2.1a2-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.1a2-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.1a2-pp311-pypy311_pp73-macosx_11_0_x86_64.whl (429.3 kB view details)

Uploaded PyPymacOS 11.0+ x86-64

hogpp-0.2.1a2-pp311-pypy311_pp73-macosx_11_0_arm64.whl (368.1 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

hogpp-0.2.1a2-cp314-cp314t-win_arm64.whl (339.6 kB view details)

Uploaded CPython 3.14tWindows ARM64

hogpp-0.2.1a2-cp314-cp314t-win_amd64.whl (453.5 kB view details)

Uploaded CPython 3.14tWindows x86-64

hogpp-0.2.1a2-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.1a2-cp314-cp314t-musllinux_1_2_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

hogpp-0.2.1a2-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (539.3 kB view details)

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

hogpp-0.2.1a2-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.1a2-cp314-cp314t-macosx_11_0_x86_64.whl (463.2 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ x86-64

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14Windows ARM64

hogpp-0.2.1a2-cp314-cp314-win_amd64.whl (425.4 kB view details)

Uploaded CPython 3.14Windows x86-64

hogpp-0.2.1a2-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.1a2-cp314-cp314-musllinux_1_2_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

hogpp-0.2.1a2-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (539.1 kB view details)

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

hogpp-0.2.1a2-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.1a2-cp314-cp314-macosx_11_0_x86_64.whl (441.3 kB view details)

Uploaded CPython 3.14macOS 11.0+ x86-64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

hogpp-0.2.1a2-cp313-cp313t-win_arm64.whl (331.1 kB view details)

Uploaded CPython 3.13tWindows ARM64

hogpp-0.2.1a2-cp313-cp313t-win_amd64.whl (436.9 kB view details)

Uploaded CPython 3.13tWindows x86-64

hogpp-0.2.1a2-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.1a2-cp313-cp313t-musllinux_1_2_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

hogpp-0.2.1a2-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (539.3 kB view details)

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

hogpp-0.2.1a2-cp313-cp313t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (548.7 kB view details)

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

hogpp-0.2.1a2-cp313-cp313t-macosx_11_0_x86_64.whl (463.2 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ x86-64

hogpp-0.2.1a2-cp313-cp313t-macosx_11_0_arm64.whl (396.0 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

hogpp-0.2.1a2-cp313-cp313-win_arm64.whl (317.3 kB view details)

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

hogpp-0.2.1a2-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.1a2-cp313-cp313-musllinux_1_2_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

hogpp-0.2.1a2-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (538.6 kB view details)

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

hogpp-0.2.1a2-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (518.9 kB view details)

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

hogpp-0.2.1a2-cp313-cp313-macosx_11_0_x86_64.whl (448.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ x86-64

hogpp-0.2.1a2-cp313-cp313-macosx_11_0_arm64.whl (376.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows ARM64

hogpp-0.2.1a2-cp312-cp312-win_amd64.whl (412.3 kB view details)

Uploaded CPython 3.12Windows x86-64

hogpp-0.2.1a2-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.1a2-cp312-cp312-musllinux_1_2_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

hogpp-0.2.1a2-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (537.9 kB view details)

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

hogpp-0.2.1a2-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (520.9 kB view details)

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

hogpp-0.2.1a2-cp312-cp312-macosx_11_0_x86_64.whl (448.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ x86-64

hogpp-0.2.1a2-cp312-cp312-macosx_11_0_arm64.whl (376.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows ARM64

hogpp-0.2.1a2-cp311-cp311-win_amd64.whl (411.9 kB view details)

Uploaded CPython 3.11Windows x86-64

hogpp-0.2.1a2-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.1a2-cp311-cp311-musllinux_1_2_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

hogpp-0.2.1a2-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (539.6 kB view details)

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

hogpp-0.2.1a2-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (532.2 kB view details)

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

hogpp-0.2.1a2-cp311-cp311-macosx_11_0_x86_64.whl (429.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ x86-64

hogpp-0.2.1a2-cp311-cp311-macosx_11_0_arm64.whl (368.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

hogpp-0.2.1a2-cp310-cp310-win_arm64.whl (315.8 kB view details)

Uploaded CPython 3.10Windows ARM64

hogpp-0.2.1a2-cp310-cp310-win_amd64.whl (409.5 kB view details)

Uploaded CPython 3.10Windows x86-64

hogpp-0.2.1a2-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.1a2-cp310-cp310-musllinux_1_2_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

hogpp-0.2.1a2-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (539.3 kB view details)

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

hogpp-0.2.1a2-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (531.3 kB view details)

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

hogpp-0.2.1a2-cp310-cp310-macosx_11_0_x86_64.whl (428.2 kB view details)

Uploaded CPython 3.10macOS 11.0+ x86-64

hogpp-0.2.1a2-cp310-cp310-macosx_11_0_arm64.whl (367.1 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.9Windows ARM64

hogpp-0.2.1a2-cp39-cp39-win_amd64.whl (413.1 kB view details)

Uploaded CPython 3.9Windows x86-64

hogpp-0.2.1a2-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.1a2-cp39-cp39-musllinux_1_2_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

hogpp-0.2.1a2-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (537.7 kB view details)

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

hogpp-0.2.1a2-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.1a2-cp39-cp39-macosx_11_0_x86_64.whl (428.3 kB view details)

Uploaded CPython 3.9macOS 11.0+ x86-64

hogpp-0.2.1a2-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.1a2.tar.gz.

File metadata

  • Download URL: hogpp-0.2.1a2.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.1a2.tar.gz
Algorithm Hash digest
SHA256 2179209010fbfca2e9ea674f5c11c1ae110adc24ede0b78ab73eee43ff1167d4
MD5 92406635ddee8f3a35859db0e36b32ed
BLAKE2b-256 232627eef4d833a89e096ea9834f7bd0d3fec0eb1945ba720e1b1a9e07330d89

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.1a2.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.1a2-pp311-pypy311_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.1a2-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 c1e20fcfc8660e7c497031e222f8376021542848c9e3fba217109a525c436b60
MD5 ffe2e98f2dfee959a154aeb4064d905c
BLAKE2b-256 b1c2a583c398e197b34d21d50a696ee38e36bd1e5cb0ae56cfc5ac10b9d8d869

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.1a2-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.1a2-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.1a2-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 840960547c43f1af3d40bcf0e8a7cc0bb59df820834109b289f5f91f7b9d3818
MD5 0731e7e45759e155c965bb490f0e1a0f
BLAKE2b-256 177c3487ee32e5823419e5241b0f6d503178c124213560c9dcbc9041b4572b92

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.1a2-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.1a2-pp311-pypy311_pp73-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.1a2-pp311-pypy311_pp73-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a0dab06420b4c2da6286cbf24ce37386e58de1d1f471ac25b66258a440fd0428
MD5 29062b4d36d6b332792b7067a7191593
BLAKE2b-256 610e64fab2b665aa8c1812c97c43a7d7d881348f45fa594b22ce785b521f64fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.1a2-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.1a2-pp311-pypy311_pp73-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.1a2-pp311-pypy311_pp73-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 6bac0c9e4b6977bc8235ca8787e689001ca31926a2b98b0a07d913d96cb82411
MD5 cb5bc9bcd5eacb47e1c03ac772817170
BLAKE2b-256 604eeb065d80a0a0f7babb0977e24a78826198569592b4337ce0e0ee84969ae2

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.1a2-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.1a2-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.1a2-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d91a7d331b8f259d30845464923333ff4e0eee7dce27d1f53b6fa1523e5d5253
MD5 f44b5c71525ce57630e2cac0f7f975f4
BLAKE2b-256 5eb32125e74a15452a29a05a6fa9de1dd8f27077ced01af199097a4efa158165

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.1a2-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.1a2-cp314-cp314t-win_arm64.whl.

File metadata

  • Download URL: hogpp-0.2.1a2-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 339.6 kB
  • Tags: CPython 3.14t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for hogpp-0.2.1a2-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 7f9651a90f8d9c5b1fe66986ac8384544370981294b56e3d97bcfd60be4ce977
MD5 3a3ec244c384c0099eab85aa649e1bc3
BLAKE2b-256 578f051ce13b6d18e89ad67e0c85ce509a5fa3adbb7ac7e97eb2727d2dee41b9

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.1a2-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.1a2-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: hogpp-0.2.1a2-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 453.5 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.1a2-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 54d889769034fa80282d3f687856220ccc4194557f8ef981341b9d26986da75f
MD5 30b98fdab355fd1a2c289f1338a85e12
BLAKE2b-256 d4ba4b8d9546fe8991c323eb1ee9839e61bf10261661ef9faccf01bf21d59158

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.1a2-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.1a2-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.1a2-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7c6e9aeacfc0c6c096c18efb08ff683892fcc22583f89ee903bd6253c9bd22a9
MD5 712a04bfbb82abb4e3a27080a9962c20
BLAKE2b-256 73d22697fce3be58c29d3fd57c625d64105f095ae829d53eeb5d1020014b7a19

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.1a2-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.1a2-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.1a2-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c94fb07d5b81004d168239a9e82a19db3c04b285870ff5fc1bd3a4de1756e2ef
MD5 7dc01e8c1d1324031109d5fc5fd54c33
BLAKE2b-256 e4658294dcf5e8d19c2fc980efecc3e461b72a7e656fc2fd28b9ebdedfeb0c48

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.1a2-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.1a2-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.1a2-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 237ec40a21e8bd7de880a48ebe850eb54ca2515d8bf0f9fb5bbcfb1763431632
MD5 2b1a4e93e578d43acfa49d909693aaab
BLAKE2b-256 6d886e5f4129b8d019a342048ddc317abdf6f956ace56259b2060c0690a393bb

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.1a2-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.1a2-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.1a2-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8052f8e1568918bdb66fb746379aeb076a44f67e74ab985361b11e8846f9d48d
MD5 e6d93b88ca2b2fb03da4242beafe8cce
BLAKE2b-256 bad1a2f8f55ffeeca2b237ae3bc6fb3b035754f770c12831a3c5e19350bf7081

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.1a2-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.1a2-cp314-cp314t-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.1a2-cp314-cp314t-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 dc5ec33594489f8cc6dd511b3d27d2cac1676f16de6982d67e57610090f0cc7a
MD5 e7c7c6e3c8be225b15ff591587363cd7
BLAKE2b-256 bcdff3e77c3b527b75a9a00a866b4568855d7801b37c79d7f8b357e9098aa0d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.1a2-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.1a2-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.1a2-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 129bec4a7e016bec68e2c0e4747e7f5e852841e8cda3b87113b17be1d5035172
MD5 f52db94d3f058604497b4564f22df13f
BLAKE2b-256 140d813aae888dda4f20b6b88ea7af1ada07f12c640a119d4905c4a037052858

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.1a2-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.1a2-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: hogpp-0.2.1a2-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 326.5 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for hogpp-0.2.1a2-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 5d240bcacb52a765bbb2897197369e51ad7854fcf74f89413bf52e5e32a175f8
MD5 2be4dab572c56d7652180777a7892255
BLAKE2b-256 ecb03d6f8f18486e8234209934e4daddc31ceb10d0294088247c06a1432aaef4

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: hogpp-0.2.1a2-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 425.4 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.1a2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 20c8982f3e7a586c0603bfb393b1cf00688dd17fd09e112e295d559efff94845
MD5 a064d068bfd37cfb6525cf188b2e371d
BLAKE2b-256 0bd86b3c63130a13c44e2514741b3d5c01a68766ee7179751b01ffb8a37659d3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for hogpp-0.2.1a2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6acdfa0b47210ac900f1e8728a171129cfc5e2351486e43de45fe59a6cc70802
MD5 8a1f18284f0eea220403fb5b6479599f
BLAKE2b-256 531623e9af12fba5e78c32db2cd164aca9533a81dc967fb35a9e4cf2d366a20c

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.1a2-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.1a2-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.1a2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 00e9d738537e4db1e42c957b26873c34eb69cd64cc9368578267b6afb149390e
MD5 6fe0e265670e4e4f59423bdde88804b1
BLAKE2b-256 c6df22fe47e5f0cf090cb1b3cdb61b93b27f2f19f55b50d7c2859d410d26eb09

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.1a2-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.1a2-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.1a2-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f1a8f9cbc9504831865ec6727cec56e94a879add9797e25bc5c6c227fb9a25c8
MD5 9ee928bb11a2719effcd512bfdbc3374
BLAKE2b-256 888ea6b932a252087d20f3edd8c3a8e8614ce3950b5cea0d1d11896b904eee70

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.1a2-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.1a2-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.1a2-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ab9f2c790093679d3936d0c84b3f6d3992a9c9b175ecc856193e79a1c0cf43f3
MD5 3864baf1b88d93c9293a67d58a574e6c
BLAKE2b-256 859eed1b5616d2d275cc85a076cd5014ceb8c8a7deadf968dac294b1a42dde95

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.1a2-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.1a2-cp314-cp314-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.1a2-cp314-cp314-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 26175c48fd67e3cae6070756667e205ffebdb108b98820fc0093fdf1850c5d09
MD5 99f1e00b0c45fbadd27aa9109cc4dfde
BLAKE2b-256 074549b4ffefcda2d4290f43ba9364dcc801b37bcf8564a9b8bc9842a19dfc39

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for hogpp-0.2.1a2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9c35797e6ef3ad5658857cbbcc901d9b0ecc624148213ffe18a07b3d705323a7
MD5 96cde0f119913f2c3cc3e262c3a8a588
BLAKE2b-256 d0c4e1c2d2bbfdf9ef7c7cb2ec39b9cfadf946fbd3b1832c613e61ecc6a816d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.1a2-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.1a2-cp313-cp313t-win_arm64.whl.

File metadata

  • Download URL: hogpp-0.2.1a2-cp313-cp313t-win_arm64.whl
  • Upload date:
  • Size: 331.1 kB
  • Tags: CPython 3.13t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for hogpp-0.2.1a2-cp313-cp313t-win_arm64.whl
Algorithm Hash digest
SHA256 2b2facad7dc53d42aad757aa7ea2353198db9c0fbae658e1565aa489befdacd7
MD5 74ad04646592f04c546edc351f37cd7f
BLAKE2b-256 c3dc9583e636b932d3336b30ee972b1b39f84d4f39bfbf9142ed882a20a81709

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.1a2-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.1a2-cp313-cp313t-win_amd64.whl.

File metadata

  • Download URL: hogpp-0.2.1a2-cp313-cp313t-win_amd64.whl
  • Upload date:
  • Size: 436.9 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.1a2-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 b89b968303207eabab388fec51434b61f9c09204210b24cd3d662a474876cc28
MD5 9cb863a9f664701cfa42d4d65b781cfd
BLAKE2b-256 b4fff91e89f809f2c8c9a4c9c23bcae2bec2b21feb185f3ba85405efaf1b3b51

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.1a2-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.1a2-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.1a2-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 198d5f4814509c95d150f406fbf3361ad4605f7ebf59599c3209017911014c75
MD5 871e5c6c9dbabbdcec3a86dc53d320a8
BLAKE2b-256 abee38511466d6fbbc79f00a350412a18927fc15db3961321ecfe18b9bb77b68

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.1a2-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.1a2-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.1a2-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f3e99fc731ce07e65b232a19fb633371a462561c1dd327cd9cefa0c0aa0f2847
MD5 0f755d9d0cd2cdc093f17bd2e1ff4286
BLAKE2b-256 0e79b25b1959dfd7d89392f6e2f484eda3026f1ac66ea0c18e5f01a2e546a4b9

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.1a2-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.1a2-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.1a2-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 038396fbfb9fe249bfcd9cf901caddb3daecf07260a2224ee7efbc0f93645823
MD5 8232ffcc87f19dd516e3b179dbebdce5
BLAKE2b-256 1701e29ef02b283b438fe58a37222b62309b06622bf51820fa703aaf10d60432

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.1a2-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.1a2-cp313-cp313t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.1a2-cp313-cp313t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f8b3b857551d70786101e1769c55d7962eaf824dec5cca7e1499c8029c1b7dbb
MD5 8cf91a5bfe79f02d5ced2b664154d719
BLAKE2b-256 2c4bd3f18781232d744711b3d6af5641f0b002d1083804b31b450fc67d6d36b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.1a2-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.1a2-cp313-cp313t-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.1a2-cp313-cp313t-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 26fa32fb0487bca409fb434228912aebc6bdc5225c4a8227fd72ba022f9e589b
MD5 3b7f3b78ac09a6fc40577167cd3cce9f
BLAKE2b-256 772370ee9dea32572de319de1550945294ef66a0c5a9ef8e05b27ca15a794c5d

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.1a2-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.1a2-cp313-cp313t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.1a2-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a341b7f0ff7ce3168240ed5171c63d91900411b4e101efff2d7a52614bae0747
MD5 121ed2a649420660a9e5145ac781a9d6
BLAKE2b-256 6287979b12eb8495c6d46af04affaddeaee1ebded8d6718b036fecf4856c6126

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.1a2-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.1a2-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: hogpp-0.2.1a2-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 317.3 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for hogpp-0.2.1a2-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 3fb5ea3de6d4e758417066bdf84ae88b72d38d4e8808be1b9e1d20f52dc6df4b
MD5 e9f0d07dbc5c9138712579383ac03158
BLAKE2b-256 45f0917958ff6f867f1a0512e3676d0ea9fd213e1067751139acccf0a10566dd

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: hogpp-0.2.1a2-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 412.4 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.1a2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 380d6ff7c7996416f3c2828a070c09d9737bd0354c4e74064e54a44452994bb0
MD5 fe7869ae66ddcb0ae0e417cc8513ffd9
BLAKE2b-256 c40bd40aa551363b34546ae7dd8c250570958c410738d761a8e59a3c0c07f5bd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for hogpp-0.2.1a2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 856bbc804d5959dded9022f2e154c26ded72380de054de65400ae7076e3040a7
MD5 969ff582e0fd5bfcac1f423d26ab63eb
BLAKE2b-256 3ee074798f48be85a2e92fab73da97515d0fd2406c15c77efd11bc31a4166165

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.1a2-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.1a2-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.1a2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0dcc7c3c78620b9264af83e9e92aa81975ecebe62b74e40d2e050d7c74fc36f3
MD5 d36113c6a85aa89b27265853564d91eb
BLAKE2b-256 df623a120b18f2320b3d16080045fc49fd493096a062860762f8485f8a558e6d

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.1a2-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.1a2-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.1a2-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ce235f94944725e62b594d7f48d6f98fb31db5e323f4586f82ad7a2bf8518e6e
MD5 1c048fa93b744992155d1a6efeb7b48a
BLAKE2b-256 59da0f158cc314fd67a28039d747b301feefb64208b2391e8527c7d67db94047

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.1a2-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.1a2-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.1a2-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9967f82e521b24943ab8340c60f1fbeebc6c7056f0cca4f0c1584500279f3dfc
MD5 2612eb740134e780cd324073e2c5affc
BLAKE2b-256 cc2b47fa12055e7ae029a7aa1a835aca60c77e5a197437af235430afc3e3d697

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.1a2-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.1a2-cp313-cp313-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.1a2-cp313-cp313-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 f8383cc3b02f690098242c39c9afcddb4f069483d55cb277405e8747c44bc1a3
MD5 0e5be40ce1d0a5822027677674b873f5
BLAKE2b-256 5f53c6b15211ce7d683650227be05f44495667e274b63bdbd800ff421c764ffd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for hogpp-0.2.1a2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 edb08b71271751df130caa14ac4ac382f397d9a3e2c3ee63031ee829195af23a
MD5 d57a81cae64b0019d7a49555cd863f8f
BLAKE2b-256 6a9bd97edb00dff386a480a11873e8ab132a6a8ce3ee0199865194fd29e59b7a

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.1a2-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.1a2-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: hogpp-0.2.1a2-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 317.4 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for hogpp-0.2.1a2-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 cdacd67cc21117b036635f7fff73bec97ea628fa9eceae5895eb5fa236cbe56a
MD5 b12227efa2b745aa8ceda7e972a16a4c
BLAKE2b-256 b792a60f82a0091844a63c6f81f7d13d22436d3ef30d3a2dba80e95715af9c10

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: hogpp-0.2.1a2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 412.3 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.1a2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 954165c4da2b119a2a25742686b7a345a74f4587851af4fc2b30594af3266eb1
MD5 e14e9f7819912aff98186bcfac93d7cd
BLAKE2b-256 0f31eae2a87327736fbcb5daee60ec3fd015f2e48734d886c8beb132b4564e99

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for hogpp-0.2.1a2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0de931b0b1aed0c46b9f06a726378e3a424970541c93cdf48852f21dbc8e7d51
MD5 a08e90e60770b8ea3f5e7f20652f8161
BLAKE2b-256 09567b00439e5d8d33ffd7c4549f99afee94099b65210fd6e2e79b2a6db4c963

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.1a2-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.1a2-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.1a2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d21f73b4785209e00def79c8893fce12531ae11e2a7d2fbb8c148abead40cb39
MD5 6a452912770b01a362ae4c6ccff85897
BLAKE2b-256 060a270a648e37098e7c8c0b84934e76160eebae4b364a5c8ce499540ddf14c3

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.1a2-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.1a2-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.1a2-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f188a2e8c8fa7edff8d4962268b18b7f5aa01a725c45a17538773a36cdce4ffc
MD5 f136a05952755efe6cfe0c3afdec0533
BLAKE2b-256 fa755ff2fcc938d071746166c95d3b7759a4a455c54789eef2fe72e87bfa16f9

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.1a2-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.1a2-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.1a2-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fe4765c25d88e372fc02e1a9498aa25fc56629509db452a58d4b68ededd64a34
MD5 f597136e1d71b1a5cd41a12e7935cb6a
BLAKE2b-256 d00d97c2c2bdcb63482c17878d49acffcf9628951ebb6db7f79d5456d7259d7f

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.1a2-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.1a2-cp312-cp312-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.1a2-cp312-cp312-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 c405c31c702858289a10ba2a23aa32771402a360c1cc8690bff0c9233b077cb8
MD5 e3288e932c858df2cb24eeb9981ac793
BLAKE2b-256 b5390783a3b50558d95a7d24996450582c5f15962a5d164c4f76e7096e603b13

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for hogpp-0.2.1a2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3a01c94089d575cbcaf5022f74d5a0546cdc8487b324f6dc9aacea2a2c286b84
MD5 cf3e5458a9023c04fbab8cd54ff7984f
BLAKE2b-256 1b7f1793619aadb6754ed35467f6973954578a7ef370d9e1b5b20ceec38b1951

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.1a2-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.1a2-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: hogpp-0.2.1a2-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 316.6 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for hogpp-0.2.1a2-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 a7c7d9de8b63e6410b9a997484f14447b24f21f2614d7ab99620d7dd8921c5ff
MD5 e31ea9660f05526e8f5d59d0752eebbc
BLAKE2b-256 5f65ce37f7b317aa76a860418765c9863f1225708908179396a28149fb4081ba

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: hogpp-0.2.1a2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 411.9 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.1a2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 20a201577adbb963078dd17fc15bcfdcd86935fe3fe71a1c3f06f48fb54b9771
MD5 057954c15647a17bee482531c28d0761
BLAKE2b-256 0e34ba2f9b36acf5e0f449a4a17021643730805c2c86d4c639c019217e3fb894

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for hogpp-0.2.1a2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0f94a1e5d9d51396a2c0e8208f6c2984acc2f180e2336634095f6536fde56071
MD5 bd7857a93ff6c477ff05d7cdf74f7744
BLAKE2b-256 7e201b0cbffd32b845714fa70becb855ef08eeb4eb6257d826583923f9dc11f0

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.1a2-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.1a2-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.1a2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d4c49132de166a6a09cfa2ec721439682ac74acc937bead3cea58ba6b865f25d
MD5 b965d18a1192fddf79baed2344d1e551
BLAKE2b-256 e16175c55dbb4eee7926465211e64dda0f597f102ecfadade7795ee4be0c78b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.1a2-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.1a2-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.1a2-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2f5ecccfdf241ae3c351f964b58221260ad9d5aa2ab1e21eba4d0733dae6bce4
MD5 fec0c9fd780ea3c8440ea7f4571ecf88
BLAKE2b-256 aed31588dc39eebdb095fcf84c9674d80c5eb25de25bcbba0e3333f8fa0bfd45

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.1a2-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.1a2-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.1a2-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b951990a16d72f1c22f42d31820df122ac24191b020c1bb748b9a8f2fb165053
MD5 236e6d1ddc83d0aa81d6eb8e0ed615c8
BLAKE2b-256 d6e93b9760eea1ba32919f6b84462870753926ae02ea3ade3a94b696a50093f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.1a2-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.1a2-cp311-cp311-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.1a2-cp311-cp311-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 bde060552f4db6c4ef0b8449729f7bd3432757b98fbcf4d420e9e912a82bf880
MD5 4ff054d97384d229e362d6dd21e019ce
BLAKE2b-256 0b073cfa4180372fae7f67472f981f3f227743213d299070def213201fb193e9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for hogpp-0.2.1a2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 10cc05f52b405ac8b4969fa45795593afaa102a67489e2206a5cacf28bb4dd16
MD5 a51814ded9b4bf28b96101c410eb0844
BLAKE2b-256 3ddc5c4fa98153f0fd92ef845a78b57f15f8fd9396114e16bcf947b134119626

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.1a2-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.1a2-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: hogpp-0.2.1a2-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 315.8 kB
  • Tags: CPython 3.10, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for hogpp-0.2.1a2-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 83cc4c37320b8f1ece8d81ccd9b18d380028291b1e3639688008be2037eb34ee
MD5 043fb56fbc65c2a9a75f957ca7a1d1ad
BLAKE2b-256 bbd2f725475d1a7dbb381052288366c7a876fa308888a8ccaf405d7d3235ced0

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: hogpp-0.2.1a2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 409.5 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.1a2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d2799eaaf3d5b6c84e6e1df2901fd16b1f1143b05d991b27df333dbe43d095c1
MD5 46e42485a7fa15eb8d0d2ba31bb51f79
BLAKE2b-256 47472dc50afee2eeb686cff9d57dfd5aa2ee067284a35744b9ae51408564ac6b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for hogpp-0.2.1a2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d673f3c78b6bbaa0a3fc308e772d72eb6b014cc5140b655f66c66eb594d36211
MD5 813d7a7513faffedf64f3e9cfdfbbc44
BLAKE2b-256 1276d5c6e21973bbf0dd468e93e1c28744978b1f5cfab17081314337635827b8

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.1a2-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.1a2-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.1a2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e291d7bde07dc34ceb259c90e95813a6b556d04ce27d0667cb810f8e237166cb
MD5 9bfb4a03cf380bcfe10ab5fb6b48dd54
BLAKE2b-256 a1071f9d780486df3758a8369f4205ad4f3b537e5a6cd3ccdd9408b4b49b3516

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.1a2-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.1a2-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.1a2-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4c9744a5a1aa7c867f1e69ab04fe988beee65241c45b13f8b3e9aaa32d3049c0
MD5 b31a93e440771a7c27d59b3844654f29
BLAKE2b-256 9565a1d39b4b307194dee3e4098f21a1c740d4a038fac09a618ca210e4638d04

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.1a2-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.1a2-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.1a2-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 486dd147224c527bae0c377e6a784a6be5ce7bb3acf2e1951a323b6fa44235bd
MD5 b6495cffa0c6913091bc704eae5d22cf
BLAKE2b-256 8c45eab4f966663ee255e9c82407f6b240f83c49b6526d161ccd4be5b6ec426e

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.1a2-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.1a2-cp310-cp310-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.1a2-cp310-cp310-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 e712779517e3e1c55941ce093e3abdfaa182f5bb5c6ba9ddf5b964c45decab41
MD5 013ab4a6d58b869631f1c13ba0a0bfe9
BLAKE2b-256 e05654c32c1f29c589fcfebaff9c247ee4916cae4fb2444916b21c5eb13151c4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for hogpp-0.2.1a2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 69504f1de424bffcb9c9ac3daecaf7db0f722b895db6cfadcba515a9a1b4e559
MD5 ac6d93c7a3ab31253ccfb54c20ddc72b
BLAKE2b-256 7b7a48d0b60928c79815164fdb7c4826b282f07c1acf0c56c91688dbe3d00e37

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.1a2-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.1a2-cp39-cp39-win_arm64.whl.

File metadata

  • Download URL: hogpp-0.2.1a2-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.1a2-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 10f52de2fae2a365a955d1272447ecc681097334013db08aa727877f2ba7669d
MD5 6137ff4f7740ddb9181e0efc724e3ce0
BLAKE2b-256 59380bb6b25abd0a24822c86a25ebea249a484f75f140036faa3b5c024e71d9b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: hogpp-0.2.1a2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 413.1 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.1a2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 af92e868b908792eff97ca849fcc5c16b9116ecd4a7a8e9bbf247bc3af12b3a9
MD5 7a460c7ed74edd53373cb6753bdf1c89
BLAKE2b-256 e2599dead65d42a53e387550766255abb042c99af2968d38d3600261616dff39

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for hogpp-0.2.1a2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8d6dfcf5d7a04556f7207bffa838edd36cd3f85b3b5139a9b59cf63b7d391cc1
MD5 1e7eaa93fa6748ac2e5e22ce34abf0a7
BLAKE2b-256 5af996c491381b045b8086e96ef8f5553924892fb80c1a4be62cbd49b099b686

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.1a2-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.1a2-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.1a2-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8ecc27f1ce6c5e56b38693070b50630c5d488e24ce2f500b6962f62ab81c21fe
MD5 e8ba3f2edb0982fde3610f2956058f8c
BLAKE2b-256 2636b56e0c35f3e37761ecd2fc987c0fc3f04e4f0b75eb6baf62898bb1b84883

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.1a2-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.1a2-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.1a2-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1dae57d7c73d2f56b7b0294135bac15a0c4d652316fb8c3a6f421332cf637643
MD5 949c4ba421ebd1da0665613a6fcaf1b0
BLAKE2b-256 8f71b021bcc1fdecc45ceadf1da98d011da056b1111d96a913fdb33fb25d1bd8

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.1a2-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.1a2-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.1a2-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 60d9537e7f2329b773654e6b6ea0523501ee5b50ce6e722a5b71f402ccaa43d8
MD5 bf99701172409ba41ea5b3bfd66cccbe
BLAKE2b-256 3ac0f26a6ceba889bd2861d64db35615a9d3e8dd0a9cdf79e0a0d58afa110a95

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.1a2-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.1a2-cp39-cp39-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for hogpp-0.2.1a2-cp39-cp39-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 e24f1907a2bcf2076b99bf0fb560c4401d540a3e56d27f86259f43ef232e3801
MD5 9beb04aa1330adb6896a5ebc4f247eaa
BLAKE2b-256 61b7f084a9cbd566d4db3ba908614b400f3ac99738c18308f27b1f9f536c9d90

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for hogpp-0.2.1a2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9ff8f2010d32d1b4544cd9ee6000565625cec56220ee83d58d577e2f794ff64b
MD5 4b32df49154dd867a8c714109bb0890d
BLAKE2b-256 edc276e6196883c92f8843d368ddf141621fb6c6e238d53adcbab5d52ec2922c

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.2.1a2-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