Skip to main content

Dynamic neural networks for predictive coding

Project description

hgf

PyHGF: A Neural Network Library for Predictive Coding

pre-commit license codecov Ruff mypy pip

PyHGF is a Python library for creating and manipulating dynamic probabilistic networks for predictive coding. These networks approximate Bayesian inference by optimizing beliefs through the diffusion of predictions and precision-weighted prediction errors. The graph structure remains flexible during message-passing steps, allowing for dynamic adjustments. They can be used as a biologically plausible cognitive model in computational neuroscience or as a generalization of Bayesian filtering for designing efficient, modular decision-making agents. With the current version you can:

  • Build arbitrarily sized networks with the generalized Hierarchical Gaussian Filters (Weber et al., 2026)
  • Use generalised Bayesian filtering with distributions from the exponential family (Mathys & Weber, 2020)
  • Define custom planning and action selection functions throught trajectories sampling (e.g. sophisticated inference, Friston et al., 2020)
  • Learn in deep predictive coding networks using a fast and scalable rethinking of prospective configuration (Song et al., 2024) from closed-form updates and volatility learning.

The framework support both a JAX and Rust backend. It is designed to be adaptable to other algorithms. The core functions are differentiable and JIT-compiled where applicable. The library is optimized for modularity and ease of use, allowing seamless integration with other libraries in the ecosystem for Bayesian inference and optimization. You can find the method paper describing the toolbox here.

Getting started

Installation

The last official release can be downloaded from PIP:

pip install pyhgf

The current version under development can be installed from the master branch of the GitHub folder:

pip install “git+https://github.com/ComputationalPsychiatry/pyhgf.git”

How does it work?

Dynamic networks are fully defined by the following variables:

  • The attributes (dictionary) that store each node's states and parameters (e.g. value, precision, learning rates, volatility coupling, ...).
  • The edges (tuple) that lists, for each node, the indexes of the parents and children.
  • A set of update functions. An update function receive a network tuple and returns an updated network tuple.
  • An update sequence (tuple) of callables (update functions) and pointers (nodes).
networks

You can find a deeper introduction to how to create and manipulate networks under the following link:

The Generalized Hierarchical Gaussian Filter

Generalized Hierarchical Gaussian Filters (gHGF) are specific instances of dynamic networks where node encodes a Gaussian distribution that can inherit its value (mean) and volatility (variance) from other nodes. The presentation of a new observation at the lowest level of the hierarchy (i.e., the input node) triggers a recursive update of the nodes' belief (i.e., posterior distribution) through top-down predictions and bottom-up precision-weighted prediction errors. The resulting probabilistic network operates as a Bayesian filter, and a response function can parametrize actions/decisions given the current beliefs. By comparing those behaviours with actual outcomes, a surprise function can be optimized over a set of free parameters. The Hierarchical Gaussian Filter for binary and continuous inputs was first described in Mathys et al. (2011, 2014), and later implemented in the Matlab HGF Toolbox (part of TAPAS (Frässle et al. 2021).

You can find a deeper introduction on how does the gHGF works under the following link:

Model fitting

Here we demonstrate how to fit forwards a two-level binary Hierarchical Gaussian filter. The input time series are binary observations using an associative learning task Iglesias et al. (2013).

Creating and fitting a binary HGF
from pyhgf.model import Network
from pyhgf import load_data

# Load time series example data (observations, decisions)
u, y = load_data("binary")

# Create a two-level binary HGF from scratch
hgf = (
    Network()
    .add_nodes(kind="binary-state")
    .add_nodes(kind="continuous-state", value_children=0)
)

# add new observations
hgf.input_data(input_data=u)

# visualization of the belief trajectories
hgf.plot_trajectories();

png

Surprise

Computing the model's surprise
from pyhgf.response import binary_softmax_inverse_temperature

# compute the model's surprise (-log(p)) 
# using the binary softmax with inverse temperature as the response model
surprise = hgf.surprise(
    response_function=binary_softmax_inverse_temperature,
    response_function_inputs=y,
    response_function_parameters=4.0
)
print(f"Sum of surprises = {surprise.sum()}")

Model's surprise = 138.8992462158203

Generalised Bayesian filtering

The framework supports online Bayesian filtering over any distribution in the exponential family (Mathys & Weber, 2020). Because these distributions share a common mathematical form, the posterior update reduces to a simple rule over the expected sufficient statistics $\xi$ and a pseudo-count $\nu$ that acts as an inverse learning rate. When the data source is non-stationary, $\nu$ can be kept fixed for a constant learning rate, or it can be dynamically adapted through a Hierarchical Gaussian Filter, giving the agent a volatility-sensitive learning rate that speeds up when the environment changes and slows down when it is stable.

Tracking a bivariate normal distribution
from pyhgf.model import Network
import numpy as np

# Create a generalised filter for a 2D normal distribution
bivariate_normal = (
    Network()
    .add_nodes(
        kind="ef-state",
        nus=8.0,
        learning="generalised-filtering",
        distribution="multivariate-normal",
        dimension=2,
    )
    .input_data(input_data=spiral_data)
)

gif

Learning in deep predictive coding networks

The framework extends predictive coding to deep neural networks through prospective configuration (Song et al., 2024): before updating any weight, the network first infers the most likely activations at every layer by settling prediction errors across the hierarchy, and only then adjusts the coupling strengths (weights). This two-phase infer-then-update cycle avoids the catastrophic interference that plagues standard backpropagation and naturally yields precision-weighted learning, where the balance of uncertainty between inputs and outputs controls the depth at which weights change.

Binary classification on a two-moons dataset
from pyhgf.model import DeepNetwork
import jax.numpy as jnp

# Build a 2 → 16 → 16 → 1 (binary) predictive coding network
clf_net = (
    DeepNetwork(coupling_fn=jnp.tanh)
    .add_layer(size=1, kind="binary")
    .add_layer(size=16, tonic_volatility=-4.0)
    .add_layer(size=16, tonic_volatility=-4.0)
    .add_layer(size=2, add_constant_input=False, coupling_fn=lambda x: x)
    .weight_initialisation("he", seed=0)
)

# Train for 100 epochs using the Adam optimiser
for epoch in range(100):
    clf_net.fit(X_train, y_train, lr=0.1, optimizer="adam")

gif

Acknowledgments

This implementation of the Hierarchical Gaussian Filter was inspired by the original Matlab HGF Toolbox. A Julia implementation of the gHGF is also available here.

The development of PyHGF is supported by:

Aarhus University     Center for Humanities Computing     Interacting Minds Centre

References

  1. Legrand, N., Weber, L., Waade, P. T., Daugaard, A. H. M., Khodadadi, M., Mikuš, N., & Mathys, C. (2024). pyhgf: A neural network library for predictive coding (Version 1). arXiv. https://doi.org/10.48550/ARXIV.2410.09206
  2. Mathys, C. (2011). A Bayesian foundation for individual learning under uncertainty. In Frontiers in Human Neuroscience (Vol. 5). Frontiers Media SA. https://doi.org/10.3389/fnhum.2011.00039
  3. Mathys, C. D., Lomakina, E. I., Daunizeau, J., Iglesias, S., Brodersen, K. H., Friston, K. J., & Stephan, K. E. (2014). Uncertainty in perception and the hierarchical Gaussian filter. Frontiers in Human Neuroscience, 8. https://doi.org/10.3389/fnhum.2014.00825
  4. Lilian Aline Weber, Peter Thestrup Waade, Nicolas Legrand, Anna Hedvig Møller, Klaas Enno Stephan, & Christoph Mathys. (2026). The generalized Hierarchical Gaussian Filter. eLife 15:RP110174. https://doi.org/10.7554/eLife.110174.1
  5. Frässle, S., Aponte, E. A., Bollmann, S., Brodersen, K. H., Do, C. T., Harrison, O. K., Harrison, S. J., Heinzle, J., Iglesias, S., Kasper, L., Lomakina, E. I., Mathys, C., Müller-Schrader, M., Pereira, I., Petzschner, F. H., Raman, S., Schöbi, D., Toussaint, B., Weber, L. A., … Stephan, K. E. (2021). TAPAS: An Open-Source Software Package for Translational Neuromodeling and Computational Psychiatry. In Frontiers in Psychiatry (Vol. 12). Frontiers Media SA. https://doi.org/10.3389/fpsyt.2021.680811
  6. Iglesias, S., Kasper, L., Harrison, S. J., Manka, R., Mathys, C., & Stephan, K. E. (2021). Cholinergic and dopaminergic effects on prediction error and uncertainty responses during sensory associative learning. In NeuroImage (Vol. 226, p. 117590). Elsevier BV. https://doi.org/10.1016/j.neuroimage.2020.117590
  7. Mathys, C., Weber, L. (2020). Hierarchical Gaussian Filtering of Sufficient Statistic Time Series for Active Inference. In: Verbelen, T., Lanillos, P., Buckley, C.L., De Boom, C. (eds) Active Inference. IWAI 2020. Communications in Computer and Information Science, vol 1326. Springer, Cham. https://doi.org/10.1007/978-3-030-64919-7_7
  8. Friston, K., Da Costa, L., Hafner, D., Hesp, C., & Parr, T. (2021). Sophisticated Inference. Neural Computation, 33(3), 713–763. https://doi.org/10.1162/neco_a_01351
  9. Song, Y., Millidge, B., Salvatori, T. et al. Inferring neural activity before plasticity as a foundation for learning beyond backpropagation. Nat Neurosci 27, 348–358 (2024). https://doi.org/10.1038/s41593-023-01514-1

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

pyhgf-0.2.10.tar.gz (40.0 MB view details)

Uploaded Source

Built Distributions

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

pyhgf-0.2.10-cp314-cp314t-win_amd64.whl (358.8 kB view details)

Uploaded CPython 3.14tWindows x86-64

pyhgf-0.2.10-cp314-cp314t-win32.whl (343.9 kB view details)

Uploaded CPython 3.14tWindows x86

pyhgf-0.2.10-cp314-cp314t-musllinux_1_2_x86_64.whl (717.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

pyhgf-0.2.10-cp314-cp314t-musllinux_1_2_i686.whl (748.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

pyhgf-0.2.10-cp314-cp314t-musllinux_1_2_armv7l.whl (782.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

pyhgf-0.2.10-cp314-cp314t-musllinux_1_2_aarch64.whl (677.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

pyhgf-0.2.10-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (518.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

pyhgf-0.2.10-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (526.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

pyhgf-0.2.10-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (636.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

pyhgf-0.2.10-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (506.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

pyhgf-0.2.10-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (501.4 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

pyhgf-0.2.10-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl (536.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.5+ i686

pyhgf-0.2.10-cp314-cp314t-macosx_11_0_arm64.whl (464.4 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

pyhgf-0.2.10-cp314-cp314t-macosx_10_12_x86_64.whl (475.7 kB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

pyhgf-0.2.10-cp37-abi3-win_arm64.whl (357.5 kB view details)

Uploaded CPython 3.7+Windows ARM64

pyhgf-0.2.10-cp37-abi3-win_amd64.whl (366.9 kB view details)

Uploaded CPython 3.7+Windows x86-64

pyhgf-0.2.10-cp37-abi3-win32.whl (352.5 kB view details)

Uploaded CPython 3.7+Windows x86

pyhgf-0.2.10-cp37-abi3-musllinux_1_2_x86_64.whl (725.6 kB view details)

Uploaded CPython 3.7+musllinux: musl 1.2+ x86-64

pyhgf-0.2.10-cp37-abi3-musllinux_1_2_i686.whl (759.2 kB view details)

Uploaded CPython 3.7+musllinux: musl 1.2+ i686

pyhgf-0.2.10-cp37-abi3-musllinux_1_2_armv7l.whl (792.3 kB view details)

Uploaded CPython 3.7+musllinux: musl 1.2+ ARMv7l

pyhgf-0.2.10-cp37-abi3-musllinux_1_2_aarch64.whl (687.0 kB view details)

Uploaded CPython 3.7+musllinux: musl 1.2+ ARM64

pyhgf-0.2.10-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (527.6 kB view details)

Uploaded CPython 3.7+manylinux: glibc 2.17+ x86-64

pyhgf-0.2.10-cp37-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl (534.7 kB view details)

Uploaded CPython 3.7+manylinux: glibc 2.17+ s390x

pyhgf-0.2.10-cp37-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (646.0 kB view details)

Uploaded CPython 3.7+manylinux: glibc 2.17+ ppc64le

pyhgf-0.2.10-cp37-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (517.4 kB view details)

Uploaded CPython 3.7+manylinux: glibc 2.17+ ARMv7l

pyhgf-0.2.10-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (511.5 kB view details)

Uploaded CPython 3.7+manylinux: glibc 2.17+ ARM64

pyhgf-0.2.10-cp37-abi3-manylinux_2_5_i686.manylinux1_i686.whl (547.2 kB view details)

Uploaded CPython 3.7+manylinux: glibc 2.5+ i686

pyhgf-0.2.10-cp37-abi3-macosx_11_0_arm64.whl (473.0 kB view details)

Uploaded CPython 3.7+macOS 11.0+ ARM64

pyhgf-0.2.10-cp37-abi3-macosx_10_12_x86_64.whl (484.2 kB view details)

Uploaded CPython 3.7+macOS 10.12+ x86-64

File details

Details for the file pyhgf-0.2.10.tar.gz.

File metadata

  • Download URL: pyhgf-0.2.10.tar.gz
  • Upload date:
  • Size: 40.0 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyhgf-0.2.10.tar.gz
Algorithm Hash digest
SHA256 2d43b30fbc33669c8ae64f1e5d189951577224c7ea6ec9d522db18dc51a219ae
MD5 d4579c64daec0b6d14d7e5738113f28b
BLAKE2b-256 979c8d6ab0848ddc6c047b96f02173027bf07288b2c24fbb94ee71ec38c96621

See more details on using hashes here.

File details

Details for the file pyhgf-0.2.10-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: pyhgf-0.2.10-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 358.8 kB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyhgf-0.2.10-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 6cda0aa3692e5d1f4084e4466877c72837bf1b76a8eb937b684004087dd3d383
MD5 01f597c4f2387cd3498a886357087a8d
BLAKE2b-256 4570a9ffcac03f25a56fd79145f895afc67ea619a8570b614c4f955feb93b2fa

See more details on using hashes here.

File details

Details for the file pyhgf-0.2.10-cp314-cp314t-win32.whl.

File metadata

  • Download URL: pyhgf-0.2.10-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 343.9 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyhgf-0.2.10-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 b8dcea068ff5c202494a40e66c00966783339a8c347a5c275d4a867583ac5a9c
MD5 8c20f5d04fae231ba33c0b6e2a9d5dd5
BLAKE2b-256 a1689fa887fe0bed6c01d74def93e837f454ba0220d4a82599239ea6523a1051

See more details on using hashes here.

File details

Details for the file pyhgf-0.2.10-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: pyhgf-0.2.10-cp314-cp314t-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 717.9 kB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyhgf-0.2.10-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bf0e96be57f2c4f15c704552635c6cf433eac30ff2e0d72fea44f05b18da7b43
MD5 c5b598612a56367f7f041d521cd12ee2
BLAKE2b-256 ee84befc8fe997735a484c57fc91155c26d3d3d694e1cabea857ad88bba74554

See more details on using hashes here.

File details

Details for the file pyhgf-0.2.10-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

  • Download URL: pyhgf-0.2.10-cp314-cp314t-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 748.8 kB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyhgf-0.2.10-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d5bdc3958fd8ed7cbff217252a8d88a3af41a2e2709ba0b721c70f094729ae73
MD5 7e01bf6209b7ac5d51b302fdf50c5776
BLAKE2b-256 d12211c03ff2a0308e5b0af45e1d4642ce9ba3d086897e044a71f831f465b297

See more details on using hashes here.

File details

Details for the file pyhgf-0.2.10-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: pyhgf-0.2.10-cp314-cp314t-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 782.2 kB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyhgf-0.2.10-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7d572ae14cc59d80b7e9b109b710a7b0c07e82c03dbe74f5225ba98ffeed8cae
MD5 99fcdc8f5f21fa8f7487c78b8e43c327
BLAKE2b-256 de808e979767bd47ac54345392ea52ddeec0f20e96c06b4fd5a296d1027c9f04

See more details on using hashes here.

File details

Details for the file pyhgf-0.2.10-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: pyhgf-0.2.10-cp314-cp314t-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 677.1 kB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyhgf-0.2.10-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 af51b2dd0fcdfd563eb5180cf483e4ad4550a8b7b6cb0a56bac7d1644857b67c
MD5 5cda97db0f9801992713108675da7417
BLAKE2b-256 dee6ede616ffe3ed6b7470e9a2aa84bf3ad7a0a6ce0a3186deb19c1fff384f99

See more details on using hashes here.

File details

Details for the file pyhgf-0.2.10-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: pyhgf-0.2.10-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 518.2 kB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyhgf-0.2.10-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a8595397cc0340fd144c3e809a080a66ed3631aaa585ee9225bcc725ee3aecde
MD5 cbb46204d1fd03f57ae4306073b3992f
BLAKE2b-256 a4ec4765d5fb3eabc3808a77e7f9fbc607d871d5114bc79d2315e93c22aadbae

See more details on using hashes here.

File details

Details for the file pyhgf-0.2.10-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: pyhgf-0.2.10-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 526.5 kB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyhgf-0.2.10-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cf42066fadde5a4e0eb6a6cf4a5fef0ae70ff70ffa8d6bf024053a475d4fa2ea
MD5 63674971e20d5ddda0f51cc692261987
BLAKE2b-256 440ffa777839246dbac3583cbe5234f3dc0a61509fe709e60abec2a7d44c855e

See more details on using hashes here.

File details

Details for the file pyhgf-0.2.10-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: pyhgf-0.2.10-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 636.9 kB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyhgf-0.2.10-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b03a9f1caa9c2e5d3019ee0946790046c67403a8bdc9e8c89029ce6c4623d6f7
MD5 83087d9b1f29c3ef78fbf5d22761f0ac
BLAKE2b-256 cb461669c4dae54fb9d90709d2a066685c716a22b97387e3caa253b01ac06916

See more details on using hashes here.

File details

Details for the file pyhgf-0.2.10-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: pyhgf-0.2.10-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 506.9 kB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyhgf-0.2.10-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1e79bdaf9862b83e6f2dbf13ccd70570b806bff3897bc384a1375289b3123f31
MD5 b3b250d1e9b53dd4bbc8b9f32ae0f449
BLAKE2b-256 ca1e1134823179cee8467e40b2395a8a34dde4a47b3d4b456901cd681f8015b5

See more details on using hashes here.

File details

Details for the file pyhgf-0.2.10-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: pyhgf-0.2.10-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 501.4 kB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyhgf-0.2.10-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fc70d474e3bed583b3ef7cc1da21442240c85102e7572e84bf6faa9bdab3dc49
MD5 59d44d40470656ba127257887c1b182c
BLAKE2b-256 77aeb4f50b7f9f7e298ee57db2836f5e62379c9c62fa35936ed1dceeefe5f98a

See more details on using hashes here.

File details

Details for the file pyhgf-0.2.10-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: pyhgf-0.2.10-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 536.6 kB
  • Tags: CPython 3.14t, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyhgf-0.2.10-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ba470d0b6cf8a47148148b3cce62441fab18e27e0e5266059cc0a7febb22dfc1
MD5 ff27fa8a28653a2014b5d603dd32a78b
BLAKE2b-256 73fe6684a1d4794eacd9a97898fd221924408b6ccaf20b3e55101f29b1ca6226

See more details on using hashes here.

File details

Details for the file pyhgf-0.2.10-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

  • Download URL: pyhgf-0.2.10-cp314-cp314t-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 464.4 kB
  • Tags: CPython 3.14t, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyhgf-0.2.10-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b8fd0662077c504b6fb6a18045215454f05eccb3f587d6262ebf2566a68742c3
MD5 40c04c4a40880f3f75bfaeb51fd63fb8
BLAKE2b-256 b3c667a742f088c7497cf4813e00fd175084bb9e9c142c5726a14daffa56f4fd

See more details on using hashes here.

File details

Details for the file pyhgf-0.2.10-cp314-cp314t-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: pyhgf-0.2.10-cp314-cp314t-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 475.7 kB
  • Tags: CPython 3.14t, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyhgf-0.2.10-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 08d12aeab569088b536314f348dfbf9837d2b7e0a479b509bfb80a39f11fe533
MD5 44f2acb952222d1d7e7ce4d10d5fe7cb
BLAKE2b-256 0c04f2a4f43dd0f6bb07b077f5abc97a8927ece18f564eb147434db1aa53e451

See more details on using hashes here.

File details

Details for the file pyhgf-0.2.10-cp37-abi3-win_arm64.whl.

File metadata

  • Download URL: pyhgf-0.2.10-cp37-abi3-win_arm64.whl
  • Upload date:
  • Size: 357.5 kB
  • Tags: CPython 3.7+, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyhgf-0.2.10-cp37-abi3-win_arm64.whl
Algorithm Hash digest
SHA256 e6299c7c27cd482eb6a132b44958e1c5a38a252b4687a1b1b289bf01b642520c
MD5 296f812084b5537bc68980d9ca7bd1dd
BLAKE2b-256 72edca93f6a8e1a72c6bf94366510bbbbced7f9fe476240444a8674ed00c6ff6

See more details on using hashes here.

File details

Details for the file pyhgf-0.2.10-cp37-abi3-win_amd64.whl.

File metadata

  • Download URL: pyhgf-0.2.10-cp37-abi3-win_amd64.whl
  • Upload date:
  • Size: 366.9 kB
  • Tags: CPython 3.7+, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyhgf-0.2.10-cp37-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 2e910b6cfe14e6c10f39f7ac12eb6aaf8f0e81c25980d2b9d8baca2a7b3b0723
MD5 395f63b6a5299358f3ee795abb2f6021
BLAKE2b-256 ff92c168e40a0fd29561b9928ce1ca1705507a1ada9fef0c36d4eee9c8bd8b85

See more details on using hashes here.

File details

Details for the file pyhgf-0.2.10-cp37-abi3-win32.whl.

File metadata

  • Download URL: pyhgf-0.2.10-cp37-abi3-win32.whl
  • Upload date:
  • Size: 352.5 kB
  • Tags: CPython 3.7+, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyhgf-0.2.10-cp37-abi3-win32.whl
Algorithm Hash digest
SHA256 16ddc50e89ab8db58616d8df9075d71db90e04186568fb7f4bad92ea05a36529
MD5 57462ed1b64830a1ff934d87b6078b71
BLAKE2b-256 141d2f41372bcce9a0c35f786e8673bde97a7f59878e3ac0c1b35d4ef7bff148

See more details on using hashes here.

File details

Details for the file pyhgf-0.2.10-cp37-abi3-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: pyhgf-0.2.10-cp37-abi3-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 725.6 kB
  • Tags: CPython 3.7+, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyhgf-0.2.10-cp37-abi3-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 99404e301e293fe4b8d11f754976900c383230de938b5d8f311d599748f1e4f0
MD5 a0f54aa1dfb4890ce7835c79d742dffe
BLAKE2b-256 45fcef52e5935ba76dc562aa946fbfd034554c127a449e1f7134853b632b1a9a

See more details on using hashes here.

File details

Details for the file pyhgf-0.2.10-cp37-abi3-musllinux_1_2_i686.whl.

File metadata

  • Download URL: pyhgf-0.2.10-cp37-abi3-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 759.2 kB
  • Tags: CPython 3.7+, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyhgf-0.2.10-cp37-abi3-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9563f5d0946998d78b4144d1d0e3bdbcc594007a38e1f826351559d43ca1e0b4
MD5 3a6988c0a2124b68da1c9547029f0b53
BLAKE2b-256 351a558a78550499fa82b9d8142d2c9dd34fd57688a01da0a782657dc50a1a05

See more details on using hashes here.

File details

Details for the file pyhgf-0.2.10-cp37-abi3-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: pyhgf-0.2.10-cp37-abi3-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 792.3 kB
  • Tags: CPython 3.7+, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyhgf-0.2.10-cp37-abi3-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 501d4c5888d1be478cc83fe3f4a18eec88aaf24053df8a1315062c94cf800aa2
MD5 4f3922900f91466a5ef555921293dab7
BLAKE2b-256 2a302fc53818d26fd754eccbf5089059828557c9eaf4b192da551726f4074dac

See more details on using hashes here.

File details

Details for the file pyhgf-0.2.10-cp37-abi3-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: pyhgf-0.2.10-cp37-abi3-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 687.0 kB
  • Tags: CPython 3.7+, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyhgf-0.2.10-cp37-abi3-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3c9f2d2e44dae499106533cafc168ce4e1a36f84ac8b7274c7420d2d8bd6f72e
MD5 46c5f3cc7e4fbf54987709fcc42cd4af
BLAKE2b-256 72f88bdeae24162b52a8c331eaaac3fcc6d1b1a31827790906bfe8270416274e

See more details on using hashes here.

File details

Details for the file pyhgf-0.2.10-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: pyhgf-0.2.10-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 527.6 kB
  • Tags: CPython 3.7+, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyhgf-0.2.10-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 769757cce123ddf6f93fffda2b7728dd74c35af78fabdb703103b3f207cf3d57
MD5 49d2b89e5fdbe97caea80cddfeb3a5c4
BLAKE2b-256 fb25b85ab12cf528b976a92302f382758c99c4807c89243a5a00786834d7f352

See more details on using hashes here.

File details

Details for the file pyhgf-0.2.10-cp37-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: pyhgf-0.2.10-cp37-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 534.7 kB
  • Tags: CPython 3.7+, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyhgf-0.2.10-cp37-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 03a0bc40e53e1e76b2b86f06e5d6f94652615073775df1019db3932dcb75a1e1
MD5 72afa1539fcdda569e235c54d859ff42
BLAKE2b-256 9589cb4180b778c78763c8fd1aeb07b2b86e1a147417f21e8856daa73aab09b4

See more details on using hashes here.

File details

Details for the file pyhgf-0.2.10-cp37-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: pyhgf-0.2.10-cp37-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 646.0 kB
  • Tags: CPython 3.7+, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyhgf-0.2.10-cp37-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 579470d942b8772acecac885e9b20de06ec2d7caa0377663de1478a84beb81f7
MD5 e388a4fd4d612af200c5f4e4bfd9b892
BLAKE2b-256 f08b8465678c41fbc0a09ef91123fa226d77b2e3b7694c6b88f8e9784a2a76a9

See more details on using hashes here.

File details

Details for the file pyhgf-0.2.10-cp37-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: pyhgf-0.2.10-cp37-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 517.4 kB
  • Tags: CPython 3.7+, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyhgf-0.2.10-cp37-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a8606aadaa8bbf16d9515c11f00f405ec6b2be7a314afaef851b24daf4a04472
MD5 3d8ae13121d19a68ee253fd5b2b57970
BLAKE2b-256 ce7b2559e6b5766c5b69a728396a784c81aa55b0084e313003636149722b179d

See more details on using hashes here.

File details

Details for the file pyhgf-0.2.10-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: pyhgf-0.2.10-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 511.5 kB
  • Tags: CPython 3.7+, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyhgf-0.2.10-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1cc5522110f63b6918070989fa84a893cce7602cac27854a6ebb3928bff12c7c
MD5 d23f483130108da081558746ba34d695
BLAKE2b-256 003b903494980dd1683304835b914247a583af34cfe4517e3d968d75d3648dcf

See more details on using hashes here.

File details

Details for the file pyhgf-0.2.10-cp37-abi3-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: pyhgf-0.2.10-cp37-abi3-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 547.2 kB
  • Tags: CPython 3.7+, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyhgf-0.2.10-cp37-abi3-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f84a0b1b2bc04cfdfa71737fc123be67df04d205f9b91d82ac51d17528a085ec
MD5 a017d53d4dbffff0e4d6dc8c7e2db775
BLAKE2b-256 bf4084117246b60be99b678fefa8d0666a069efb57e4975d6994e28af0e52802

See more details on using hashes here.

File details

Details for the file pyhgf-0.2.10-cp37-abi3-macosx_11_0_arm64.whl.

File metadata

  • Download URL: pyhgf-0.2.10-cp37-abi3-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 473.0 kB
  • Tags: CPython 3.7+, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyhgf-0.2.10-cp37-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1632080cbb4e117c60e3dac359bcb79595e0f17b568219b9f3023272eff99516
MD5 442518fb9cae9a8178ea3050dbfa7909
BLAKE2b-256 ad87661d05b2677770abe6191ef0d9cdd9a98a60cc636742f2a77b3c91e8cfdf

See more details on using hashes here.

File details

Details for the file pyhgf-0.2.10-cp37-abi3-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: pyhgf-0.2.10-cp37-abi3-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 484.2 kB
  • Tags: CPython 3.7+, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyhgf-0.2.10-cp37-abi3-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9c53280d38e25d1f7290d049419c25393edc89b9a2d264df8628ce93a1df7195
MD5 601303f1ba1cb6fac785a7dcdd27a479
BLAKE2b-256 ee95533075e591371e8f4e052af3b850d0e9480c226882df8e4334b7c710a03d

See more details on using hashes here.

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