Skip to main content

Cython bindings and Python interface to JESS, a 3D template matching software.

Project description

🐍🔍 PyJess Stars

Cython bindings and Python interface to Jess, a 3D template matching software.

Actions Coverage License PyPI Bioconda AUR Wheel Python Versions Python Implementations Source Mirror Issues Docs Changelog Downloads Preprint

🗺️ Overview

Jess is an algorithm for constraint-based structural template matching proposed by Jonathan Barker et al.[1]. It can be used to identify catalytic residues from a known template inside a protein structure. Jess is an evolution of TESS, a geometric hashing algorithm developed by Andrew Wallace et al.[2], removing some pre-computation and structural requirements from the original algorithm. Jess was further updated and maintained by Ioannis Riziotis during his PhD in the Thornton group.

PyJess is a Python module that provides bindings to Jess using Cython. It allows creating templates, querying them with protein structures, and retrieving the hits using a Python API without performing any external I/O. It's also more than 10x faster than Jess thanks to algorithmic optimizations added to improve the original Jess code while producing consistent results. PyJess was developed to support EnzyMM, the Enzyme Motif Miner[3].

🔧 Installing

PyJess is available for all modern Python versions (3.7+).

It can be installed directly from PyPI, which hosts some pre-built x86-64 wheels for Linux, MacOS, and Windows, as well as the code required to compile from source with Cython:

$ pip install pyjess

Otherwise, PyJess is also available as a Bioconda package:

$ conda install -c bioconda pyjess

Check the install page of the documentation for other ways to install PyJess on your machine.

🔖 Citation

PyJess is scientific software, published part of the EnzyMM[3] publication, and builds on top of Jess[2]. Please cite also Jess if you are using PyJess in an academic work, for instance as:

PyJess (Hackett et al., 2026), a Python library binding to Jess (Barker et al., 2003).

💡 Example

Prepare templates

Load Template objects to be used as references from different template files:

import pathlib
import pyjess

templates = []
for path in sorted(pathlib.Path("vendor/jess/examples").glob("template_*.qry")):
    templates.append(pyjess.Template.load(path, id=path.stem))

Prepare query structures

Load a Molecule (a PDB structure) from a PDB file, create one with the Python API, or convert it from a Bio.Model, gemmi.Model, or biotite.structure.AtomArray object:

# load from PDB file or mmCIF file
mol = pyjess.Molecule.load("vendor/jess/examples/test_pdbs/pdb1a0p.ent")

# load with BioPython
parser = Bio.PDB.PDBParser()
structure = parser.get_structure('pdb1a0p', "vendor/jess/examples/test_pdbs/pdb1a0p.ent")
mol = Molecule.from_biopython(structure, id="1a0p")

# load with Gemmi
structure = gemmi.read_pdb_string("vendor/jess/examples/test_pdbs/pdb1a0p.ent")
mol = Molecule.from_gemmi(structure[0], id="1a0p")

# load with Biotite
pdb_file = biotite.structure.io.pdb.PDBFile.read(f)
structure = pdb_file.get_structure(altloc="all", extra_fields=["atom_id", "b_factor", "occupancy", "charge"])
mol = Molecule.from_biotite(structure[0])

Match templates

Create a Jess instance and use it to query a against the stored templates:

jess = pyjess.Jess(templates)
query = jess.query(mol, rmsd_threshold=2.0, distance_cutoff=3.0, max_dynamic_distance=3.0)

Process hits

The hits are computed iteratively, and the different output statistics are computed on-the-fly when requested:

for hit in query:
    print(hit.molecule().id, hit.template().id, hit.rmsd, hit.log_evalue)
    for atom in hit.atoms():
        print(atom.name, atom.x, atom.y, atom.z)

Hits can also be rendered in PDB format like in the original Jess output, either by writing to a file directly, or to a Python string:

for hit in query:
    hit.dump(sys.stdout, format="pdb")

🧶 Thread-safety

Once a Jess instance has been created, the templates cannot be edited anymore, making the Jess.query method re-entrant and thread-safe. This allows querying several molecules against the same templates in parallel using e.g a ThreadPool:

molecules = []
for path in glob.glob("vendor/jess/examples/test_pdbs/*.ent"):
    molecules.append(Molecule.load(path))

with multiprocessing.ThreadPool() as pool:
    hits = pool.map(jess.query, molecules)

⚠️ Prior to PyJess v0.2.1, the Jess code was running some thread-unsafe operations which have now been patched. If running Jess in parallel, make sure to use v0.2.1 or later to use the code patched with re-entrant functions.

⏱️ Benchmarks

The following table reports the runtime of PyJess to match N=132 protein structures to the M=7607 templates of EnzyMM, using J=12 threads to parallelize.

Version Runtime (s) Match Speed (N * M / s * J) Speedup
v0.4.2 618.1 135.4 N/A
v0.5.0 586.3 142.7 x1.05
v0.5.1 365.6 228.9 x1.69
v0.5.2 327.2 255.7 x1.88
v0.6.0 54.5 1535.4 x11.34
v0.7.0 52.4 1597.5 x11.80

Benchmarks were run on a quiet i7-1255U CPU running @4.70GHz with 10 physical cores / 12 logical cores.

💭 Feedback

⚠️ Issue Tracker

Found a bug ? Have an enhancement request ? Head over to the GitHub issue tracker if you need to report or ask something. If you are filing in on a bug, please include as much information as you can about the issue, and try to recreate the same bug in a simple, easily reproducible situation.

🏗️ Contributing

Contributions are more than welcome! See CONTRIBUTING.md for more details.

📋 Changelog

This project adheres to Semantic Versioning and provides a changelog in the Keep a Changelog format.

⚖️ License

This library is provided under the MIT License. The JESS code is distributed under the MIT License as well.

This project is in no way not affiliated, sponsored, or otherwise endorsed by the JESS authors. It was developed by Martin Larralde during his PhD project at the Leiden University Medical Center in the Zeller team.

📚 References

  • [1] Barker, J. A., & Thornton, J. M. (2003). An algorithm for constraint-based structural template matching: application to 3D templates with statistical analysis. Bioinformatics (Oxford, England), 19(13), 1644–1649. doi:10.1093/bioinformatics/btg226.
  • [2] Wallace, A. C., Borkakoti, N., & Thornton, J. M. (1997). TESS: a geometric hashing algorithm for deriving 3D coordinate templates for searching structural databases. Application to enzyme active sites. Protein science : a publication of the Protein Society, 6(11), 2308–2323. doi:10.1002/pro.5560061104.
  • [3] Hackett, R. E., Riziotis, I. G., Larralde, M., Ribeiro, A. J. M., Zeller, G., Thornton, J. M. (2026). Investigating Enzyme Function by Geometric Matching of Catalytic Motifs. bioRxiv. 2026.02.10.705182; doi:10.64898/2026.02.10.705182.

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

pyjess-0.10.0.tar.gz (398.9 kB view details)

Uploaded Source

Built Distributions

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

pyjess-0.10.0-pp310-pypy310_pp73-win_amd64.whl (492.3 kB view details)

Uploaded PyPyWindows x86-64

pyjess-0.10.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (540.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pyjess-0.10.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (524.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pyjess-0.10.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl (488.1 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

pyjess-0.10.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (500.8 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

pyjess-0.10.0-pp39-pypy39_pp73-win_amd64.whl (491.3 kB view details)

Uploaded PyPyWindows x86-64

pyjess-0.10.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (539.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pyjess-0.10.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (523.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pyjess-0.10.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl (486.8 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

pyjess-0.10.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl (499.6 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

pyjess-0.10.0-pp38-pypy38_pp73-win_amd64.whl (490.2 kB view details)

Uploaded PyPyWindows x86-64

pyjess-0.10.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (542.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pyjess-0.10.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (526.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pyjess-0.10.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl (486.6 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

pyjess-0.10.0-pp38-pypy38_pp73-macosx_10_12_x86_64.whl (499.1 kB view details)

Uploaded PyPymacOS 10.12+ x86-64

pyjess-0.10.0-pp37-pypy37_pp73-win_amd64.whl (509.0 kB view details)

Uploaded PyPyWindows x86-64

pyjess-0.10.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (556.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pyjess-0.10.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (540.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pyjess-0.10.0-pp37-pypy37_pp73-macosx_10_12_x86_64.whl (507.0 kB view details)

Uploaded PyPymacOS 10.12+ x86-64

pyjess-0.10.0-cp311-abi3-win_amd64.whl (496.0 kB view details)

Uploaded CPython 3.11+Windows x86-64

pyjess-0.10.0-cp311-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (544.4 kB view details)

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

pyjess-0.10.0-cp311-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (529.9 kB view details)

Uploaded CPython 3.11+manylinux: glibc 2.17+ ARM64

pyjess-0.10.0-cp311-abi3-macosx_11_0_arm64.whl (484.8 kB view details)

Uploaded CPython 3.11+macOS 11.0+ ARM64

pyjess-0.10.0-cp311-abi3-macosx_10_12_x86_64.whl (495.9 kB view details)

Uploaded CPython 3.11+macOS 10.12+ x86-64

pyjess-0.10.0-cp310-cp310-win_amd64.whl (515.0 kB view details)

Uploaded CPython 3.10Windows x86-64

pyjess-0.10.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (575.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

pyjess-0.10.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (556.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

pyjess-0.10.0-cp310-cp310-macosx_11_0_arm64.whl (506.2 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pyjess-0.10.0-cp310-cp310-macosx_10_12_x86_64.whl (522.6 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

pyjess-0.10.0-cp39-cp39-win_amd64.whl (515.3 kB view details)

Uploaded CPython 3.9Windows x86-64

pyjess-0.10.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (576.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

pyjess-0.10.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (558.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

pyjess-0.10.0-cp39-cp39-macosx_11_0_arm64.whl (506.7 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pyjess-0.10.0-cp39-cp39-macosx_10_12_x86_64.whl (523.1 kB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

pyjess-0.10.0-cp38-cp38-win_amd64.whl (516.1 kB view details)

Uploaded CPython 3.8Windows x86-64

pyjess-0.10.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (579.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

pyjess-0.10.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (560.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

pyjess-0.10.0-cp38-cp38-macosx_11_0_arm64.whl (510.6 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

pyjess-0.10.0-cp38-cp38-macosx_10_12_x86_64.whl (526.6 kB view details)

Uploaded CPython 3.8macOS 10.12+ x86-64

pyjess-0.10.0-cp37-cp37m-win_amd64.whl (524.3 kB view details)

Uploaded CPython 3.7mWindows x86-64

pyjess-0.10.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (597.9 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

pyjess-0.10.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (578.3 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

pyjess-0.10.0-cp37-cp37m-macosx_10_12_x86_64.whl (533.2 kB view details)

Uploaded CPython 3.7mmacOS 10.12+ x86-64

File details

Details for the file pyjess-0.10.0.tar.gz.

File metadata

  • Download URL: pyjess-0.10.0.tar.gz
  • Upload date:
  • Size: 398.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pyjess-0.10.0.tar.gz
Algorithm Hash digest
SHA256 13ab16071f580e95784e90fe006b430fa38f59f7c539bc74e0cee3930c14f6c5
MD5 9175e764f1d6933aa030097200798efb
BLAKE2b-256 82c6fb3e43db361fbcd5b5a3a0044ddb97beab53ecb5afbde1bccc9f17cc9298

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyjess-0.10.0.tar.gz:

Publisher: package.yml on althonos/pyjess

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyjess-0.10.0-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pyjess-0.10.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 00b45999ae9c21c66afb607b1541c6c403a804210ae77ff0d7fd3152e329f360
MD5 3891e40e707e11ef79284aa48e19de7d
BLAKE2b-256 9b4ba91a04297c637b5e673df30c4371b311adee3365a5fdd5abbd1432bb0bb5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyjess-0.10.0-pp310-pypy310_pp73-win_amd64.whl:

Publisher: package.yml on althonos/pyjess

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyjess-0.10.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyjess-0.10.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3c4392aa875ce5f385cda12baa558f16c4fb7eeb18518d6f4e8c8d7a6aa667b4
MD5 96fc7aa8aff2cd85b4f637a8e5e9202c
BLAKE2b-256 9da287733744f04fa6eb21ab7ede1cf735fedac2382ea80cfb26287bd2e69ff5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyjess-0.10.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: package.yml on althonos/pyjess

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyjess-0.10.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyjess-0.10.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4b6100bbe1bb1d88bf02dfabec3dd6f1a6b68a7bf6926754f630e5c780de2dde
MD5 f9c29b44e76ee182489d6340b187dbcf
BLAKE2b-256 47f23df979303565dc0eb868410c80f52554f699acb1b7c5800ab94c5bfe5f83

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyjess-0.10.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: package.yml on althonos/pyjess

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyjess-0.10.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyjess-0.10.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7440f674da7257efd7af591ebaeac58e877a643390444147be9ca5aeb384b42c
MD5 5d165fb606763889652783e59c5db42f
BLAKE2b-256 c2710be6434b4dc6e2207d5b82509538fcbaca94d28c88bff4d0f51a6a3fb799

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyjess-0.10.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl:

Publisher: package.yml on althonos/pyjess

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyjess-0.10.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pyjess-0.10.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 8256d3f7290b086f9915a30176e7b6e5b07adc3ee062229079ac5acac396215f
MD5 76e5b167d33cde7c3e1fe0439f18652e
BLAKE2b-256 60f04192818dc4ea215d4f79139ba9b51943d626de668a6ef7d83c7d16af2587

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyjess-0.10.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl:

Publisher: package.yml on althonos/pyjess

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyjess-0.10.0-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pyjess-0.10.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 197fa275c6ef3f23a48e75340eddf511caddee430b03da436990968214323201
MD5 5f0675371f3570a8e90287a7d255c3c1
BLAKE2b-256 fa6c655c47d4bbf0d4dd7b837cc70ea623c2972998d5be7cab17728d593bf452

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyjess-0.10.0-pp39-pypy39_pp73-win_amd64.whl:

Publisher: package.yml on althonos/pyjess

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyjess-0.10.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyjess-0.10.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 30b6feca5eedf1bd68e1904eb390435e13f9d900291f63d9370648ac7bc20dcd
MD5 0500d5ecc683caaf6b7caff85080670d
BLAKE2b-256 0094aaf714f232950d213ce569b85b4201f3673db0667a68e629fbe165b87359

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyjess-0.10.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: package.yml on althonos/pyjess

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyjess-0.10.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyjess-0.10.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6036f33a5e4434bab4e166a8352828e50e935b9d433ed8c1d70dca542a142d52
MD5 c3090c243712643544fff9565c39f481
BLAKE2b-256 3d444b84cbc600d127fa447d7dae152cdb7c3b8d83f60998c36f5343b14ac457

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyjess-0.10.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: package.yml on althonos/pyjess

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyjess-0.10.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyjess-0.10.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d31d86e99ca6950837a4577de765633f79c09d4fb7f02d316678ddc543b63656
MD5 be8c80c0a1f45aaf058bc47452336dee
BLAKE2b-256 cb68958f5469b57a30671fd5f780b1b1892a63fb88d239e940522b8a1bd449fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyjess-0.10.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl:

Publisher: package.yml on althonos/pyjess

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyjess-0.10.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pyjess-0.10.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 579d31a4d2d7bc204bd31f0c07161897e2edf7264f81290bfd8b06634e9281ca
MD5 9973e55012ab90c127ce936cc5c29536
BLAKE2b-256 901347efeb1b71d15afcf719e9acb5350803629b972893cf791ac8a4fa3e171d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyjess-0.10.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl:

Publisher: package.yml on althonos/pyjess

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyjess-0.10.0-pp38-pypy38_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pyjess-0.10.0-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 8107123867aac1f5c9e3fd1564ab746ce962f6c0a9e93f8637f50133b9e2c2a0
MD5 f68c41080f610214aa6edc35149c507f
BLAKE2b-256 edd4f474feebacef76d5b97a9a26f04b0e2ac6120992c7f1241d99655b8bbb72

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyjess-0.10.0-pp38-pypy38_pp73-win_amd64.whl:

Publisher: package.yml on althonos/pyjess

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyjess-0.10.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyjess-0.10.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1a33af76e351d8613ad5c96dcbb2c32f02ade004b4f0d5a55a4b23155692075a
MD5 2e92f7f23fffa254a57c7bfd5ae3ca69
BLAKE2b-256 c57c6d4cd84968da412128656491b9fbab8f58f45d3b140ff909e6e2f6497c7d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyjess-0.10.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: package.yml on althonos/pyjess

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyjess-0.10.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyjess-0.10.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9484a4636ab47e11d8a861f1cfd9dd5ef9c9a6d4d434473b88528b6ca2ec5d28
MD5 ee56f8f8ff37b591510e3a1768417c9b
BLAKE2b-256 44e01d280474d53efc2ce327900701de0915a02accc34916f9778b37382f270c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyjess-0.10.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: package.yml on althonos/pyjess

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyjess-0.10.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyjess-0.10.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 49616fff6134725a74e6cbb14158b1cb3228659c43b14ac5f8c49d860c18cc3c
MD5 fe018ba92c450396f5f50dbd999fb755
BLAKE2b-256 02e29fc366cd1b69e9e3be1dca62c39ee207eb29f32dc47cd283b7050228989e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyjess-0.10.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl:

Publisher: package.yml on althonos/pyjess

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyjess-0.10.0-pp38-pypy38_pp73-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pyjess-0.10.0-pp38-pypy38_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e76fc892bc97a41f7ddef4ed31d1c80813fff519d538aef266eee06e43b4af1f
MD5 e4663294d2c72c0f2e565be567b57db3
BLAKE2b-256 5e8cde624bdd61d1a88c2af0f69e9ebdf423ca794685463bfa3a4a9dd3d9f83f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyjess-0.10.0-pp38-pypy38_pp73-macosx_10_12_x86_64.whl:

Publisher: package.yml on althonos/pyjess

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyjess-0.10.0-pp37-pypy37_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pyjess-0.10.0-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 d532372a46e5be70409839c104ac940f3ec8ce487aeee70816ec5691947324c9
MD5 0bca1e47cd5edfc078f46102711e1e20
BLAKE2b-256 3983dca3d57131d123d24df6651577a19f386dd525ea5330d14113edcf0539eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyjess-0.10.0-pp37-pypy37_pp73-win_amd64.whl:

Publisher: package.yml on althonos/pyjess

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyjess-0.10.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyjess-0.10.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1ef5e5852de22fc705f05bac89277500f460fcb2ce463923da4f812323a25f19
MD5 92928050080fff667235212a86235645
BLAKE2b-256 bff31467edf7ba7d5150670c1fb95ba1420d45592d192f4f4803d1fcf3cd9c84

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyjess-0.10.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: package.yml on althonos/pyjess

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyjess-0.10.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyjess-0.10.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6f116edfadca0b140f25dde9a1ce32848ecf70dc078db8d6955050de1358afc5
MD5 63a5311a105c8c58ad93906a2bec9ec4
BLAKE2b-256 1a8212c7b8dc7d13955a16576d61e2ebf68a86b5182d43e68d8cf2a07dd505cc

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyjess-0.10.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: package.yml on althonos/pyjess

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyjess-0.10.0-pp37-pypy37_pp73-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pyjess-0.10.0-pp37-pypy37_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 94521a180d718f33fd1a547eaad10e1ac36fa1858a8dee8a4a34624ce2f53527
MD5 64f412593b756cf03a5c9cc4523d101f
BLAKE2b-256 cf530bf5736ddabaf192265ab29be2ceda5661f4893e6c2f39c01befe6e34841

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyjess-0.10.0-pp37-pypy37_pp73-macosx_10_12_x86_64.whl:

Publisher: package.yml on althonos/pyjess

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyjess-0.10.0-cp311-abi3-win_amd64.whl.

File metadata

  • Download URL: pyjess-0.10.0-cp311-abi3-win_amd64.whl
  • Upload date:
  • Size: 496.0 kB
  • Tags: CPython 3.11+, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pyjess-0.10.0-cp311-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 8d2229d542727e6432a42e8b36808b081971ab29fbb66ae7ed363179850c64cd
MD5 b5250f1388f1cae6e503bb1310fe7bdc
BLAKE2b-256 0794b271a988c25696f435115791e4e9ee6e18a03393fdcdbfbe244642b2f517

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyjess-0.10.0-cp311-abi3-win_amd64.whl:

Publisher: package.yml on althonos/pyjess

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyjess-0.10.0-cp311-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyjess-0.10.0-cp311-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0cd94805f8dcedf77a983f7bdab2e61fd76386e7f9f550da206517f948158a22
MD5 06e0cf10599315be78f606f34a6bf0f0
BLAKE2b-256 4e47ef0f08a107a664cd7e3f6cb496d3e998579bf14093cad777078dcd4bd417

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyjess-0.10.0-cp311-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: package.yml on althonos/pyjess

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyjess-0.10.0-cp311-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyjess-0.10.0-cp311-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4a6bebf95ca17ecfdd48f510236c3c87f4e320570bd823fe6693e7f43ea62c25
MD5 5bc37f2bc6c4475017ccc5886e5577de
BLAKE2b-256 95ae14b5b169708cebd38c0fa525cad04236deb6276555901c53c7897c681eaa

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyjess-0.10.0-cp311-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: package.yml on althonos/pyjess

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyjess-0.10.0-cp311-abi3-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyjess-0.10.0-cp311-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 38137808e927eb5c72b9cb29079982e6641a51439a9e56d17f6c936874f0f7d2
MD5 d3d1cca2ff07007a89a67e5ac916b27e
BLAKE2b-256 9ed461412117365ac7922fe8347cbb0cd24c16bd475740f35741818f3d1449d3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyjess-0.10.0-cp311-abi3-macosx_11_0_arm64.whl:

Publisher: package.yml on althonos/pyjess

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyjess-0.10.0-cp311-abi3-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pyjess-0.10.0-cp311-abi3-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 cd654e23ee2ed98c9ad9f964028720496b2e17b6e8a8042ddc49eb3e438a5c86
MD5 113f39582dee18d5b6b44ac319fc6b48
BLAKE2b-256 83fe5950c8ceac248258b3752e67812642a42cbf012e51850a43f10307a29dc8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyjess-0.10.0-cp311-abi3-macosx_10_12_x86_64.whl:

Publisher: package.yml on althonos/pyjess

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyjess-0.10.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: pyjess-0.10.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 515.0 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pyjess-0.10.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 ecb7ea3260536adba82f4a20835b45827ced3a242016fb7b486ce84e6062b78e
MD5 4e976dd1f1df53523564a74ae664e3d7
BLAKE2b-256 0bce588bed956daff8c94d49c1fab7ef4d9c850653851f88d755752a4d62c659

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyjess-0.10.0-cp310-cp310-win_amd64.whl:

Publisher: package.yml on althonos/pyjess

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyjess-0.10.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyjess-0.10.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cd06a40d63087801f9c617ebeb60a4246064c3186451c737ad64d66685c084bb
MD5 f281ae2fc83ae6fc5ad36098038ba1fa
BLAKE2b-256 7048d39f91ea188613a446d10158c9f98f82478fe70314e47be80800509aa6e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyjess-0.10.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: package.yml on althonos/pyjess

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyjess-0.10.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyjess-0.10.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 185a93a238f052c1bea7dbf2a9a7af0654750fb35fce193c15920fbaa3bcb100
MD5 a12f5c84eed321ed0917da961c56f619
BLAKE2b-256 55009ab0f43c8cd92063cc93419856744f023131668b3ca49a13e539e5fbe98a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyjess-0.10.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: package.yml on althonos/pyjess

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyjess-0.10.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyjess-0.10.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1aaa43286c41944d5b41a82cff6c4335ce72f3cd96dded06b7f63eab6ebf2864
MD5 354ceaaca9e6feb7a4450a505d2b51dc
BLAKE2b-256 4079cf46caba6a5268630e988b41c21c0cd12d668eae64f0b36284adccb802c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyjess-0.10.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: package.yml on althonos/pyjess

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyjess-0.10.0-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pyjess-0.10.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 778ccb902fcdcfe435a449c171155d743af36169d0bbdc28c90fdf108868709c
MD5 df0c7ad7e1398c8ac612aaf2d499a339
BLAKE2b-256 853bf39f82a5dd7c008a338726ca393c203ba716c3f858cd8bba7fb137e4c164

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyjess-0.10.0-cp310-cp310-macosx_10_12_x86_64.whl:

Publisher: package.yml on althonos/pyjess

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyjess-0.10.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: pyjess-0.10.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 515.3 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pyjess-0.10.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 160311c767cf529e8f9131093653c8da5c387453ebb3ceb0c57194c7a48ff68c
MD5 ee477d70ddc7489ed282d660623ffa7d
BLAKE2b-256 7a21c1b2e282d0ba9577257c2240b179c2da2e2cdc9d9ef0a2fe4cc36b655396

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyjess-0.10.0-cp39-cp39-win_amd64.whl:

Publisher: package.yml on althonos/pyjess

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyjess-0.10.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyjess-0.10.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dfffad5c9cd59aa4b1d7bb79e262e5a88bdd53045690271e2649bace27aec19d
MD5 08f0c34010ad30b971ae2ab1b57b7fad
BLAKE2b-256 685ec631e94f29ade1ca2a4f5ff9e85e31393e76fed6e966e0b5530219ca55c1

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyjess-0.10.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: package.yml on althonos/pyjess

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyjess-0.10.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyjess-0.10.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8018b37f10924a671c6edc6091b5dc4c9c1f5502c21f7a7592364e1a33f5ac19
MD5 44df7561f597733590101938edba46fa
BLAKE2b-256 7b9cb7eb0448864aaee550a556adc5b38b97fc94e19fb32ff47d6ca97de5d3f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyjess-0.10.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: package.yml on althonos/pyjess

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyjess-0.10.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyjess-0.10.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4891e823a90635f67a0a629d28369c9173fca873d1be9883249ceb0114f71544
MD5 95f325e63f6c8706fd9234311fdf083d
BLAKE2b-256 a3150b8d2e83a1c18c5396e63f4b20938553af4eaf2addce5c14839a924b5316

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyjess-0.10.0-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: package.yml on althonos/pyjess

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyjess-0.10.0-cp39-cp39-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pyjess-0.10.0-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7b019febb7609564b704ade56f146db73731edba6c02c31a5d717f45f7d88486
MD5 cc7722a5dd8f5197332bb54c74a6bf00
BLAKE2b-256 5b02693bbd09b14c3d56cb82aafff73c18c3adc402af40f4bb53a0a181a66c6e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyjess-0.10.0-cp39-cp39-macosx_10_12_x86_64.whl:

Publisher: package.yml on althonos/pyjess

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyjess-0.10.0-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: pyjess-0.10.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 516.1 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pyjess-0.10.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 cf357425caa0de6e693a3a056beb220285618223a8cd4768e30bc9bf72dec27f
MD5 2562c1a669cbc5196ad219011f342ee9
BLAKE2b-256 09a8b60c8dd404c65edeb8c4fe4de1931a6ffb6a6faf0b20e824614e18c9ccac

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyjess-0.10.0-cp38-cp38-win_amd64.whl:

Publisher: package.yml on althonos/pyjess

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyjess-0.10.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyjess-0.10.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ee7d2ee0fbca5aa45cbd8e3bc606a1cb48672208db5866854996308e1f0a7f1c
MD5 507ab571fc3e1ce78d3c47697f21602a
BLAKE2b-256 145121408d615684be7189efc439a94ceb6847ddefd5ce7bfda7967c597e2f0d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyjess-0.10.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: package.yml on althonos/pyjess

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyjess-0.10.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyjess-0.10.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ed7f5b9f3ab832bca31fa4389fc4db03bd8bbc3000ed2411c2f271ec730458d6
MD5 24eae914ade21b4b5396ed100bc1f9aa
BLAKE2b-256 e3da9103fdd8e1d1c361bdbaef64bc6404981927a19130196aef59caa76cfcb6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyjess-0.10.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: package.yml on althonos/pyjess

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyjess-0.10.0-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyjess-0.10.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0ed3b3bc1429933f9f9ca43e6cf48ebf82a1a4feafd3bab720bc761c7163c279
MD5 8b3959ed8c1492873c7f1723bf795853
BLAKE2b-256 accba7f2780e27904432815bccf132569b335ca924b8e8859f1b4d699b7219d2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyjess-0.10.0-cp38-cp38-macosx_11_0_arm64.whl:

Publisher: package.yml on althonos/pyjess

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyjess-0.10.0-cp38-cp38-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pyjess-0.10.0-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ca018b4531db49ba30c89f37f1b3d535daa9242fee703a28ae6e37f253cbfe5c
MD5 b125b015b95bb6f6d081aa428f4de48c
BLAKE2b-256 4023f7354266d909d433b37d73ff37c9bb7b5fbba4b4e5b3a0ad56607c971a44

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyjess-0.10.0-cp38-cp38-macosx_10_12_x86_64.whl:

Publisher: package.yml on althonos/pyjess

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyjess-0.10.0-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: pyjess-0.10.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 524.3 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pyjess-0.10.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 2e3f8f5c61b92bb5a95e32933cf310f4d96daf0de70ecfbfa602ef65d2e314ec
MD5 0f0a81b7d6855cd720b30e224f79cfbf
BLAKE2b-256 bf261b5d7895633705f3c6a9a9bc6e7c07a44ab108133c892e1c07b617d290d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyjess-0.10.0-cp37-cp37m-win_amd64.whl:

Publisher: package.yml on althonos/pyjess

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyjess-0.10.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyjess-0.10.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 07213143640ca3dec68a05dc782e81c43f9f4afd1719205ae9ff6e0c9eaab625
MD5 236c6f77e7929556cefc9aba3365184b
BLAKE2b-256 01aa4498cec4e4b88ad3389528764c92876a660e2d7206f0ffe5ca0cdcf1c798

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyjess-0.10.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: package.yml on althonos/pyjess

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyjess-0.10.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyjess-0.10.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 175b37130738bcb2a5283aaea506e275959319a5d13853694954a2d9cc31fff0
MD5 fea34157601a747d14f31fa4f669e842
BLAKE2b-256 984a5f348058058e8119bb6184a80c78de4009d70f59e052e1437acc62caa369

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyjess-0.10.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: package.yml on althonos/pyjess

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyjess-0.10.0-cp37-cp37m-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pyjess-0.10.0-cp37-cp37m-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 64cfb3d3653007c70ddc0ffeeb2df84763c29ea19d054c07b4e174973e7fe487
MD5 fb5d0c80c010a2640efc02d8e36e71b7
BLAKE2b-256 f830f99d6ff43d840f537a95ad2c6222745ae7d8bea58617a3f85274a89e8066

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyjess-0.10.0-cp37-cp37m-macosx_10_12_x86_64.whl:

Publisher: package.yml on althonos/pyjess

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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