Skip to main content

A Python package to work with the HPO Ontology using a Rust backend for faster performance

Project description

Documentation PyPi downloads Latest release

HPO3

hpo3 is a Rust based drop-in replacement of PyHPO. It is based on the hpo Rust library which is a performance optimzied implementation of PyHPO.

Main Features

  • 👫 Identify patient cohorts based on clinical features
  • 👨‍👧‍👦 Cluster patients or other clinical information for GWAS
  • 🩻→🧬 Phenotype to Genotype studies
  • 🍎🍊 HPO similarity analysis
  • 🕸️ Graph based analysis of phenotypes, genes and diseases
  • 🔬 Enrichment analysis of genes or diseases

hpo3 allows working on individual terms HPOTerm, a set of terms HPOSet and the full Ontology.

The library is helpful for discovery of novel gene-disease associations and GWAS data analysis studies. At the same time, it can be used for oragnize clinical information of patients in research or diagnostic settings.

Using the Rust-based hpo library gives super fast performance that allows large analyses. It enables developers to utilize multithreading, further improving performance greatly.

hpo3 aims to use the exact same API and methods as PyHPO to allow a very simple replacement for all analysis and statistics methods. However, it does not allow customization and modification of the ontology or individual terms, genes etc.

Installation

HPO3 is provided as binary wheels for most platforms on PyPI, so in most cases you can just run

pip install hpo3

(For macOS, only Python 3.10 and 3.11 are supported, for both x64 and arm at the moment.)

hpo3 ships with a prebuilt HPO Ontology by default, so you can start right away.

Examples

There are also more examples in the documentation of both PyHPO and hpo3

from pyhpo import Ontology, HPOSet

# initilize the Ontology
Ontology()

for term in Ontology:
    print(f"{term.id} | {term.name}")

# Declare the clinical information of the patients
patient_1 = HPOSet.from_queries([
    'HP:0002943',
    'HP:0008458',
    'HP:0100884',
    'HP:0002944',
    'HP:0002751'
])

patient_2 = HPOSet.from_queries([
    'HP:0002650',
    'HP:0010674',
    'HP:0000925',
    'HP:0009121'
])

# and compare their similarity
patient_1.similarity(patient_2)
#> 0.7594183905785477

# Retrieve a term e.g. via its HPO-ID
term = Ontology.get_hpo_object('Scoliosis')

print(term)
#> HP:0002650 | Scoliosis

# Get information content from Term <--> Omim associations
term.information_content['omim']
#> 2.29

# Show how many genes are associated to the term
# (Note that this includes indirect associations, associations
# from children terms to genes.)
len(term.genes)
#> 1094

# Show how many Omim Diseases are associated to the term
# (Note that this includes indirect associations, associations
# from children terms to diseases.)
len(term.omim_diseases)
#> 844

# Get a list of all direct parent terms
for p in term.parents:
    print(p)
#> HP:0010674 | Abnormality of the curvature of the vertebral column

# Get a list of all ancestor (direct + indirect parent) terms
for p in term.all_parents:
    print(p)
#> HP:0000001 | All
#> HP:0011842 | Abnormal skeletal morphology
#> HP:0009121 | Abnormal axial skeleton morphology
#> HP:0033127 | Abnormality of the musculoskeletal system
#> HP:0010674 | Abnormality of the curvature of the vertebral column
#> HP:0000118 | Phenotypic abnormality
#> HP:0000924 | Abnormality of the skeletal system
#> HP:0000925 | Abnormality of the vertebral column

# Get a list of all children terms
for p in term.children:
    print(p)
"""
HP:0002944 | Thoracolumbar scoliosis
HP:0008458 | Progressive congenital scoliosis
HP:0100884 | Compensatory scoliosis
HP:0002944 | Thoracolumbar scoliosis
HP:0002751 | Kyphoscoliosis
"""

# Show the categories a term belongs to
for term in Ontology.hpo(10049).categories:
    print(term)
"""
HP:0033127 | Abnormality of the musculoskeletal system
HP:0040064 | Abnormality of limbs
"""

Documentation

Check out the hpo3 documentation

Parallel processing

hpo3 is using Rust as backend, so it's able to fully utilize parallel processing. To benefit from this even greater, hpo3 provides some special helper functions for parallel batch processing in the helper submodule

Similarity scores of HPOSets

Pairwise similarity comparison of HPOSets. Specify a list of comparisons to run and hpo3 calculates the result using all available CPUs.

Assume you want to compare the clinical information of a patient to the clinical information of 1000s of other patients:

from pyhpo.helper import set_batch_similarity
from pyhpo import Ontology, HPOSet

Ontology()

main_patient = HPOSet.from_queries([
    'HP:0002943',
    'HP:0008458',
    'HP:0100884',
    'HP:0002944',
    'HP:0002751'
])

# 2 column table with
# - Patient Identifier
# - Comma separated HPO-terms
patient_source = """\
Patient_000001\tHP:0007587,HP:4000044,HP:0001845,HP:0041249,HP:0032648
Patient_000002\tHP:0034338,HP:0031955,HP:0003311,HP:0032564,HP:0100238
Patient_000003\tHP:0031096,HP:0410280,HP:0009899,HP:0002088,HP:0100204
Patient_000004\tHP:0030782,HP:0011439,HP:0009751,HP:0001433,HP:0030336
Patient_000005\tHP:0025029,HP:0033643,HP:0000957,HP:0005593,HP:0012486
Patient_000006\tHP:0009344,HP:0430016,HP:0005621,HP:0010043,HP:0030974
Patient_000007\tHP:0010760,HP:0009331,HP:0100119,HP:0012871,HP:0003653
Patient_000008\tHP:0001636,HP:0000561,HP:0009990,HP:3000075,HP:0007333
Patient_000009\tHP:0011675,HP:0011730,HP:0032729,HP:0032169,HP:0002888
Patient_000010\tHP:0004900,HP:0010761,HP:0020212,HP:0001806,HP:0033372
Patient_000011\tHP:0033336,HP:0025134,HP:0033815,HP:0032290,HP:0032472
Patient_000012\tHP:0004286,HP:0010543,HP:0007258,HP:0009582,HP:0005871
Patient_000013\tHP:0000273,HP:0031967,HP:0033305,HP:0010862,HP:0031750
Patient_000014\tHP:0031403,HP:0020134,HP:0011260,HP:0000826,HP:0030739
Patient_000015\tHP:0009966,HP:0034101,HP:0100736,HP:0032385,HP:0030152
Patient_000016\tHP:0011398,HP:0002165,HP:0000512,HP:0032028,HP:0007807
Patient_000017\tHP:0007465,HP:0031214,HP:0002575,HP:0007765,HP:0100404
Patient_000018\tHP:0033278,HP:0006937,HP:0008726,HP:0012142,HP:0100185
Patient_000019\tHP:0008365,HP:0033377,HP:0032463,HP:0033014,HP:0009338
Patient_000020\tHP:0012431,HP:0004415,HP:0001285,HP:0010747,HP:0008344
Patient_000021\tHP:0008722,HP:0003436,HP:0007313,HP:0031362,HP:0007236
Patient_000022\tHP:0000883,HP:0007542,HP:0012653,HP:0009411,HP:0031773
Patient_000023\tHP:0001083,HP:0030031,HP:0100349,HP:0001120,HP:0010835
Patient_000024\tHP:0410210,HP:0009341,HP:0100811,HP:0032710,HP:0410064
Patient_000025\tHP:0001056,HP:0005561,HP:0003690,HP:0040157,HP:0100059
Patient_000026\tHP:0010651,HP:0500020,HP:0100603,HP:0033443,HP:0008288
Patient_000027\tHP:0012330,HP:0034395,HP:0004066,HP:0000554,HP:0002257
Patient_000028\tHP:0031484,HP:0100423,HP:0030487,HP:0033538,HP:0003172
Patient_000029\tHP:0030901,HP:0025136,HP:0034367,HP:0034101,HP:0045017
Patient_000030\tHP:0100957,HP:0010027,HP:0010806,HP:0020185,HP:0001421
Patient_000031\tHP:0001671,HP:0003885,HP:0001464,HP:0000243,HP:0009549
Patient_000032\tHP:0003521,HP:0003109,HP:0000433,HP:0030647,HP:0100280
Patient_000033\tHP:0006394,HP:0031598,HP:0032199,HP:0010428,HP:0000108
Patient_000034\tHP:0001468,HP:0008689,HP:0410030,HP:0012226,HP:0011388
Patient_000035\tHP:0003536,HP:0001011,HP:0033262,HP:0009978,HP:0025586
Patient_000036\tHP:0031849,HP:0005244,HP:0001664,HP:0041233,HP:0030921
Patient_000037\tHP:0005616,HP:0003874,HP:0011744,HP:0033751,HP:0007971
Patient_000038\tHP:0012836,HP:0033858,HP:0003427,HP:0033880,HP:0030481
Patient_000039\tHP:0100369,HP:0040317,HP:0010561,HP:0010522,HP:0011339
Patient_000040\tHP:0005338,HP:0040179,HP:0004258,HP:0030589,HP:0032981
Patient_000041\tHP:0011758,HP:0033519,HP:0032010,HP:0030710,HP:0010419
Patient_000042\tHP:0002642,HP:0006335,HP:0009895,HP:0001928,HP:0003779
Patient_000043\tHP:0002867,HP:0030404,HP:0033495,HP:0011143,HP:0012642
Patient_000044\tHP:0033432,HP:0005195,HP:0009062,HP:0100617,HP:0033586
Patient_000045\tHP:0011740,HP:0100159,HP:0033480,HP:3000069,HP:0011394
Patient_000046\tHP:0033350,HP:0009840,HP:0040247,HP:0040204,HP:0033099
Patient_000047\tHP:0030323,HP:0032005,HP:0033675,HP:0033869,HP:0010850
Patient_000048\tHP:0003411,HP:0100953,HP:0005532,HP:0032119,HP:0012157
Patient_000049\tHP:0030592,HP:0011691,HP:0010498,HP:0030196,HP:0006414
Patient_000050\tHP:0001549,HP:0040258,HP:0007078,HP:0000657,HP:3000066
"""

comparisons = []

for patient in patient_source.splitlines():
    _, terms = patient.split("\t")
    comparisons.append(
        (
            main_patient,
            HPOSet.from_queries(terms.split(","))
        )
    )

similarities = set_batch_similarity(
    comparisons,
    kind="omim",
    method="graphic",
    combine="funSimMax"
)

(This functionality works well with dataframes, such as pandas or polars, adding the similarity scores as a new series)

Gene and Disease enrichments in HPOSets

Calculate the gene enrichment in several HPOSets in parallel

from pyhpo.helper import batch_gene_enrichment
from pyhpo.helper import batch_disease_enrichment
from pyhpo import Ontology, HPOSet

Ontology()

# 2 column table with
# - Patient Identifier
# - Comma separated HPO-terms
patient_source = """\
Patient_000001\tHP:0007587,HP:4000044,HP:0001845,HP:0041249,HP:0032648
Patient_000002\tHP:0034338,HP:0031955,HP:0003311,HP:0032564,HP:0100238
Patient_000003\tHP:0031096,HP:0410280,HP:0009899,HP:0002088,HP:0100204
Patient_000004\tHP:0030782,HP:0011439,HP:0009751,HP:0001433,HP:0030336
Patient_000005\tHP:0025029,HP:0033643,HP:0000957,HP:0005593,HP:0012486
Patient_000006\tHP:0009344,HP:0430016,HP:0005621,HP:0010043,HP:0030974
Patient_000007\tHP:0010760,HP:0009331,HP:0100119,HP:0012871,HP:0003653
Patient_000008\tHP:0001636,HP:0000561,HP:0009990,HP:3000075,HP:0007333
Patient_000009\tHP:0011675,HP:0011730,HP:0032729,HP:0032169,HP:0002888
Patient_000010\tHP:0004900,HP:0010761,HP:0020212,HP:0001806,HP:0033372
Patient_000011\tHP:0033336,HP:0025134,HP:0033815,HP:0032290,HP:0032472
Patient_000012\tHP:0004286,HP:0010543,HP:0007258,HP:0009582,HP:0005871
Patient_000013\tHP:0000273,HP:0031967,HP:0033305,HP:0010862,HP:0031750
Patient_000014\tHP:0031403,HP:0020134,HP:0011260,HP:0000826,HP:0030739
Patient_000015\tHP:0009966,HP:0034101,HP:0100736,HP:0032385,HP:0030152
Patient_000016\tHP:0011398,HP:0002165,HP:0000512,HP:0032028,HP:0007807
Patient_000017\tHP:0007465,HP:0031214,HP:0002575,HP:0007765,HP:0100404
Patient_000018\tHP:0033278,HP:0006937,HP:0008726,HP:0012142,HP:0100185
Patient_000019\tHP:0008365,HP:0033377,HP:0032463,HP:0033014,HP:0009338
Patient_000020\tHP:0012431,HP:0004415,HP:0001285,HP:0010747,HP:0008344
Patient_000021\tHP:0008722,HP:0003436,HP:0007313,HP:0031362,HP:0007236
Patient_000022\tHP:0000883,HP:0007542,HP:0012653,HP:0009411,HP:0031773
Patient_000023\tHP:0001083,HP:0030031,HP:0100349,HP:0001120,HP:0010835
Patient_000024\tHP:0410210,HP:0009341,HP:0100811,HP:0032710,HP:0410064
Patient_000025\tHP:0001056,HP:0005561,HP:0003690,HP:0040157,HP:0100059
Patient_000026\tHP:0010651,HP:0500020,HP:0100603,HP:0033443,HP:0008288
Patient_000027\tHP:0012330,HP:0034395,HP:0004066,HP:0000554,HP:0002257
Patient_000028\tHP:0031484,HP:0100423,HP:0030487,HP:0033538,HP:0003172
Patient_000029\tHP:0030901,HP:0025136,HP:0034367,HP:0034101,HP:0045017
Patient_000030\tHP:0100957,HP:0010027,HP:0010806,HP:0020185,HP:0001421
Patient_000031\tHP:0001671,HP:0003885,HP:0001464,HP:0000243,HP:0009549
Patient_000032\tHP:0003521,HP:0003109,HP:0000433,HP:0030647,HP:0100280
Patient_000033\tHP:0006394,HP:0031598,HP:0032199,HP:0010428,HP:0000108
Patient_000034\tHP:0001468,HP:0008689,HP:0410030,HP:0012226,HP:0011388
Patient_000035\tHP:0003536,HP:0001011,HP:0033262,HP:0009978,HP:0025586
Patient_000036\tHP:0031849,HP:0005244,HP:0001664,HP:0041233,HP:0030921
Patient_000037\tHP:0005616,HP:0003874,HP:0011744,HP:0033751,HP:0007971
Patient_000038\tHP:0012836,HP:0033858,HP:0003427,HP:0033880,HP:0030481
Patient_000039\tHP:0100369,HP:0040317,HP:0010561,HP:0010522,HP:0011339
Patient_000040\tHP:0005338,HP:0040179,HP:0004258,HP:0030589,HP:0032981
Patient_000041\tHP:0011758,HP:0033519,HP:0032010,HP:0030710,HP:0010419
Patient_000042\tHP:0002642,HP:0006335,HP:0009895,HP:0001928,HP:0003779
Patient_000043\tHP:0002867,HP:0030404,HP:0033495,HP:0011143,HP:0012642
Patient_000044\tHP:0033432,HP:0005195,HP:0009062,HP:0100617,HP:0033586
Patient_000045\tHP:0011740,HP:0100159,HP:0033480,HP:3000069,HP:0011394
Patient_000046\tHP:0033350,HP:0009840,HP:0040247,HP:0040204,HP:0033099
Patient_000047\tHP:0030323,HP:0032005,HP:0033675,HP:0033869,HP:0010850
Patient_000048\tHP:0003411,HP:0100953,HP:0005532,HP:0032119,HP:0012157
Patient_000049\tHP:0030592,HP:0011691,HP:0010498,HP:0030196,HP:0006414
Patient_000050\tHP:0001549,HP:0040258,HP:0007078,HP:0000657,HP:3000066
"""

hpo_sets = []
for patient in patient_source.splitlines():
    _, terms = patient.split("\t")
    hpo_sets.append(HPOSet.from_queries(terms.split(",")))

gene_enrichments = batch_gene_enrichment(hpo_sets)
disease_enrichments = batch_disease_enrichment(hpo_sets)

Development

hpo3 is completely written in Rust, so you require a stable Rust toolchain:

Rust installation instructions as on the official website:

curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh

Then clone this repository:

git clone https://github.com/anergictcell/hpo3
cd hpo3

Create a Python virtual environment and install maturin:

virtualenv venv
source venv/bin/activate
pip install maturin

And finally build and install the Python library

maturin develop -r

Aaaaand, you're done:

python
from pyhpo import Ontology
Ontology()
for term in Ontology:
    print(term.name)

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

hpo3-1.5.1.tar.gz (1.7 MB view details)

Uploaded Source

Built Distributions

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

hpo3-1.5.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (2.5 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

hpo3-1.5.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl (2.6 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

hpo3-1.5.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (2.6 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

hpo3-1.5.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (2.5 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

hpo3-1.5.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.4 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

hpo3-1.5.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.4 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

hpo3-1.5.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

hpo3-1.5.1-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (2.4 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

hpo3-1.5.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

hpo3-1.5.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.4 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

hpo3-1.5.1-cp314-cp314t-musllinux_1_2_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

hpo3-1.5.1-cp314-cp314t-musllinux_1_2_i686.whl (2.6 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

hpo3-1.5.1-cp314-cp314t-musllinux_1_2_armv7l.whl (2.6 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

hpo3-1.5.1-cp314-cp314t-musllinux_1_2_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

hpo3-1.5.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.4 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

hpo3-1.5.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.5 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

hpo3-1.5.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.3 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

hpo3-1.5.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

hpo3-1.5.1-cp314-cp314-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.14Windows x86-64

hpo3-1.5.1-cp314-cp314-win32.whl (2.1 MB view details)

Uploaded CPython 3.14Windows x86

hpo3-1.5.1-cp314-cp314-musllinux_1_2_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

hpo3-1.5.1-cp314-cp314-musllinux_1_2_i686.whl (2.6 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

hpo3-1.5.1-cp314-cp314-musllinux_1_2_armv7l.whl (2.6 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

hpo3-1.5.1-cp314-cp314-musllinux_1_2_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

hpo3-1.5.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

hpo3-1.5.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

hpo3-1.5.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

hpo3-1.5.1-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl (2.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

hpo3-1.5.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

hpo3-1.5.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

hpo3-1.5.1-cp314-cp314-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

hpo3-1.5.1-cp314-cp314-macosx_10_12_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

hpo3-1.5.1-cp313-cp313t-musllinux_1_2_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

hpo3-1.5.1-cp313-cp313t-musllinux_1_2_i686.whl (2.6 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

hpo3-1.5.1-cp313-cp313t-musllinux_1_2_armv7l.whl (2.6 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

hpo3-1.5.1-cp313-cp313t-musllinux_1_2_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

hpo3-1.5.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.4 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

hpo3-1.5.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.5 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

hpo3-1.5.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.3 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

hpo3-1.5.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

hpo3-1.5.1-cp313-cp313-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.13Windows x86-64

hpo3-1.5.1-cp313-cp313-musllinux_1_2_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

hpo3-1.5.1-cp313-cp313-musllinux_1_2_i686.whl (2.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

hpo3-1.5.1-cp313-cp313-musllinux_1_2_armv7l.whl (2.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

hpo3-1.5.1-cp313-cp313-musllinux_1_2_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

hpo3-1.5.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

hpo3-1.5.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

hpo3-1.5.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

hpo3-1.5.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (2.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

hpo3-1.5.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

hpo3-1.5.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

hpo3-1.5.1-cp313-cp313-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

hpo3-1.5.1-cp313-cp313-macosx_10_12_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

hpo3-1.5.1-cp312-cp312-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.12Windows x86-64

hpo3-1.5.1-cp312-cp312-musllinux_1_2_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

hpo3-1.5.1-cp312-cp312-musllinux_1_2_i686.whl (2.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

hpo3-1.5.1-cp312-cp312-musllinux_1_2_armv7l.whl (2.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

hpo3-1.5.1-cp312-cp312-musllinux_1_2_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

hpo3-1.5.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

hpo3-1.5.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

hpo3-1.5.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

hpo3-1.5.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (2.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

hpo3-1.5.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

hpo3-1.5.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

hpo3-1.5.1-cp312-cp312-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

hpo3-1.5.1-cp312-cp312-macosx_10_12_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

hpo3-1.5.1-cp311-cp311-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.11Windows x86-64

hpo3-1.5.1-cp311-cp311-musllinux_1_2_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

hpo3-1.5.1-cp311-cp311-musllinux_1_2_i686.whl (2.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

hpo3-1.5.1-cp311-cp311-musllinux_1_2_armv7l.whl (2.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

hpo3-1.5.1-cp311-cp311-musllinux_1_2_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

hpo3-1.5.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

hpo3-1.5.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

hpo3-1.5.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

hpo3-1.5.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (2.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

hpo3-1.5.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

hpo3-1.5.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

hpo3-1.5.1-cp311-cp311-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

hpo3-1.5.1-cp311-cp311-macosx_10_12_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

hpo3-1.5.1-cp310-cp310-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.10Windows x86-64

hpo3-1.5.1-cp310-cp310-musllinux_1_2_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

hpo3-1.5.1-cp310-cp310-musllinux_1_2_i686.whl (2.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

hpo3-1.5.1-cp310-cp310-musllinux_1_2_armv7l.whl (2.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

hpo3-1.5.1-cp310-cp310-musllinux_1_2_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

hpo3-1.5.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

hpo3-1.5.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

hpo3-1.5.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

hpo3-1.5.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (2.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

hpo3-1.5.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

hpo3-1.5.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

hpo3-1.5.1-cp39-cp39-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.9Windows x86-64

hpo3-1.5.1-cp39-cp39-musllinux_1_2_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

hpo3-1.5.1-cp39-cp39-musllinux_1_2_i686.whl (2.6 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

hpo3-1.5.1-cp39-cp39-musllinux_1_2_armv7l.whl (2.6 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

hpo3-1.5.1-cp39-cp39-musllinux_1_2_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

hpo3-1.5.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

hpo3-1.5.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

hpo3-1.5.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

hpo3-1.5.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (2.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

hpo3-1.5.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

hpo3-1.5.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

hpo3-1.5.1-cp38-cp38-musllinux_1_2_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

hpo3-1.5.1-cp38-cp38-musllinux_1_2_i686.whl (2.6 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

hpo3-1.5.1-cp38-cp38-musllinux_1_2_armv7l.whl (2.6 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

hpo3-1.5.1-cp38-cp38-musllinux_1_2_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

hpo3-1.5.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

hpo3-1.5.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.4 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

hpo3-1.5.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.5 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

hpo3-1.5.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (2.4 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

hpo3-1.5.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.4 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

hpo3-1.5.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

hpo3-1.5.1-cp37-cp37m-musllinux_1_2_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ x86-64

hpo3-1.5.1-cp37-cp37m-musllinux_1_2_i686.whl (2.6 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ i686

hpo3-1.5.1-cp37-cp37m-musllinux_1_2_armv7l.whl (2.6 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ ARMv7l

hpo3-1.5.1-cp37-cp37m-musllinux_1_2_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ ARM64

hpo3-1.5.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.4 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ s390x

hpo3-1.5.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.5 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ppc64le

hpo3-1.5.1-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.4 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARMv7l

hpo3-1.5.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

File details

Details for the file hpo3-1.5.1.tar.gz.

File metadata

  • Download URL: hpo3-1.5.1.tar.gz
  • Upload date:
  • Size: 1.7 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.10.2

File hashes

Hashes for hpo3-1.5.1.tar.gz
Algorithm Hash digest
SHA256 d18f90422cdc0ef74dad9e359539b96dd677c83d008a0f722cfe3679a7c666ee
MD5 adc6f6e34f3c5901d8ae159fd43b12f6
BLAKE2b-256 09cfb4168017c1f3db766cd20f1a197832a50a75898b2eb21cd245283916ff40

See more details on using hashes here.

File details

Details for the file hpo3-1.5.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for hpo3-1.5.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 67253643d32f662b8eea6f0d1606bb356ade5fcfd9996810a55a190bc0ca3e40
MD5 f9f98076b123abc1e4756820115e1784
BLAKE2b-256 47477a762b5ea097f68381bc9e2474b2850f82d3434162e2839896e832111ff7

See more details on using hashes here.

File details

Details for the file hpo3-1.5.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for hpo3-1.5.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3031b1bfbc1d0be79e5964f946bef83125a7ee0c426cc7877db5b4acfc40e8c6
MD5 6239e9a87b8a657e90bd364f2f83b182
BLAKE2b-256 5c01c1003c1e546b8e20fb01f887d19931ac0c45c2ae4cdee73648caba2063d1

See more details on using hashes here.

File details

Details for the file hpo3-1.5.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for hpo3-1.5.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4ee1011eec86bc3cd89dcd44fb273c61f576f5db83f6a2bf21006fdc7a1d5e49
MD5 ba37ae6f99eb39ac817b9c804d16d1c9
BLAKE2b-256 5c7eb8a09979d8d3e65d347be4676fbf62baccadaa13bd9f5486f946bd7424f6

See more details on using hashes here.

File details

Details for the file hpo3-1.5.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for hpo3-1.5.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2c52cfbadaf6f539bca88c6838518045f86ad2d960cc337a91322b185365515a
MD5 b027547348a2fd89f791b0df5fb1e225
BLAKE2b-256 7e9fb78ce303db46a1c1bf7ea10e61bc9ae0a7d6b91142be375f7ed8a3b1d71e

See more details on using hashes here.

File details

Details for the file hpo3-1.5.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for hpo3-1.5.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fb9f1a562719cf2bcf49bfd1eeb5b94d10cf139c2a6c923722875b33dbb9222f
MD5 e6cf36fb43f64d05356b0ff45057a165
BLAKE2b-256 65460cf2a84605867533e8c94a7c3de4a76b11b8625e692fe4f1fd817d169a1c

See more details on using hashes here.

File details

Details for the file hpo3-1.5.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for hpo3-1.5.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0cee32b3ae674f59be4c312a9300c088d4c0c3fb931c61815a1ea625433ff8ac
MD5 1f85bf4fd4fa671cefac5cc8f88ece38
BLAKE2b-256 c41efe11ba8d70dc888ed3f8772ff832362c664ecd119ee601e47d65cdee3ac4

See more details on using hashes here.

File details

Details for the file hpo3-1.5.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for hpo3-1.5.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ab8602f330b8e8d00b13a5aa39a9f9678c975644b934ac9bea5fba5e44371a85
MD5 99008f5c5eb27a12f36e1bc42813142b
BLAKE2b-256 0ce9e877037a08a9f03468a3c9a15b995c38b9b1c8bd08997118caa55e8de2a0

See more details on using hashes here.

File details

Details for the file hpo3-1.5.1-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for hpo3-1.5.1-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 01d138a8a56ccd5b7d64682ce804b005603ace43d4bf2f91cf17cc30249de044
MD5 b7d59db67672ec306d7fc242dfa5d9a9
BLAKE2b-256 14432ca5d402aea4ca52bad9b70a1053dcfdb2e00a9e52d934f5644f613a721e

See more details on using hashes here.

File details

Details for the file hpo3-1.5.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for hpo3-1.5.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 cc2f6581bdf1b20418af4cedb28c14b7840e931f03a83bcc3f9f89e6b687b91e
MD5 7b32a0ba997cb4e09bd4351e88971584
BLAKE2b-256 e14d9038cbc47337fdac8749e03bc6a24e5e0ff74e32ec57b9b792954bb70e06

See more details on using hashes here.

File details

Details for the file hpo3-1.5.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for hpo3-1.5.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 13b1ca37b9c5c0281995279b95984456fb20a4e12049b065d9bb877b9feac158
MD5 c249270c0ca934e43343b6e7b404634f
BLAKE2b-256 15824cd90d01706283b0cdd12c5ecaa8ea6bb2f42f485924eb7d85942f00dcd2

See more details on using hashes here.

File details

Details for the file hpo3-1.5.1-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for hpo3-1.5.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1bd05527a1310930eba602dca51bbd9453ad91c08731e405078c284bb41e2430
MD5 bfafbb44bedef0dc3d91c7ddeaf98312
BLAKE2b-256 8f10e139b137d70089ce68ca6de56448654675b6a64ef42eb13b39fb2e3437e4

See more details on using hashes here.

File details

Details for the file hpo3-1.5.1-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for hpo3-1.5.1-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2909e6621b5dd7eb11ad1bda5188611c592adcc4461c4fb0861d02b3a0fea6d7
MD5 31f11af5cb35de1f5df0e7b3faf73b2e
BLAKE2b-256 8c646a0653afe843f83f472ae1dcbb9b25498afac752d0830bf132fa9e84fdd1

See more details on using hashes here.

File details

Details for the file hpo3-1.5.1-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for hpo3-1.5.1-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8803e52b66084410bb4784ee7460731ef10dda298e4ff5ba9e9e2f7571430587
MD5 40babc198a89f3de3e8107c7e6c66421
BLAKE2b-256 78b8581a67e78979479867b2876303685ba4c31e273cbeaface82683e1eb9e17

See more details on using hashes here.

File details

Details for the file hpo3-1.5.1-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for hpo3-1.5.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7faa75ce7d92692f84ca81866649ca3f33995efc536f68f87d7417d45e786218
MD5 b42cf903f92bdf8bb375fb0a817e9f76
BLAKE2b-256 b9a2c824284f80aee8950a743bfee0db834f202307a87ae6fe6da97c0acbad00

See more details on using hashes here.

File details

Details for the file hpo3-1.5.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for hpo3-1.5.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 83a5a2adb3e9de7e6bfd087f1657f6f8dc8394ece7199fdecce0cf67e5c44554
MD5 217b4a701ef98447afe0e8a15d86d4fa
BLAKE2b-256 737f34ecaa8ba8e4774738fcea6f33fe4177c63e236c915e385d1138a795c11e

See more details on using hashes here.

File details

Details for the file hpo3-1.5.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for hpo3-1.5.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 79be6d92b12c388facd8d63c072dacbf0f096cdc8f3c0d33934e2e8a04f3bbf2
MD5 e74b41a1e204cd55460b683aee8f8d5c
BLAKE2b-256 a6ba336e381fa70ce077cf1ef5926a42bec12d68be91a41f1e426c6268df8f7a

See more details on using hashes here.

File details

Details for the file hpo3-1.5.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for hpo3-1.5.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 dbe0f5b5fa9bf0aebe4635a3ef23111885af547b7547ac3fbcc8d63b33696474
MD5 c8464c86c622fa711a9ce6287e9c9c06
BLAKE2b-256 a3517c144cd4153b1e91ec132690138942ebfec7e5a6b84830f4f26c0140103f

See more details on using hashes here.

File details

Details for the file hpo3-1.5.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for hpo3-1.5.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 aff3a2b18adaa3ec169c13a8d9be85c533decf864ab4df3ef3707a09fabae849
MD5 9d0e4a9c4ff69282db8c6440e68aef83
BLAKE2b-256 49cbdcebc5639418ebfeb4cf84e8821ca81d94489b82ee1934ae7a39493f5532

See more details on using hashes here.

File details

Details for the file hpo3-1.5.1-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: hpo3-1.5.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.10.2

File hashes

Hashes for hpo3-1.5.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 c6caee6aa49e7b9e8e5234cc76fbf040bcb9c31d2fe740433be4d47a9d6db557
MD5 b09288a7eb27b71db4bc9408eff3d3ec
BLAKE2b-256 04de84268ff141e8e7a863c80098a0addb89c7722b2cb9b9cdbd675d633f84c9

See more details on using hashes here.

File details

Details for the file hpo3-1.5.1-cp314-cp314-win32.whl.

File metadata

  • Download URL: hpo3-1.5.1-cp314-cp314-win32.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.10.2

File hashes

Hashes for hpo3-1.5.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 c1e94936595bb18a0dbf1475ec4510c913dbe6679c49a7c5d9e7fcd9e8f4a22b
MD5 7523d860ed5e5bc9b132a1a251d4f651
BLAKE2b-256 2eae9c29d3c382e5cff0098bc57b45ea48e37c423666acf153407f09cb493aee

See more details on using hashes here.

File details

Details for the file hpo3-1.5.1-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for hpo3-1.5.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a23f621777be644b7d53d8f179e6a61703e0ef769ebd2c463ddda372060d59a8
MD5 66ce54ca057ad78d6144166ed611448d
BLAKE2b-256 8cba3adc703b2ac07f2525b6b144347059256fcadc5282d31d5ba3a0e9d68683

See more details on using hashes here.

File details

Details for the file hpo3-1.5.1-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for hpo3-1.5.1-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 10f5504fd11cf8b92d885a55d016d408af11fd927010a8c35f0c3206b24567f0
MD5 a46e2a5bf3e70f48b522b6361804ae05
BLAKE2b-256 78ae18529e140c4acf9278bffc03988a756f336d51c5cdd4c934edc3808c705f

See more details on using hashes here.

File details

Details for the file hpo3-1.5.1-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for hpo3-1.5.1-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 fd8d0a16c41d0286ec4865f0df646d917a152b2c8dede14bc96cf4686aeb37b8
MD5 5f485f413c5eaceb8cdc3ea7be076b14
BLAKE2b-256 1a78eec47c059bf74482e3ee94f0ae770e0d6039a46ee922ea8501eeff59d3ac

See more details on using hashes here.

File details

Details for the file hpo3-1.5.1-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for hpo3-1.5.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 96d4a6557095e7b6be8fd37177fa85572843a5cfff6bc20789806f4f4406ae17
MD5 7ff7736d6612fc689e517fa1319f8973
BLAKE2b-256 5dfa11c03f3ec88d86d50e4fdfb945048fba80775f6b298f10656339bc4b434d

See more details on using hashes here.

File details

Details for the file hpo3-1.5.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for hpo3-1.5.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 668bea8142c0e7ad1ca539d21e9efa1af1410fb9aabe1ac78883380b8dbaf48c
MD5 333545be75edc7144fb73df931748386
BLAKE2b-256 c054eb5e8980a5b823a44c2612992651a85dda3a1ae8837f8dadf9e0e22f78ce

See more details on using hashes here.

File details

Details for the file hpo3-1.5.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for hpo3-1.5.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 505695dbc281f45b089ec637f1a2a8d5ac9e1e2352d219adfd37f761d4512a3b
MD5 ef29e6a20ade30fa72b6f8c9a2c272cf
BLAKE2b-256 7822eeaa34c15f1459ab54ae6edbf2e58664075485d1704de5e01437f2a9675b

See more details on using hashes here.

File details

Details for the file hpo3-1.5.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for hpo3-1.5.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5d6fc9d28fad104c927d560ad5003f47cfd4e641a81b8f527d869c57af608561
MD5 d76b262b7a3cd251d6e1027d5e63a89b
BLAKE2b-256 bd60b2a3b55798d754898499289994d2bdfbef6cae0bcefac6107287adddcf53

See more details on using hashes here.

File details

Details for the file hpo3-1.5.1-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for hpo3-1.5.1-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7113840c209eec6f7530ec872529086d2c4cc1dabd54dd9c3f075a534b3975e5
MD5 cf4975ed00e567c387cd228e5590cc9f
BLAKE2b-256 8d170e8874af82c217c073e763e882604837ab9694038dd226c0cce6154179b9

See more details on using hashes here.

File details

Details for the file hpo3-1.5.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for hpo3-1.5.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c9c944cae9c36e693921bef95b76da3f169c91b207e1087c5e177c2181eac23a
MD5 e0af8768db4162fabbf03d86594f3395
BLAKE2b-256 01c4edd58b9c8a62c06dd352433287a29d4c8ede2bfdc1f72dfe519d8af9b6fb

See more details on using hashes here.

File details

Details for the file hpo3-1.5.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for hpo3-1.5.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5da7d366e09084bb4919a40ff106ebafd9065e1e5da69e50a303b9d20af9eea5
MD5 fa2f0ff2b28e05fe5de2f32cc5e53f8f
BLAKE2b-256 9be370a18007dd2e781018175ec552fea89f0a24f3df410b45ec6d2bf95999d3

See more details on using hashes here.

File details

Details for the file hpo3-1.5.1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for hpo3-1.5.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8708bae4304be0c0bdfd8e05d2c7d5204e2f915d4f0c18f7fe2739073f9d219f
MD5 3f1be8f76c733bc3304feb3f45e1b64e
BLAKE2b-256 08565d849a8938fcceaaeef6518da92c23c7564c5bbed46daccf346c0f7ca6d7

See more details on using hashes here.

File details

Details for the file hpo3-1.5.1-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for hpo3-1.5.1-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e5d5bc476bc1f8c82fb2bc62e26979f5ea02b2463f11c8e8ea4f553e61dd86c4
MD5 26d3f6bb33f38c2b1f6bf1855ca5a849
BLAKE2b-256 049da9fc866409ba02b333764c00212885f40833b1780c2d9753297ee6e1a923

See more details on using hashes here.

File details

Details for the file hpo3-1.5.1-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for hpo3-1.5.1-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 70d6b6e889645c748d4d9f5b8b7097a256d8623f1ddb8e4b32e1bf3797e8d9e5
MD5 55c2fd80cc6782d544a232d726e05216
BLAKE2b-256 783a2c824a8eafca3bad72c7e7df0d5f473124dba5bd631b2837ccd72f17084a

See more details on using hashes here.

File details

Details for the file hpo3-1.5.1-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for hpo3-1.5.1-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 53a3e960a0c735f3f4f22bda40b1ab1666dd14bf6cf4fbfad5cc2d124754cb1d
MD5 74d0d07dca04d2016a0fa1724f8788cc
BLAKE2b-256 dda04ba997ebf840cafcdd28147db5cee7e38c13026a25fbda9889d3a1afe610

See more details on using hashes here.

File details

Details for the file hpo3-1.5.1-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for hpo3-1.5.1-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d6aeba2fc848bb0b5ca5eca09f55666dfd6df878718c8dd25e240948b65d721d
MD5 5cdc4903fa2b6c69165d2d977c2f2256
BLAKE2b-256 fb7e26d63ec13a21b63bb4ac3eb862bc763059756ddb827998e139c421d31ce2

See more details on using hashes here.

File details

Details for the file hpo3-1.5.1-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for hpo3-1.5.1-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4bae9c2a9b82870272415ad6c9a0fa81ebfaa7add04f4e1f30f523a57346cfd9
MD5 0c8dccdd94720076593299bfef5c7c34
BLAKE2b-256 1e433b8586c6133a9cc1b3a288d1a8dbeee5be1837cefd24e4154e48af4c966a

See more details on using hashes here.

File details

Details for the file hpo3-1.5.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for hpo3-1.5.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6096f58d591c29559d87defa7c9ef4b025e960e6f402fc66a6511021e1ac6da3
MD5 230314e18eb43d7b0fbf48600ead319c
BLAKE2b-256 ebc147b70b4f61411b5992c7dc13e2d2b5c6eeeab3952540a5e237b0badd6377

See more details on using hashes here.

File details

Details for the file hpo3-1.5.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for hpo3-1.5.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7c577d108dde20269adfc24890e2326e4501e84ec25af6940f9e8c70ad046e28
MD5 8ef307b9b58ad8f301621b291a21c986
BLAKE2b-256 5e0920b4dce9917bbf09ca2e12820151d4c31b97c967f0ca19f5aac768ab839f

See more details on using hashes here.

File details

Details for the file hpo3-1.5.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for hpo3-1.5.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d98ad87c45bdb09d2ab1fe035d59b33ce6d341bd872819ff5a109381d62d4890
MD5 bbad3724bd7b08b92136e9e8f8dcad1d
BLAKE2b-256 8807f722e81c910924e572b657b3489963e7feb3d89a16733aa0169f42091701

See more details on using hashes here.

File details

Details for the file hpo3-1.5.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for hpo3-1.5.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 552384e937b3078f890b9c0f55d0cb982d9e9679e83bcda90d0321a054863292
MD5 8d21800c2da1255188a671ad5843817a
BLAKE2b-256 b7cd8d6f46da5a0b51c7a6621a66e94030c4425b10aced92e2bb86b90f91a7d8

See more details on using hashes here.

File details

Details for the file hpo3-1.5.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: hpo3-1.5.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.10.2

File hashes

Hashes for hpo3-1.5.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 498bda51da13f68f31517ed608e32c847cacee712a1e6ce1ae8ce72e702236d6
MD5 f1c93b790cb8b8aec220c309861a076b
BLAKE2b-256 c17ca9e7d7ea13bba8c5bccb2941cd4d5d0e38e583376df55ac180e5213789d4

See more details on using hashes here.

File details

Details for the file hpo3-1.5.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for hpo3-1.5.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 baf311630aec670253af91544d2af256d32399536e05c711e4d775f3e0f9593d
MD5 f3fccc7b789a2559c26ea8b88a509177
BLAKE2b-256 24fe1b71e43055ec07a96def6d17165e07ff1968d1c3eb5d8d2e251c8d4c51cb

See more details on using hashes here.

File details

Details for the file hpo3-1.5.1-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for hpo3-1.5.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fea59c9e76ad451ce11596c21323648a5cb839c675d056eb2d9b3a33a60ef420
MD5 f9a564e0e789273adcb2b8f9fd7ae7dd
BLAKE2b-256 7f37431645d10a6469a7107247a3672defd4b6be8424a23b2b448b1a18bee936

See more details on using hashes here.

File details

Details for the file hpo3-1.5.1-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for hpo3-1.5.1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1b767f3ca3fee7166ccbd0be40fee3679e8d111758e9bf382d629d0b0f0b970b
MD5 517583cd9c0d3011b4627cfc2bb36dfc
BLAKE2b-256 e3264a233d6531db7efb23ab1bc58458af8ea2b9b65c47814fb71e0fc85d4f23

See more details on using hashes here.

File details

Details for the file hpo3-1.5.1-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for hpo3-1.5.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0d8ea09c6c05f38960c1bdede27038484374876359904ff9a68cfbb5a1079f57
MD5 54a2fbf8673e44ba9e7a6f1c2f9ab681
BLAKE2b-256 71247a0daf343a3f22ee97192fbe60775349745f7a354e3b522527e1065c13fe

See more details on using hashes here.

File details

Details for the file hpo3-1.5.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for hpo3-1.5.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d9d8dc4d853fae04b0f58d13612b2b1706974877670b4e229626cf3e674f7d89
MD5 98b7200e9cd17fb40bbbf9a1f4b65a0b
BLAKE2b-256 8017aa00e8b773dcc92fc766a5f824ec23ec89c8e49f4e22860f21ef18cc0593

See more details on using hashes here.

File details

Details for the file hpo3-1.5.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for hpo3-1.5.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 10f5ffbd205f9dfcd9660876e560498f5243c4c3bc7de72c8a39ee4f926ce785
MD5 244439f5f18220f9e5d99d61ab088bd1
BLAKE2b-256 729274345e71e8a187fd2f2d9e51ee66529d6b01e535b9bbce002a773f9cabfc

See more details on using hashes here.

File details

Details for the file hpo3-1.5.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for hpo3-1.5.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 be952223b315cd107604cc09e75416d922b849eaa66ab08adf290011ba9a05da
MD5 80b8636f6110cffd4c00647727ce3e10
BLAKE2b-256 7836ccde43fb295ebabe29742bb55e6f290194001a2191f28a5a893ae4b1f8a7

See more details on using hashes here.

File details

Details for the file hpo3-1.5.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for hpo3-1.5.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5c9dbde54365a6671255cf2d661284c5577b816ff68282df62dddba2c2b12710
MD5 1124d61bead20ff7b4ea4a2dd252d856
BLAKE2b-256 c1689a835b85c790ad93b4bdc62a2d24f92e4aa90ac928aed4177c987da8eeae

See more details on using hashes here.

File details

Details for the file hpo3-1.5.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for hpo3-1.5.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 fadc089264ab04f90f969903e4fa8fc2719d5549e370f293679e169678e2a1de
MD5 0fd91051e12588b65de96df62e65f36e
BLAKE2b-256 a6273d5bd88c8f62db35e002a31d79ed5abf179daf06e2eac8871aebb03b4b07

See more details on using hashes here.

File details

Details for the file hpo3-1.5.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for hpo3-1.5.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 090e198746e827e82124d946ba88556167b2c4d2e3e311b1ca32136a15cac75a
MD5 64295a4c0f746522ce530e1f19c30318
BLAKE2b-256 dd9703d5304052822542b8b04d1d4eb5a7982ee9b0141aecf4e4aa8406089079

See more details on using hashes here.

File details

Details for the file hpo3-1.5.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for hpo3-1.5.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 930571a75c975e046b6d12919c6362c86cbfba6f22a6201d3f39c7cc39d1e1eb
MD5 844e75124ea9cab4f687fd8299725906
BLAKE2b-256 0e36b41e139f599dbc689c4931ec299c22b9e873e7ab40d348f7341f1bed8aac

See more details on using hashes here.

File details

Details for the file hpo3-1.5.1-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for hpo3-1.5.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 abe7798d4841b2b51ca01e46c54999bbcfe40978151fb0205ebd384e31b934a4
MD5 31037cdc1512cc1abb1b4a38c1d1dc4b
BLAKE2b-256 c9c7658683b02cc4cb809df81f8710c6f5df60357c451f1497ea8c7d7e6ddfc9

See more details on using hashes here.

File details

Details for the file hpo3-1.5.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: hpo3-1.5.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.10.2

File hashes

Hashes for hpo3-1.5.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 490bdbe2f9817f443d07a4cd993cc3a88da2741d77f9b61f860efeebfbf78534
MD5 eb0ae7b67c1b4e4b0f1ae34ae0ae5f89
BLAKE2b-256 8b628cd2b8b7ac29a030f91bb9b527cc3adba3d1e09fce89768edd8e1e062ac0

See more details on using hashes here.

File details

Details for the file hpo3-1.5.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for hpo3-1.5.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 894b09ab1713a574a82e2998bc6247b0b03644d98bc97c35e54af0b536be04cd
MD5 0d5dea405ab7d4a8ed0b60f0043c0349
BLAKE2b-256 ff903f74022961411945548e004f9666e140126cc1cf497f8614046c95506777

See more details on using hashes here.

File details

Details for the file hpo3-1.5.1-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for hpo3-1.5.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fb36b75f43b41602b7d24630b4a7c57eb6a2cf9520da3e7c63291bac1a5ce691
MD5 e1c228a59582e9064c550797ab003060
BLAKE2b-256 0a419fc7358df7eabce9267e9bbb5885e6cfd325dfd3bcca105edd2f5c420a89

See more details on using hashes here.

File details

Details for the file hpo3-1.5.1-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for hpo3-1.5.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ad841fe58d176fbc1bea18948f2f0c0ea981d4813d967e20aa92967a3fd278da
MD5 57d70d3d2ae6926d34a454978ef4d80e
BLAKE2b-256 3370433798a981da073a4114a3c68c15809d9c4792ff71a2e6c38f70ab5de20f

See more details on using hashes here.

File details

Details for the file hpo3-1.5.1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for hpo3-1.5.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dfd57bd4f7db23f6225cb6db307efdb93b504afb3df274f5bd300abdbec3cc96
MD5 2aa7317cd0880fe443e418de47bd413e
BLAKE2b-256 583342aaa3e6422447708bb002906983973e53eedfb91a8206cc01d3db056a3b

See more details on using hashes here.

File details

Details for the file hpo3-1.5.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for hpo3-1.5.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9a844ead870814dec4b2da7a93958a7d0b1d32e49628d956742082ed62f69011
MD5 d8ad745d9194adddbb3648c5ba45bd33
BLAKE2b-256 0127c1a8c2cb96d9fc7ac388891f2ff1b9e0c75934ab80a283699eadf72dd324

See more details on using hashes here.

File details

Details for the file hpo3-1.5.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for hpo3-1.5.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 117a9dc2f584557326a1269ddb843c78170199574040b5206bfa5bf884fff179
MD5 86d09e5a324bd297286ed30dceac1b99
BLAKE2b-256 d1035cf6b9de7a10590fe44d614a705eb226ae07f59f92350c55af1ccbb21f13

See more details on using hashes here.

File details

Details for the file hpo3-1.5.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for hpo3-1.5.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a11b71aef7b8522159fc45d395e0e03cf8e2860dcf6ca0b304cd88fe19d341c5
MD5 09e345ac1054f6b7f4567773bec2f442
BLAKE2b-256 72780fab101d15f10f1e2b0ca5e2c7057ac8dfa01be5d87265f60b3cbd6adfd5

See more details on using hashes here.

File details

Details for the file hpo3-1.5.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for hpo3-1.5.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d3d43900dab5e00a319435c3029fed6c6eeeaba04852954b1a5bd12d6fdfae5e
MD5 ffb0cddbc1d54b58dfe35b24ee275f78
BLAKE2b-256 42eee095a481b489cdcd7d1d3125cb9b4583b8080fe8668efc1f83a878cb3aad

See more details on using hashes here.

File details

Details for the file hpo3-1.5.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for hpo3-1.5.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 bba40c1fd05c18572711ac0ba48fa3f3d79d63cf310aee46e5e54888804f678c
MD5 c4c094d04f21e24047a24fa9b6cbc83a
BLAKE2b-256 f35a8f138c33a3c4d64df82e3e2bd0881686919974d7bb9507fc8d01e64f697d

See more details on using hashes here.

File details

Details for the file hpo3-1.5.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for hpo3-1.5.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d9455e581d7d71e20a16255c561251cf429ed845c1e555a63edb3fba92559929
MD5 cb8635422cb1ae887c64a149695b92b6
BLAKE2b-256 1f229cfcb48c03f3344c4c8d2597d684ea27aeef99f65ef7cb23c300c95b8360

See more details on using hashes here.

File details

Details for the file hpo3-1.5.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for hpo3-1.5.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 44dd70e1cca54048b0d65faded7c064ef328b195c7f9ed266df44114171a32e0
MD5 058ff32d3de652fdb5b96b297d123303
BLAKE2b-256 47d75ba8c9f79e659ea534a6d214a2cb756fb378bca8a32b1ee5c0e0893cb8a5

See more details on using hashes here.

File details

Details for the file hpo3-1.5.1-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for hpo3-1.5.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 bcab4399006821c8d3aaf1685f35ce58f303c99be4c2e73109d28f641e9e47cb
MD5 c004124c283690b4f5247e835a2015b4
BLAKE2b-256 0479ebb78ff1da27b5640f0201a9b6dd91937885cfbe6671bb035a2c7f46c094

See more details on using hashes here.

File details

Details for the file hpo3-1.5.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: hpo3-1.5.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.10.2

File hashes

Hashes for hpo3-1.5.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 fb97c29d4192214ffb574be0ffc467fb7f474ddc121337c0f6da979e8d202f61
MD5 5f418a624b18050f2586fb983533c196
BLAKE2b-256 aaada2d939c33862d187d5ee98b1413e9f9bcb954270242e4e7218b7d1975d93

See more details on using hashes here.

File details

Details for the file hpo3-1.5.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for hpo3-1.5.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7929fe1655d5a771c69de491cab7e70c5aab6e24cb62479be41abe4547010836
MD5 8674a5cba5703103bdfea73e885951fa
BLAKE2b-256 7a338d530c7fde66a253a1935be5e8205e8261b49dc00355157eb3c44c65da64

See more details on using hashes here.

File details

Details for the file hpo3-1.5.1-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for hpo3-1.5.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2e3c14581852365cf97d65f5fc12163483d1b8c3f3a1fc3f5cdc6c068860d569
MD5 d5911a454a355990d4e354f56252a8b4
BLAKE2b-256 97f48d723d203b9b93bc80a5fa19fc5893701bdded72594317bd7c132d372d1c

See more details on using hashes here.

File details

Details for the file hpo3-1.5.1-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for hpo3-1.5.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 138343abb5f2538f312931d005c416e81221087a4dba738036be893969b7640b
MD5 432ebb311aff1d605b8f123ee4b14e95
BLAKE2b-256 6a4a8fda51d6ea7852b1e35ea5400a7ce3ba9ea7dae15f520fa1142470741f58

See more details on using hashes here.

File details

Details for the file hpo3-1.5.1-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for hpo3-1.5.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c9095d37ab8cc38531f1f63dc148e0a10f2f7aa832b5856da51ec62e111af0a6
MD5 fbacc5afe76d117b7c2c862864d2551b
BLAKE2b-256 80ab29c2a2898be72a32a0a1037e6ee4e07ef0e61f3f97e141712d8f9d8ed3e8

See more details on using hashes here.

File details

Details for the file hpo3-1.5.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for hpo3-1.5.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c86a1ca7bf848a5b690e894f26697cec261c41c03816ebc3b52aafd837dfea54
MD5 ba487b3a2bfa0ed57135ef844f4515dd
BLAKE2b-256 34a523e0ea85afe46b0b5b7262db8eccc4d41b1760cde4d48abeef8691ef44df

See more details on using hashes here.

File details

Details for the file hpo3-1.5.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for hpo3-1.5.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6d4c0342c2a130e6e097682c147c4ea08041d4f649c408f22fd3404deab6c2aa
MD5 319f696f991da169420021585ce99792
BLAKE2b-256 86dc110059461d4016eb8699d67eca3257e587dce81ac32772b9bc41e894e2dc

See more details on using hashes here.

File details

Details for the file hpo3-1.5.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for hpo3-1.5.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9cde32f701e367ed82788e9c11dde7bbfa6baca4547dbf61b919cce7600efd26
MD5 33a380e2da92755337117ed7133cf803
BLAKE2b-256 c8b054eb0026ad5a576b65b1d9d337e262d5b014ca54e4e808576b650365f477

See more details on using hashes here.

File details

Details for the file hpo3-1.5.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for hpo3-1.5.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4b4e8e981bb9ce74a67df77726e627745a7fb8eccac8fc0d9b97b5c49c8c87ce
MD5 22e446f965eb12349250945cc4d9fbd0
BLAKE2b-256 8c2c943345c568d731b188546b4122a53994fc2b9dd3ee0930a1928e7db6a738

See more details on using hashes here.

File details

Details for the file hpo3-1.5.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for hpo3-1.5.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 18b389ee5fcf0a6b125e44f29c58f03f3b0310e2f49e7fefe9303559e47bed38
MD5 180034b7485a55a5f50c982ef488603d
BLAKE2b-256 2e796e79ec6eaab181cffa806a7a12b889aa543f5a62f098bd4d0299631755a3

See more details on using hashes here.

File details

Details for the file hpo3-1.5.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for hpo3-1.5.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 161b71627a69c77b2502eef3d9fb8be2e9f4a3b0756f672c8816b2773ad9248a
MD5 cc908a7ab59bc6be97e82207f7c5e67e
BLAKE2b-256 25deb9693429c85daf7e6f47592b7e26fd3505ac123d2bfd03b016acf443ca92

See more details on using hashes here.

File details

Details for the file hpo3-1.5.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for hpo3-1.5.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c57b44b60545d4ecf667fbf2c4d4027bb75284cde50f1b7f74a31d1ccb6efe1f
MD5 2839c5b204f2dd621335f4b981296c01
BLAKE2b-256 9281a68a80460e24478cff54ff25add53fabd62661e7f28d22ce8b793d4a21a9

See more details on using hashes here.

File details

Details for the file hpo3-1.5.1-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for hpo3-1.5.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4af62b9932821118c9d975c91f452d68584d1aca744d5e8660af96d315021026
MD5 3fb66060598c5a0b74c07de0f4d9a566
BLAKE2b-256 8881ec7b518becede19e1e431792e566ac9b8cbbae33bfd2bcc9996b7b943fef

See more details on using hashes here.

File details

Details for the file hpo3-1.5.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: hpo3-1.5.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.10.2

File hashes

Hashes for hpo3-1.5.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 58230804c54ed22faf2b73be63d731f461a6f840aec8c49ef22609014cd64574
MD5 be25fc422dcd45727d74873d03ae92ac
BLAKE2b-256 3fe278c65832b48e8d0b0c72ffc9abbd02cb90dfb30a07fac8b7e9bf200f013d

See more details on using hashes here.

File details

Details for the file hpo3-1.5.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for hpo3-1.5.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3abca1bbb74187e28ae8ae5984a25ccd19167b72d8fbd970492ec1467c471b1a
MD5 7a0fbb53f83da5dc187236992897bdbf
BLAKE2b-256 6c58cc1bec102a118dabf4de5ec8e1aa9610e47ecbbe54a88f6a46158e1d3e6a

See more details on using hashes here.

File details

Details for the file hpo3-1.5.1-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for hpo3-1.5.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 08c1e4686bf47ded7d68f66147749dedf460e914be41db3a62c7a67b4e31b704
MD5 769d0eb444627a97d6ac666242c8f46c
BLAKE2b-256 44a4712b2166d1e159094cab9c73f93225e51ef820d55f0d724fa398ed56de72

See more details on using hashes here.

File details

Details for the file hpo3-1.5.1-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for hpo3-1.5.1-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6e72905b8066a4fead1b8136270d63cfd8de125cc8d63a96e5c872c350611845
MD5 ad9484e7fd7e6057eaf0242202290537
BLAKE2b-256 b52882fd63bb92841e15302a6871bd213e7ed58dab86b73ce68953781f93d863

See more details on using hashes here.

File details

Details for the file hpo3-1.5.1-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for hpo3-1.5.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 06929ce120d334cc98c3a9247fe9534a753a8856293f945549882615612595b8
MD5 35ceb1d0398449ed4b465b6071fbba33
BLAKE2b-256 6eddd0ebd90bfa6f3409bb1bcc7eddee588bae11874633790180d2bc289b769d

See more details on using hashes here.

File details

Details for the file hpo3-1.5.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for hpo3-1.5.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ce37fc655de3cc4c34e20539a74238be210ea431e53a3c3cc2217d59aa9b06b7
MD5 bd752d73f245097dadc67ebf79121bc3
BLAKE2b-256 61c856ada905d2147f417cf29e6cf49d62fc7a81c1e7dd5487318f5efb1fa0ec

See more details on using hashes here.

File details

Details for the file hpo3-1.5.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for hpo3-1.5.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5dbdec6970403780f8f5e758f065586393ecad62021d7d167e0a0d4513d4b6a2
MD5 c4247b8a832401885773ad31aa281bb7
BLAKE2b-256 2e25791da95eae834a20782b2c83d0bb0642b090a5535569cdaf5506646f14d1

See more details on using hashes here.

File details

Details for the file hpo3-1.5.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for hpo3-1.5.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 481e5346ad4f3c4c534495df7f27f77aff28678c9b8e2d43058331e69d7bbfe1
MD5 8b7742da462afbe475b6499aa2c717fc
BLAKE2b-256 0a7c219bfd8dd8927ea59c69ea45224c8bd22d735be45126af3255edf5642bb2

See more details on using hashes here.

File details

Details for the file hpo3-1.5.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for hpo3-1.5.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ba756a6045b2072a81e6f2d95a2df6d88f27b2d1f87f2b6570d0b72ddfdc5612
MD5 5394ead06231350403788d565887a18b
BLAKE2b-256 39704cafe0498f6eb61bd5fd932e4c5d83348007a82397cb42763dcbf8ec2c83

See more details on using hashes here.

File details

Details for the file hpo3-1.5.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for hpo3-1.5.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4a238c99f1a26ab2ff5ca9ffa978634daacc8ba7f73bfbecea216df781b72237
MD5 a31c4d78586151cd28d677a26c732168
BLAKE2b-256 905ef612aea322a190fe29f5331bc7b0e610c772467c5534fb8bd44320140112

See more details on using hashes here.

File details

Details for the file hpo3-1.5.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for hpo3-1.5.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2c248550e79d2ab7ef548c35c4c8def364512e3358a9e450ac3f9ad9ffe07f02
MD5 3845d361d398aa5641dc1a15ec9dfebb
BLAKE2b-256 e197cb642f7f14dccf7624bc082409a52cd1deb9bf42e34925c99fa82b217cfe

See more details on using hashes here.

File details

Details for the file hpo3-1.5.1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: hpo3-1.5.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.10.2

File hashes

Hashes for hpo3-1.5.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 955509153f59d1dcfd796d670cb41bb46bb947b03f29a20648b77ad545836b97
MD5 1c4ff3501b6295597275a8ccdc96ae1b
BLAKE2b-256 7cf1be02034340b087996ff37d59d42d4ee9f15bd4444a97545f5f9bae0ff68e

See more details on using hashes here.

File details

Details for the file hpo3-1.5.1-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for hpo3-1.5.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 01f1e28f1b2cc57ad8d7aab51ad3230df0cc92f11a120778ad3515b9b07b6162
MD5 4506ef9b5acb94fc6cffef735391d50d
BLAKE2b-256 0c4bcdd1fc766c9f21f4d66e5e1dafaee86d55977abe054928637df3745b77da

See more details on using hashes here.

File details

Details for the file hpo3-1.5.1-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for hpo3-1.5.1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 12b2b4abee9703014545857c9e9b5117ef9784ce5a347617cd0add15024fea2b
MD5 9712cf1a4da186c7c0df74e3248687e3
BLAKE2b-256 59476fd006ee70fcc7d59e35935d135760a1045805de8bc081ac8fcc753eb51e

See more details on using hashes here.

File details

Details for the file hpo3-1.5.1-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for hpo3-1.5.1-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d14dd745dc3428dccf4558134fdc76eca946c6e88a77030dcf465001c39da3a8
MD5 0514795969ad959cb9e5c06816c7001c
BLAKE2b-256 dfbb24031198e97a7941ca5da345ad5534939133199bcdd8fcf0a07fdcbcd105

See more details on using hashes here.

File details

Details for the file hpo3-1.5.1-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for hpo3-1.5.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6f39af4e2d015c56007b77293df70a9ef672198db78d5c4a8a6f27fb0689c5f9
MD5 f35b3d0390cf8b606a3322ecbb6b1913
BLAKE2b-256 fcf06a190bf2bfee8b71c7751e4498337e858f2a0fa85b5f99ee630e449ea0e7

See more details on using hashes here.

File details

Details for the file hpo3-1.5.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for hpo3-1.5.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ae3f318eec2e372f7c767b62a9792591132fa8ca10db4d38395f6fa493b92935
MD5 cb514af316567674bf36743c05d12aa4
BLAKE2b-256 8dd7e05a8550cc57b3313feb1b71f6e2644726e779ce55f54cdf83d4617634a0

See more details on using hashes here.

File details

Details for the file hpo3-1.5.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for hpo3-1.5.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8be029896b66601ba6069580db41f1e33e0e4cfbe853a659d69995011b308245
MD5 a9d663bffc0940a7863f38dd46265cef
BLAKE2b-256 4d0d707bb51cdeae1f04c9e6b970aeac1d1a9df095acf7f875686c2fb56038bf

See more details on using hashes here.

File details

Details for the file hpo3-1.5.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for hpo3-1.5.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 55a93fb9c696f46a82f288bb17569471a6115e131861d112526b53062f651f1b
MD5 3379a6ee53ac4800bd3a314247281419
BLAKE2b-256 b07ef3643fb16ebcf24458ffe43605b010d9d171a2d3b55265e05bbb47cdac4c

See more details on using hashes here.

File details

Details for the file hpo3-1.5.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for hpo3-1.5.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c2ecfbd790d3bbed45a294246709cf876fd70ce5c2ec6c66469cb3ce319642f2
MD5 88523f6f692b8ef9e54c5e3d54c5e49b
BLAKE2b-256 f16e2b640c55922c15455a6d10aa149c4b162c7aa76d8684fbebdc3ebfc474e0

See more details on using hashes here.

File details

Details for the file hpo3-1.5.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for hpo3-1.5.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6aee0cacf018248a98640ca8615c6a8c79b1d294d291b4a4085e988c51c59bd9
MD5 db06ff001b2ff2ee9a20dd7ceac30253
BLAKE2b-256 c287fd6462665ffba5bf0ae72a352f4e82b8dc89751fbebe764583267c239b85

See more details on using hashes here.

File details

Details for the file hpo3-1.5.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for hpo3-1.5.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 aabfd29777ff288a85947811841af54322fc602a7d0783d380df1d12eac62a2d
MD5 4f0d222066c48957e1d8e5a7a5cee807
BLAKE2b-256 ca4c51d01223ca8e3897f5c6a640ff6d310211dcaac4ac2d6557c9b0c44d8264

See more details on using hashes here.

File details

Details for the file hpo3-1.5.1-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for hpo3-1.5.1-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5795e74384cb380b0bab0c1d76105f3506d226ac23a20b45710b8d9db5e46e72
MD5 d8fce4efa9dbaf314debb8c0b5f2a1ee
BLAKE2b-256 0da77502a7acb45255b18d7331c0db242f9b39fb33afca9205526d04c48ef4c4

See more details on using hashes here.

File details

Details for the file hpo3-1.5.1-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for hpo3-1.5.1-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9e33a6381ed984993b5ebe7d6822d1d8cb019e02c3a9622a6195435788df01f8
MD5 81d28733a4663e2ffb6cd56858a1b0cb
BLAKE2b-256 fbc6638bcce2bafb5973f27514b07c0a230fa75b54848b228aed1901172505e4

See more details on using hashes here.

File details

Details for the file hpo3-1.5.1-cp38-cp38-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for hpo3-1.5.1-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 04cefac5b78e00c1b0760c04955705fea1230300aa2cf8c2fd033e153d1dfb88
MD5 7d4b9f75fae2d94617a42de45c5efead
BLAKE2b-256 9421e267c31caad77958dfef4f9be62fe3124b4d01f650e4ff1d290571c36bad

See more details on using hashes here.

File details

Details for the file hpo3-1.5.1-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for hpo3-1.5.1-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2d314e19c7a82db0f4fd45b56644e6ba3a758379441e1297a1da3f25b168915e
MD5 bf11b8828d04d4e9c3eca6e476657fb9
BLAKE2b-256 fd23ffb35bbbbe489d7a9927212e51bbcb0b5b1e2c476c7a5e2c8c6d189a15e4

See more details on using hashes here.

File details

Details for the file hpo3-1.5.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for hpo3-1.5.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0a8a5685ae0150d8c17f384b5c3e7f892cf850b4dc57c977ac441b83201e8233
MD5 3cfd0d1b7d3c2af6bd2a17c0ef8bd4cd
BLAKE2b-256 6cfd3d403516521f94c59635c0733e796546f0045e1b48849268290f88aee711

See more details on using hashes here.

File details

Details for the file hpo3-1.5.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for hpo3-1.5.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9fe0f042704ed4325839880c76344c4261d4f49a19265edaeeeb7292e958e5d1
MD5 c53fa91dacaf5d13488fe323395c6ea3
BLAKE2b-256 8470ab277c6a1ade87abea675f01d964ef9e62e50e83dc184bbec57a851bef80

See more details on using hashes here.

File details

Details for the file hpo3-1.5.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for hpo3-1.5.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8625b8e7885b6ad5ff6dab4857259f86bdb93b2e11eaaa3a29ae9aec697f1792
MD5 c1447d131773b9bf0acf6e44c8a25053
BLAKE2b-256 b496925dc8194ef71e8a2cfa0987e5c15885ee2493be56e9f1d2339f96c4c9e6

See more details on using hashes here.

File details

Details for the file hpo3-1.5.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for hpo3-1.5.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 fe511c11e80fe16bc9de57db365b4bc2493b570a9f51832f5d76b3f8f364a96b
MD5 59eabbe894fd2d4376517f9b71b0774b
BLAKE2b-256 d1bd05bf44f71def6ec2a3621d9d183299da00acc9047bab832c6f6f6cb7b7ab

See more details on using hashes here.

File details

Details for the file hpo3-1.5.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for hpo3-1.5.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e76cc32bd004a8fad6d8997187caec49746d9257cfda3eb85f40b8082337575b
MD5 ba59913632bdf3cb9067709bdaa5fca4
BLAKE2b-256 b0ebd6a0426c21e919dffa6e1194f1acb4133ed58a6eaa6909fe47582d94b262

See more details on using hashes here.

File details

Details for the file hpo3-1.5.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for hpo3-1.5.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 02971ebaef2cde22f8accedcd08f6d1d70ceff9cd5e5359725bdb6ebf0f9f293
MD5 d88683b4736a2dde939985361d64b79b
BLAKE2b-256 c19a3729822591b65db090968e99df763fb2b8a95e7f24c2c914c337bbf0ecff

See more details on using hashes here.

File details

Details for the file hpo3-1.5.1-cp37-cp37m-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for hpo3-1.5.1-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 481b16a0604ae5adbcb31d56f91f5806549d9a382d49de66cf3c78e1078cf4eb
MD5 e1499b60e50cfe574cc3e72221e9711d
BLAKE2b-256 6ec01c97ac2804b9865f3a1b6641071cc7af1e4eb1faa277916598ac4375227f

See more details on using hashes here.

File details

Details for the file hpo3-1.5.1-cp37-cp37m-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for hpo3-1.5.1-cp37-cp37m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8dd99cbba0fa2e0aad4c5f7f02dbcf8040909c453ca7447eb4efcbfec61ef0ef
MD5 18c463fe24d0d5c09909bda14db2f94e
BLAKE2b-256 fa813964eb98655b35b4fac181f44ed236a95e0a9c8dd717df6b07861811a90d

See more details on using hashes here.

File details

Details for the file hpo3-1.5.1-cp37-cp37m-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for hpo3-1.5.1-cp37-cp37m-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 249c9f184cbff65368e7519190a0969f869135bea414ab59386670c43f0cbf97
MD5 ff96e19bd6f09b085170cfde2f135ed6
BLAKE2b-256 6ef8864fcd0f6a619d158e4b525949f43f0150b2c8bb22848e9dbf878f4a69ed

See more details on using hashes here.

File details

Details for the file hpo3-1.5.1-cp37-cp37m-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for hpo3-1.5.1-cp37-cp37m-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 eaf367ab153e0e6dcdbb5795e575bc54074196a84db275796e91c36434c03f56
MD5 01011815ac8032cc2b8bb412a41bd50e
BLAKE2b-256 1e571146b38f9a29e8bc5fc1c62e8723d2d1514c5cc015eb6e854d70f7834dc8

See more details on using hashes here.

File details

Details for the file hpo3-1.5.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for hpo3-1.5.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e16abd71661083cceea6e4bcceaebb7688cf53153fcabcd6fcb361419340cd01
MD5 3885424e0a1eb63e14305f0765470963
BLAKE2b-256 5ad650b2833c9e209e05fca818f6dcd67eddf9b0e1807d90cf4489d9924232a1

See more details on using hashes here.

File details

Details for the file hpo3-1.5.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for hpo3-1.5.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 91d329b80a644b80638da2ab2c74f94d52da12b76f4030f81c60cffcc09d333a
MD5 5997d1b4f2e1606348eb297ffb0fc501
BLAKE2b-256 b47a830369417dd642d4587a86255e24c62ff72aa2d3153515623ef083984051

See more details on using hashes here.

File details

Details for the file hpo3-1.5.1-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for hpo3-1.5.1-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 45fef4bc75ff0f9fa2c7aebdcc6e426e463e0272b51d9731e825ad03aa21ece8
MD5 81ca04ac06d980ec7ebfac3e1f8b044f
BLAKE2b-256 d2d9f461914b94a9f5c83d02426f1eda6312165c105f39e86754ad8fa574cf66

See more details on using hashes here.

File details

Details for the file hpo3-1.5.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for hpo3-1.5.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b8d6b7d112ce53ffd133d2c31ba718e47a13ad1040a7f9882d50d1b40fa0d136
MD5 48ace4d53b569ebddb32a6dd94ba5b66
BLAKE2b-256 acef04dcf5390123a88bce0abd4c9293379af72c01ae2238ebf41d0853232939

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