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.3.0.tar.gz (465.6 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.3.0-cp314-cp314t-win_amd64.whl (526.1 kB view details)

Uploaded CPython 3.14tWindows x86-64

pyaragorn-0.3.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (583.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

pyaragorn-0.3.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (575.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

pyaragorn-0.3.0-cp314-cp314t-macosx_11_0_arm64.whl (572.0 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

pyaragorn-0.3.0-cp314-cp314t-macosx_10_15_x86_64.whl (581.1 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

pyaragorn-0.3.0-cp311-abi3-win_amd64.whl (494.6 kB view details)

Uploaded CPython 3.11+Windows x86-64

pyaragorn-0.3.0-cp311-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (571.2 kB view details)

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

pyaragorn-0.3.0-cp311-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (562.8 kB view details)

Uploaded CPython 3.11+manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

pyaragorn-0.3.0-cp311-abi3-macosx_11_0_arm64.whl (551.1 kB view details)

Uploaded CPython 3.11+macOS 11.0+ ARM64

pyaragorn-0.3.0-cp311-abi3-macosx_10_9_x86_64.whl (558.7 kB view details)

Uploaded CPython 3.11+macOS 10.9+ x86-64

pyaragorn-0.3.0-cp310-cp310-win_amd64.whl (507.9 kB view details)

Uploaded CPython 3.10Windows x86-64

pyaragorn-0.3.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (590.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

pyaragorn-0.3.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (580.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

pyaragorn-0.3.0-cp310-cp310-macosx_11_0_arm64.whl (563.8 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pyaragorn-0.3.0-cp310-cp310-macosx_10_9_x86_64.whl (572.8 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

pyaragorn-0.3.0-cp39-cp39-win_amd64.whl (508.0 kB view details)

Uploaded CPython 3.9Windows x86-64

pyaragorn-0.3.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (590.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

pyaragorn-0.3.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (580.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

pyaragorn-0.3.0-cp39-cp39-macosx_11_0_arm64.whl (564.0 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pyaragorn-0.3.0-cp39-cp39-macosx_10_9_x86_64.whl (573.1 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

pyaragorn-0.3.0-cp38-cp38-win_amd64.whl (508.9 kB view details)

Uploaded CPython 3.8Windows x86-64

pyaragorn-0.3.0-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (592.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

pyaragorn-0.3.0-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (582.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

pyaragorn-0.3.0-cp38-cp38-macosx_11_0_arm64.whl (565.9 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

pyaragorn-0.3.0-cp38-cp38-macosx_10_9_x86_64.whl (575.3 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for pyaragorn-0.3.0.tar.gz
Algorithm Hash digest
SHA256 c4ee52bb7fe6738e43980592acaaf3d4d52889a0febbb15ae78e215112cdc60a
MD5 0d4a028eedddec8278545fefb2f6e418
BLAKE2b-256 eb89aae10bda1b098ffb748303a799c32a80d3f9b08234a0d7cea1fc52cde2c4

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyaragorn-0.3.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.3.0-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: pyaragorn-0.3.0-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 526.1 kB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pyaragorn-0.3.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 f54443684614cdb4e55154a179db0fa31fd000d33c360f7fee93b31c6d919e3b
MD5 4654d03f8403b53ddad75dd4f8de67ed
BLAKE2b-256 3a316d0476da64b0c958ec91c4fb65618cf20ada81e38b5d8d85f5bbb1ce3db9

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyaragorn-0.3.0-cp314-cp314t-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.3.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyaragorn-0.3.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8a7c8f5fd1bf95aa565f8918eccf60a04e920864162689cabb62eb9492347cd7
MD5 e0dff645a02c754f30b14885bcea1052
BLAKE2b-256 af43277ee16e290fe907e76983ff4623726e56abf31921cfc3038c17c58b63ce

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyaragorn-0.3.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_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.3.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyaragorn-0.3.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 031b5e266c74b6cff1b38104e19afb9839fe1d1df5df6e0c3fcb6bee4bd5a701
MD5 b86b3cf745eeb41901da8c3ffb77bd4c
BLAKE2b-256 cd2f4cc5cdec0888b23aee77958ef5ffba8bf094762443fd6c663a098915bb35

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyaragorn-0.3.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_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.3.0-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyaragorn-0.3.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5c28968d8cfc042d09da504ac6016a9f1060f312653702dfcdf87a642ccc6687
MD5 db88b1f92a2d3139c5c09977b81b7851
BLAKE2b-256 39c70bf93405f1be9e6e2469551f24fe8e07f326d91bc1f617cca911b19b416a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyaragorn-0.3.0-cp314-cp314t-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.3.0-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pyaragorn-0.3.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 23ce8b41b0d161a2dc6fd1671ea3cd61b8f4f04535cb88afb350fd028a68ce69
MD5 826f8cc5bc22cef9bb4c7ad1b114fce0
BLAKE2b-256 188983fd581b595b59dcb3083ba1a57ad49d2be82666960a61e95ab3995d95df

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyaragorn-0.3.0-cp314-cp314t-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.3.0-cp311-abi3-win_amd64.whl.

File metadata

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

File hashes

Hashes for pyaragorn-0.3.0-cp311-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 93d05a3e44557436ee8f1b393c0174262d298b786c04fabe1f53cc7f5a8ac6c8
MD5 eab20a3f827da7cb1e3ffd7425aed0d7
BLAKE2b-256 400566bd5b39c24ef73d0000f22db142e97839c1dcc0b7cf345a941a69787191

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyaragorn-0.3.0-cp311-abi3-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.3.0-cp311-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyaragorn-0.3.0-cp311-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 70fdfeb5fe60e72ea647f22d25c8188871e2521b398f8ceb3ec905d6583f0f84
MD5 19ee97520b7e246b3207d291f95e1c1c
BLAKE2b-256 098851054931c6383fad4f46e4c3ba064bde377603eaf553f5248a77672a59e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyaragorn-0.3.0-cp311-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_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.3.0-cp311-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyaragorn-0.3.0-cp311-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 695cab3f8c60c52a20601079bdb85e34213b9e9a6d9a41f5d908671db0261845
MD5 12f8f1ee13d232cf78526c1102cbe72f
BLAKE2b-256 2ce3298a37ff265f007e1563e84a063755b3e59d3ad0a47ca56605f5d3ac6b87

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyaragorn-0.3.0-cp311-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_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.3.0-cp311-abi3-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyaragorn-0.3.0-cp311-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a4e8b59dbf0a9b53f5325098756148a0dbfa504b3950841bacdc2d2568b74512
MD5 9a5f1e19f29eeabd0ada29a7fd81d26a
BLAKE2b-256 1861c6fd03e9ff5a655b89ef2a34652eeb26428c10e3b5eb3fb4c0ad224a7f04

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyaragorn-0.3.0-cp311-abi3-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.3.0-cp311-abi3-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyaragorn-0.3.0-cp311-abi3-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0c5bc3185f5a68eca99bb22e5568a787b18a56aec745d1e3a59420887e46b040
MD5 c8acfe15ad14661203df0dfa4d32501a
BLAKE2b-256 bdd58d27f08e2a2198bdaad117fd221768f035e6907ad205656d082a9802481b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyaragorn-0.3.0-cp311-abi3-macosx_10_9_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.3.0-cp310-cp310-win_amd64.whl.

File metadata

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

File hashes

Hashes for pyaragorn-0.3.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 54f5c99c65f17e7466cbef270a641f0e8e1c5a95f6a53767e2db10eb46567513
MD5 2f7d704567a244cdb2c6232d04d41b0c
BLAKE2b-256 4d6c2e6cf3c0773ddaaf48877fdcd36cd43b91fa48deee2d2ec5113e72a5ab53

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyaragorn-0.3.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.3.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyaragorn-0.3.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 69637a6934f1a11b11f98c8beb02457f6b9a53449c93311fe5480056993904f9
MD5 ceef106285a93f1b60f4d76d63d82157
BLAKE2b-256 a4b782c9d7c1b37069f0ff9dff3b34a669edd3aa6b3ad5bf4e01fca4704b5215

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyaragorn-0.3.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_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.3.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyaragorn-0.3.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7f9f7ada536180daebeaf7de7bafc6e847e71335315a8b8cfc0a1d3e4d717340
MD5 7a9d31212946a5fd58be787ecd9605cb
BLAKE2b-256 68c8ff9028cf7b479e629a656dec791eab815f524cc86147523fac0a1fd4663b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyaragorn-0.3.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_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.3.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyaragorn-0.3.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e5c486c3e14ba6bcabfc5a83b85b067a1a5bfd11a52e5eb48b5fdbc18cf0d93f
MD5 bec1a439354dae8c9480cd5dcbe46084
BLAKE2b-256 b420013769d1592cfbbe2911361a39067214c5d556501a32a0af6b0c23c2e0f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyaragorn-0.3.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.3.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyaragorn-0.3.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 83a4e6e028cecd02ff94b5aef8612f2ada507fe2a3ff29905b02d6715bce4bc3
MD5 d3c41562da2d73993bca0b62cb9508b5
BLAKE2b-256 6d6aec8f2648cb4a8e3581a05949525da3f6c0dfa2077c1379b6051c52359a5b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyaragorn-0.3.0-cp310-cp310-macosx_10_9_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.3.0-cp39-cp39-win_amd64.whl.

File metadata

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

File hashes

Hashes for pyaragorn-0.3.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 99d1389a989391e08b13fdc40e0869f00a4046cbc93289062267eb88f83e583b
MD5 04c5c74fdd861b24e690680dd59baf2f
BLAKE2b-256 3f7a01c97a89a02479d05d681c832b72973f3964c99ccd64e13186f537d24f37

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyaragorn-0.3.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.3.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyaragorn-0.3.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5e019e5a199cfff6a3ec2eb50d43cd75fa1e5dcdae94a315cf31868f90b02f5d
MD5 8e2ec107fa9ec35c1d1b526fcad51baa
BLAKE2b-256 5a24478b7d94a31fabd31f0d28ea35abb5dad608247c2c043d3c053dd6b93937

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyaragorn-0.3.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_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.3.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyaragorn-0.3.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 94e62f61c92a3cd25f79af4f1c930ec2f85363b86e671c1f1de947452ce8728d
MD5 e07f54d938211260305472de90bc9151
BLAKE2b-256 053e927976e28f654dc7c4115b139c8262e9a705ad3770a8dbb9fc77e0d040c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyaragorn-0.3.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_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.3.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyaragorn-0.3.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6d85046c09dcf38a9162dd2c12ef4acddda2de31eb489c9ad3ac58b4e1d2c609
MD5 1e3207f2b39a97f995d2cc8283f48eb6
BLAKE2b-256 174100e7c8e0189cdc8cbf3da168ca78a2b6d190cf4a001328f1ce05fb1460b1

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyaragorn-0.3.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.3.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyaragorn-0.3.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e4712b667b269a126dd5970b5830f8a8308b2fc771a886615641c9fe873074a4
MD5 465428deef1773a1313cd8a3bfe7ff3e
BLAKE2b-256 ec0615c831b9c78230dbdd8e537989738f0451334abae7b163be912982258c95

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyaragorn-0.3.0-cp39-cp39-macosx_10_9_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.3.0-cp38-cp38-win_amd64.whl.

File metadata

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

File hashes

Hashes for pyaragorn-0.3.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 8df2b81d3629c896d9db9abd9c9c9c7eb5145ca44f0b751397eca08bb62b1889
MD5 7d5dabe624c53d568fa6bea9c945d8e4
BLAKE2b-256 5b342f6f30ca552ba61919a770b6f00cccfb1bfa03f81633520bb154e59556c6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyaragorn-0.3.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.3.0-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyaragorn-0.3.0-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5d2e4461023a5eafac7dfd33483f8645c6fdfb7ec9eee447b977607cb44584fa
MD5 f1b22b2e2674ac37b006d61d2db0f363
BLAKE2b-256 4fc7280d6339cd8d3846d3d93e7bcd159e8a820193e0943d5e42de97b1b288a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyaragorn-0.3.0-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_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.3.0-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyaragorn-0.3.0-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 21ab17da7fa7a6c0adba9c4337ef084cb4f5b8d29b2d65020b399ed2cf367552
MD5 83ad5f0d194d583d90fe00bd75b71d6b
BLAKE2b-256 b3f8e8090b3ff952d53d7860eb6d66e99787a7c493921f1ffd90cb8f09efcefc

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyaragorn-0.3.0-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_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.3.0-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyaragorn-0.3.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7ad09fd0335dc7993d29f0790beaf106af0f961cbb3a5619263394b926b535fc
MD5 80da38b1efb63977bccfe3053835d446
BLAKE2b-256 54687a361326d06ea38048d37c3fc047c111718c665b13439f0d3c6d2790eff1

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyaragorn-0.3.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.3.0-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyaragorn-0.3.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 590606163422b4deb4bb5e089b358cdb614db80e6c0d170b2e9d8c292132c016
MD5 692fb674f17b1342d09b23ecd0156020
BLAKE2b-256 c46819cb0fac4e7ab3fdbb209a3e9f5e331891468639878670de37cc8dc2eafb

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyaragorn-0.3.0-cp38-cp38-macosx_10_9_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