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

Uploaded CPython 3.14tWindows x86-64

pyhgf-0.2.11-cp314-cp314t-win32.whl (352.0 kB view details)

Uploaded CPython 3.14tWindows x86

pyhgf-0.2.11-cp314-cp314t-musllinux_1_2_x86_64.whl (720.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

pyhgf-0.2.11-cp314-cp314t-musllinux_1_2_i686.whl (754.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

pyhgf-0.2.11-cp314-cp314t-musllinux_1_2_armv7l.whl (787.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

pyhgf-0.2.11-cp314-cp314t-musllinux_1_2_aarch64.whl (682.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

pyhgf-0.2.11-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (520.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

pyhgf-0.2.11-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (531.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

pyhgf-0.2.11-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (639.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

pyhgf-0.2.11-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (511.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

pyhgf-0.2.11-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (507.1 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

pyhgf-0.2.11-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl (541.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.5+ i686

pyhgf-0.2.11-cp314-cp314t-macosx_11_0_arm64.whl (470.4 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

pyhgf-0.2.11-cp314-cp314t-macosx_10_12_x86_64.whl (478.6 kB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

pyhgf-0.2.11-cp37-abi3-win_arm64.whl (363.5 kB view details)

Uploaded CPython 3.7+Windows ARM64

pyhgf-0.2.11-cp37-abi3-win_amd64.whl (375.3 kB view details)

Uploaded CPython 3.7+Windows x86-64

pyhgf-0.2.11-cp37-abi3-win32.whl (360.3 kB view details)

Uploaded CPython 3.7+Windows x86

pyhgf-0.2.11-cp37-abi3-musllinux_1_2_x86_64.whl (728.5 kB view details)

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

pyhgf-0.2.11-cp37-abi3-musllinux_1_2_i686.whl (763.6 kB view details)

Uploaded CPython 3.7+musllinux: musl 1.2+ i686

pyhgf-0.2.11-cp37-abi3-musllinux_1_2_armv7l.whl (797.1 kB view details)

Uploaded CPython 3.7+musllinux: musl 1.2+ ARMv7l

pyhgf-0.2.11-cp37-abi3-musllinux_1_2_aarch64.whl (692.5 kB view details)

Uploaded CPython 3.7+musllinux: musl 1.2+ ARM64

pyhgf-0.2.11-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (530.3 kB view details)

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

pyhgf-0.2.11-cp37-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl (538.9 kB view details)

Uploaded CPython 3.7+manylinux: glibc 2.17+ s390x

pyhgf-0.2.11-cp37-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (648.1 kB view details)

Uploaded CPython 3.7+manylinux: glibc 2.17+ ppc64le

pyhgf-0.2.11-cp37-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (522.0 kB view details)

Uploaded CPython 3.7+manylinux: glibc 2.17+ ARMv7l

pyhgf-0.2.11-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (516.7 kB view details)

Uploaded CPython 3.7+manylinux: glibc 2.17+ ARM64

pyhgf-0.2.11-cp37-abi3-manylinux_2_5_i686.manylinux1_i686.whl (551.9 kB view details)

Uploaded CPython 3.7+manylinux: glibc 2.5+ i686

pyhgf-0.2.11-cp37-abi3-macosx_11_0_arm64.whl (476.9 kB view details)

Uploaded CPython 3.7+macOS 11.0+ ARM64

pyhgf-0.2.11-cp37-abi3-macosx_10_12_x86_64.whl (487.1 kB view details)

Uploaded CPython 3.7+macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: pyhgf-0.2.11.tar.gz
  • Upload date:
  • Size: 40.0 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.11.tar.gz
Algorithm Hash digest
SHA256 6475ffd5696e74043ad19db60f7b5541cc414bf55c4aa9938ee4bedd3cc8d85e
MD5 d92994f492df830e466b775644e2436c
BLAKE2b-256 584cff4d1058fbc6b79dd954022067a2e125cd24f554b9c0e07dd34ea92458c0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhgf-0.2.11-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 367.5 kB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.11-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 36d711413aef958b28429f140a3bff6e534cc49ca4031ad87d452a4cb6439641
MD5 8d999f9e007e435aa47cf802807ea15c
BLAKE2b-256 b6971129609effcba0c28dcda0bf54469b09d9c6156d91dfbae9d98c636e876a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhgf-0.2.11-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 352.0 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.11-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 6ba703debff0ccdd82f62642c6b77c40faeceeced71f2bf2c464194aa9ebad5c
MD5 130ca7833cf8c3de031287bf3251150f
BLAKE2b-256 1353cc1c0d8522eaf3797dce6aab7c0dc37801a99e34d736cadfe258360e8d13

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhgf-0.2.11-cp314-cp314t-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 720.7 kB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.11-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0e0db4ebb67cf97119009667483f9d8352c67bf8a4845666f1129f3df01b4caa
MD5 b6ee73fb5e30d35c9b9087fd2000b080
BLAKE2b-256 0fa00dfd9b34b7128edc5c19e047b7e35f33615245bec23642585ab98f6d1360

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhgf-0.2.11-cp314-cp314t-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 754.0 kB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.11-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 681d6183edde06f03ed06dd185d08300bae76f3ebfa98d9939a2f9baf458f3c8
MD5 d2b25b3e4efe144e380fec9081ef0f05
BLAKE2b-256 b76c48c74a1a9962d005c653213e7f175abfb910349cb8ee8c1a01d9a180eaf0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhgf-0.2.11-cp314-cp314t-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 787.2 kB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.11-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4883022647e8ee5ba1b69504b406686acc1d0ecc27e4b2c34d25cf15488881dd
MD5 46d2bc3ae5eedd794e4f596c3972aef8
BLAKE2b-256 94abe747181a8326c871f66cda10a1d9a07c2dfa0f53f12f6e3122c7c1514f4c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhgf-0.2.11-cp314-cp314t-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 682.8 kB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.11-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5518b98c332a68347902b74e8844378978b338a48fd89502bc332b3a0eb40804
MD5 10d1bd61a6bbb0911956ccc3fc0fbfe1
BLAKE2b-256 188e6e71d4cb760d2a2256c49ee032067c205a2e1145db7469423ef012f651d1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhgf-0.2.11-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 520.7 kB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.11-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 40275fdb142097f952b2efe0703333e56c270a4f831412c3913941ada66c5285
MD5 6245b3372bed62c20034407ee546f0f0
BLAKE2b-256 8225401213893af7e5e9676885d7da2be5d13a4f8b086023a720733b6346a7f9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhgf-0.2.11-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 531.2 kB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.11-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c5f702aff5f20c5eca7871d356763034dd4139a95bf7505714af688b30fb6a65
MD5 6bbb9dcdb5cf04890a322e1392ba4b07
BLAKE2b-256 238f7fd8cc7ab198ac97513da4748546da5c0c0f164632ee766a6ab319781a17

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhgf-0.2.11-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 639.3 kB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.11-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9d8d926bea2886651731b180b07a562d7d04e1b970b860c25a1ca3714aa85885
MD5 6e1138e2646f062663d8866dc44efeb9
BLAKE2b-256 6ea060af29d11747fcd8213b4efd76b69b1b8c0c3d6ec9763f51320136105e5e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhgf-0.2.11-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 511.6 kB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.11-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 64a57bb02c202f7214779246f2f92e5d6a4cd53c14645fced20041b630416240
MD5 62d1b82ea92e8f972c7439f83a7988b2
BLAKE2b-256 57d9aca57f3a33588ead3c296835f55be1b89d7da4ebcc4e91f511431df8f842

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhgf-0.2.11-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 507.1 kB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.11-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6bb0d232e0db43768ac4e1f2ef930d242dedb64fdbec9b805cbfecb31e83755d
MD5 ecf8ddc4ee7fa44a9da3b6f6a0475fb4
BLAKE2b-256 8aa32586de0cf08c9d5b6d19bae7ec5de2b3c984d12cbbf7d5ad6a0730e22027

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhgf-0.2.11-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 541.3 kB
  • Tags: CPython 3.14t, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.11-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 45717e914c43aa3342aa85bd0452d00b0a0830b9af652b827dba2f5ec1ca2059
MD5 a39fc934a6d7c51449ccdf076450f3da
BLAKE2b-256 2bf41e48b2042b4342ed3a6e764bae11aa23508f0b534543ee0833357c6a3e40

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhgf-0.2.11-cp314-cp314t-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 470.4 kB
  • Tags: CPython 3.14t, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.11-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 92f2845e45f14ce7dc335efa86f8a75231fe26bec59cd69186c48db9628899a3
MD5 99ad7dc42f72e09deb9917214bc7eba7
BLAKE2b-256 9714fb6b31fe60aed7877741e8da522507e6f12538506b3b1352d7ad3d66962e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhgf-0.2.11-cp314-cp314t-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 478.6 kB
  • Tags: CPython 3.14t, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.11-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 58132b0ac5700219a62fa294d084426c683cb0159fab7c44cf723eda435a436f
MD5 a8a5db21bc00112386d212b61db5ca1f
BLAKE2b-256 96fd8a0212cd389aa8855d7479f1056c7f3efdb9f19019695f2c3ff08ced0074

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhgf-0.2.11-cp37-abi3-win_arm64.whl
  • Upload date:
  • Size: 363.5 kB
  • Tags: CPython 3.7+, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.11-cp37-abi3-win_arm64.whl
Algorithm Hash digest
SHA256 5b398e0ac5cfbfb34ee51830418dadc1b879b23a0ec8ea8348063672d6faa18b
MD5 e718b314bfd48bb09a1cf6516980ab38
BLAKE2b-256 05704fa074a4fb67b73cf416732097a2edaf47256a8746ca9ee9df9e32fef930

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhgf-0.2.11-cp37-abi3-win_amd64.whl
  • Upload date:
  • Size: 375.3 kB
  • Tags: CPython 3.7+, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.11-cp37-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 311d01c7e450f24bd0806485b3a4d92bdfdb4dc7eebe3a8b8ca3f480c07686fe
MD5 b861b33e83e59c3332872cabad46ac26
BLAKE2b-256 4f7cb4bc7cd4e601c1fb2626981973297e654d94224a1be4375cf2802f602270

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhgf-0.2.11-cp37-abi3-win32.whl
  • Upload date:
  • Size: 360.3 kB
  • Tags: CPython 3.7+, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.11-cp37-abi3-win32.whl
Algorithm Hash digest
SHA256 f8dde6a685c1a97937227d25c91d81c533a9f80e97c20d1e48b52da340cf6826
MD5 e86b4c922e714daec03d4f77fcabdbb8
BLAKE2b-256 ef8b4d98b466fe9dd6970a19dc09da9f14d0aba7186f77491dd6f735c6335ec9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhgf-0.2.11-cp37-abi3-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 728.5 kB
  • Tags: CPython 3.7+, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.11-cp37-abi3-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0b2bd2db0738ecaccd92f8c9c208241f8589153645134d1446a78369465a3fea
MD5 12263cd07db19880b6b673b4630ca976
BLAKE2b-256 f5ef49bcef8719407a22c387778ecafd42d5786e6b668f8ccb5c5ef000ab4845

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhgf-0.2.11-cp37-abi3-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 763.6 kB
  • Tags: CPython 3.7+, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.11-cp37-abi3-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 dd714104327d95c4f26e3405d6b30f9b442877ff5807a4bb76bdaa9f52241079
MD5 d1195763198215394b2b5ba9bcbb67e5
BLAKE2b-256 429defe5a5a2dbc65973b915760c84748304e5b8d93619bf0ba650c5ec62858c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhgf-0.2.11-cp37-abi3-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 797.1 kB
  • Tags: CPython 3.7+, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.11-cp37-abi3-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 22a6a27ac0b1416bf753ee84f05594e6bb3c0f8b6e8465c2070ea7f6ea776931
MD5 c44d46e6c2a6471aa3253e6278128389
BLAKE2b-256 d52e9e494c018a61a01028acc04aa79a9da8ed14117b115805c55619647d7fde

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhgf-0.2.11-cp37-abi3-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 692.5 kB
  • Tags: CPython 3.7+, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.11-cp37-abi3-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 996b7e98b9425ab2f574581d887e8f35e3b3f1cbbbba6db3fb07546729c72044
MD5 181e572f3a6bb53b1f8c25bb62541ca0
BLAKE2b-256 f81e7a019070192775289762643f44048f666f234bae8a1e8d2fcf327891c45b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhgf-0.2.11-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 530.3 kB
  • Tags: CPython 3.7+, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.11-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6b13922a623dec4989b867e6eaf6a2f0fa579605b16a1e3ae5f12a13be281595
MD5 9f0a197b97c5224fd9cbb091522bfefa
BLAKE2b-256 69e84f7cc185f26291c7a1549adccd4c4f7330d5d5a713ece260c5b73ad045a6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhgf-0.2.11-cp37-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 538.9 kB
  • Tags: CPython 3.7+, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.11-cp37-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1b1e2d67f802d2d7f3750f665ccd91939163f27e06e48641c7d34b38fcddda60
MD5 555803b8429298f3ce67bd3fe8f0e437
BLAKE2b-256 48ff3d06e6e8aecb132b5864954fd74fae2f71ef9197ddc6af24198dce9292dd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhgf-0.2.11-cp37-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 648.1 kB
  • Tags: CPython 3.7+, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.11-cp37-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6d19626fd7dfa93fd1faeeb9f981795485d1c35a7f7767c9182db752eca77cb9
MD5 3bca6e8152bc44265f8111f87abb9273
BLAKE2b-256 40316bbc39c466ea4e1b26489409a7f3fa5932ef038fd269ea0e0d730eb3b4ce

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhgf-0.2.11-cp37-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 522.0 kB
  • Tags: CPython 3.7+, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.11-cp37-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 af190d8ae9e7eb97c61bcd442a092eace063f9471b8ba1520e78549aa8fa3267
MD5 dacdaedc7acf72b812a85a9affe4aa8f
BLAKE2b-256 e5f88104dff350f646889ae033c804d538bea3ed0a8adacf77cb6de4ae2937de

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhgf-0.2.11-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 516.7 kB
  • Tags: CPython 3.7+, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.11-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5fab9aece55a6608648c15c771e1147884fd1331b7710e2b6e6b18e227596583
MD5 1b8ea97783f81be5c6ff278a06abb5eb
BLAKE2b-256 566f5213274381f6665097fc02679b42a3d440d99d32c5c68ac7f729fc87d85f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhgf-0.2.11-cp37-abi3-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 551.9 kB
  • Tags: CPython 3.7+, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.11-cp37-abi3-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5c2e031ac97e3f9a8d638976480138e070fe6fccfa33b1f7201634b240c8f283
MD5 562dbf0da6d4f2a1d9d3d69b92588657
BLAKE2b-256 015136c63be423e8928d89e097fd4e0bc550013b410c172bdfc25d312870af6d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhgf-0.2.11-cp37-abi3-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 476.9 kB
  • Tags: CPython 3.7+, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.11-cp37-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e141c569432ca63d2a73b92793d41e002227e9b411ddeb93091114471be92839
MD5 f6b22d40c1ff693bf826259e5a1a283d
BLAKE2b-256 a713f6b5ac50a010c4bc09a5fb4df32102be6beb9a5213ab015b18126964fa7d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyhgf-0.2.11-cp37-abi3-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 487.1 kB
  • Tags: CPython 3.7+, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.11-cp37-abi3-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4a6a0a60a6d165d0aa418f5d47b6c4a9825abe1fb87145dad7205b192a19126a
MD5 a4b89d97fcf19c9f0feb254f7b8f2a2f
BLAKE2b-256 bb8cc5530f48221f0812248a6fe6b405f3005981eafef740afc02878a2b9a564

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