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.3.0.tar.gz (40.4 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.3.0-cp314-cp314t-win_amd64.whl (411.3 kB view details)

Uploaded CPython 3.14tWindows x86-64

pyhgf-0.3.0-cp314-cp314t-win32.whl (394.0 kB view details)

Uploaded CPython 3.14tWindows x86

pyhgf-0.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl (767.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

pyhgf-0.3.0-cp314-cp314t-musllinux_1_2_i686.whl (798.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

pyhgf-0.3.0-cp314-cp314t-musllinux_1_2_armv7l.whl (831.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

pyhgf-0.3.0-cp314-cp314t-musllinux_1_2_aarch64.whl (727.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

pyhgf-0.3.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (567.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

pyhgf-0.3.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (579.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

pyhgf-0.3.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (689.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

pyhgf-0.3.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (555.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

pyhgf-0.3.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (550.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

pyhgf-0.3.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl (587.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.5+ i686

pyhgf-0.3.0-cp314-cp314t-macosx_11_0_arm64.whl (514.2 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

pyhgf-0.3.0-cp314-cp314t-macosx_10_12_x86_64.whl (523.2 kB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

pyhgf-0.3.0-cp37-abi3-win_arm64.whl (406.1 kB view details)

Uploaded CPython 3.7+Windows ARM64

pyhgf-0.3.0-cp37-abi3-win_amd64.whl (420.2 kB view details)

Uploaded CPython 3.7+Windows x86-64

pyhgf-0.3.0-cp37-abi3-win32.whl (403.1 kB view details)

Uploaded CPython 3.7+Windows x86

pyhgf-0.3.0-cp37-abi3-musllinux_1_2_x86_64.whl (774.9 kB view details)

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

pyhgf-0.3.0-cp37-abi3-musllinux_1_2_i686.whl (809.2 kB view details)

Uploaded CPython 3.7+musllinux: musl 1.2+ i686

pyhgf-0.3.0-cp37-abi3-musllinux_1_2_armv7l.whl (841.1 kB view details)

Uploaded CPython 3.7+musllinux: musl 1.2+ ARMv7l

pyhgf-0.3.0-cp37-abi3-musllinux_1_2_aarch64.whl (735.1 kB view details)

Uploaded CPython 3.7+musllinux: musl 1.2+ ARM64

pyhgf-0.3.0-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (576.3 kB view details)

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

pyhgf-0.3.0-cp37-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl (587.3 kB view details)

Uploaded CPython 3.7+manylinux: glibc 2.17+ s390x

pyhgf-0.3.0-cp37-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (697.9 kB view details)

Uploaded CPython 3.7+manylinux: glibc 2.17+ ppc64le

pyhgf-0.3.0-cp37-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (565.6 kB view details)

Uploaded CPython 3.7+manylinux: glibc 2.17+ ARMv7l

pyhgf-0.3.0-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (559.7 kB view details)

Uploaded CPython 3.7+manylinux: glibc 2.17+ ARM64

pyhgf-0.3.0-cp37-abi3-manylinux_2_5_i686.manylinux1_i686.whl (596.6 kB view details)

Uploaded CPython 3.7+manylinux: glibc 2.5+ i686

pyhgf-0.3.0-cp37-abi3-macosx_11_0_arm64.whl (519.8 kB view details)

Uploaded CPython 3.7+macOS 11.0+ ARM64

pyhgf-0.3.0-cp37-abi3-macosx_10_12_x86_64.whl (531.9 kB view details)

Uploaded CPython 3.7+macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: pyhgf-0.3.0.tar.gz
  • Upload date:
  • Size: 40.4 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.21 {"installer":{"name":"uv","version":"0.11.21","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.3.0.tar.gz
Algorithm Hash digest
SHA256 6fec182b1a15356830395dd14b3e3b1bf6f43e9acfa5d36228e24aa703936012
MD5 e01f8191a6378d05e82a49cb492dfe7c
BLAKE2b-256 d7aa6940c40a92b33c0b6728f778258ee094255911094a552af9b49d0f53cee3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhgf-0.3.0-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 411.3 kB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.21 {"installer":{"name":"uv","version":"0.11.21","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.3.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 663b0a3589070a1803cf71eb71dd1f54287c178fdeddd1be38d9a88aa1f6759e
MD5 7bf473f75929e2a067c2770f55be37e6
BLAKE2b-256 b2135eeafbea5aad90e4b08d44494897b1d7f8e88261d9a27fa659c13309b9eb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhgf-0.3.0-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 394.0 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.21 {"installer":{"name":"uv","version":"0.11.21","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.3.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 083f0baf6110eecd1dceb8c118f4199d402e189c512624d6724e0e78f1229402
MD5 1f1e16a6b650d8358e4a50397230f536
BLAKE2b-256 d40f39cecfe7deaafa9d0e1c40422676786dfed711c8505c5819a933dd5c81e1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhgf-0.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 767.4 kB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.21 {"installer":{"name":"uv","version":"0.11.21","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.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 63b828525fd7ddfd8838c529df5b3b005ae05cf8a40e4a761fcce89dfec37d16
MD5 97b7b28322016cc8e28dff6396d40040
BLAKE2b-256 b79a9d94be86919d35405390e7a198e1abf2bbcb831e32d94cc1d457d0615bbc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhgf-0.3.0-cp314-cp314t-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 798.8 kB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.21 {"installer":{"name":"uv","version":"0.11.21","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.3.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 841cc2a33805329256bca224555447cc2cb2f8154d48fee7a06fe57219761721
MD5 9cc5e0a1a7ebf87cfa8cb95fa34753ab
BLAKE2b-256 f5281c3e75db4ef19e2fa2e6bad71d052aff065a98ba3a51ff1f3bf611a97d0b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhgf-0.3.0-cp314-cp314t-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 831.0 kB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.21 {"installer":{"name":"uv","version":"0.11.21","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.3.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2f05a8245f4eab2db5b7f8d8ec2a613a183b56cee16ab31ca2b8c44e42493c9e
MD5 42279a09c3304baaf4ce2818d9ae258e
BLAKE2b-256 946adc5b05cefb5cab5044ec888013466348b98416914b81f9f6aba1e66e69b1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhgf-0.3.0-cp314-cp314t-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 727.0 kB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.21 {"installer":{"name":"uv","version":"0.11.21","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.3.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a71b3095727d4de6803250cf4f64575faef370f0f0c7e43243ec9315a8830948
MD5 917a4a6f07ee595d8a019d8f00aeb736
BLAKE2b-256 b26259f63396b242e82e9e041296bb9b442e0b6200c7c6ea2804cd37cb3b4385

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhgf-0.3.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 567.8 kB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.21 {"installer":{"name":"uv","version":"0.11.21","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.3.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5173b8a36b6a8044d58b54f53621a0bd72b3d88af0fb5f398ca9ac8567c82a6a
MD5 bb6dbf62955966871efd6b91b3af0737
BLAKE2b-256 649d0bb6d4ebbcd943012e3cac01a596baebf6dee40208ec421e377d508ae91f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhgf-0.3.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 579.7 kB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.21 {"installer":{"name":"uv","version":"0.11.21","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.3.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8d093b184a6625357a4929be4e67a8d8f4b4515fc0bae70390696b59cb1c35c0
MD5 f6a5caa0dd1e32cff5638d82bfefa7f9
BLAKE2b-256 5427e4f5e6a721f547d9e82fa462ce294d2095936b50bd9cdc7b617eaf42ed84

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhgf-0.3.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 689.3 kB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.21 {"installer":{"name":"uv","version":"0.11.21","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.3.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 618c17c37d1dcc2ddb9d5073709ae59d2eb57dd94594ce97d330813a25b76c18
MD5 fa637a4c77f4273210f2f28ec9974208
BLAKE2b-256 da5b0f6320aeecbb1e1402e48347c8aa6c89cdc799ae3edd56c789a33665639b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhgf-0.3.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 555.7 kB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.21 {"installer":{"name":"uv","version":"0.11.21","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.3.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9bfdf55a0aa8db15c9424699ae038477195da3d442ce8408efbba735e9914705
MD5 a7945b4e17be1648c1110ff2abfbf010
BLAKE2b-256 ca108efffebaed454ffd2dd2317ff49ec3fbc4bdf6d101516cde8edd7dabc9c0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhgf-0.3.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 550.8 kB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.21 {"installer":{"name":"uv","version":"0.11.21","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.3.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c3f75f67c01d08b9557b21a18c425e97f5cffc73206add990e47015f60f1069f
MD5 705ad9897ae687563152c6c931330c1b
BLAKE2b-256 53392576894bb1b7bf6ef1fcc8fff2f5f3a6b7abeec852a89e5d5a1a37874255

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhgf-0.3.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 587.2 kB
  • Tags: CPython 3.14t, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.21 {"installer":{"name":"uv","version":"0.11.21","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.3.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ffccc3977c64371ca24735a870524b4ad24059993347f81c43e1e74820518724
MD5 ee60360bf2bf4fcbc063c35f9d618e21
BLAKE2b-256 4486991da92bb2da0fc3575807567efb70d7dec3ce3e5294537a2a8d547d0412

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhgf-0.3.0-cp314-cp314t-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 514.2 kB
  • Tags: CPython 3.14t, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.21 {"installer":{"name":"uv","version":"0.11.21","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.3.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 db06ced0a580879f17f945e2a3eb5ff1c01215ca3f83c0099dc42d2caca87855
MD5 c2ea0753fabfef4e3674327f22ead3d1
BLAKE2b-256 628281696a8b482c666c964bb8b82e47a1ad661fd02ce0adbab61dec3974e787

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhgf-0.3.0-cp314-cp314t-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 523.2 kB
  • Tags: CPython 3.14t, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.21 {"installer":{"name":"uv","version":"0.11.21","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.3.0-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 99ff3d83f06ad8e704665ebcc56c60b19abbd1377caa6d83556b3b06921d6e5d
MD5 6be255185fce64184005ec79cfc710d6
BLAKE2b-256 7d04b85ef88453172215d7d24413f584c019509cce0a75b98341b89c9ef4a58b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhgf-0.3.0-cp37-abi3-win_arm64.whl
  • Upload date:
  • Size: 406.1 kB
  • Tags: CPython 3.7+, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.21 {"installer":{"name":"uv","version":"0.11.21","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.3.0-cp37-abi3-win_arm64.whl
Algorithm Hash digest
SHA256 8070ef586ad2f9623a284a8ef79b318a0be239b3b1b8844253549151475b5deb
MD5 bbdb048df5f1730c43a588912a481681
BLAKE2b-256 3395c3a7470bce26a565a91341e1250014507a279c18495b78433cb86f8c76bf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhgf-0.3.0-cp37-abi3-win_amd64.whl
  • Upload date:
  • Size: 420.2 kB
  • Tags: CPython 3.7+, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.21 {"installer":{"name":"uv","version":"0.11.21","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.3.0-cp37-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 9e8316aa5749cad8a552369f2cff42f4a33eb812c2813e0762e785de3fb819d1
MD5 45993b71c9366f94b3e83ad9f1a1e93d
BLAKE2b-256 ef0260687c820f48d6177a8a1779a5c0be6305240c4f36d2fe3a26e826b0fcc4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhgf-0.3.0-cp37-abi3-win32.whl
  • Upload date:
  • Size: 403.1 kB
  • Tags: CPython 3.7+, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.21 {"installer":{"name":"uv","version":"0.11.21","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.3.0-cp37-abi3-win32.whl
Algorithm Hash digest
SHA256 fc603ef96a9a375aeb40cfda825041ef997265bdc974a24918edfc29ba8ae2ba
MD5 f46c2051664fa7df506268ef2d3fdd6b
BLAKE2b-256 949f95a6cfd933be43d9da7c7198e183ca9d4888338b780fc944ce71372ef76a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhgf-0.3.0-cp37-abi3-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 774.9 kB
  • Tags: CPython 3.7+, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.21 {"installer":{"name":"uv","version":"0.11.21","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.3.0-cp37-abi3-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f62bf57bb2882c10a83c2c567087d9877e49992205e54d8c1605ce4942a01c63
MD5 91835fe5c21825683fa55ba7d7c8449d
BLAKE2b-256 563c5dd2669f066099ed09fdab273c5b219ca3b02b6b755929e3f96b4779eeee

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhgf-0.3.0-cp37-abi3-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 809.2 kB
  • Tags: CPython 3.7+, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.21 {"installer":{"name":"uv","version":"0.11.21","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.3.0-cp37-abi3-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f6358779cadb0f4f0455d358a938b52af4c5483480a8d0c6cf73cadb3079e5de
MD5 bdb628b4fe5799f499838efbddeb71c6
BLAKE2b-256 cfe9cb6514a9b6b13ce76e14a68861d75fe7b3d1665e9ae3b6cb281386f70986

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhgf-0.3.0-cp37-abi3-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 841.1 kB
  • Tags: CPython 3.7+, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.21 {"installer":{"name":"uv","version":"0.11.21","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.3.0-cp37-abi3-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 52b12a47a3b7bbee5f1afe9791d4754214f5f070c0efadb9f58ff4d6c44d81cd
MD5 1a80e40b846288ad31b3d648e95eba32
BLAKE2b-256 2cb57189ef3efeb0f873ba8e483304278717a36c268b3f1a58d8ab293e22a2e3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhgf-0.3.0-cp37-abi3-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 735.1 kB
  • Tags: CPython 3.7+, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.21 {"installer":{"name":"uv","version":"0.11.21","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.3.0-cp37-abi3-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cceb15efc53c03b88d111b8bca8e4c43680735f6d7251a7b20861bb3117d6a9d
MD5 8a2a342ee38f7d4efde113e6348852c8
BLAKE2b-256 20765fbb1fe145ec1bbd151f5efa3ea31dc92db0b5b294e90f5ef8e26d48d5bd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhgf-0.3.0-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 576.3 kB
  • Tags: CPython 3.7+, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.21 {"installer":{"name":"uv","version":"0.11.21","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.3.0-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 104c5b446801d039f00fd8fefef1d51fc19f8296199fa7ce3d9451811a6f0971
MD5 63691215021ec27f2caa5cc4f4393dd9
BLAKE2b-256 470986f141b69089358033f87456b004bbfb13acfd3c6c49e4c51d45bc61b5a6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhgf-0.3.0-cp37-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 587.3 kB
  • Tags: CPython 3.7+, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.21 {"installer":{"name":"uv","version":"0.11.21","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.3.0-cp37-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f11b8dbffaf34801f93e35676fa88d2c07ba6c511ddd9084a6b86ada5726a32f
MD5 1418846dd3c60076414b2047939af573
BLAKE2b-256 32b3882d85efde2f007d2a3b34cfbb8e5b5d8c2e185a83b5367632a515e6c749

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhgf-0.3.0-cp37-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 697.9 kB
  • Tags: CPython 3.7+, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.21 {"installer":{"name":"uv","version":"0.11.21","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.3.0-cp37-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b88400734b1c25ab06aed0febfbb68a911c29c95c621463fd7b12ae83313b721
MD5 1c2cfef4aa6145e1e11b14e18c8a13b4
BLAKE2b-256 2e0b5fbd83619f9c91f85a9c0af8db983e1cf500b58c9f47aaa201fdaf037e34

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhgf-0.3.0-cp37-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 565.6 kB
  • Tags: CPython 3.7+, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.21 {"installer":{"name":"uv","version":"0.11.21","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.3.0-cp37-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7290d7222b4bd4d3b785536538f0e92ec9ac2d55f1d5119ba7769a90413239af
MD5 c98ddb1ce3a031696ad203c74a8a9495
BLAKE2b-256 32c2d81af69890ca5487ea7dafef26a9bfc93aeb65dbd31399d1ddf2c060d376

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhgf-0.3.0-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 559.7 kB
  • Tags: CPython 3.7+, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.21 {"installer":{"name":"uv","version":"0.11.21","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.3.0-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e1888c44953cc9c03558ed59cf1b3e69a6b4a2beea9704148c11c32261a766a1
MD5 bb77113d4a4fab64e1cd52aba550ae40
BLAKE2b-256 221c419e97badb05139fde2c0f3f499ef9cf8f0914888d3ff177ad1deec3625b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhgf-0.3.0-cp37-abi3-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 596.6 kB
  • Tags: CPython 3.7+, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.21 {"installer":{"name":"uv","version":"0.11.21","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.3.0-cp37-abi3-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 fd3f0201b499c915c18706a176f9a2bc861c5f0c88ce354b5dd5247f459a41d2
MD5 9719985ad45263804054f22d65650ee9
BLAKE2b-256 4a267773ee1ac381f1fb6f27327dbaa745064497a0aeb9c4a072d8978fe33787

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhgf-0.3.0-cp37-abi3-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 519.8 kB
  • Tags: CPython 3.7+, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.21 {"installer":{"name":"uv","version":"0.11.21","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.3.0-cp37-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0e8fce0e03279f89d0e3fc1668c3ace9cc0b054877fdbdbe4ca925846f0ea1f8
MD5 06e283699e730c7a7528effddf34da61
BLAKE2b-256 009e6e69a95657d02f376fc85e8ca722bdee5c15cba1c71b495ca28acd5626ce

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhgf-0.3.0-cp37-abi3-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 531.9 kB
  • Tags: CPython 3.7+, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.21 {"installer":{"name":"uv","version":"0.11.21","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.3.0-cp37-abi3-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ed6d863ef0299b2fddf3f3ae8a724936b1a531cdeced33bd0263852d6513cb58
MD5 3b90c6686f65248cac158b5c61f7a1f3
BLAKE2b-256 cbdf511a96be97263ce78178058572921ccecad32f4631109e871b809746a3a0

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