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

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.1.0a1.tar.gz (447.8 kB view details)

Uploaded Source

Built Distributions

hogpp-0.1.0a1-pp310-pypy310_pp73-win_amd64.whl (391.8 kB view details)

Uploaded PyPy Windows x86-64

hogpp-0.1.0a1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (497.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

hogpp-0.1.0a1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (455.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

hogpp-0.1.0a1-pp310-pypy310_pp73-macosx_11_0_arm64.whl (338.8 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

hogpp-0.1.0a1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (418.8 kB view details)

Uploaded PyPy macOS 10.15+ x86-64

hogpp-0.1.0a1-pp39-pypy39_pp73-win_amd64.whl (392.0 kB view details)

Uploaded PyPy Windows x86-64

hogpp-0.1.0a1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (495.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

hogpp-0.1.0a1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (453.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

hogpp-0.1.0a1-pp39-pypy39_pp73-macosx_11_0_arm64.whl (338.6 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

hogpp-0.1.0a1-pp39-pypy39_pp73-macosx_10_15_x86_64.whl (418.8 kB view details)

Uploaded PyPy macOS 10.15+ x86-64

hogpp-0.1.0a1-cp313-cp313t-win_amd64.whl (414.3 kB view details)

Uploaded CPython 3.13t Windows x86-64

hogpp-0.1.0a1-cp313-cp313t-musllinux_1_2_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.13t musllinux: musl 1.2+ x86-64

hogpp-0.1.0a1-cp313-cp313t-musllinux_1_2_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.13t musllinux: musl 1.2+ ARM64

hogpp-0.1.0a1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (497.5 kB view details)

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

hogpp-0.1.0a1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (456.5 kB view details)

Uploaded CPython 3.13t manylinux: glibc 2.17+ ARM64

hogpp-0.1.0a1-cp313-cp313t-macosx_11_0_arm64.whl (352.9 kB view details)

Uploaded CPython 3.13t macOS 11.0+ ARM64

hogpp-0.1.0a1-cp313-cp313t-macosx_10_13_x86_64.whl (431.9 kB view details)

Uploaded CPython 3.13t macOS 10.13+ x86-64

hogpp-0.1.0a1-cp313-cp313-win_amd64.whl (393.7 kB view details)

Uploaded CPython 3.13 Windows x86-64

hogpp-0.1.0a1-cp313-cp313-musllinux_1_2_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ x86-64

hogpp-0.1.0a1-cp313-cp313-musllinux_1_2_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ ARM64

hogpp-0.1.0a1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (493.2 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

hogpp-0.1.0a1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (448.5 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

hogpp-0.1.0a1-cp313-cp313-macosx_11_0_arm64.whl (340.8 kB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

hogpp-0.1.0a1-cp313-cp313-macosx_10_13_x86_64.whl (430.9 kB view details)

Uploaded CPython 3.13 macOS 10.13+ x86-64

hogpp-0.1.0a1-cp312-cp312-win_amd64.whl (393.8 kB view details)

Uploaded CPython 3.12 Windows x86-64

hogpp-0.1.0a1-cp312-cp312-musllinux_1_2_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

hogpp-0.1.0a1-cp312-cp312-musllinux_1_2_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

hogpp-0.1.0a1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (495.1 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

hogpp-0.1.0a1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (448.9 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

hogpp-0.1.0a1-cp312-cp312-macosx_11_0_arm64.whl (340.8 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

hogpp-0.1.0a1-cp312-cp312-macosx_10_13_x86_64.whl (430.8 kB view details)

Uploaded CPython 3.12 macOS 10.13+ x86-64

hogpp-0.1.0a1-cp311-cp311-win_amd64.whl (393.4 kB view details)

Uploaded CPython 3.11 Windows x86-64

hogpp-0.1.0a1-cp311-cp311-musllinux_1_2_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

hogpp-0.1.0a1-cp311-cp311-musllinux_1_2_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

hogpp-0.1.0a1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (497.9 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

hogpp-0.1.0a1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (455.7 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

hogpp-0.1.0a1-cp311-cp311-macosx_11_0_arm64.whl (340.4 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

hogpp-0.1.0a1-cp311-cp311-macosx_10_13_x86_64.whl (421.3 kB view details)

Uploaded CPython 3.11 macOS 10.13+ x86-64

hogpp-0.1.0a1-cp310-cp310-win_amd64.whl (392.2 kB view details)

Uploaded CPython 3.10 Windows x86-64

hogpp-0.1.0a1-cp310-cp310-musllinux_1_2_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

hogpp-0.1.0a1-cp310-cp310-musllinux_1_2_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

hogpp-0.1.0a1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (495.7 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

hogpp-0.1.0a1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (452.6 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

hogpp-0.1.0a1-cp310-cp310-macosx_11_0_arm64.whl (339.2 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

hogpp-0.1.0a1-cp310-cp310-macosx_10_13_x86_64.whl (420.2 kB view details)

Uploaded CPython 3.10 macOS 10.13+ x86-64

hogpp-0.1.0a1-cp39-cp39-win_amd64.whl (391.0 kB view details)

Uploaded CPython 3.9 Windows x86-64

hogpp-0.1.0a1-cp39-cp39-musllinux_1_2_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

hogpp-0.1.0a1-cp39-cp39-musllinux_1_2_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

hogpp-0.1.0a1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (493.9 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

hogpp-0.1.0a1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (456.3 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

hogpp-0.1.0a1-cp39-cp39-macosx_11_0_arm64.whl (339.3 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

hogpp-0.1.0a1-cp39-cp39-macosx_10_13_x86_64.whl (420.2 kB view details)

Uploaded CPython 3.9 macOS 10.13+ x86-64

File details

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

File metadata

  • Download URL: hogpp-0.1.0a1.tar.gz
  • Upload date:
  • Size: 447.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for hogpp-0.1.0a1.tar.gz
Algorithm Hash digest
SHA256 5d34273fcb3cfcfcb26c913478fb207c61f47b01d4ef1d81af5e11bfa0cee990
MD5 7d8a74f212f9d5075fb13fe9e5aa5cd0
BLAKE2b-256 6f48cdc23bc9ff5b2776ac5c886a90af3f5ad646c71708498a47c38cc971dcd1

See more details on using hashes here.

Provenance

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

Publisher: wheels.yml on sergiud/hogpp

Attestations:

File details

Details for the file hogpp-0.1.0a1-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for hogpp-0.1.0a1-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 e237e3105ac95bbe30a7fcedf5bcefa0b489d9ca3492ac9a7c7540ee4771fd42
MD5 1891fc2b84758047c35cc4919330cbf0
BLAKE2b-256 6fae4a53ac936c33c72dbd9b310175ff8ba96d408e20371b3b1615797d80adaf

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.1.0a1-pp310-pypy310_pp73-win_amd64.whl:

Publisher: wheels.yml on sergiud/hogpp

Attestations:

File details

Details for the file hogpp-0.1.0a1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for hogpp-0.1.0a1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 39a6c5faf04408843c907169b52efedd55d4fee8ee0f17285006e9f022a185c4
MD5 c492d122b994f70e85b3ca9d29575a60
BLAKE2b-256 f97ea190526aa79538b642fe86610eefa122b81c61495aec463da73e8f7e9001

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.1.0a1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: wheels.yml on sergiud/hogpp

Attestations:

File details

Details for the file hogpp-0.1.0a1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for hogpp-0.1.0a1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cb19f739b3da80781b6b284053f84b567ff7407fd8676cb668c4e626a7f02539
MD5 3eee53ac25345da685802d790ddeb7e1
BLAKE2b-256 a5dd052a2950ba483118e229a8fbf4286c1a092f410da7a1041a8220eaf82dd5

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.1.0a1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: wheels.yml on sergiud/hogpp

Attestations:

File details

Details for the file hogpp-0.1.0a1-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for hogpp-0.1.0a1-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 80773a3909535bd0f75a1c36436d952db7318c2df28343e381c2082d5e0787f2
MD5 1b03c0a2468f410b8eb8000a302b41ff
BLAKE2b-256 7bafdcc637021f7704df80598b06de07e513ddc98720fc0628280bce26cc93e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.1.0a1-pp310-pypy310_pp73-macosx_11_0_arm64.whl:

Publisher: wheels.yml on sergiud/hogpp

Attestations:

File details

Details for the file hogpp-0.1.0a1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for hogpp-0.1.0a1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 e946facdc12da27ec8641c0179d9af08546b1bc44b7a5512601a1fb30c8aebcd
MD5 bdc63bdad39ac3b254e8b3389228a55a
BLAKE2b-256 78b64a1c327e5c8fc4a048bfec336a6c7da0ca4499766881c51376c0fe75a6f6

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.1.0a1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl:

Publisher: wheels.yml on sergiud/hogpp

Attestations:

File details

Details for the file hogpp-0.1.0a1-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for hogpp-0.1.0a1-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 983fe64ce8d6a4f19a84fd6a36a33e097599f3b0d15d99f1d458064dc779c8c9
MD5 6fbe386d0f51afe3f4bce9d2dd9a87a5
BLAKE2b-256 9266790dc3f5dbd52155ecb2b4a20408187fe45381d82e839a8b08c616c12fed

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.1.0a1-pp39-pypy39_pp73-win_amd64.whl:

Publisher: wheels.yml on sergiud/hogpp

Attestations:

File details

Details for the file hogpp-0.1.0a1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for hogpp-0.1.0a1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 88197a3b82556a0ea4f435f7e7f875f12ad8bd89561ac8b102709f4a49a1af1b
MD5 f49a93dd21fd69f024d7c6a2d8e561f7
BLAKE2b-256 1120b4c957ef6c10347022c12b8a477e8d0efa982fd2c094afd0ee3fff2357f2

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.1.0a1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: wheels.yml on sergiud/hogpp

Attestations:

File details

Details for the file hogpp-0.1.0a1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for hogpp-0.1.0a1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4c62912a7674ee0bc66eeabbaf4fc61469501546d48710d724710de846f74373
MD5 83461992033f7dbdd962d394d37f20ad
BLAKE2b-256 4a3a8dba1e5b998442e5714b41f60bf1163d19b741be9b9e8f9a4b890f3ea327

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.1.0a1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: wheels.yml on sergiud/hogpp

Attestations:

File details

Details for the file hogpp-0.1.0a1-pp39-pypy39_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for hogpp-0.1.0a1-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a5caf345156d836cd2054e0b2aff5371d028df085870d93d63d670dcd9163514
MD5 1320e439b669c15af437077cf7a2b851
BLAKE2b-256 1c2ab9b05b80cbdac844043695451966aaf92dbc7b1f9a5768979a5ff29b6e44

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.1.0a1-pp39-pypy39_pp73-macosx_11_0_arm64.whl:

Publisher: wheels.yml on sergiud/hogpp

Attestations:

File details

Details for the file hogpp-0.1.0a1-pp39-pypy39_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for hogpp-0.1.0a1-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 533c0a5c5bc9abb67f6de637feda2beffc857b3551658d66b2045e599d9b8df0
MD5 d85b113747b926d438cd9053dfa625b3
BLAKE2b-256 b934655bcfa2e8e85cb80df8368bbb9bec4a7679c71755061501e6d497b2628a

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.1.0a1-pp39-pypy39_pp73-macosx_10_15_x86_64.whl:

Publisher: wheels.yml on sergiud/hogpp

Attestations:

File details

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

File metadata

  • Download URL: hogpp-0.1.0a1-cp313-cp313t-win_amd64.whl
  • Upload date:
  • Size: 414.3 kB
  • Tags: CPython 3.13t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for hogpp-0.1.0a1-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 94f8b532fe30214c5b38f31d5fc30802b9812b6042c0d0181b42fea29bae0247
MD5 3ebd47c73909478b33b9a888a2270ad2
BLAKE2b-256 302da69e82ef50e989b623bec4c6216c4035948fd553c6980e605d60967bd80b

See more details on using hashes here.

Provenance

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

Publisher: wheels.yml on sergiud/hogpp

Attestations:

File details

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

File metadata

File hashes

Hashes for hogpp-0.1.0a1-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a5ead0cccad12200646f06c137e5e1fe3c6eb80c78ce6117eccc0aad3b0cef75
MD5 28789adbf77ab79dd1f91e632a6ac388
BLAKE2b-256 62cac7b2c87c98cd0cd490d472269970456c346b3f0032b2d21e6865be0d7eb6

See more details on using hashes here.

Provenance

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

Publisher: wheels.yml on sergiud/hogpp

Attestations:

File details

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

File metadata

File hashes

Hashes for hogpp-0.1.0a1-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a2dfbd0ffd490a0cd67d36ee82cc8585c39eac96b973ec9aed6f0d3bb87ad688
MD5 767afc04c3a90d5528fe36fa851dd36d
BLAKE2b-256 5af645d0d64d2171da3ff1a2ad76efde62ac9838cd532d7b62b46229c811e74f

See more details on using hashes here.

Provenance

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

Publisher: wheels.yml on sergiud/hogpp

Attestations:

File details

Details for the file hogpp-0.1.0a1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for hogpp-0.1.0a1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9fb93ff675cc4d2e0a8475889cde927b3b5550b1aca11c887e266d49d3b2be52
MD5 0aa3669686215bd7fed349ce1ed93bda
BLAKE2b-256 ce76852b6a331fe6efafc01c8faa2e2a84a0b10ae154d4073667d88b3f0e165f

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.1.0a1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: wheels.yml on sergiud/hogpp

Attestations:

File details

Details for the file hogpp-0.1.0a1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for hogpp-0.1.0a1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8763b1495ff1e002e96149e21ebbf798dda9f2cfa373521145353b09cc97ca4b
MD5 c95d935019ebe85c40ac32e1c552204b
BLAKE2b-256 7c7cd749073665d529a518222527d57aee37047ec24b50981d90c594f1584ae8

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.1.0a1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: wheels.yml on sergiud/hogpp

Attestations:

File details

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

File metadata

File hashes

Hashes for hogpp-0.1.0a1-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 82b6dbbf07ff30dad064869a3873d690a4685302a579bc015ddbdfbd9e28175b
MD5 207f8dc23064cf45c7b226a9af63472d
BLAKE2b-256 38052b4391da0041375772b44fa62dadbc34b659379ab19de9771806a6c1333f

See more details on using hashes here.

Provenance

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

Publisher: wheels.yml on sergiud/hogpp

Attestations:

File details

Details for the file hogpp-0.1.0a1-cp313-cp313t-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for hogpp-0.1.0a1-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 799a56300f58d7abc59eaeb4aaacd4c0f95ba6b71b9dd0a929686b5e1351b75a
MD5 9ee0abd400908aea64338da763958dc7
BLAKE2b-256 7388c2dcbc57c19466d6487885fa4f4b01ff62d953f34628547902037631c9c5

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.1.0a1-cp313-cp313t-macosx_10_13_x86_64.whl:

Publisher: wheels.yml on sergiud/hogpp

Attestations:

File details

Details for the file hogpp-0.1.0a1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: hogpp-0.1.0a1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 393.7 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for hogpp-0.1.0a1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 e2cc411c2e7047ad50db6b128a43427a0ee56a9c940a18a7c78b6abd3b091c28
MD5 798b3d5696a3f6239fcedf6036de2596
BLAKE2b-256 cbde9121ff25db5368b01e962836051e5e69761ea6c9dac174800a2d88f53bba

See more details on using hashes here.

Provenance

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

Publisher: wheels.yml on sergiud/hogpp

Attestations:

File details

Details for the file hogpp-0.1.0a1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for hogpp-0.1.0a1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2a6e2f1f8953d8445e6432f028226f4e3f86aabcb3f9072f3af15a49825067d3
MD5 aaa2ea03e9ec4c1016d2fb33ed785064
BLAKE2b-256 7c72b3770893bf21a03fb200bceada52a0f38de1f153f049d2951eec381a5230

See more details on using hashes here.

Provenance

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

Publisher: wheels.yml on sergiud/hogpp

Attestations:

File details

Details for the file hogpp-0.1.0a1-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for hogpp-0.1.0a1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 91d29ca40ad5beebc0bdad202bd1733439716ead71b142f8a1addf686e8fa34c
MD5 2c3b666edef428688fd1cccd88cf1c5d
BLAKE2b-256 1c250fe4282ad7eb553eca92e8aec86f101c858a7a977f2aca3e9d27a9ad6f87

See more details on using hashes here.

Provenance

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

Publisher: wheels.yml on sergiud/hogpp

Attestations:

File details

Details for the file hogpp-0.1.0a1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for hogpp-0.1.0a1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 98a38083f6b272c5c9d1f8704c2b98334376137c3346388b808eadb6c6879b64
MD5 6afa463f99a7e2c766a06caca517b0c5
BLAKE2b-256 a0669a116a2217072b52c9e611e7151a7e7d60dab05b5f3f8e02b09abd134dff

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.1.0a1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: wheels.yml on sergiud/hogpp

Attestations:

File details

Details for the file hogpp-0.1.0a1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for hogpp-0.1.0a1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bfa8e9eadef0a9079cd58807df6632c7a114a5295360585a2d42fe270dacba24
MD5 8b3ed62ca70769712cb8d9d366db565f
BLAKE2b-256 8ce6d017cbfddf8b4b99f90612dc3633e4eed5d5488164b6b9730478e90283a8

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.1.0a1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: wheels.yml on sergiud/hogpp

Attestations:

File details

Details for the file hogpp-0.1.0a1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for hogpp-0.1.0a1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d625e04431741a42638ad597e95d8ebe652b6f0b95d4a48ca2b3f164de2f46c3
MD5 00982a202491549337b71fed2988991c
BLAKE2b-256 7cc7656dccc50321065da808ab094471165862503cfae8528590783fbaad294d

See more details on using hashes here.

Provenance

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

Publisher: wheels.yml on sergiud/hogpp

Attestations:

File details

Details for the file hogpp-0.1.0a1-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for hogpp-0.1.0a1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 3d76c563ccc7038e7e443d3e90893d003c6358d960593ffd9484ef3d5a776f4d
MD5 8689267dfc6b3026c72746816980da42
BLAKE2b-256 d35266c23e3a441699889b7e584ce07b37647dda5419c7101ff8e18aa1eda606

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.1.0a1-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: wheels.yml on sergiud/hogpp

Attestations:

File details

Details for the file hogpp-0.1.0a1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: hogpp-0.1.0a1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 393.8 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for hogpp-0.1.0a1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 773a6531f68e2512c6ff180b324cfd2aa50395fbcaaa2a82c877943a0e17caa9
MD5 90af536cbe41f459cf7c4c427982180d
BLAKE2b-256 830436d9f1fdacd09558b2378a8a880311edcc7156ae4f6f58cc2f7057a0c189

See more details on using hashes here.

Provenance

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

Publisher: wheels.yml on sergiud/hogpp

Attestations:

File details

Details for the file hogpp-0.1.0a1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for hogpp-0.1.0a1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f2bc0fdb68223f494856b427c3dda528ceb384a0244859a1b400f128abfaa250
MD5 e2703ff1ef22fe87ba24bffb2f211241
BLAKE2b-256 a66bfc70df7c1e0455a2d2887816dd5be061325269e8c6d179a72d8abd650957

See more details on using hashes here.

Provenance

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

Publisher: wheels.yml on sergiud/hogpp

Attestations:

File details

Details for the file hogpp-0.1.0a1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for hogpp-0.1.0a1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b5b1d538bd693903b054a1c709036041a26797ac1cbb1f4f857a71741a605836
MD5 b16ed2e86533cccb3fe73b4673e706fb
BLAKE2b-256 8915b93c1a3f6e3f24695f821e990cb8933580ee7d514b81e51f81e96cefd047

See more details on using hashes here.

Provenance

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

Publisher: wheels.yml on sergiud/hogpp

Attestations:

File details

Details for the file hogpp-0.1.0a1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for hogpp-0.1.0a1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b91f860c3eaac7f7d510a0302a6c668364d6c844cf8c40019ca8c773aaf47d46
MD5 d20e275b506c13e10a545907f2624451
BLAKE2b-256 d1b9daee5a825d88af999daaaece9372a24939d3b9498a6ff4a376bfb754c95b

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.1.0a1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: wheels.yml on sergiud/hogpp

Attestations:

File details

Details for the file hogpp-0.1.0a1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for hogpp-0.1.0a1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8066ddd5a26a36608b5d69142d9b8c87e4664cea9255fe157dd8c4a151aa3994
MD5 6722a3d3ccd3b5b71076e49fabccd102
BLAKE2b-256 51bb27436e8349432fdd2d6d711e5c6517524830929173c813977ef3d6883d01

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.1.0a1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: wheels.yml on sergiud/hogpp

Attestations:

File details

Details for the file hogpp-0.1.0a1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for hogpp-0.1.0a1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 783e228d159ef742722e8ddd7eee03be10e056f5ae03b0499acc069c0700e552
MD5 f02464cf1486fdf9cf9b2dcf8e97711c
BLAKE2b-256 26c1421a35219edb03ef05f402f487951291848298c7dd01dc95931302f0691a

See more details on using hashes here.

Provenance

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

Publisher: wheels.yml on sergiud/hogpp

Attestations:

File details

Details for the file hogpp-0.1.0a1-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for hogpp-0.1.0a1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 073a5a24c444432c1f55237df04cfa77a2cc2891a7efd7ea528e7c7c7a944992
MD5 4d87addf6087ff12275edf177231fb87
BLAKE2b-256 fcad967fa9ea87626fd0b9699190820b1e5c7582e8bc6b851efe19656b38213b

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.1.0a1-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: wheels.yml on sergiud/hogpp

Attestations:

File details

Details for the file hogpp-0.1.0a1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: hogpp-0.1.0a1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 393.4 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for hogpp-0.1.0a1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 4cc74e41c818d440c03d7febef481df74ca3d1de3484dfe929f2ad2f6820875e
MD5 4bb1afa0ce200a94030d71f5463df151
BLAKE2b-256 74c76a17b614781cef1752368847e64f3d3f3bd6ef121af8cc394986eb333523

See more details on using hashes here.

Provenance

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

Publisher: wheels.yml on sergiud/hogpp

Attestations:

File details

Details for the file hogpp-0.1.0a1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for hogpp-0.1.0a1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9776193916de7259475c8d241e3bbf168aebe5f073000bcda3fffbb2b2edda00
MD5 6ece64a687d3ea5df6f36306bdcbe1f4
BLAKE2b-256 af9632433ad845e847d8a168b7e01e79879db9aa7949da78b176e8884a68fc6b

See more details on using hashes here.

Provenance

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

Publisher: wheels.yml on sergiud/hogpp

Attestations:

File details

Details for the file hogpp-0.1.0a1-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for hogpp-0.1.0a1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 01eef0b8d2542eab4cbf4469e962b9458a91c40251bb482da9e0817cdd87409f
MD5 01ab1d12ee4ed0b4d68961106cc4fa3b
BLAKE2b-256 13268bad5f7e762fbb8e8b9e4aa8292602cd32bd7654e9e05733b6c938c978dd

See more details on using hashes here.

Provenance

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

Publisher: wheels.yml on sergiud/hogpp

Attestations:

File details

Details for the file hogpp-0.1.0a1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for hogpp-0.1.0a1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d3f92a5f5cf939ef1eee9a7777d8aff34c5fa7fb554e3fc33ed5be9121b6cc18
MD5 a4dc29057e27754c7dae157a4848f070
BLAKE2b-256 f0c6a9e619d5072b202ea09838e37708d9cc4c85726ef543121f6ea34f825acb

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.1.0a1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: wheels.yml on sergiud/hogpp

Attestations:

File details

Details for the file hogpp-0.1.0a1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for hogpp-0.1.0a1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 870f537de924bd218187b797b6549ed2d4536516f88684c980d3e4eb33a8675e
MD5 252180fbe5fbcddefd3d80aa90a9e3b2
BLAKE2b-256 a8ea6bf2c94a973b52a3b3d3bb6e7aeb8b4d3b1b316c75cffb439784272d301b

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.1.0a1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: wheels.yml on sergiud/hogpp

Attestations:

File details

Details for the file hogpp-0.1.0a1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for hogpp-0.1.0a1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6101b3ce550429a6e0c6bf880809d0881cb05976b7fcc03be052f7c08e4cd8d8
MD5 44c2c2356d7fa2536c989d57f4e1fcdc
BLAKE2b-256 9f6f6073305792a5101fdc433c9000e2b0a3e809e0e510167fb6173075a5ea66

See more details on using hashes here.

Provenance

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

Publisher: wheels.yml on sergiud/hogpp

Attestations:

File details

Details for the file hogpp-0.1.0a1-cp311-cp311-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for hogpp-0.1.0a1-cp311-cp311-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 4f6ee15d8c385b70661d6c8cde0068431d71d0158494eec93da915e18dc7f071
MD5 21df96977a278e9527107e1cd109cfd6
BLAKE2b-256 a781b0891f4beeb9e3f9748894bd385f5eb93b294e578ee9e89b83ddbd081de6

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.1.0a1-cp311-cp311-macosx_10_13_x86_64.whl:

Publisher: wheels.yml on sergiud/hogpp

Attestations:

File details

Details for the file hogpp-0.1.0a1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: hogpp-0.1.0a1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 392.2 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for hogpp-0.1.0a1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 0ee2d6e4edd9a812652d7748c6595cc42243be351ffdbd879eabb45d103b655d
MD5 c4603abc7e7355653a91e98b21b3cafe
BLAKE2b-256 9beb3798f968766788f4e0a11c46ba19d5de8d5633858f8d0819a439f53ca5f8

See more details on using hashes here.

Provenance

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

Publisher: wheels.yml on sergiud/hogpp

Attestations:

File details

Details for the file hogpp-0.1.0a1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for hogpp-0.1.0a1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9614ff854b03dd344058d580ca9938b8cc508794c6e1100f4dc16f62e6b99d7c
MD5 80c8d00be2b0c9aa09fda60a41cb7712
BLAKE2b-256 71628d797df37913cfba3b6c5c4a708fae92efacbea42eb71597c4a88e55a9da

See more details on using hashes here.

Provenance

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

Publisher: wheels.yml on sergiud/hogpp

Attestations:

File details

Details for the file hogpp-0.1.0a1-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for hogpp-0.1.0a1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f7bb920455a0d0f5eada11b1fe41284dd48d942466d451712af57acc7c61a657
MD5 0e8647fa2e137cacbc854517bf9b9526
BLAKE2b-256 9f90a21cc4e9facf32a06fbae32dccd883de899cdc7f3464fb1a0a43bcad9c4a

See more details on using hashes here.

Provenance

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

Publisher: wheels.yml on sergiud/hogpp

Attestations:

File details

Details for the file hogpp-0.1.0a1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for hogpp-0.1.0a1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2d86ea6c173b8b17bc6629e2296234eca1fec1f4afb756a97bb9008e6b65743d
MD5 f876823917ad3a8d27e77b8f36dba2a7
BLAKE2b-256 59e48c0db9f20aabb3c24bdb26918ca1d682375aaacad225a5f054c341079016

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.1.0a1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: wheels.yml on sergiud/hogpp

Attestations:

File details

Details for the file hogpp-0.1.0a1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for hogpp-0.1.0a1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f379fd560d1b46af74fea3241f287a0dffa9600631461a528c1ceacc2e4cd930
MD5 336c6ea9f3e83ec36ab7524d522b42d1
BLAKE2b-256 964e5b4a7e15a44514fbffc341689d4996c63d4ad4407b94a5be0a3a8267deac

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.1.0a1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: wheels.yml on sergiud/hogpp

Attestations:

File details

Details for the file hogpp-0.1.0a1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for hogpp-0.1.0a1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 decf0fa21e25f5ca1294d0361a6bb1bce0449e4904d189816cdeed57905035e4
MD5 457dba7f4d607c176184f8d64b06e81b
BLAKE2b-256 b8093279f511f65a05f4b3998be6531356eda63fa55d55c81a9b63b5be591b89

See more details on using hashes here.

Provenance

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

Publisher: wheels.yml on sergiud/hogpp

Attestations:

File details

Details for the file hogpp-0.1.0a1-cp310-cp310-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for hogpp-0.1.0a1-cp310-cp310-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 b4ffd2e02c404d89a8db9f9c2461df0523624322a80e59c7f03cb83cdccc0243
MD5 901a8a14e21fb72415e8238b3e151184
BLAKE2b-256 40260fe1b4aba71aeaeb50701f9021b38fa02a9162d27c02332f05f96d77f300

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.1.0a1-cp310-cp310-macosx_10_13_x86_64.whl:

Publisher: wheels.yml on sergiud/hogpp

Attestations:

File details

Details for the file hogpp-0.1.0a1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: hogpp-0.1.0a1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 391.0 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for hogpp-0.1.0a1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 7d281061e77caf07f536245bd1c8bc472c4896545136fece312d46251220a42a
MD5 9637c347198cf5ef36534b0268becf1b
BLAKE2b-256 bc99a61c0154d136863a85edd12f42945e1534ec0af5437c9cdfd473a08dc8f3

See more details on using hashes here.

Provenance

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

Publisher: wheels.yml on sergiud/hogpp

Attestations:

File details

Details for the file hogpp-0.1.0a1-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for hogpp-0.1.0a1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 51eb27344428d05b5284d0aa7aa949c4f44cfc4105db5436bed379a03ff0c491
MD5 fc569ec699725eef826b58f427c530a2
BLAKE2b-256 4c9e1a0ffcbf383284924a4681a5d05ada800bde00514e082d8589e33943c93d

See more details on using hashes here.

Provenance

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

Publisher: wheels.yml on sergiud/hogpp

Attestations:

File details

Details for the file hogpp-0.1.0a1-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for hogpp-0.1.0a1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2558f7ec952eaecfdc5b80e250e4a98a36c5989fb8db7a7c0167572b75bf1cbc
MD5 fafdc4c0b945be8e3125f191eb0f36f8
BLAKE2b-256 ae2207d50a3856fe44157f1726b835f3ca8565bf8bd176c810e9b677c5b9c80d

See more details on using hashes here.

Provenance

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

Publisher: wheels.yml on sergiud/hogpp

Attestations:

File details

Details for the file hogpp-0.1.0a1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for hogpp-0.1.0a1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fae995c73faab8ce7fd07c3706223f957856ddc6e4c7bc38ae53a4c023f74b16
MD5 a18680b60a77a762b78673c7b5322979
BLAKE2b-256 ec91769814e3ccce5da00974cbe75f71fe7b3007e35734e2b152f6e69376180d

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.1.0a1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: wheels.yml on sergiud/hogpp

Attestations:

File details

Details for the file hogpp-0.1.0a1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for hogpp-0.1.0a1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 85b95618d1e06686ddfbfafe0887d0a87847d4bc41a038e05c364c3df78bccf7
MD5 4ea97141d1bdce6dea34c7cdbd06864d
BLAKE2b-256 cf30c8936a964d1e7095a14eee4e64d91ae28a5197df1685097d4d7cf1532f6e

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.1.0a1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: wheels.yml on sergiud/hogpp

Attestations:

File details

Details for the file hogpp-0.1.0a1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for hogpp-0.1.0a1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 577e42e42dd573c5a5a8141603f63693e310bce9cac459363abd19b7d0b1b73b
MD5 1804488ce2b5fd2025394ea929ed41b2
BLAKE2b-256 c5c05671cb5c8265349648058b2c04ae403fb08e01f27ee5c88f26da747c70fa

See more details on using hashes here.

Provenance

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

Publisher: wheels.yml on sergiud/hogpp

Attestations:

File details

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

File metadata

File hashes

Hashes for hogpp-0.1.0a1-cp39-cp39-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 a47a64337b93dd18ae6628b31639d52a55ee174e16e5795caa23ce0659c875ae
MD5 18a7a3594e6121aabea621db7ecf2219
BLAKE2b-256 4150422bc6dacbd38024797b0adbc53855c44805d0d788893d7dc38a2cbfd80e

See more details on using hashes here.

Provenance

The following attestation bundles were made for hogpp-0.1.0a1-cp39-cp39-macosx_10_13_x86_64.whl:

Publisher: wheels.yml on sergiud/hogpp

Attestations:

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page