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

Uploaded CPython 3.14tWindows x86-64

pyhgf-0.2.12-cp314-cp314t-win32.whl (357.2 kB view details)

Uploaded CPython 3.14tWindows x86

pyhgf-0.2.12-cp314-cp314t-musllinux_1_2_x86_64.whl (725.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

pyhgf-0.2.12-cp314-cp314t-musllinux_1_2_i686.whl (758.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

pyhgf-0.2.12-cp314-cp314t-musllinux_1_2_armv7l.whl (791.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

pyhgf-0.2.12-cp314-cp314t-musllinux_1_2_aarch64.whl (687.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

pyhgf-0.2.12-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (525.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

pyhgf-0.2.12-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (535.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

pyhgf-0.2.12-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (643.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

pyhgf-0.2.12-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (516.4 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

pyhgf-0.2.12-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (512.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

pyhgf-0.2.12-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl (546.4 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.5+ i686

pyhgf-0.2.12-cp314-cp314t-macosx_11_0_arm64.whl (474.8 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

pyhgf-0.2.12-cp314-cp314t-macosx_10_12_x86_64.whl (483.1 kB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

pyhgf-0.2.12-cp37-abi3-win_arm64.whl (367.9 kB view details)

Uploaded CPython 3.7+Windows ARM64

pyhgf-0.2.12-cp37-abi3-win_amd64.whl (380.2 kB view details)

Uploaded CPython 3.7+Windows x86-64

pyhgf-0.2.12-cp37-abi3-win32.whl (364.9 kB view details)

Uploaded CPython 3.7+Windows x86

pyhgf-0.2.12-cp37-abi3-musllinux_1_2_x86_64.whl (733.1 kB view details)

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

pyhgf-0.2.12-cp37-abi3-musllinux_1_2_i686.whl (769.1 kB view details)

Uploaded CPython 3.7+musllinux: musl 1.2+ i686

pyhgf-0.2.12-cp37-abi3-musllinux_1_2_armv7l.whl (801.5 kB view details)

Uploaded CPython 3.7+musllinux: musl 1.2+ ARMv7l

pyhgf-0.2.12-cp37-abi3-musllinux_1_2_aarch64.whl (696.6 kB view details)

Uploaded CPython 3.7+musllinux: musl 1.2+ ARM64

pyhgf-0.2.12-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (535.0 kB view details)

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

pyhgf-0.2.12-cp37-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl (543.4 kB view details)

Uploaded CPython 3.7+manylinux: glibc 2.17+ s390x

pyhgf-0.2.12-cp37-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (653.2 kB view details)

Uploaded CPython 3.7+manylinux: glibc 2.17+ ppc64le

pyhgf-0.2.12-cp37-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (526.4 kB view details)

Uploaded CPython 3.7+manylinux: glibc 2.17+ ARMv7l

pyhgf-0.2.12-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (521.1 kB view details)

Uploaded CPython 3.7+manylinux: glibc 2.17+ ARM64

pyhgf-0.2.12-cp37-abi3-manylinux_2_5_i686.manylinux1_i686.whl (557.0 kB view details)

Uploaded CPython 3.7+manylinux: glibc 2.5+ i686

pyhgf-0.2.12-cp37-abi3-macosx_11_0_arm64.whl (481.8 kB view details)

Uploaded CPython 3.7+macOS 11.0+ ARM64

pyhgf-0.2.12-cp37-abi3-macosx_10_12_x86_64.whl (491.8 kB view details)

Uploaded CPython 3.7+macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: pyhgf-0.2.12.tar.gz
  • Upload date:
  • Size: 40.0 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.12 {"installer":{"name":"uv","version":"0.11.12","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.12.tar.gz
Algorithm Hash digest
SHA256 c53f577e300107fd42d58c10b48d17403253a0dc985eb2c8abb30c3ecd892e91
MD5 d3f3387b56c13ccfd2063a2979bfc579
BLAKE2b-256 bad33e45d17c8ae434dde421145c474c8ae43b58a395b07c55c0f6a010221f67

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhgf-0.2.12-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 371.7 kB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.12 {"installer":{"name":"uv","version":"0.11.12","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.12-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 1b62dbb1a1a44aebcfe36224774d7ec88055ad49ffc682df7e3e020e2c00a4e1
MD5 fee347b1907d69e1177ac6be5bf9cf08
BLAKE2b-256 7fd39f4255e550a0be9749418ef247db46ac261abb9abffe83860a0b82d997df

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhgf-0.2.12-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 357.2 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.12 {"installer":{"name":"uv","version":"0.11.12","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.12-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 94065ce5f24dceb4b78dd011718d1c52c00796ae9c0a5fa7dd9bc173512d2b95
MD5 b53546e9bf74c4a6c9c05bbe25e535d6
BLAKE2b-256 30878e24ad006e59ce38a2fae4970adeff05cc7ede024647d0aa269690c19938

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhgf-0.2.12-cp314-cp314t-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 725.1 kB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.12 {"installer":{"name":"uv","version":"0.11.12","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.12-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8a841a64ad19d8ad85cc472f95b06f0f15462c26361e04e866872a721568c158
MD5 954fdb13510a8f29d38b5c15b60fb4e4
BLAKE2b-256 0a188f1ba135f40f77006ab099b7f37088f9c01fc6ddda6a8c1c4eb69769cb7c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhgf-0.2.12-cp314-cp314t-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 758.9 kB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.12 {"installer":{"name":"uv","version":"0.11.12","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.12-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 69894f71a63873f6d7060d06147ee2b2f03f056511392ddb2f9bcb667afc2ce5
MD5 bdd548f831c3cf83beb66810e0786b7d
BLAKE2b-256 440a3b5dce5d4266016e28ed8b38855942607cad17a6f4db5dd4df147d8475d7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhgf-0.2.12-cp314-cp314t-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 791.8 kB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.12 {"installer":{"name":"uv","version":"0.11.12","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.12-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 db9a12521aecfcc88b4bd60cdaa36920e6b429a622efcc3886259fcabce7c695
MD5 f5a436f24bcbeee2209e722b22731a26
BLAKE2b-256 71d7ca99ed678cdaa01d0aa8b7d6119af8d19c88efa67d33f30f873c041a3eef

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhgf-0.2.12-cp314-cp314t-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 687.5 kB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.12 {"installer":{"name":"uv","version":"0.11.12","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.12-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c832737cc125f163ebb868a8503f8ccf32f3300b78af100b85ef32bca710dbc1
MD5 02fdcc65ad2b28ba0ebc950ccdef4283
BLAKE2b-256 04c1a04f8535a278c61aaea16ee3745f51b933a4b5f1122931c7ace818303af5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhgf-0.2.12-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 525.9 kB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.12 {"installer":{"name":"uv","version":"0.11.12","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.12-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0a319ca7f00de6c9c64ef60069684b5530d18ad6055126d0ac62a6d910b76d39
MD5 8f78302c8beedc55758917d945dd79a4
BLAKE2b-256 b83e64a5b8a6bc3989f6f61df9916c24ffa9c9ab38b6143a1cec403ecd3ac257

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhgf-0.2.12-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 535.8 kB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.12 {"installer":{"name":"uv","version":"0.11.12","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.12-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 090b7553640f0c5048bf47eef10e19cd34b3179c4910b0792b2152e599c71878
MD5 b9430e473c5b108d69582027a42939dd
BLAKE2b-256 1f3478f4c5add45cfd7241e3867bfaaf442c2a48cc5eea621d3962d05fb230f5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhgf-0.2.12-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 643.8 kB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.12 {"installer":{"name":"uv","version":"0.11.12","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.12-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9eef4eebc16f55bac3f68f63a6b6794460a8b8554a6537f1eebe6088620283b1
MD5 c5b97e57d34899075d96fad3dcb2db11
BLAKE2b-256 d22480c6f91321c8c909b120804847a68671b8c78e45ca91eaa8f49449138065

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhgf-0.2.12-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 516.4 kB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.12 {"installer":{"name":"uv","version":"0.11.12","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.12-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6131e7600afaa82b66a9245fc17e7b97ce6d1f3c3dec2413260b02d879f8ec77
MD5 ec988da2790252cb145166138db574b7
BLAKE2b-256 dc1b75af3cb944138f5576274fd83018093a2de6217a8ec0ff7373937357d946

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhgf-0.2.12-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 512.2 kB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.12 {"installer":{"name":"uv","version":"0.11.12","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.12-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2c224f5c88dcb181f657857d2c56dfe89803e8f66ceaa6e08dbbb681c16e7669
MD5 1e0fe69139d22832801d4d996033f905
BLAKE2b-256 9442dc294178e2d766fde62c7c36ec4521cfa58b6ee0d07f4123f48e5189c1b9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhgf-0.2.12-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 546.4 kB
  • Tags: CPython 3.14t, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.12 {"installer":{"name":"uv","version":"0.11.12","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.12-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 6ad6d94fa908f681bb58ffe593bab3507b6fb1a896ea25f1858fc30a240bf954
MD5 c896796c8c2d5e39052bf0f880799490
BLAKE2b-256 7d4be36e56e6e6589ddbb37d71a504c3f875cead680bde0493ca32eb837e5051

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhgf-0.2.12-cp314-cp314t-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 474.8 kB
  • Tags: CPython 3.14t, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.12 {"installer":{"name":"uv","version":"0.11.12","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.12-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 12a94c1d8bf2bc0a090da9285125de46dc93338cb76b4f80b27d32a6ea29cf14
MD5 2cfd67bc7aad1ee64802168fcbf84ff1
BLAKE2b-256 adcb35a41425f20b3b8b1baf4c2ae7871c215a0ad23e0fc7c95c9c1abfa04489

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhgf-0.2.12-cp314-cp314t-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 483.1 kB
  • Tags: CPython 3.14t, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.12 {"installer":{"name":"uv","version":"0.11.12","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.12-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 305695c528fba36e9d8b6cd2bbae040391a6236fe70885ec32979612353a356f
MD5 bfafaf1189b7d1a651f1cd1bc4e34607
BLAKE2b-256 3a0ed83c17fc990786664032d96a2957dd0a00d73e0446504d7e9624e60540da

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhgf-0.2.12-cp37-abi3-win_arm64.whl
  • Upload date:
  • Size: 367.9 kB
  • Tags: CPython 3.7+, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.12 {"installer":{"name":"uv","version":"0.11.12","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.12-cp37-abi3-win_arm64.whl
Algorithm Hash digest
SHA256 59966a0e9b1512cc0019ceca66a6af4dfe3378f7ded6331292a642f7a9a616be
MD5 edcb95b6408728012fa147993d98527d
BLAKE2b-256 5615d705f413020f0cf4057f9cfc03015353fd21a8a5a3ab78f583d0fe011bde

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhgf-0.2.12-cp37-abi3-win_amd64.whl
  • Upload date:
  • Size: 380.2 kB
  • Tags: CPython 3.7+, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.12 {"installer":{"name":"uv","version":"0.11.12","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.12-cp37-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 f7c3c8e5bf2d90f7151a8cee3ffe75e12e645843801a1982dcd596570956a309
MD5 c654f0e6915f78633ee85cdbae1d6846
BLAKE2b-256 fa210daf5f06cec151512eb22a80398fef27d87d433ecb99060c618b02a786a9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhgf-0.2.12-cp37-abi3-win32.whl
  • Upload date:
  • Size: 364.9 kB
  • Tags: CPython 3.7+, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.12 {"installer":{"name":"uv","version":"0.11.12","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.12-cp37-abi3-win32.whl
Algorithm Hash digest
SHA256 d5ea60b98cdc830e97097f50cb3734f49af01c9f576bd2848f503472337b49d8
MD5 adf172e1d4003ecdde69741f3232e047
BLAKE2b-256 bab349eb66fc0d67d07442ee2ffca32cda239389d1abf5763edeeeb6b209f24f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhgf-0.2.12-cp37-abi3-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 733.1 kB
  • Tags: CPython 3.7+, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.12 {"installer":{"name":"uv","version":"0.11.12","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.12-cp37-abi3-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4d892c3c8ee3fdf6b17a4f0da55b42c733d5f5ebd6dd736584fc61f911203cae
MD5 08acb7a6c2dbdb36548f2c5fa4bd7124
BLAKE2b-256 825c80dda875481185e1f54f99f19c0595e6aab4ba4681fca10ac97f303e9366

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhgf-0.2.12-cp37-abi3-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 769.1 kB
  • Tags: CPython 3.7+, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.12 {"installer":{"name":"uv","version":"0.11.12","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.12-cp37-abi3-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e8ceca719a7223197f920553ed0931b5dd4becdffde83476c071395dff500ad3
MD5 cde5aef2e378743c6517943e65663cf6
BLAKE2b-256 610577ca182dc37fd4aa869b7b589c131256c23ea0801165e7ca2f825c278958

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhgf-0.2.12-cp37-abi3-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 801.5 kB
  • Tags: CPython 3.7+, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.12 {"installer":{"name":"uv","version":"0.11.12","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.12-cp37-abi3-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 57ee0db6e62e2c4770f2496cd4e83f90e36e8ec4aa68fcf9406c8fb5b107ebd1
MD5 cc27374448fc87389ad8852e3e17fe22
BLAKE2b-256 a208fa1c6b24693f4bd033eed4f3a1f76231cb6b05c33c0c677c8186e4965ad0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhgf-0.2.12-cp37-abi3-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 696.6 kB
  • Tags: CPython 3.7+, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.12 {"installer":{"name":"uv","version":"0.11.12","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.12-cp37-abi3-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 25a3a4639bf90137633ce6f1c4c8ffe3ab8f4497c4e75e8160cbfaf3fd0e163c
MD5 92745599b412a108d0521187c6ede97d
BLAKE2b-256 ae585e3d7f3a3d79a9b551f80c51ca3878fd2b37ba072ca5a4c6b43aa3236411

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhgf-0.2.12-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 535.0 kB
  • Tags: CPython 3.7+, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.12 {"installer":{"name":"uv","version":"0.11.12","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.12-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 da8845e4dd9244400b4c7d1d90c93ebed039f73968ddbc5160411405f2c27a6c
MD5 94ff7dfb77376f38540237b29faf63c5
BLAKE2b-256 2873a6bbaf2070709e500b0fd61929554a52e450d5d65e64b7b5c805070e07b9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhgf-0.2.12-cp37-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 543.4 kB
  • Tags: CPython 3.7+, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.12 {"installer":{"name":"uv","version":"0.11.12","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.12-cp37-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 00c14c79f733757ded1c5084f19e2359416a586bf81a37ef978bbdee866159c8
MD5 06889382c9a1a244add8a6ba6d346c8c
BLAKE2b-256 ec2e96a7a97eed528b58150c36b28ff027321aace69d49b02561c8c1efed1600

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhgf-0.2.12-cp37-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 653.2 kB
  • Tags: CPython 3.7+, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.12 {"installer":{"name":"uv","version":"0.11.12","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.12-cp37-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 044602fc8486b80022fc0c482625eb6493f1bed55cb1e30ed7851909ed606231
MD5 418a31a2048bf24f44b63dcc2cd2ca39
BLAKE2b-256 89c277748feeccb8c8c8d522baba83294de55a4c201acc9238f5cc99aa19a9ac

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhgf-0.2.12-cp37-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 526.4 kB
  • Tags: CPython 3.7+, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.12 {"installer":{"name":"uv","version":"0.11.12","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.12-cp37-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6c913acdafb6354d54e8a9662aeb0a7d6c1a7c11548e1b40144fec4abf46081b
MD5 cf56cdc2ba5b937d444f15595b97642c
BLAKE2b-256 e7b47bce2b2e33356609820e90d11d2d26bac1f0cfedf314efe4722f66472fef

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhgf-0.2.12-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 521.1 kB
  • Tags: CPython 3.7+, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.12 {"installer":{"name":"uv","version":"0.11.12","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.12-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c0f3e2cfface910c1d53a2939693e628e05af3b701434c7b3121f4a85b6d022b
MD5 e789e5b3d1c4cfffc9bcce6104f9b2a1
BLAKE2b-256 02857a6e955cf4f7fec3c1eac533f537e505a1a461a9a3a699ae4e826a2d18e7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhgf-0.2.12-cp37-abi3-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 557.0 kB
  • Tags: CPython 3.7+, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.12 {"installer":{"name":"uv","version":"0.11.12","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.12-cp37-abi3-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2d27a4698ebab0da3a4de1389115279e6cea7082243f6104b2185c7ae029cad4
MD5 fd3120193339dc4d865bf8a723730639
BLAKE2b-256 a01ef2a88faaa3af27b95071023671beec03bf96a97f14b9677ce961db1f9b6a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhgf-0.2.12-cp37-abi3-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 481.8 kB
  • Tags: CPython 3.7+, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.12 {"installer":{"name":"uv","version":"0.11.12","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.12-cp37-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ef607f1e76e294330bea1b0c7ae547c74eb45f817aa1792cf6979953a80c6169
MD5 ffbd1c8ee64efb88d42c504aa1e12ebd
BLAKE2b-256 3ab3194cc81602ba8e1024dee9e6626ea0a5390af470d5df8e5f743fb66851ed

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhgf-0.2.12-cp37-abi3-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 491.8 kB
  • Tags: CPython 3.7+, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.12 {"installer":{"name":"uv","version":"0.11.12","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.12-cp37-abi3-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ea51b7c38d3251579b04b92af257db66d9bec388cf342876ae505d7f6be1dfb0
MD5 278f5cb7f78480d384d5e3d956d99652
BLAKE2b-256 21f556e2d7ea6dfe066aabb6e52c6fcc9747e8806237ba9517019d194f794993

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