Skip to main content

Cython bindings and Python interface to ARAGORN, a tRNA and mtRNA detection software.

Project description

👑 PyARAGORN Stars

Cython bindings and Python interface to ARAGORN, a (t|mt|tm)RNA gene finder.

Actions Coverage License PyPI Bioconda AUR Wheel Python Versions Python Implementations Source Mirror GitHub issues Docs Changelog Downloads

🗺️ Overview

ARAGORN is a fast method developed by Dean Laslett & Björn Canback[1] to identify tRNA and tmRNA genes in genomic sequences using heuristics to detect potential high-scoring stem-loop structures. The complementary method ARWEN, developed by the same authors[2] to support the detection of metazoan mitochondrial RNA (mtRNA) genes, was later integrated into ARAGORN.

pyaragorn is a Python module that provides bindings to ARAGORN and ARWEN using Cython. It directly interacts with the ARAGORN internals, which has the following advantages:

  • single dependency: PyARAGORN is distributed as a Python package, so you can add it as a dependency to your project, and stop worrying about the ARAGORN binary being present on the end-user machine.
  • no intermediate files: Everything happens in memory, in a Python object you fully control, so you don't have to invoke the ARAGORN CLI using a sub-process and temporary files. Sequences can be passed directly as strings, bytes, or any buffer objects, which avoids the overhead of formatting your input to FASTA for ARAGORN.
  • no output parsing: The detected RNA genes are returned as Python objects with transparent attributes, which facilitate handling the output of ARAGORN compared to parsing the output tables.
  • same results: PyARAGORN is tested to ensure it produces the same results as ARAGORN v1.2.41, the latest release.

📋 Features

PyARAGORN currently supports the following features from the ARAGORN command line:

  • tRNA gene detection (aragorn -t).
  • tmRNA gene detection (aragorn -m).
  • mtRNA gene detection (aragorn -mt).
  • Reporting of batch mode metadata (aragorn -w).
  • Alternative genetic code (aragorn -gc).
  • Custom genetic code (aragorn -gc<n>,BBB=<aa>).
  • Circular and linear topologies (aragorn -c | aragorn -l).
  • Intron length configuration (aragorn -i).
  • Scoring threshold configuration (aragorn -ps).
  • Sequence extraction from RNA gene (aragorn -seq).
  • Secondary structure extraction from each gene (aragorn -br).

🧶 Thread-safety

pyaragorn.RNAFinder instances are thread-safe. In addition, the find_rna method is re-entrant. This means you can parameterize a RNAFinder instance once, and then use a pool to process sequences in parallel:

import multiprocessing.pool
import pyaragorn

rna_finder = pyaragorn.RNAFinder()

with multiprocessing.pool.ThreadPool() as pool:
    predictions = pool.map(rna_finder.find_rna, sequences)

🔧 Installing

This project is supported on Python 3.7 and later.

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

$ pip install pyaragorn

💡 Example

Let's load a sequence from a GenBank file, use a RNAFinder to find all the tRNA genes it contains, and print the anticodon and corresponding amino-acids of the detected tRNAs.

🔬 Biopython

To use the RNAFinder to detect tRNA and tmRNA genes, the default operation mode, but using the bacterial genetic code (translation table 11):

import Bio.SeqIO
import pyaragorn

record = Bio.SeqIO.read("sequence.gbk", "genbank")

rna_finder = pyaragorn.RNAFinder(translation_table=11)
genes = rna_finder.find_rna(bytes(record.seq))

for gene in genes:
    if gene.type == "tRNA":
        print(
            gene.amino_acid,   # 3-letter code
            gene.begin,        # 1-based, inclusive
            gene.end,
            gene.strand,       # +1 or -1 for direct and reverse strand
            gene.energy,
            gene.anticodon
        )

On older versions of Biopython (before 1.79) you will need to use record.seq.encode() instead of bytes(record.seq).

💭 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.

📋 Changelog

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

⚖️ License

This library is provided under the GNU General Public License v3.0 or later. ARAGORN and ARWEN were developed by Dean Laslett and are distributed under the terms of the GPLv3 or later as well. See vendor/aragorn for more information.

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

📚 References

  • [1] Laslett, Dean, and Bjorn Canback. “ARAGORN, a program to detect tRNA genes and tmRNA genes in nucleotide sequences.” Nucleic acids research vol. 32,1 11-6. 2 Jan. 2004, doi:10.1093/nar/gkh152
  • [2] Laslett, Dean, and Björn Canbäck. “ARWEN: a program to detect tRNA genes in metazoan mitochondrial nucleotide sequences.” Bioinformatics (Oxford, England) vol. 24,2 (2008): 172-5. doi:10.1093/bioinformatics/btm573

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

pyaragorn-0.2.0.tar.gz (475.0 kB view details)

Uploaded Source

Built Distributions

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

pyaragorn-0.2.0-pp310-pypy310_pp73-win_amd64.whl (496.9 kB view details)

Uploaded PyPyWindows x86-64

pyaragorn-0.2.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (561.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pyaragorn-0.2.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (554.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pyaragorn-0.2.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (561.3 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

pyaragorn-0.2.0-pp39-pypy39_pp73-win_amd64.whl (496.4 kB view details)

Uploaded PyPyWindows x86-64

pyaragorn-0.2.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (561.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pyaragorn-0.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (554.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pyaragorn-0.2.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl (560.7 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

pyaragorn-0.2.0-pp38-pypy38_pp73-win_amd64.whl (496.6 kB view details)

Uploaded PyPyWindows x86-64

pyaragorn-0.2.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (561.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pyaragorn-0.2.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (554.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pyaragorn-0.2.0-pp38-pypy38_pp73-macosx_10_12_x86_64.whl (560.2 kB view details)

Uploaded PyPymacOS 10.12+ x86-64

pyaragorn-0.2.0-pp37-pypy37_pp73-win_amd64.whl (499.7 kB view details)

Uploaded PyPyWindows x86-64

pyaragorn-0.2.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (561.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pyaragorn-0.2.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (554.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pyaragorn-0.2.0-pp37-pypy37_pp73-macosx_10_12_x86_64.whl (564.3 kB view details)

Uploaded PyPymacOS 10.12+ x86-64

pyaragorn-0.2.0-cp313-cp313-win_amd64.whl (511.0 kB view details)

Uploaded CPython 3.13Windows x86-64

pyaragorn-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (578.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

pyaragorn-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (568.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

pyaragorn-0.2.0-cp313-cp313-macosx_11_0_arm64.whl (562.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pyaragorn-0.2.0-cp313-cp313-macosx_10_13_x86_64.whl (576.6 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

pyaragorn-0.2.0-cp312-cp312-win_amd64.whl (509.3 kB view details)

Uploaded CPython 3.12Windows x86-64

pyaragorn-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (578.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

pyaragorn-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (569.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

pyaragorn-0.2.0-cp312-cp312-macosx_11_0_arm64.whl (562.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pyaragorn-0.2.0-cp312-cp312-macosx_10_13_x86_64.whl (575.8 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

pyaragorn-0.2.0-cp311-cp311-win_amd64.whl (510.7 kB view details)

Uploaded CPython 3.11Windows x86-64

pyaragorn-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (581.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

pyaragorn-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (572.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

pyaragorn-0.2.0-cp311-cp311-macosx_11_0_arm64.whl (562.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pyaragorn-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl (575.0 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

pyaragorn-0.2.0-cp310-cp310-win_amd64.whl (510.7 kB view details)

Uploaded CPython 3.10Windows x86-64

pyaragorn-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (581.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

pyaragorn-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (571.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

pyaragorn-0.2.0-cp310-cp310-macosx_11_0_arm64.whl (561.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pyaragorn-0.2.0-cp310-cp310-macosx_10_12_x86_64.whl (573.1 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

pyaragorn-0.2.0-cp39-cp39-win_amd64.whl (511.0 kB view details)

Uploaded CPython 3.9Windows x86-64

pyaragorn-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (581.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

pyaragorn-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (571.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

pyaragorn-0.2.0-cp39-cp39-macosx_11_0_arm64.whl (561.5 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pyaragorn-0.2.0-cp39-cp39-macosx_10_12_x86_64.whl (573.5 kB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

pyaragorn-0.2.0-cp38-cp38-win_amd64.whl (511.5 kB view details)

Uploaded CPython 3.8Windows x86-64

pyaragorn-0.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (582.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

pyaragorn-0.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (572.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

pyaragorn-0.2.0-cp38-cp38-macosx_11_0_arm64.whl (563.0 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

pyaragorn-0.2.0-cp38-cp38-macosx_10_12_x86_64.whl (575.0 kB view details)

Uploaded CPython 3.8macOS 10.12+ x86-64

pyaragorn-0.2.0-cp37-cp37m-win_amd64.whl (510.4 kB view details)

Uploaded CPython 3.7mWindows x86-64

pyaragorn-0.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (580.6 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

pyaragorn-0.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (571.7 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

pyaragorn-0.2.0-cp37-cp37m-macosx_10_12_x86_64.whl (577.1 kB view details)

Uploaded CPython 3.7mmacOS 10.12+ x86-64

File details

Details for the file pyaragorn-0.2.0.tar.gz.

File metadata

  • Download URL: pyaragorn-0.2.0.tar.gz
  • Upload date:
  • Size: 475.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pyaragorn-0.2.0.tar.gz
Algorithm Hash digest
SHA256 a47332ecb3fa498de4e500740702ecfea141912152581ddac1654aaa7399b178
MD5 616a454cad353fa125c921c7b32b4f2e
BLAKE2b-256 719727971ffbf3fcf90b94340d69b78a3a0aabdb6b1d83b3fe13e26f21059cad

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyaragorn-0.2.0.tar.gz:

Publisher: package.yml on althonos/pyaragorn

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

File details

Details for the file pyaragorn-0.2.0-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pyaragorn-0.2.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 64918132ea39bae9d71a16742b99d2c1b92876f7fc2f37a18febdc585a775ee8
MD5 ffe899e980f2af853665bf429d1b27fb
BLAKE2b-256 0031dde49c9deaeb55f72ca5776fc1f8a3a6896b02b04aa8be5cae0e78cf0b70

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyaragorn-0.2.0-pp310-pypy310_pp73-win_amd64.whl:

Publisher: package.yml on althonos/pyaragorn

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

File details

Details for the file pyaragorn-0.2.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyaragorn-0.2.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6d66e9273b0b4665979350fcb533fee4f626f3b130b97c47930ac705e71a23b5
MD5 30ef8df36d16c6b70fa9b65bdf8a0762
BLAKE2b-256 a5912e6daadee6c8e610af63e02f72a5e3dc5c99ef1773d50c48f3e89446e9cc

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyaragorn-0.2.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: package.yml on althonos/pyaragorn

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

File details

Details for the file pyaragorn-0.2.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyaragorn-0.2.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d8231cccfaa12bb32b0be2698a9a618fb4e324f8108c9987b282eedaab8586f3
MD5 254c5a7a5364fb46dae0ecee5fa0e63b
BLAKE2b-256 32c074be47e0aaba4f59e4f8f2c11c63b3f0b53a6d4cb5e132a1f0b2b2b2225d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyaragorn-0.2.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: package.yml on althonos/pyaragorn

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

File details

Details for the file pyaragorn-0.2.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pyaragorn-0.2.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 de537580b74605f4becf9c602988273a312daefa47c5a034c79cc282a8519775
MD5 ce5ca281d963074c143d9ec812ff8c2d
BLAKE2b-256 9a74cb48c30196bd4039d0d6c62c8c5f68273d011e77014da8fa82d50530e1b7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyaragorn-0.2.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl:

Publisher: package.yml on althonos/pyaragorn

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

File details

Details for the file pyaragorn-0.2.0-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pyaragorn-0.2.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 a90cd3175051d1406e8b7c287ee629f25c9980d6702509f90d8c7e97fd052c30
MD5 59b2a2296b57a89f40029f334bba110a
BLAKE2b-256 e7addbace10c5387f9eef22af9a0b0fad40017be1ab0af6b7474c10fbacb706b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyaragorn-0.2.0-pp39-pypy39_pp73-win_amd64.whl:

Publisher: package.yml on althonos/pyaragorn

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

File details

Details for the file pyaragorn-0.2.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyaragorn-0.2.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5b33e25f200c0f614431550b375b26630b2d2f49674a17f4b494586b26dbcb3d
MD5 fce47cac8314c7a8a134e4a35827c116
BLAKE2b-256 fcd1fc8c3ab43090cbd863cd9743312b2407af6e4f8a3f6986bf1814761ce37d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyaragorn-0.2.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: package.yml on althonos/pyaragorn

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

File details

Details for the file pyaragorn-0.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyaragorn-0.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 710e58b47c7d39869bfbbb4d3068583883edf2210e90e245b91124d3e275c17b
MD5 78fa4101a9dfe371d6ab3540a1d03e4c
BLAKE2b-256 5aed6a754f11f8639005465dfcd76a5257a618144d24de6bcb5569761c4029b9

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyaragorn-0.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: package.yml on althonos/pyaragorn

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

File details

Details for the file pyaragorn-0.2.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pyaragorn-0.2.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 8e7dbb65411141f1840ff2d3f8aaec93b4e7dfef2ee9ad52dec00aa54855d184
MD5 31f7f004a415ff3dad7e38af52518e87
BLAKE2b-256 c4c909928127e97e744e8a0dde4121c41f4de4be15207981eb465c3a1a54db6a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyaragorn-0.2.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl:

Publisher: package.yml on althonos/pyaragorn

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

File details

Details for the file pyaragorn-0.2.0-pp38-pypy38_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pyaragorn-0.2.0-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 41d91e5056f7ecf9f5447c43cb507ad23b272c3438f80cbf4fc918e9ed5306d2
MD5 c761b604633f4599b1894a6a1363f7eb
BLAKE2b-256 ab171d8dc8aa06926a9d2b257b3fce40782f71f905180a610d3f9c9dcf3fb3fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyaragorn-0.2.0-pp38-pypy38_pp73-win_amd64.whl:

Publisher: package.yml on althonos/pyaragorn

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

File details

Details for the file pyaragorn-0.2.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyaragorn-0.2.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0093602acde1fe042f5a2286c50f4e796bc421d28fa275e1ad385e6324c7f620
MD5 0fad0653a67ccf38e2cc72e3ceba8b1b
BLAKE2b-256 6070fe2d0ccc049e6c5abb379cfb24f6518b7e2b04e9910b9e94ae7b13a3083d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyaragorn-0.2.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: package.yml on althonos/pyaragorn

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

File details

Details for the file pyaragorn-0.2.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyaragorn-0.2.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b0f89d4df050bd6057bd4f128e9d1335cb315b9cd29cf67b0fb3444e4312128c
MD5 62b080c735e6c0301adb94f106adea7d
BLAKE2b-256 b28ee8146af1f515e8c848a44c7b278615e527b15c20f7ccf1dc4cbe43abb2f6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyaragorn-0.2.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: package.yml on althonos/pyaragorn

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

File details

Details for the file pyaragorn-0.2.0-pp38-pypy38_pp73-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pyaragorn-0.2.0-pp38-pypy38_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 27bab69deff5f5e350fee37a2f6493bec417fc87cf01e9aca3e64c9b0cac3426
MD5 906742b4449089586a97a9e03d94f3e7
BLAKE2b-256 b7b066ed72ed52b97d165886d856de86fd20b83f6813b0019e8e35f0ce6a8b87

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyaragorn-0.2.0-pp38-pypy38_pp73-macosx_10_12_x86_64.whl:

Publisher: package.yml on althonos/pyaragorn

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

File details

Details for the file pyaragorn-0.2.0-pp37-pypy37_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pyaragorn-0.2.0-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 2293d6fd684a93359f2d260b3c86fbebd218c8beedf9ade319b5b63372e1075b
MD5 934fd8dea6183c246d674ff4f75c9269
BLAKE2b-256 e6c1c57e4cbe9c67736136e7fd1b648185c7a4b47e34ec6c0dc8affeb1137b8c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyaragorn-0.2.0-pp37-pypy37_pp73-win_amd64.whl:

Publisher: package.yml on althonos/pyaragorn

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

File details

Details for the file pyaragorn-0.2.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyaragorn-0.2.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e184fe9d9103a28155546a7fbe0d27c275773d2c89c00ab04848463e65779fb9
MD5 1cd72f1f4c06eecc157fb54d2377d194
BLAKE2b-256 424b6e7c07d06c514e282f8655416235f6285302034a3e9ec2f3c02fbe24896b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyaragorn-0.2.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: package.yml on althonos/pyaragorn

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

File details

Details for the file pyaragorn-0.2.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyaragorn-0.2.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ecd1c6f0eab6e1cdb1a54cfd9e57b97c22aa004f76b68eab84ce65b137185a7e
MD5 3fa1459baa550b22c40a5c097d03eaca
BLAKE2b-256 2314fdda0de3751ee1721ada88238f2ff7516f57ab5e450b75bacd17ea62b50d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyaragorn-0.2.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: package.yml on althonos/pyaragorn

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

File details

Details for the file pyaragorn-0.2.0-pp37-pypy37_pp73-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pyaragorn-0.2.0-pp37-pypy37_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e5b58f270a70ef6f6135048e6d0250bb539b4d119c683c7dac726c75d1997b1c
MD5 0fd487c52737b9113ebbc411696fb70f
BLAKE2b-256 64f84e74f86c702e66cc5ae55db53b6239dc21bb71b314292effbc238ffe4c34

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyaragorn-0.2.0-pp37-pypy37_pp73-macosx_10_12_x86_64.whl:

Publisher: package.yml on althonos/pyaragorn

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

File details

Details for the file pyaragorn-0.2.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: pyaragorn-0.2.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 511.0 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pyaragorn-0.2.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 c4f6540b9fa3b2fac54839788d593dfcfdf6d3b584710c0ec39ae767a84df28f
MD5 83af52bfb03a22b977a0aeeb121c028c
BLAKE2b-256 a5a74497d27237db33c61eccdbe9df1932f71e49fdef99ceda8d5df0d076a4ff

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyaragorn-0.2.0-cp313-cp313-win_amd64.whl:

Publisher: package.yml on althonos/pyaragorn

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

File details

Details for the file pyaragorn-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyaragorn-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a81cad7cf6762d6f566d2d8515b93bee7d760a8ba3ca04228d12b5cf9cfd7037
MD5 b936365b7ba65631615764f667078001
BLAKE2b-256 e7f92d45df1d617151b9795773ea4a62558e5680156f5852beb8632a26b4d7d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyaragorn-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: package.yml on althonos/pyaragorn

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

File details

Details for the file pyaragorn-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyaragorn-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 701e36db280a7d920e4af278833d8496452d4d939bab11f59903f7e79c037b18
MD5 d5db7da6503720b2b3c715e3a22babb8
BLAKE2b-256 d9c182514d2d6a573187a511d9d5f6b51a895e74d4970775632bd2bb2276a18b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyaragorn-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: package.yml on althonos/pyaragorn

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

File details

Details for the file pyaragorn-0.2.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyaragorn-0.2.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5540f5f565c52beb716559a3a0c46f83bfabf7a19dbea2cf21c902b158aa0eaf
MD5 f282bdabcb3f69a506ad497fccc9bad3
BLAKE2b-256 5106d75254b6e05dec491fccfb053bfe70f23e2a9c4b1f66da4f64db166d1bac

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyaragorn-0.2.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: package.yml on althonos/pyaragorn

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

File details

Details for the file pyaragorn-0.2.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pyaragorn-0.2.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 e948dd4a8857aa80f2080768ebd67e44cb2a897cf12899ff964b7ab3ac8620e0
MD5 1dbe7d177192b93f5175c13e1a61b68f
BLAKE2b-256 89f85120784abc25f552e466f80614c78bbdb3010e4df89633dbd680a71f1dd1

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyaragorn-0.2.0-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: package.yml on althonos/pyaragorn

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

File details

Details for the file pyaragorn-0.2.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: pyaragorn-0.2.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 509.3 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pyaragorn-0.2.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 dbfd892d1d6660d23a86519d5b2a640fb5dad06321d3288b251853152ad7e246
MD5 3ab1c8c32cbf9d7803774d3ab4a8c805
BLAKE2b-256 b8b346909ed34e12054b69e3910c511cd2625a41006125473b163e6768d5d920

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyaragorn-0.2.0-cp312-cp312-win_amd64.whl:

Publisher: package.yml on althonos/pyaragorn

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

File details

Details for the file pyaragorn-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyaragorn-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7156015d13ec5d60e378fc2d64dbc35e5ce866aea138cd83e465e536e9f715bf
MD5 a649b4ccda2ca81bd8514c3561a1c102
BLAKE2b-256 1d9379709de7cdc9a80260cda6f01e39646f51042d66523f980fcce9cb3560b4

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyaragorn-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: package.yml on althonos/pyaragorn

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

File details

Details for the file pyaragorn-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyaragorn-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 aa594869b195b9dd09bbaf88c4b3ba3afda805be3922ff31c58bc8bc78fca1cf
MD5 b2810a964563bff0afd79f3faec837ed
BLAKE2b-256 d8d144bb4e73c9515cfd8ffe11ec8fd2df7603c7708f7b4c273dd97679310f75

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyaragorn-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: package.yml on althonos/pyaragorn

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

File details

Details for the file pyaragorn-0.2.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyaragorn-0.2.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 58ca760652d3cdd7ffbcd0c3591d91f361c35920d6e435f3edffa64a8d7cb364
MD5 5848c9e98edabe50fa973177653c8252
BLAKE2b-256 295df5fc15caf1de37f92bf6e2a16ec222122033f6daa7504802448988c6fdc4

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyaragorn-0.2.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: package.yml on althonos/pyaragorn

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

File details

Details for the file pyaragorn-0.2.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pyaragorn-0.2.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 f955bb4b70b7eeca7a0aa9f9975ec9b7bbd878dbb8483af1569749ba7f597b41
MD5 3d61523ce268536038f4db2425449a5a
BLAKE2b-256 c38978fb4fe38b3e0623ccb734e9f16e3b8276a1ab953914ad26fb8c32119473

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyaragorn-0.2.0-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: package.yml on althonos/pyaragorn

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

File details

Details for the file pyaragorn-0.2.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: pyaragorn-0.2.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 510.7 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pyaragorn-0.2.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 09a9ce59948e634706ab59c9b40bee3e8bd7f95f9966ce02abac3fdaef943bf5
MD5 56411b46c27395bbdd9e687045a035b5
BLAKE2b-256 40137ad8b77bfa2b220628ce10cbe50599a9114e9feb2fd2b801dd8ff611a1e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyaragorn-0.2.0-cp311-cp311-win_amd64.whl:

Publisher: package.yml on althonos/pyaragorn

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

File details

Details for the file pyaragorn-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyaragorn-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ce71c2a9fa7de0cf79cbc4560c7ba5c103a2be86ac41901e0ebb322711782137
MD5 931e7cb3e29b0b9fe0b6ede6526adbfb
BLAKE2b-256 4ef3935d5ba756a002fed5818bc11bd68117ce7936a83e4d333b3c2ef6429a54

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyaragorn-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: package.yml on althonos/pyaragorn

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

File details

Details for the file pyaragorn-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyaragorn-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0b354fd6f33404a308bbcad732b3844514795115e39e6d536181bf357a435d27
MD5 9ea38d581d81a265e000e97f53ed69b0
BLAKE2b-256 0ba043aebf85abe1d20ec46e6144e57992e6a7922fa7edf6dd76ec78711dfe95

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyaragorn-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: package.yml on althonos/pyaragorn

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

File details

Details for the file pyaragorn-0.2.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyaragorn-0.2.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e1916aa3bf082cd3b012e11c00a34a401466a61ed6a4f9ffdff03bafddc1563d
MD5 6df7103c1d5c86bb2aad9166f793c6fd
BLAKE2b-256 597d10c74f622928383d3681394faeba589d492ff66dabdac9bd39ec248c953c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyaragorn-0.2.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: package.yml on althonos/pyaragorn

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

File details

Details for the file pyaragorn-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pyaragorn-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 846649679653e572e9003e8384fee3f105d8a8b8442c6de61fd29519109edad4
MD5 d8df5e048a37648832be54a9226352c8
BLAKE2b-256 26a5002343741ce876cf442fa79befbe2e339e54806dc0b16828c006cfcdb8d3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyaragorn-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl:

Publisher: package.yml on althonos/pyaragorn

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

File details

Details for the file pyaragorn-0.2.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: pyaragorn-0.2.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 510.7 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pyaragorn-0.2.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 98b9adcabc8fb161428350b80fc28b1cdf2ff0f9c53c83b182b3aad84dc502c4
MD5 48d2c1d7cf58d74419fff9961e42632c
BLAKE2b-256 e55245882fa91bf0ae1e80b680498eb8ffb5927e0d57053781705786ea200bf0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyaragorn-0.2.0-cp310-cp310-win_amd64.whl:

Publisher: package.yml on althonos/pyaragorn

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

File details

Details for the file pyaragorn-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyaragorn-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f9ca6152b32d0d1b0b500e974f1c04d30a0faa173e92ff10dda93ab16bb17231
MD5 23a961d862f5bf629f6ab8cf356dcf66
BLAKE2b-256 c7ca65e0a1c480fa23e908b32283b5fb5622498f7de4b6ae225774d389f0c2a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyaragorn-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: package.yml on althonos/pyaragorn

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

File details

Details for the file pyaragorn-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyaragorn-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0e4aebb624c866b8b133af393782dde93b3c909db09faa5aee7efd6efbf21335
MD5 dae5773001e2a281bf82b18a2a120336
BLAKE2b-256 bda1f144d83f7bf16b8276db94e463a1f65e2489e589e5aaa05753cbd57a5690

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyaragorn-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: package.yml on althonos/pyaragorn

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

File details

Details for the file pyaragorn-0.2.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyaragorn-0.2.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 61b6ff9db15a0742b5b1200cbcc324daba6e0bcfceb8f3e71cd32343c1a48644
MD5 ba7edef338a07a87d00a79ff352681e8
BLAKE2b-256 f0fc16ba1c9652b741a206173b0ded87efba9ac5be98895db3e5cf32be6cbec6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyaragorn-0.2.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: package.yml on althonos/pyaragorn

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

File details

Details for the file pyaragorn-0.2.0-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pyaragorn-0.2.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 dd249ac3906bbc77d9487cd091f9a0ee391c97fea918721f18643f63f4da5315
MD5 e9d290558e25ecaadf863e6b2c66f02e
BLAKE2b-256 44b30917620fbefdc0d867ba43abe676c3e6dce6564b0f6834390594ff2ad150

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyaragorn-0.2.0-cp310-cp310-macosx_10_12_x86_64.whl:

Publisher: package.yml on althonos/pyaragorn

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

File details

Details for the file pyaragorn-0.2.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: pyaragorn-0.2.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 511.0 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pyaragorn-0.2.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 5b75d7b07dd73e802a7be83b62bb84c0080afcfad2af60221ff57130146c3f02
MD5 85d424657c20c4e4d02d85253b907024
BLAKE2b-256 c0022e129d8cbd34e53f138925541ef83deade10d150efea58904b0941672dd8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyaragorn-0.2.0-cp39-cp39-win_amd64.whl:

Publisher: package.yml on althonos/pyaragorn

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

File details

Details for the file pyaragorn-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyaragorn-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ad7fbac530219031296b79e598ddc93846d30da8e3eaafc2c895840a779c3906
MD5 cd2fbdaf3f90293d5a61181beb1ce2cf
BLAKE2b-256 3d1e98a8d1ebdaa92c2c930a28ce7a522254ce4d16f77c8ea966a2870e86743a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyaragorn-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: package.yml on althonos/pyaragorn

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

File details

Details for the file pyaragorn-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyaragorn-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 65c4c9a33b53b48ab8a273b5c1f3c609f1001e5676a25b4c5d218286ee10f97e
MD5 f8b39f57dfe7b425918620089898d087
BLAKE2b-256 baa16c3bd646820efe3d81f2d1872f857a18d46653ed042bf0f889d5af4a75b7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyaragorn-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: package.yml on althonos/pyaragorn

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

File details

Details for the file pyaragorn-0.2.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyaragorn-0.2.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 51fc7756047df4677fd23e8d993de8d14a766e912ce88ffa27237a48443344de
MD5 544210245a55d08ba1f48037bb60a85d
BLAKE2b-256 6bc01626cb4c4f7ccc5a538693f4db981eb2a8ca7ac9e68da2dc56a8a9a0afc7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyaragorn-0.2.0-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: package.yml on althonos/pyaragorn

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

File details

Details for the file pyaragorn-0.2.0-cp39-cp39-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pyaragorn-0.2.0-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 eb9607345db496b6209fb1c08f0020da2891beebe07a44a1e4ae6f2508e4edd0
MD5 f2b5f93651e1c63f68440d1cbd668691
BLAKE2b-256 807f7a69b6ef889228542e1ef6fe1acf5bf4cb19f1d9e68ef9d0294fa623f312

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyaragorn-0.2.0-cp39-cp39-macosx_10_12_x86_64.whl:

Publisher: package.yml on althonos/pyaragorn

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

File details

Details for the file pyaragorn-0.2.0-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: pyaragorn-0.2.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 511.5 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pyaragorn-0.2.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 312f1897f9e7d65ad3dee218563d47485919c7553c3f9e8402167101d42edef1
MD5 5c2e5d3aca20d7ee598b7726fa0268a5
BLAKE2b-256 74476e27d11658ed3798eebc9825215a8fbb5d8f5f92d274805f46133acc637f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyaragorn-0.2.0-cp38-cp38-win_amd64.whl:

Publisher: package.yml on althonos/pyaragorn

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

File details

Details for the file pyaragorn-0.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyaragorn-0.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 917fa2be1929f7effabcb6662c3ab139cd4155eb840c1163def134c599b1902a
MD5 8c01ed32232b8276f15629b8b57032e2
BLAKE2b-256 1cf0e31b1d78e2fbe1a0373b08c3d9a5523e24d5d159b8fd7787c4677aea2a98

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyaragorn-0.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: package.yml on althonos/pyaragorn

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

File details

Details for the file pyaragorn-0.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyaragorn-0.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 affa07e162f117a808d1a4b54cb4cdcd7fec54adb621801cf390ea7a8350d49e
MD5 4e6b87bb6b69d389de4e79d27652da37
BLAKE2b-256 e541744c0234a9c6cdd46a28eca8bf054aaf5d7b891f47424241c03704219c12

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyaragorn-0.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: package.yml on althonos/pyaragorn

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

File details

Details for the file pyaragorn-0.2.0-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyaragorn-0.2.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9bf824746c4578a1f5f0156e77332410b334c127db9ae661ae5791fd98a3ad8d
MD5 a4a435bf947db19c606fe357e89bc9b0
BLAKE2b-256 6cb6502cd9cb13cb87e0295c9dcf30d34438f4b86339420edaf97639227b620e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyaragorn-0.2.0-cp38-cp38-macosx_11_0_arm64.whl:

Publisher: package.yml on althonos/pyaragorn

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

File details

Details for the file pyaragorn-0.2.0-cp38-cp38-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pyaragorn-0.2.0-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ab2d34b89f61ea8cee9e52c3ee6d83094e7f29b407ce73bb29f51303125b3096
MD5 09114e9a94c1fe857973cc074fb5f1cc
BLAKE2b-256 fa06059df2c8b322635c3daa9fc939312fc9d86f61d026e8424ec17296a71833

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyaragorn-0.2.0-cp38-cp38-macosx_10_12_x86_64.whl:

Publisher: package.yml on althonos/pyaragorn

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

File details

Details for the file pyaragorn-0.2.0-cp37-cp37m-win_amd64.whl.

File metadata

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

File hashes

Hashes for pyaragorn-0.2.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 51fa701dae5c46bf69a0d89b4f88f8becb09adf430087b918cb0310008c1efc5
MD5 fbe583c729723bf53bfec56f11848caf
BLAKE2b-256 8cfcbe0a9186c09bb8c230610cb9d84a80c0bb11b7711ffe0a3e6785ed5a1b13

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyaragorn-0.2.0-cp37-cp37m-win_amd64.whl:

Publisher: package.yml on althonos/pyaragorn

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

File details

Details for the file pyaragorn-0.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyaragorn-0.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 67d137ce92433b5825b9861d7a5dde47ab54b4c99c1a16d1698917680a18afdf
MD5 951fa7f8bfc723e3796804c2c303e6fb
BLAKE2b-256 59f3a134870693df08840e4a30e042c125b4f84f663a92311673a585aa3d8737

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyaragorn-0.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: package.yml on althonos/pyaragorn

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

File details

Details for the file pyaragorn-0.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyaragorn-0.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bf0848ced9f076c1507b57b034827f645750c80298e07812f4a6ac62c1e64177
MD5 fdaef9cba62bf428aeddb11de2e96e30
BLAKE2b-256 a9e1875135565c5a5d4db686d60fce9e3fb7fb1cd08691a30958184455ed7ffc

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyaragorn-0.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: package.yml on althonos/pyaragorn

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

File details

Details for the file pyaragorn-0.2.0-cp37-cp37m-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pyaragorn-0.2.0-cp37-cp37m-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 21859223a0b12bc3e047af1889c1c2f48f9f565dc217db20228a1ebb0ad91424
MD5 1bd28288313e9c65ec0fb9d2a13884a7
BLAKE2b-256 162eec12aa823bfdeb62adf27fc32dfa6399024c2ff85de168c2b4747eecb282

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyaragorn-0.2.0-cp37-cp37m-macosx_10_12_x86_64.whl:

Publisher: package.yml on althonos/pyaragorn

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