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.9.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.9-cp314-cp314t-win_amd64.whl (358.4 kB view details)

Uploaded CPython 3.14tWindows x86-64

pyhgf-0.2.9-cp314-cp314t-win32.whl (343.3 kB view details)

Uploaded CPython 3.14tWindows x86

pyhgf-0.2.9-cp314-cp314t-musllinux_1_2_x86_64.whl (717.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

pyhgf-0.2.9-cp314-cp314t-musllinux_1_2_i686.whl (748.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

pyhgf-0.2.9-cp314-cp314t-musllinux_1_2_armv7l.whl (781.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

pyhgf-0.2.9-cp314-cp314t-musllinux_1_2_aarch64.whl (676.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

pyhgf-0.2.9-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (517.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

pyhgf-0.2.9-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (525.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

pyhgf-0.2.9-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (636.4 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

pyhgf-0.2.9-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (506.4 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

pyhgf-0.2.9-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (500.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

pyhgf-0.2.9-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl (536.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.5+ i686

pyhgf-0.2.9-cp314-cp314t-macosx_11_0_arm64.whl (463.9 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

pyhgf-0.2.9-cp314-cp314t-macosx_10_12_x86_64.whl (475.0 kB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

pyhgf-0.2.9-cp37-abi3-win_arm64.whl (357.3 kB view details)

Uploaded CPython 3.7+Windows ARM64

pyhgf-0.2.9-cp37-abi3-win_amd64.whl (366.4 kB view details)

Uploaded CPython 3.7+Windows x86-64

pyhgf-0.2.9-cp37-abi3-win32.whl (352.0 kB view details)

Uploaded CPython 3.7+Windows x86

pyhgf-0.2.9-cp37-abi3-musllinux_1_2_x86_64.whl (724.8 kB view details)

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

pyhgf-0.2.9-cp37-abi3-musllinux_1_2_i686.whl (759.0 kB view details)

Uploaded CPython 3.7+musllinux: musl 1.2+ i686

pyhgf-0.2.9-cp37-abi3-musllinux_1_2_armv7l.whl (791.3 kB view details)

Uploaded CPython 3.7+musllinux: musl 1.2+ ARMv7l

pyhgf-0.2.9-cp37-abi3-musllinux_1_2_aarch64.whl (686.6 kB view details)

Uploaded CPython 3.7+musllinux: musl 1.2+ ARM64

pyhgf-0.2.9-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (527.1 kB view details)

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

pyhgf-0.2.9-cp37-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl (533.8 kB view details)

Uploaded CPython 3.7+manylinux: glibc 2.17+ s390x

pyhgf-0.2.9-cp37-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (645.5 kB view details)

Uploaded CPython 3.7+manylinux: glibc 2.17+ ppc64le

pyhgf-0.2.9-cp37-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (516.6 kB view details)

Uploaded CPython 3.7+manylinux: glibc 2.17+ ARMv7l

pyhgf-0.2.9-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (510.8 kB view details)

Uploaded CPython 3.7+manylinux: glibc 2.17+ ARM64

pyhgf-0.2.9-cp37-abi3-manylinux_2_5_i686.manylinux1_i686.whl (546.7 kB view details)

Uploaded CPython 3.7+manylinux: glibc 2.5+ i686

pyhgf-0.2.9-cp37-abi3-macosx_11_0_arm64.whl (472.4 kB view details)

Uploaded CPython 3.7+macOS 11.0+ ARM64

pyhgf-0.2.9-cp37-abi3-macosx_10_12_x86_64.whl (483.5 kB view details)

Uploaded CPython 3.7+macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: pyhgf-0.2.9.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.9.tar.gz
Algorithm Hash digest
SHA256 ce745c373898f8be08867b522232699dfd45b98729b8fdfc7117bcd2ec195a7c
MD5 e5910e8dd7d28685e48d9cc4cf93be0d
BLAKE2b-256 c89a1566bda5f4af9d9d8069cf8aea03b88b9d56ac5bac634b56f50113d759bf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhgf-0.2.9-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 358.4 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.9-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 9aecc6408ec99945b29efc9c598163dfc546a7eb27f307795c4b314e1f13ed2e
MD5 4e75534da029fe51f408677755a11f34
BLAKE2b-256 8d1a52d852ef1ed2a41d269a0ab1b7b6cf553c5b55a556084916c48608c8d2dc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhgf-0.2.9-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 343.3 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.9-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 8132022e649af1b564e54ee93977a8b72b4cff15dde3b70c9d07208714ea0adb
MD5 cf98c8e1d2c8007af22e4a90eb2925c1
BLAKE2b-256 1409fef2f2647c5f6bfdd28156ea6279473fe1fc6b4ef08b9753366df91adb3e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhgf-0.2.9-cp314-cp314t-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 717.3 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.9-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8a88ec894afa595b6f54792927e847c54a2adab7e373610f9a0278e43e126c61
MD5 d811d8b4052090bd16b701a5b9c7408c
BLAKE2b-256 3f4bba54b8dc24a0e48e8798fb800e604a58d23b447e575b0aa155618c683b7d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhgf-0.2.9-cp314-cp314t-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 748.3 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.9-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1348a87a3640ac1f048cb031aecee03c0b1813ac7990eae492cca1322aeb6e8e
MD5 1c15af1d3ac18ec8a3e88c7f532c9035
BLAKE2b-256 69ac174cda7029732ecc471ba7dc818c53aeaa0885070d833565195943f29545

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhgf-0.2.9-cp314-cp314t-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 781.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.9-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1da344d3792c771ccf65aa46324a052fbaa1689020b949e361ed3c69dbc42005
MD5 381bfe1adabcaabbeb1a0f3b0d21a61f
BLAKE2b-256 baec3302d584eaf8e6198835f00e25940204c247dcd335382f991855120d8331

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhgf-0.2.9-cp314-cp314t-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 676.3 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.9-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a253d38bf3a1fa65fe27762c49a6610cd724a4d4ed33827f0d438839e28f3244
MD5 dc79bdf02f777daba866c4d532f53f47
BLAKE2b-256 02cd55bcf78578875d324e7d03592c45ab3ba99568cf51ef877eaa3c01ca17f4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhgf-0.2.9-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 517.6 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.9-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c86de8a9c0c119a92b181a3b50409f1d4c78b2d87347737bc1395c806a9faf73
MD5 bea54fac1c674a6643fcfa2017b4d004
BLAKE2b-256 d00387d5b5a8e4e2829274ee666ec4a269aa2a64879546f3eedd5b6d80801e3f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhgf-0.2.9-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 525.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.9-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1105341f7ca81fcb995d3137eaf6afe75896492d672af90413e0dcd8b0ceb226
MD5 6420f89251aeb997f721b054d8040288
BLAKE2b-256 e7f6bca282c1dd8318a6b09273101e5589abfb4caddf1b1d8941c348735a35c8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhgf-0.2.9-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 636.4 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.9-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 22bc13032fe391a8c40482aad08698c5bb2f23facb43964aa78a99c1e046ced2
MD5 accdb54971144a41bc338647d42c2404
BLAKE2b-256 65b44780b6cf614d28a36f6758a45693faf05cc4735319bdd12f961ba68754d3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhgf-0.2.9-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 506.4 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.9-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5d0fdf63223fbc3ac8007a848993b1492bd8f7c42ba57890282f86c40bdd3e41
MD5 f1cd58908325b0cc9b01a04ba7f8987c
BLAKE2b-256 62313774820acc63f659b108546fc4f143afdcf1b1fd3c49fcd764b16d79b0bb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhgf-0.2.9-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 500.8 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.9-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 871eb10f15d244de39c2aee3c4f883ac32faa6f0536e38ce0444756eb4da53f4
MD5 ceb3bc9dff7d87c7af2cd25983ab149f
BLAKE2b-256 98b252a6b274fddba8a70b07b71b5385bfa4fb7d4f9ce506903cb5aa9f20540a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhgf-0.2.9-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 536.2 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.9-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a945335b2efb57f477655337806c74f7d9ad34faa1111022d617705e52052139
MD5 c0628231e8ee2c22d5e80b27a0b8e9a3
BLAKE2b-256 511aa0e7dc152eac42614325f9a466f59cc646a83fb62ef0736945c09a5d2f3a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhgf-0.2.9-cp314-cp314t-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 463.9 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.9-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5a85127f97161d0f29174f5ceeb0693a0171113fec940d2e4dffd72c1ca0e192
MD5 4e8dcd339b80f474d5a349a971df4b8c
BLAKE2b-256 a771449af9adcffd0999371472a442efa65601cd21eda1e57afb742d313e257e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhgf-0.2.9-cp314-cp314t-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 475.0 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.9-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5decd3337d88855b654fa1d3e8e695d064cc8476ba5c1057ce29361b3be56ad2
MD5 3710a5538179a6c5897f0a24a175d7eb
BLAKE2b-256 4eae372652e941fc9ceff2aed6c7a034875e638839fddc43589c865e1ce580df

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhgf-0.2.9-cp37-abi3-win_arm64.whl
  • Upload date:
  • Size: 357.3 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.9-cp37-abi3-win_arm64.whl
Algorithm Hash digest
SHA256 62d038d41048e63b9260b4e1ee460ad2145fc11fc18237226d8fbed544a1a34a
MD5 66e8471e5bfd144ee9536c42e3b5ecb5
BLAKE2b-256 5a6fb51af7e4d5211260b05e82504872fb1e4b704dd571a5910909123f738096

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhgf-0.2.9-cp37-abi3-win_amd64.whl
  • Upload date:
  • Size: 366.4 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.9-cp37-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 6c92e0af9dce77fc47d7784415395f44902eabb1535f9608e31b0eea4e420ed2
MD5 5e862324d25c316f20f3be5c32e03707
BLAKE2b-256 708bf96d7cae8d64fd040bc1149f00a734ac5b66a37603f16099f047bcd05568

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhgf-0.2.9-cp37-abi3-win32.whl
  • Upload date:
  • Size: 352.0 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.9-cp37-abi3-win32.whl
Algorithm Hash digest
SHA256 f08a8bdef9feb333ed8ee4d0820d30bb031770779efbd501d8428c0d98bcd15d
MD5 5053c8455aa9928acdf4904a0f1cbbe3
BLAKE2b-256 e4a68e9a1f7eee31a132308d552b663453660ac238c93ef50ac6496b811f85d1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhgf-0.2.9-cp37-abi3-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 724.8 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.9-cp37-abi3-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0e9c305edff6a956543fcdfc15209e4cf5484a45aa79a96a214f9d77352e25ec
MD5 e47cd0016ad514c877d82ad9ba968080
BLAKE2b-256 20cf9004c4cc7430685d5534e4e584db44919c2080b23be7b350f0a70c6abe4b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhgf-0.2.9-cp37-abi3-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 759.0 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.9-cp37-abi3-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 30f807fffbb4ab8dcd8df9ed80e0728c8b2da7de999b1a4ecc3c8daf3eb0526f
MD5 173e68b667379421257751640d71525e
BLAKE2b-256 f12a57700fa00940884d476aaef42e15ed0462a2115beaa21e8b752efa83ac33

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhgf-0.2.9-cp37-abi3-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 791.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.9-cp37-abi3-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f61ec0202ea6495f76baa6b8e242ad6e612c55e66b7ca13cefad15d5c690941e
MD5 81abfddb150d024841b060d1a0542e7e
BLAKE2b-256 9ad34e1d4ccdbba22400503dd5df3081815a2e4425066e28bd7b3467ec2b66fa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhgf-0.2.9-cp37-abi3-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 686.6 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.9-cp37-abi3-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e76c6ee4e240d3fb7b6c615b9ec97cda695032aa032cf91d33c6b7a22128ce67
MD5 85ee0739b3d101621779e9ba4883bcf2
BLAKE2b-256 e97c56511c072fa27055a914b0d3f1aab51e26712cdd4d3cd7ecf17aa43f8f02

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhgf-0.2.9-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 527.1 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.9-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 65601221ffd9a3527e82eeb13724c91e24e62b4e1f96a90a7aadd77b5584b89d
MD5 ff476b066caf41910fb6a799e75f2382
BLAKE2b-256 7861b8573f30a934ee6bc0b140f2856b04fee4d7d608ed86e148e364b09999bd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhgf-0.2.9-cp37-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 533.8 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.9-cp37-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 277e2c32ab176b7936a424f130db921ad9c344f2906a9ac9f099c16b0a068759
MD5 5706a5b73712744ca051b1463b06c2be
BLAKE2b-256 bb08dd260a5023af709bd832e5796bdd9808f5ef84e2954149ba03e83c792a6b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhgf-0.2.9-cp37-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 645.5 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.9-cp37-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 49dbcf51bcc5969e35c9fb43af7490ea102b938ebfbbbd47602666a68a5781e0
MD5 9ed0a2846294e119e1b991b40c9ab242
BLAKE2b-256 7aae124874ccf1b9f57999df8545d06de0fca81ae0b88661bf14b3e7a338636f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhgf-0.2.9-cp37-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 516.6 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.9-cp37-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 91d320dfbd4bd0af4092a5e025d931184dc77be357d75c70cc80f0076b736ef7
MD5 e2dea9439bf4752e21ebcf83189dca5c
BLAKE2b-256 0fad171ea2afd21d2fa3c2a6048efd5905a4f53823e1d9f685ba1e28479497f5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhgf-0.2.9-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 510.8 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.9-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f84defbe1560161afea554bd37aa908ecff01079767b9028d6968b75fb9d3cec
MD5 472b158eb9e618bfffca29465d9e6e09
BLAKE2b-256 2293355508f1cbe992597091317e015bc0e97a6808105fe6d408262a9f8e70f1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhgf-0.2.9-cp37-abi3-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 546.7 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.9-cp37-abi3-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 883a371953609829c8d9175afa03a740947993bc6fc5c91a8e7ce120edd35fe3
MD5 cff136ab422eb663223abf1995a5a04b
BLAKE2b-256 735c8957b9a3c62c74158b0a13bd6919c11f552cd16e16c20c83a1bc53a3e87f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhgf-0.2.9-cp37-abi3-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 472.4 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.9-cp37-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 51faefbaeaf59ce1a294abed793363e5ce2f71c14ce11f87cb7b401f9e639834
MD5 1be990947b79b82c244bac36bb39db48
BLAKE2b-256 9bdfb5f502ec1a4e4ef9af9e8409780e529c97af94918fc4493ca7da3c20b412

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhgf-0.2.9-cp37-abi3-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 483.5 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.9-cp37-abi3-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 69bf761372a33745f6e2d720230db1c3964894cab1c9fc3f3f558f94ed2341cd
MD5 d8f928ddda0710074b6edf7e25cefa16
BLAKE2b-256 8af66faca6c7a2cbd41ac0f4065092d3b195b5ed47fbdcb296f79e2d6352a4b5

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