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.1.0.tar.gz (471.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.1.0-pp310-pypy310_pp73-win_amd64.whl (495.3 kB view details)

Uploaded PyPyWindows x86-64

pyaragorn-0.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (560.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pyaragorn-0.1.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (553.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pyaragorn-0.1.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (559.9 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

pyaragorn-0.1.0-pp39-pypy39_pp73-win_amd64.whl (495.0 kB view details)

Uploaded PyPyWindows x86-64

pyaragorn-0.1.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (559.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pyaragorn-0.1.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (552.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pyaragorn-0.1.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl (559.3 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

pyaragorn-0.1.0-pp38-pypy38_pp73-win_amd64.whl (495.0 kB view details)

Uploaded PyPyWindows x86-64

pyaragorn-0.1.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (560.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pyaragorn-0.1.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (553.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pyaragorn-0.1.0-pp38-pypy38_pp73-macosx_10_12_x86_64.whl (558.9 kB view details)

Uploaded PyPymacOS 10.12+ x86-64

pyaragorn-0.1.0-pp37-pypy37_pp73-win_amd64.whl (498.0 kB view details)

Uploaded PyPyWindows x86-64

pyaragorn-0.1.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (560.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pyaragorn-0.1.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (553.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pyaragorn-0.1.0-pp37-pypy37_pp73-macosx_10_12_x86_64.whl (563.1 kB view details)

Uploaded PyPymacOS 10.12+ x86-64

pyaragorn-0.1.0-cp313-cp313-win_amd64.whl (509.1 kB view details)

Uploaded CPython 3.13Windows x86-64

pyaragorn-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (576.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

pyaragorn-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (566.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

pyaragorn-0.1.0-cp313-cp313-macosx_11_0_arm64.whl (561.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pyaragorn-0.1.0-cp313-cp313-macosx_10_13_x86_64.whl (574.9 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

pyaragorn-0.1.0-cp312-cp312-win_amd64.whl (507.5 kB view details)

Uploaded CPython 3.12Windows x86-64

pyaragorn-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (576.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

pyaragorn-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (567.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

pyaragorn-0.1.0-cp312-cp312-macosx_11_0_arm64.whl (560.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pyaragorn-0.1.0-cp312-cp312-macosx_10_13_x86_64.whl (574.2 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

pyaragorn-0.1.0-cp311-cp311-win_amd64.whl (508.8 kB view details)

Uploaded CPython 3.11Windows x86-64

pyaragorn-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (579.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

pyaragorn-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (569.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

pyaragorn-0.1.0-cp311-cp311-macosx_11_0_arm64.whl (561.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pyaragorn-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl (573.4 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

pyaragorn-0.1.0-cp310-cp310-win_amd64.whl (508.9 kB view details)

Uploaded CPython 3.10Windows x86-64

pyaragorn-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (579.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

pyaragorn-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (569.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

pyaragorn-0.1.0-cp310-cp310-macosx_11_0_arm64.whl (559.4 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pyaragorn-0.1.0-cp310-cp310-macosx_10_12_x86_64.whl (571.6 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

pyaragorn-0.1.0-cp39-cp39-win_amd64.whl (509.1 kB view details)

Uploaded CPython 3.9Windows x86-64

pyaragorn-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (580.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

pyaragorn-0.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (569.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

pyaragorn-0.1.0-cp39-cp39-macosx_11_0_arm64.whl (560.0 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pyaragorn-0.1.0-cp39-cp39-macosx_10_12_x86_64.whl (572.0 kB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

pyaragorn-0.1.0-cp38-cp38-win_amd64.whl (509.6 kB view details)

Uploaded CPython 3.8Windows x86-64

pyaragorn-0.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (580.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

pyaragorn-0.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (570.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

pyaragorn-0.1.0-cp38-cp38-macosx_11_0_arm64.whl (561.2 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

pyaragorn-0.1.0-cp38-cp38-macosx_10_12_x86_64.whl (573.5 kB view details)

Uploaded CPython 3.8macOS 10.12+ x86-64

pyaragorn-0.1.0-cp37-cp37m-win_amd64.whl (508.6 kB view details)

Uploaded CPython 3.7mWindows x86-64

pyaragorn-0.1.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (578.7 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

pyaragorn-0.1.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (569.5 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

pyaragorn-0.1.0-cp37-cp37m-macosx_10_12_x86_64.whl (575.5 kB view details)

Uploaded CPython 3.7mmacOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for pyaragorn-0.1.0.tar.gz
Algorithm Hash digest
SHA256 17dcee8bb9213eafdd0a1d509f03328f39e18ab00cee2ab119ceca7e0b223f19
MD5 2c63ac484046fcf1c159124a15ff4423
BLAKE2b-256 4afc0257d5a6677e7802fca8ce6ee7fc5d1f3c3501aff45e717a130b74d790a1

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyaragorn-0.1.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.1.0-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pyaragorn-0.1.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 a6a76dbc1ed955e13021c30631ffe0b5d406ec2f989f7f7b0d46ef143a212d0e
MD5 8866876ad8b05e336dd255d98356ebdd
BLAKE2b-256 61c569a44878d9d037b1e3b23fb528cbe6ee53345729e7dce14f48f6d1f71e07

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyaragorn-0.1.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.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyaragorn-0.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 82a8123a38323f96bf706d54ed57a6b496e77ae140361f7187633586beb5eb7b
MD5 9e11dca3d90477029524820b5d31726f
BLAKE2b-256 3af78a860ebf6ac3dc13b5ea05765aaef4eb0741dbe35c8fca9003040e89c563

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyaragorn-0.1.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.1.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyaragorn-0.1.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dffd9ea42986e62c99234dcabecbc2953ae4c76f5969461d16c996cb2eae8072
MD5 ac93d35b4ba354110e54e0484926546f
BLAKE2b-256 87ce405c95f160efa3991a87f38ed83fa0d03f05d21b5bc0730d90283c654993

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyaragorn-0.1.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.1.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pyaragorn-0.1.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 ed6269980077defd0f74e67420c9d018cff6540d73c40a1d871331defd4b22d1
MD5 00ce2c2a5f605036b436f84aebd968a2
BLAKE2b-256 d17f36d5ddc91c2c67bfaa630d96259464f9c5c18624f01868d6f47e528da2ef

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyaragorn-0.1.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.1.0-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pyaragorn-0.1.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 eeb2b9e2cc57fd6a3059befee3ab467398c278d3bb0f6f9904077af526fe28a9
MD5 7b59d53fb02999f1ab2ac5deab903cd3
BLAKE2b-256 797256fcd5d2368eed7d05b07fe35544843532ad8b2fffe24f10969e93240ecb

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyaragorn-0.1.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.1.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyaragorn-0.1.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3866af844b01b41fa2fe51b7e0661ebb6a1c82c26cb4ccbdc68044a6161d7d6a
MD5 b6a7bbc74548b515267abd82b4e51d36
BLAKE2b-256 91002157159b0a6b2884fb4e21a7d27516b50caed7fc3a753a6c95a0c094d689

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyaragorn-0.1.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.1.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyaragorn-0.1.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 25ef2142734b755c4b66c20f29bdfe21f18f67f211d833476cefef8e40d7fbcb
MD5 2b2b17814b861c4ca5d19f4143ce2285
BLAKE2b-256 ab77222bd5189bbb64303d096c366a8132edadd51d4d12f85a85622baabd90f5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyaragorn-0.1.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.1.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pyaragorn-0.1.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 1d10edfa2eb1e4fc4fb4bab3a106c075d5e88ade354c8650d2e1c0fe0187cf53
MD5 54af93c4cbe5198a3e716016c3eea228
BLAKE2b-256 88f892958ef705209189c897ff85505e40aa1c61c481a628101d2ff6a650c5a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyaragorn-0.1.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.1.0-pp38-pypy38_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pyaragorn-0.1.0-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 a29664aaa47c6fe99683b160603b20b213deb488ea12e19200be2ed98f2a7e6a
MD5 17b1d9af09eede3b744dd4cc313ade25
BLAKE2b-256 afdc69bd4f901484b2c495234d4462868b90bb02bba4a57d9179a850ce547a5e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyaragorn-0.1.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.1.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyaragorn-0.1.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c4ceaee41edfd856196b96f70dc4c9bcc858821f3d9e14d1bb5b05a25654eb28
MD5 d4b69f6c0f6aace3a2747e15f946656c
BLAKE2b-256 727602969f4cb79edf4eab6b4e00c9fc113db8e60b012cd7793e0d19a7b65812

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyaragorn-0.1.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.1.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyaragorn-0.1.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 830a575a558bb3a40d9d3c095848161edcd1e72874e56692206a84e6101aff52
MD5 8848a5292dae14ab63d37c2455c82bf1
BLAKE2b-256 5761916182d48f6ef584959548f238d671202cf531296108c448c3fe32925e63

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyaragorn-0.1.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.1.0-pp38-pypy38_pp73-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pyaragorn-0.1.0-pp38-pypy38_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c2f9cb1e65bb1624afec7def8bbd8c8208a672776a00f4a57e44ff17e285b6e9
MD5 bd00dce3e234601f3796d5ec3ffb888e
BLAKE2b-256 bc68e6afe59261c5c7c19519ffbe8e9afdb040f57e64e85d64185a363978ba6e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyaragorn-0.1.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.1.0-pp37-pypy37_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pyaragorn-0.1.0-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 cbe74fafcb303892f0eaaa60ec33a59faf97f2c24bd28ff18bab5e68970f8017
MD5 70e754cd34846a9ff202aed70584e17c
BLAKE2b-256 281073b1637c551faae2e8d45dd6e820ba4fc83cb002776d3fea0a2f8d714e29

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyaragorn-0.1.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.1.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyaragorn-0.1.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a1278818f063a854448c02d3bc2c6af9aacedec2a0e7b1ccfad0b0fc152321b2
MD5 c9f41919344e424630d8ede63199be58
BLAKE2b-256 5144473768da50bdf6d3b83ce05e9ea350b0c6a939a60243b4887052b2dce810

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyaragorn-0.1.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.1.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyaragorn-0.1.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b86cc66f52636687365987fe0a93ec3dd87500126927c708222cb24d38b9a9f8
MD5 23f6a283241d1cd3cc8fb2c3898de192
BLAKE2b-256 bb3cb8e5cf18d47ede8406fc14c7dc880ba1c8440a10fa674d961556fbb50fab

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyaragorn-0.1.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.1.0-pp37-pypy37_pp73-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pyaragorn-0.1.0-pp37-pypy37_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f14ecc64795f30be90728af596c868d9cfc5655554a45666365d5b46f54b0578
MD5 885d4312b8f12bc5b0eaf11e39020786
BLAKE2b-256 43d2de1b9e842d7fef817952a15dd80cac86c1025aa67610ba979ef63fc5f636

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyaragorn-0.1.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.1.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: pyaragorn-0.1.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 509.1 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.1.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 23f191837345b9e2b1e6f4686439ed9440b6830a9f9069c5284cf105761a2d7c
MD5 5ea2e69d2ff7c1318cbf0a4a3a0f02dd
BLAKE2b-256 789c084a036ace7a6838cccdd6a9271ab160cb349069e31ef7e189b44201761f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyaragorn-0.1.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.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyaragorn-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 88d964fdf858997d8eb8150facaa5524e1355954b3bb444571568e67b3889b3b
MD5 2ff374ce93a036b27f2a2251604f6976
BLAKE2b-256 eb1ddaf5dd9d91e3264bcfde02801c070c374bd4b0f408162eda43d40053d6a8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyaragorn-0.1.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.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyaragorn-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0a0070239fd2a656a0756f39ffe7c52fdd8d068b42fbe87d2c0a206050c0b118
MD5 20a694289b1d1a37581ddab5e2c4aa31
BLAKE2b-256 399b4f4473fa27c6da635849bab2b0adb2d9632e5ad26385a21d3af74f4be461

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyaragorn-0.1.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.1.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyaragorn-0.1.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a29f07cb9d576d6002d83c023a8f527d9170cb658be260cd64dc22fb136605d5
MD5 372060a455fbe8d1731652d3a9cfa7d6
BLAKE2b-256 1efa0f0caeffa1992cdf71aa85e0b761aec23704b0a163f1aa6f8390896a42f6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyaragorn-0.1.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.1.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pyaragorn-0.1.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 2cc4f8e8a2273fd088f00edd6659e3e04b5b8bf86c57adb43fba027f035f6645
MD5 4bf7809909473878f71161c72f264109
BLAKE2b-256 1315295d35bebda076264c2bd89202b81f3aafe112ed6260e1e64147b2a20074

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyaragorn-0.1.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.1.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: pyaragorn-0.1.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 507.5 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.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 7443787d26d13e8bae8125aa313bca0bd2dd514486d12a9f2b17ee2c3f925796
MD5 9bbbcd1abbc93df229d4a1717629f081
BLAKE2b-256 2b1422dbf73b92a639ee06ad0cb2c3c2d8bf38c373dc6938c954efeac39bb3aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyaragorn-0.1.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.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyaragorn-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 16e1d308033347b85a70509c4ef687e3ff507bdbe88eae2e239334c0eee338cd
MD5 6028044afc6a2c941fc96824729be2a8
BLAKE2b-256 fa2bfa0a1f93d5c0b55cd678e811323333dcbac8db0deaa2ad96238e692c1ffc

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyaragorn-0.1.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.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyaragorn-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 94b69b5377a368069c44d98f602c3a6d723cda978961a868b2915e9c46ba7d5e
MD5 95d15e09172bc96cbc2dc100367821fe
BLAKE2b-256 d9c03896a51b0abf431515c3a80afd6b468f136c658c8dd28af32bbf53cbedd9

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyaragorn-0.1.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.1.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyaragorn-0.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 eadcde194762899476eb2be26a52083564fa6ab48bcf54793c07a7720a1219ea
MD5 48b7a5545f8a61472527d913a4829003
BLAKE2b-256 9c6360e5f273f502e19b9255ee1a58643e87662ed2bd8eee4ea5db1e40862893

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyaragorn-0.1.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.1.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pyaragorn-0.1.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 0a0be8c7be50e970f135cb40dba3cda3121ee38fd5259a2a96e1e026411b7587
MD5 511d448314079aa766f042dcd0250d20
BLAKE2b-256 dcff717261da85854af694fe0272bb51d6d261547d53215d7a19f847fc96d5f5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyaragorn-0.1.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.1.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: pyaragorn-0.1.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 508.8 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.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b89a12f49b8f78c193b4cee28efe1874cacbac25c52bbc22097c972eb473ecf7
MD5 87364653f2a1d28d2464ab68fa6139f1
BLAKE2b-256 a802eb3b1f1dbafaa6ac80be9a9bf36c3e03ed3e201a1caf8817c39af6e1f208

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyaragorn-0.1.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.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyaragorn-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 713d742559942560be8817f4e60facbea6b6bf0b24a100db3b5565287cd36697
MD5 126c8710392d89e41175af0dfb4dd41c
BLAKE2b-256 01a7b1215774fa868af001156e10ac5e6f9f905a8e9202064fc362c36e5f1508

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyaragorn-0.1.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.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyaragorn-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 41ef2ed65944a194ba833a9e8338a99ef8800261ed1616a9560dd2e5707e275c
MD5 1778085b5c3fcf38a2d2cc3d176a056e
BLAKE2b-256 62715686bae7bf4ecaa77798691812fa7fa61c49dd411d64a647e7bee44bfb47

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyaragorn-0.1.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.1.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyaragorn-0.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6c21e8bec6612afca47e5f5e8f98286a41488451fc8c9adb0f34e8d82f526bd8
MD5 abf5326536059a4a2e5e5cf6ae23422c
BLAKE2b-256 c09b42cb7f611fbf0b2c10a7ea9fceefd08f7116220254ad758948a95fa1ed5c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyaragorn-0.1.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.1.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pyaragorn-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 349caaef1689c726e8743b45e7cb818aebfd58d61d685f41e523ff7b6dd1032f
MD5 029b4da0aead8acfe90f15f14f5bce79
BLAKE2b-256 b47ce3b6fa37cb34433ce3cf9549a254372b6ba107eb63204fb10956adc0b920

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyaragorn-0.1.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.1.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: pyaragorn-0.1.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 508.9 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.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b98e86160839f1c12530b1f82b96062c174dcc58931920ad37af8338a4f735e7
MD5 67e55da6c8c9e2553e5e75f620055eae
BLAKE2b-256 83801d32458c7c094460436c14cca8dd8dc01d3dc9a1fb8ae245ecd645be386d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyaragorn-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 27cf509e7d4c74a76cd5dacc60807401ff17d4545b7a7175a79eabf5bac20419
MD5 a0b85152c10f0b993a19ab184b3d9ab0
BLAKE2b-256 fef073bf6263fdaa3b7f69b4d7fff845c8e2a66f93f9a702717d2ec6c3f10661

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyaragorn-0.1.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.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyaragorn-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4659484be4d1e0b216a79ec74817291a80db23a771d83c8e552982645818bd58
MD5 07a2c9467e8a955788d3d21f1d002944
BLAKE2b-256 1449338aece4d66dc56439d30dfa7995dad0cd6bbdc9f3e6edc0fc61309c962c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyaragorn-0.1.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.1.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyaragorn-0.1.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 85d204009768c70b5e3006bc7a4f4b577ef650a8ab68ea53585f78f859f1c895
MD5 c8e2157694994d81b0af8dd74f42377b
BLAKE2b-256 8fde17c193bd3d9397fb3c6ec8bdb19f9742802a9978a4d8a682f1b0fc50e7d4

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyaragorn-0.1.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.1.0-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pyaragorn-0.1.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 264678e023a44987791abc6bcd8d5de98b81fdb957d89c7d8a624df1bcd7b82c
MD5 1f9265116fbbe0eabdd679bc3c382c8d
BLAKE2b-256 670d21d82817daeadb1455109de807a4812dc60b492fae21492a641481340e50

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyaragorn-0.1.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.1.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: pyaragorn-0.1.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 509.1 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.1.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 a236e7544b09d125b924b5c2c18e630eaed00c2841b805615ef2f1b1f9b64c5f
MD5 55789c1edbe052c7b7b68d11e49ddca9
BLAKE2b-256 7bf497739ee73e3f2dcfde61e010b58496a2d85f937c99acbaf6a050f3d8e8b0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyaragorn-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fe0032a91300d927808c83652593d5cfc2e6a8c9ec9e927a960fffe130585851
MD5 c653ef6d56bc0fbb8012815fdc3c1005
BLAKE2b-256 db570be7842ceff69c19a869afd2240d28f7fb2ff9d093383919042a09544a8a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyaragorn-0.1.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.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyaragorn-0.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0f9c907ce1428895a4320299cf850fbf4fd81e4e32cbf8fcf92abc6bce1e477b
MD5 a7cd864823da52221e2acf2a37d1e2a3
BLAKE2b-256 a0752c9e7f59cc490e0334dcd912de6789290bda2b747f97ae548738fe76cba5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyaragorn-0.1.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.1.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyaragorn-0.1.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f51af324320b9b79096120207aee8f43f9456a96d47a6fe38bf67918be42f32d
MD5 1beec551edc73cff80262f6fc8e8cc33
BLAKE2b-256 0970478ded43eacf01aeb486629c6eac639199eeb5dbea5b49a1d4a92fecce87

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyaragorn-0.1.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.1.0-cp39-cp39-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pyaragorn-0.1.0-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ca2d47df39f795ee6da4fd02f23165b02adb6075164d5d41d52f1175f5fcaad3
MD5 278d4214e92362392fae34ca9586cdaa
BLAKE2b-256 124553d57535e7542b33fe65aabbc63d978c8fbb11e1062a069502048d31ae79

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyaragorn-0.1.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.1.0-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: pyaragorn-0.1.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 509.6 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.1.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 f371f4d9f94e4f3e3a8bccff0b94c9964a3475a55d82e4864be0251fce37209b
MD5 d2df873debfeba7e94fa8f59dd715554
BLAKE2b-256 f7a82b80ffca8344499a1e99ac853b390f8b20851187679f699a3bafbd0c0b83

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyaragorn-0.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d41ad1edb4974661df243f27d658fc1c85fc9b8dfaf0917bd872c3cf5f62857b
MD5 bf76e3a37c1a088e1de84acdbfa9dc06
BLAKE2b-256 713f35565f37579e55f8615bd0fa1c32e8e039065aab53a2ea70fa12d482e3ee

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyaragorn-0.1.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.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyaragorn-0.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f27a8c0db6e6d350c197e5c2337cd67a4b4a80b3bfcc1519003055744b8cb023
MD5 340b1d4b2cee38c4674170b7e1e9578b
BLAKE2b-256 cde266ed6c1a1ab62d4e80ab37a6b692d0d35d36eeca2eda3e126b1125639120

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyaragorn-0.1.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.1.0-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyaragorn-0.1.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c010c3defb536faedc30aacc43de9db9b9316063bc905703357c719d4c02a9f5
MD5 ef97e5f660bd8fd4bc60292f333242f8
BLAKE2b-256 06045c8a1a83007f46eca3a0855eb2c3b9d9d044f9922246a752eb7c62849dc3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyaragorn-0.1.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.1.0-cp38-cp38-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pyaragorn-0.1.0-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 004b144c75c8b5ab42b062ae0326a3be40b4881b89c1852139915d3d9986a586
MD5 e8f6759e372093a67895970843541b2e
BLAKE2b-256 1effd52443957ef9f4b6d9fcdec7bad5e1f3053dbf07c320cab2ac3158e5bea5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyaragorn-0.1.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.1.0-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: pyaragorn-0.1.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 508.6 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.1.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 4a9a4527991798024b16b0ecc27ca69c76f573909a3f7df2cbf56858647e81d2
MD5 e63be1c7b106d8b392d010f08f8e74e0
BLAKE2b-256 bd94a47026d9e727780a08b163bd61a03547af757e13da9934ca03a6057026c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyaragorn-0.1.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.1.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyaragorn-0.1.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 97594f5b01d3b03724009d933e1e7341f659e376f26a2d8d63da72cec86b9670
MD5 0e6c9c9ccd0f39c762e79a17097d4389
BLAKE2b-256 0519bc5c7823bb5ffc8681cf9d5f42c85929a181b18b4d1e5555cd73f785af32

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyaragorn-0.1.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.1.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyaragorn-0.1.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 452531bc83590703b5c00d26fcb6d948ee6676eb4ee80f3013e9eeb30b3c2cb0
MD5 4c0913ae4e08ded2eb40d763a60555cc
BLAKE2b-256 d2b1088df1fcb756a263b38f609e7b8f788a49e3ca2cd0544a622c7eaf5f5ef2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyaragorn-0.1.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.1.0-cp37-cp37m-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pyaragorn-0.1.0-cp37-cp37m-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2945809b1992caf242902c2793a40f7de8ff67fc6517cda4e46e17a2e2e63663
MD5 327600e9d815d8d1a3876142a8a8dbab
BLAKE2b-256 1b03d0a705e6035eb831463a6927f490856ce81e980e67496f473c4841f99963

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyaragorn-0.1.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