Skip to main content

Cython bindings and Python interface to Prodigal, an ORF finder for genomes and metagenomes.

Project description

🔥 Pyrodigal Stars

Cython bindings and Python interface to Prodigal, an ORF finder for genomes and metagenomes. Now with SIMD!

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

🗺️ Overview

Pyrodigal is a Python module that provides bindings to Prodigal using Cython. It directly interacts with the Prodigal internals, which has the following advantages:

  • single dependency: Pyrodigal is distributed as a Python package, so you can add it as a dependency to your project, and stop worrying about the Prodigal 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 Prodigal CLI using a sub-process and temporary files. Sequences can be passed directly as strings or bytes, which avoids the overhead of formatting your input to FASTA for Prodigal.
  • better memory usage: Pyrodigal uses more compact data structures compared to the original Prodigal implementation, allowing to save memory to store the same information. A heuristic is used to estimate the number of nodes to allocate based on the sequence GC% in order to minimize reallocations.
  • better performance: Pyrodigal uses SIMD instructions to compute which dynamic programming nodes can be ignored when scoring connections. This can save from a third to half the runtime depending on the sequence. The Benchmarks page of the documentation contains comprehensive comparisons. See the JOSS paper for details about how this is achieved.
  • same results: Pyrodigal is tested to make sure it produces exactly the same results as Prodigal v2.6.3+31b300a. This was verified extensively by Julian Hahnfeld and can be checked with his comparison repository.

📋 Features

The library now features everything from the original Prodigal CLI:

  • run mode selection: Choose between single mode, using a training sequence to count nucleotide hexamers, or metagenomic mode, using pre-trained data from different organisms (prodigal -p).
  • region masking: Prevent genes from being predicted across regions containing unknown nucleotides (prodigal -m).
  • closed ends: Genes will be identified as running over edges if they are larger than a certain size, but this can be disabled (prodigal -c).
  • training configuration: During the training process, a custom translation table can be given (prodigal -g), and the Shine-Dalgarno motif search can be forcefully bypassed (prodigal -n)
  • output files: Output files can be written in a format mostly compatible with the Prodigal binary, including the protein translations in FASTA format (prodigal -a), the gene sequences in FASTA format (prodigal -d), or the potential gene scores in tabular format (prodigal -s).
  • training data persistence: Getting training data from a sequence and using it for other sequences is supported; in addition, a training data file can be saved and loaded transparently (prodigal -t).

In addition, the new features are available:

  • custom gene size threshold: While Prodigal uses a minimum gene size of 90 nucleotides (60 if on edge), Pyrodigal allows to customize this threshold, allowing for smaller ORFs to be identified if needed.
  • custom metagenomic models: Since v3.0.0, you can use your own metagenomic models to run Pyrodigal in meta-mode. Check for instance pyrodigal-gv, which provides additional models for giant viruses and gut phages.

🐏 Memory

Pyrodigal makes several changes compared to the original Prodigal binary regarding memory management:

  • Sequences are stored as raw bytes instead of compressed bitmaps. This means that the sequence itself takes 3/8th more space, but since the memory used for storing the sequence is often negligible compared to the memory used to store dynamic programming nodes, this is an acceptable trade-off for better performance when extracting said nodes.
  • Node fields use smaller data types to fit into 128 bytes, compared to the 176 bytes of the original Prodigal data structure.
  • Node arrays are pre-allocated based on the sequence GC% to extrapolate the probability to find a start or stop codon.
  • Genes are stored in a more compact data structure than in Prodigal (which reserves a buffer to store string data), saving around 1KiB per gene.

🧶 Thread-safety

pyrodigal.GeneFinder instances are thread-safe. In addition, the find_genes method is re-entrant. This means you can train an GeneFinder instance once, and then use a pool to process sequences in parallel:

import multiprocessing.pool
import pyrodigal

gene_finder = pyrodigal.GeneFinder()
gene_finder.train(training_sequence)

with multiprocessing.pool.ThreadPool() as pool:
    predictions = pool.map(orf_finder.find_genes, sequences)

🔧 Installing

This project is supported on Python 3.7 and later.

Pyrodigal 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 pyrodigal

Otherwise, Pyrodigal is also available as a Bioconda package:

$ conda install -c bioconda pyrodigal

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

💡 Example

Let's load a sequence from a GenBank file, use an GeneFinder to find all the genes it contains, and print the proteins in two-line FASTA format.

🔬 Biopython

To use the GeneFinder in single mode (corresponding to prodigal -p single, the default operation mode of Prodigal), you must explicitly call the train method with the sequence you want to use for training before trying to find genes, or you will get a RuntimeError:

import Bio.SeqIO
import pyrodigal

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

orf_finder = pyrodigal.GeneFinder()
orf_finder.train(bytes(record.seq))
genes = orf_finder.find_genes(bytes(record.seq))

However, in meta mode (corresponding to prodigal -p meta), you can find genes directly:

import Bio.SeqIO
import pyrodigal

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

orf_finder = pyrodigal.GeneFinder(meta=True)
for i, pred in enumerate(orf_finder.find_genes(bytes(record.seq))):
    print(f">{record.id}_{i+1}")
    print(pred.translate())

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

🧪 Scikit-bio

import skbio.io
import pyrodigal

seq = next(skbio.io.read("sequence.gbk", "genbank"))

orf_finder = pyrodigal.GeneFinder(meta=True)
for i, pred in enumerate(orf_finder.find_genes(seq.values.view('B'))):
    print(f">{record.id}_{i+1}")
    print(pred.translate())

We need to use the view method to get the sequence viewable by Cython as an array of unsigned char.

🔖 Citation

Pyrodigal is scientific software, with a published paper in the Journal of Open-Source Software. Please cite both Pyrodigal and Prodigal if you are using it in an academic work, for instance as:

Pyrodigal (Larralde, 2022), a Python library binding to Prodigal (Hyatt et al., 2010).

Detailed references are available on the Publications page of the online documentation.

💭 Feedback

⚠️ Issue Tracker

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

🏗️ Contributing

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

📋 Changelog

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

⚖️ License

This library is provided under the GNU General Public License v3.0. The Prodigal code was written by Doug Hyatt and is distributed under the terms of the GPLv3 as well. See vendor/Prodigal/LICENSE for more information.

This project is in no way not affiliated, sponsored, or otherwise endorsed by the original Prodigal authors. It was developed by Martin Larralde during his PhD project at the European Molecular Biology Laboratory in the Zeller team.

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

pyrodigal-3.6.3.tar.gz (3.6 MB view details)

Uploaded Source

Built Distributions

pyrodigal-3.6.3-pp310-pypy310_pp73-win_amd64.whl (3.3 MB view details)

Uploaded PyPy Windows x86-64

pyrodigal-3.6.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.9 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

pyrodigal-3.6.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.9 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

pyrodigal-3.6.3-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (2.9 MB view details)

Uploaded PyPy macOS 10.15+ x86-64

pyrodigal-3.6.3-pp39-pypy39_pp73-win_amd64.whl (3.3 MB view details)

Uploaded PyPy Windows x86-64

pyrodigal-3.6.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.9 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

pyrodigal-3.6.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.9 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

pyrodigal-3.6.3-pp39-pypy39_pp73-macosx_10_15_x86_64.whl (2.9 MB view details)

Uploaded PyPy macOS 10.15+ x86-64

pyrodigal-3.6.3-pp38-pypy38_pp73-win_amd64.whl (3.3 MB view details)

Uploaded PyPy Windows x86-64

pyrodigal-3.6.3-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.9 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

pyrodigal-3.6.3-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.9 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

pyrodigal-3.6.3-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (2.9 MB view details)

Uploaded PyPy macOS 10.9+ x86-64

pyrodigal-3.6.3-pp37-pypy37_pp73-win_amd64.whl (3.3 MB view details)

Uploaded PyPy Windows x86-64

pyrodigal-3.6.3-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.9 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

pyrodigal-3.6.3-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.9 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

pyrodigal-3.6.3-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (2.9 MB view details)

Uploaded PyPy macOS 10.9+ x86-64

pyrodigal-3.6.3-cp313-cp313-win_amd64.whl (3.3 MB view details)

Uploaded CPython 3.13 Windows x86-64

pyrodigal-3.6.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

pyrodigal-3.6.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

pyrodigal-3.6.3-cp313-cp313-macosx_11_0_arm64.whl (2.9 MB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

pyrodigal-3.6.3-cp313-cp313-macosx_10_13_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.13 macOS 10.13+ x86-64

pyrodigal-3.6.3-cp312-cp312-win_amd64.whl (3.3 MB view details)

Uploaded CPython 3.12 Windows x86-64

pyrodigal-3.6.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

pyrodigal-3.6.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

pyrodigal-3.6.3-cp312-cp312-macosx_11_0_arm64.whl (2.9 MB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

pyrodigal-3.6.3-cp312-cp312-macosx_10_13_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.12 macOS 10.13+ x86-64

pyrodigal-3.6.3-cp311-cp311-win_amd64.whl (3.3 MB view details)

Uploaded CPython 3.11 Windows x86-64

pyrodigal-3.6.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

pyrodigal-3.6.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

pyrodigal-3.6.3-cp311-cp311-macosx_11_0_arm64.whl (2.9 MB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

pyrodigal-3.6.3-cp311-cp311-macosx_10_9_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

pyrodigal-3.6.3-cp310-cp310-win_amd64.whl (3.3 MB view details)

Uploaded CPython 3.10 Windows x86-64

pyrodigal-3.6.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

pyrodigal-3.6.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

pyrodigal-3.6.3-cp310-cp310-macosx_11_0_arm64.whl (2.9 MB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

pyrodigal-3.6.3-cp310-cp310-macosx_10_9_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

pyrodigal-3.6.3-cp39-cp39-win_amd64.whl (3.3 MB view details)

Uploaded CPython 3.9 Windows x86-64

pyrodigal-3.6.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

pyrodigal-3.6.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

pyrodigal-3.6.3-cp39-cp39-macosx_11_0_arm64.whl (2.9 MB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

pyrodigal-3.6.3-cp39-cp39-macosx_10_9_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

pyrodigal-3.6.3-cp38-cp38-win_amd64.whl (3.3 MB view details)

Uploaded CPython 3.8 Windows x86-64

pyrodigal-3.6.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

pyrodigal-3.6.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

pyrodigal-3.6.3-cp38-cp38-macosx_11_0_arm64.whl (2.9 MB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

pyrodigal-3.6.3-cp38-cp38-macosx_10_9_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

pyrodigal-3.6.3-cp37-cp37m-win_amd64.whl (3.3 MB view details)

Uploaded CPython 3.7m Windows x86-64

pyrodigal-3.6.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

pyrodigal-3.6.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

pyrodigal-3.6.3-cp37-cp37m-macosx_10_9_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

File details

Details for the file pyrodigal-3.6.3.tar.gz.

File metadata

  • Download URL: pyrodigal-3.6.3.tar.gz
  • Upload date:
  • Size: 3.6 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for pyrodigal-3.6.3.tar.gz
Algorithm Hash digest
SHA256 3e226f743c960d4d30c46ae6868aff7e2a6b98f8d837cfbd2637568569b21f78
MD5 5579f5660250b9ae460e0407233acab6
BLAKE2b-256 4e54990aba3e7a81191ce8f5aad802dac0697dbc8d83061ae69216ab7429bc6f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrodigal-3.6.3.tar.gz:

Publisher: package.yml on althonos/pyrodigal

Attestations:

File details

Details for the file pyrodigal-3.6.3-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pyrodigal-3.6.3-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 b8d838cac318bb497f7938054caefd670e58847ffabfaee7fcdb8d74725f0e30
MD5 a70814a2f166dd800844fe077e539f34
BLAKE2b-256 1139a33a18202ab29337e3b4082d97f0b526f161aefc03e9eae1293ec4c71259

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrodigal-3.6.3-pp310-pypy310_pp73-win_amd64.whl:

Publisher: package.yml on althonos/pyrodigal

Attestations:

File details

Details for the file pyrodigal-3.6.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyrodigal-3.6.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f1a3812573392b4d0a88fe8933b31f96c2e8b7f1cfe06224a4881b61a6368c44
MD5 b079d4bd86f8ca119d9c79f3ee92f36f
BLAKE2b-256 d1270b07a2433b4a4febe4ff38e1abaa2539c34b2d4dbad8412a78dec23b9f97

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrodigal-3.6.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: package.yml on althonos/pyrodigal

Attestations:

File details

Details for the file pyrodigal-3.6.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyrodigal-3.6.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b4989456f643792fca4773bb179e21c80627a624fd44fbf88b03216c523e54d4
MD5 14251ad606be91f7a2372dda7dfecddb
BLAKE2b-256 9ff90c77bbddf2393f97abc5508ea8833c24c939fddba6d24d8d501981f88872

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrodigal-3.6.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: package.yml on althonos/pyrodigal

Attestations:

File details

Details for the file pyrodigal-3.6.3-pp310-pypy310_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pyrodigal-3.6.3-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 35ab6d34a9a8f0a81002fb99261bc8c8d97df8e64685f3946a383d41e256d8a4
MD5 d2f6b2a9f877b163d9065a045b7bbe13
BLAKE2b-256 8b1d4b988ac5dfc6f21ac2b14b49ff3c58825007e6917ceabdf3ba2608d026ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrodigal-3.6.3-pp310-pypy310_pp73-macosx_10_15_x86_64.whl:

Publisher: package.yml on althonos/pyrodigal

Attestations:

File details

Details for the file pyrodigal-3.6.3-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pyrodigal-3.6.3-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 bc132de4302401ffc6b4c8e57865ccee40c1fea19b2a20f83f5681c88d4a1bcb
MD5 60f4a6604534c8e027c51818c3612e08
BLAKE2b-256 662d93baa670a4e9c5766f3edea10d2a9e30fd4e30ee9c3ba82cfa899ee4b5c4

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrodigal-3.6.3-pp39-pypy39_pp73-win_amd64.whl:

Publisher: package.yml on althonos/pyrodigal

Attestations:

File details

Details for the file pyrodigal-3.6.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyrodigal-3.6.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 28392a0bf7c9ce3d1046f089c72a3031ad8845675bca7d38d9a64c30cbc2aa2f
MD5 19e603b791c8634cf2867b79d5e3a273
BLAKE2b-256 08811b858ed8515a797139cd94df937d2af75396528e5bfaf8ec10850fd6053a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrodigal-3.6.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: package.yml on althonos/pyrodigal

Attestations:

File details

Details for the file pyrodigal-3.6.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyrodigal-3.6.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7759483ee9f1acceee2720edc7c56d3befe67f9e586bd66f241ea7d9c09d55c3
MD5 bfc488aed7ed398a4ff53921215c9276
BLAKE2b-256 22492d1b8b780e6cfc5052a6694f84cae208111475e0544b7afd22bf348083df

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrodigal-3.6.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: package.yml on althonos/pyrodigal

Attestations:

File details

Details for the file pyrodigal-3.6.3-pp39-pypy39_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pyrodigal-3.6.3-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 ed8b67276158caf4b9e641e66d166a5bb72a962ee1956e30871001eca84f1592
MD5 0385db3eff1f4f670f9c3317831beaeb
BLAKE2b-256 512a080700e1287c801e0dd71211dc9c226d114663cb0fa11d6c0b5b79705d2a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrodigal-3.6.3-pp39-pypy39_pp73-macosx_10_15_x86_64.whl:

Publisher: package.yml on althonos/pyrodigal

Attestations:

File details

Details for the file pyrodigal-3.6.3-pp38-pypy38_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pyrodigal-3.6.3-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 2523d4938408de524d00a8678a6d40078b805f8c396af1868c6a4c794dffdc3b
MD5 41ba458f51239dad4d3520bc6b0c5c7d
BLAKE2b-256 4dc9083ddd75ee39f567ed3ec84c172cc8e6877f3e684418d2c7b48e15c0cdf7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrodigal-3.6.3-pp38-pypy38_pp73-win_amd64.whl:

Publisher: package.yml on althonos/pyrodigal

Attestations:

File details

Details for the file pyrodigal-3.6.3-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyrodigal-3.6.3-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e8502b452dd6241401bd4162e5625ed47a7712a3a3020d32ae623e35e51ca4ad
MD5 4416676c47adc58e54dd5619eeb1f79a
BLAKE2b-256 3d64c80b7e628d0f54bccf8631a5e4d55dcbb61cb09d3e7382fbd88916b25e43

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrodigal-3.6.3-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: package.yml on althonos/pyrodigal

Attestations:

File details

Details for the file pyrodigal-3.6.3-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyrodigal-3.6.3-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 561ac498ed862b4760b35b7df34b9572741f9e8f56859afb281c38f46cd1e3bf
MD5 8d407776a2fea54170d1a44ab3cb27ce
BLAKE2b-256 5f9299ee89da5cec8d2ad4ba39758f5936dfb01e0a00a41c03d67628caef2ed0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrodigal-3.6.3-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: package.yml on althonos/pyrodigal

Attestations:

File details

Details for the file pyrodigal-3.6.3-pp38-pypy38_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyrodigal-3.6.3-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 81be7c0218cb2e9ee788f2031e52341e7412df26357c8c7bdd7a7baf30db7a7d
MD5 c2bd2a0251b42225bcc87f88ce38d61f
BLAKE2b-256 6b4293bd11755f8df8dd7f1afaf4f602269c90ff913c3ff4729d07b4e6a4c376

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrodigal-3.6.3-pp38-pypy38_pp73-macosx_10_9_x86_64.whl:

Publisher: package.yml on althonos/pyrodigal

Attestations:

File details

Details for the file pyrodigal-3.6.3-pp37-pypy37_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pyrodigal-3.6.3-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 0b30168d6c6edfc6ea4e25c08ab4c148b58a370a9cf64ba8ca635095f21b7145
MD5 003745d6f2c71815e9677145814da2bd
BLAKE2b-256 ce78b15e79add380b42f56ebb49419e5197ecd812e99c8dc73cb9d484336ecaf

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrodigal-3.6.3-pp37-pypy37_pp73-win_amd64.whl:

Publisher: package.yml on althonos/pyrodigal

Attestations:

File details

Details for the file pyrodigal-3.6.3-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyrodigal-3.6.3-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c69c36ec8f5aec9bc915c53394e8f6da1e03d1ca314b62d4a584d2816de16468
MD5 4f056c46b5a38c5a32a821f496e82590
BLAKE2b-256 3d2d1bc40d4e7d6469f3fd4dddad3e5bbcb8a33ca970aea5a4eee6a4cd01b6cd

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrodigal-3.6.3-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: package.yml on althonos/pyrodigal

Attestations:

File details

Details for the file pyrodigal-3.6.3-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyrodigal-3.6.3-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f162a2f85da44465ebb3e1c3d38a8f96837e8458ff8d66898abd80580f1376be
MD5 313afebb2ff5c18760a2108a61066d15
BLAKE2b-256 6d50e0bb14ad673ccf639c942ac7f5bd524c71f8d1b413ac783d51c238c7ebca

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrodigal-3.6.3-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: package.yml on althonos/pyrodigal

Attestations:

File details

Details for the file pyrodigal-3.6.3-pp37-pypy37_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyrodigal-3.6.3-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1b85c704453564a6c57a09decfb6eb33a08b0d2e362504af1952cd390a26bc35
MD5 71d43c82a905edbc9eb6e56d93167348
BLAKE2b-256 67bb4a11459167a274b3a16760ceade0ccf0da5c82ea433bd038cc317107166f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrodigal-3.6.3-pp37-pypy37_pp73-macosx_10_9_x86_64.whl:

Publisher: package.yml on althonos/pyrodigal

Attestations:

File details

Details for the file pyrodigal-3.6.3-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for pyrodigal-3.6.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 baba073bbfe0f029e91b0f08a39c4e1a66a794a77a9803b65139d97de308c0d3
MD5 810031104b243b7061eea2f3316e91de
BLAKE2b-256 ca488c1a8e17cbb57cb698b76fcf96306f6902ecf1963c3b6376588174c0205d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrodigal-3.6.3-cp313-cp313-win_amd64.whl:

Publisher: package.yml on althonos/pyrodigal

Attestations:

File details

Details for the file pyrodigal-3.6.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyrodigal-3.6.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 83cf768f9dd852a0c5ac65c9968737d55657555c5e7f8ecc4562c1538be274e1
MD5 8df99a3235e4e8e860e0a2349950ed4d
BLAKE2b-256 a9211f55ae8089081f46f09ffac820d7c9a0cbe4f69d2f37d6775740dc1fe431

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrodigal-3.6.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: package.yml on althonos/pyrodigal

Attestations:

File details

Details for the file pyrodigal-3.6.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyrodigal-3.6.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 02a93d97855979d9bebba001e1057b7b0710dcdf7beebdf3086727f563ad3237
MD5 a461b6482c8bba3259298b656a682390
BLAKE2b-256 93aea7cab37a25ee9e1c4dcda3d4ff57b48e04bfadc411ec3a78510cf02ba68c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrodigal-3.6.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: package.yml on althonos/pyrodigal

Attestations:

File details

Details for the file pyrodigal-3.6.3-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyrodigal-3.6.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b8f4dc8da087196a531bb7b93ef81a5c48eae576a58758f95cec8c9b6775ee8a
MD5 476975df7fb64a5194efeedf0cf3d33a
BLAKE2b-256 cd6505e1a33a149393e4e01ea3331998970f16aecec8d3b18a82a98f668833b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrodigal-3.6.3-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: package.yml on althonos/pyrodigal

Attestations:

File details

Details for the file pyrodigal-3.6.3-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pyrodigal-3.6.3-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 7d51ccd9d123fa2e09badc17f7cb62b7ecc1eccf8135c7fdcc9b01b38b4c56fd
MD5 2bda5bbdf738c75e335aaf11715d39ad
BLAKE2b-256 da57ace241583b3df1e89615d376947163cc5143c766106b409ba4365b4837f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrodigal-3.6.3-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: package.yml on althonos/pyrodigal

Attestations:

File details

Details for the file pyrodigal-3.6.3-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for pyrodigal-3.6.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 6b6adc7c7a448040ae539df9ed8a91d5d36bb4d44a009b3c4a1168399555fb1e
MD5 aebca48a4ae23d385d68dc265f90c193
BLAKE2b-256 3dfb455221f9c0d03af980749cc56ee13772fb097c8ac64153b0892552ee5365

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrodigal-3.6.3-cp312-cp312-win_amd64.whl:

Publisher: package.yml on althonos/pyrodigal

Attestations:

File details

Details for the file pyrodigal-3.6.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyrodigal-3.6.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1c9243987039885b0754d89df57c1a9c08a1246174794d1227f3135c98c43daa
MD5 0a58ba288b0607b18f7bbc5cbbb31e5c
BLAKE2b-256 776a838d5baa62bf1232b5fd4e7dfd9a2c3d87ca6a19560e59405f18b692e4c5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrodigal-3.6.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: package.yml on althonos/pyrodigal

Attestations:

File details

Details for the file pyrodigal-3.6.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyrodigal-3.6.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9376f36425f7d78f9a1e93d36d9f33f4ec6459e5fd16378ff836cf4e8deb680c
MD5 61db7d2384cc481ef9dcae138650a87f
BLAKE2b-256 0cc44c64cfa4ec041e2b737ab0aea88f72df0b63f2dfcd485eb5dbe82fc29abe

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrodigal-3.6.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: package.yml on althonos/pyrodigal

Attestations:

File details

Details for the file pyrodigal-3.6.3-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyrodigal-3.6.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1555672b711718ae1376462abc1070c74649e2a976e95d5d035c31353a276dcf
MD5 1f2cc100926904f15058779ed75895b9
BLAKE2b-256 b5a1e02707e59da27be61cdf2897320b7fb3b278ac4e60328dd7092fc9ac821e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrodigal-3.6.3-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: package.yml on althonos/pyrodigal

Attestations:

File details

Details for the file pyrodigal-3.6.3-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pyrodigal-3.6.3-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 456004a174e35af4c9f2bebdacadeef56cf51dfbe79337388c653f6ad3edde06
MD5 69dde9876c64819185fc8c51777dd894
BLAKE2b-256 c5a08c1f5a4c380178483cc7b39106727c74ba1c14a2ba03eaf34ea682a9be7f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrodigal-3.6.3-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: package.yml on althonos/pyrodigal

Attestations:

File details

Details for the file pyrodigal-3.6.3-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for pyrodigal-3.6.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 1cc05bf82af85292c4ae90816fb61f4b2254172e7e82616dffbb5ba900489092
MD5 264682649918d3474d6213155a69ff56
BLAKE2b-256 b9365cfeeb9acd87fc19d97028115b529ce8953c2ee948d6db377e443ac5c221

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrodigal-3.6.3-cp311-cp311-win_amd64.whl:

Publisher: package.yml on althonos/pyrodigal

Attestations:

File details

Details for the file pyrodigal-3.6.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyrodigal-3.6.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e9f2f2aa99299971d52e8e097d2fe3059a6bfc1d42674cfcba2b7ec18e8df8ea
MD5 c8edf75c215648824fd373ee95f7132b
BLAKE2b-256 11f9d9acb1e8bdd75327d70829b7bd32da65c0db82a9ee2bfe4914780de4c289

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrodigal-3.6.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: package.yml on althonos/pyrodigal

Attestations:

File details

Details for the file pyrodigal-3.6.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyrodigal-3.6.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fab1e5a7c3c5d4a9e1177a610ed41f573c0eab73ae50879136d9c28713cbb984
MD5 679e96a5bfb4f291f803c4ae298a8702
BLAKE2b-256 0c9c2314b0231437b04484a31c629ad4e3f99102c0a7cebbb88798e1a8526c71

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrodigal-3.6.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: package.yml on althonos/pyrodigal

Attestations:

File details

Details for the file pyrodigal-3.6.3-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyrodigal-3.6.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 22d0467f76f2581b0a7328c0c75472ba4255a47ca901cf1304f7c4bd6ae32523
MD5 82f4a420c22ad5462bf30e251072bd9e
BLAKE2b-256 56652e1c40121376443f37bcfc5c27c8cfb84136ab438949627050f0673e2408

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrodigal-3.6.3-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: package.yml on althonos/pyrodigal

Attestations:

File details

Details for the file pyrodigal-3.6.3-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyrodigal-3.6.3-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 23e4afaa4fdd8d0a0741f3137715caa1c9aefd04ce336e93a06619f457827e54
MD5 2e7c85c85daacbe333a4aad22c0f1c06
BLAKE2b-256 93a8cdd8040b1ada7bf8b570a98e1a4047d3971704fe47407d79dea6d1c87f70

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrodigal-3.6.3-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: package.yml on althonos/pyrodigal

Attestations:

File details

Details for the file pyrodigal-3.6.3-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for pyrodigal-3.6.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 bd62e1133e5f25f62dc87a0efa0ce2bf46b8aa8634896e1bfeeeb3f8a98cb292
MD5 f96e7b7e41f5aab39da1273cc279a937
BLAKE2b-256 31a8c113c99ee270d9d59dd7c5e82afb10dc7ccdb9099a3fc1b971a711d6c7e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrodigal-3.6.3-cp310-cp310-win_amd64.whl:

Publisher: package.yml on althonos/pyrodigal

Attestations:

File details

Details for the file pyrodigal-3.6.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyrodigal-3.6.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 16b456cfeeece9c8608da2ea615ae1be6b1ab6271e189967fdc39a3e0600bdf2
MD5 200f3537380fdb8b8055bd0256181e76
BLAKE2b-256 9675cdfa23616237710153b37e6258e4666080a70b44151292110e2027d65192

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrodigal-3.6.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: package.yml on althonos/pyrodigal

Attestations:

File details

Details for the file pyrodigal-3.6.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyrodigal-3.6.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 87bb40391f7470a1e9a24456efec8f5ca0fce325523c7a07f58270993c06a219
MD5 257d3016499d770621c29fc56c21c151
BLAKE2b-256 4bd9a428072aa15f32464480a2a73ca5eff6fbb9473c15d07627c5a4c72c9316

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrodigal-3.6.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: package.yml on althonos/pyrodigal

Attestations:

File details

Details for the file pyrodigal-3.6.3-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyrodigal-3.6.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 db7301ecfe935c2f69db246eff284b1989201aa754c46fdaa7a37e66abed2ba6
MD5 fafa6f6094ab868d91007dbf445cfdfb
BLAKE2b-256 b6e012389b247537a2837162596395a5a5408f86b11160592ba1245e6b838059

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrodigal-3.6.3-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: package.yml on althonos/pyrodigal

Attestations:

File details

Details for the file pyrodigal-3.6.3-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyrodigal-3.6.3-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0f87604ac1ab048d156cbb39625e85929479ced6cd4af370f8abbe1c5c4540d0
MD5 8bbec209e3668ac94e27be65f378d5c4
BLAKE2b-256 3beda35286aba1ae047101f587f1c16cba928640ce9cd6d41cee049bab7b337f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrodigal-3.6.3-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: package.yml on althonos/pyrodigal

Attestations:

File details

Details for the file pyrodigal-3.6.3-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: pyrodigal-3.6.3-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for pyrodigal-3.6.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 5386337bde073c5eb0ec5f48f8830c5326fe3e0f4c4a83f0ccf0ce082c34e830
MD5 14999275e7cceca9bb247148c7a37f58
BLAKE2b-256 2fbd1bbeca37082b7809398846651b1c545cd409fb8507dfaf547ab924795d77

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrodigal-3.6.3-cp39-cp39-win_amd64.whl:

Publisher: package.yml on althonos/pyrodigal

Attestations:

File details

Details for the file pyrodigal-3.6.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyrodigal-3.6.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e1d08c345bd70cbfb7219ef5dbd2ba796d284458695ea4a54e85a6cc0c450853
MD5 ce01c13c5f1ad9cd623a35d84f5e0e0e
BLAKE2b-256 71180b7dfb1ca318b259804a826ebf7f928acf15807a17ce39646770978278ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrodigal-3.6.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: package.yml on althonos/pyrodigal

Attestations:

File details

Details for the file pyrodigal-3.6.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyrodigal-3.6.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 16fd708898135fa8470ba3a863ed10c64ca707bc778ecf931ebdb7e221d3a1f1
MD5 5279cc30aecce21f4dd295daf2d52a69
BLAKE2b-256 3adb48ce29f3ded6a9ea3ba89d363772f0b9e393462ea114017acacfa33dabe1

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrodigal-3.6.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: package.yml on althonos/pyrodigal

Attestations:

File details

Details for the file pyrodigal-3.6.3-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyrodigal-3.6.3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1d3b7bea28bd55273ae855ed52e3f54e5033d579c5cac78f8c2fd253dc80d4fd
MD5 cffe895d7d208512b8ab58c9cb1e4690
BLAKE2b-256 75b9f6da2307f070edfc7b242852991f31e3318983a9015eae15c345e7a894c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrodigal-3.6.3-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: package.yml on althonos/pyrodigal

Attestations:

File details

Details for the file pyrodigal-3.6.3-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyrodigal-3.6.3-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 39b10b36a26a650a25ee157554ba0e2b24a92c9b9e34fca0a653eb4dc56666e1
MD5 350db8deffa053d4eeaea24e28e3b5f8
BLAKE2b-256 8ba593474e50ef1d5482293cc6d4f5aed45afa8dbcc18f7e67dbd4a03b326bda

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrodigal-3.6.3-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: package.yml on althonos/pyrodigal

Attestations:

File details

Details for the file pyrodigal-3.6.3-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: pyrodigal-3.6.3-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for pyrodigal-3.6.3-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 9cf124bdb8db28c5b531b885c6bddf90b0c2a0df1709469151406a28aac3bb7f
MD5 d701787218daaa54ff56819a90fad98f
BLAKE2b-256 0cebf55cd9080790676dc5a67fb9d1b1597e3923e113f04f80536b99fc3b741f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrodigal-3.6.3-cp38-cp38-win_amd64.whl:

Publisher: package.yml on althonos/pyrodigal

Attestations:

File details

Details for the file pyrodigal-3.6.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyrodigal-3.6.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 84bc5503172189cd1b247188bd586b8b85a35abcceedfc67edfca16e89fdc8d7
MD5 ed832771d47c993beb1450d414d5fb0a
BLAKE2b-256 737cce6ebbfa9f2f42aa2af0457516a1375fdc527c33e981495b6bc902c433bc

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrodigal-3.6.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: package.yml on althonos/pyrodigal

Attestations:

File details

Details for the file pyrodigal-3.6.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyrodigal-3.6.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 810d15ab230a79c272b14b9de17387ebddb96a1e7ad9b861926a344b1ecdf47a
MD5 9ebc08bdd83dd3ec2631df730999c64a
BLAKE2b-256 006d55e83d088580c05c59d33a81b800550622f50242b8b4b0965c73081f4f42

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrodigal-3.6.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: package.yml on althonos/pyrodigal

Attestations:

File details

Details for the file pyrodigal-3.6.3-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyrodigal-3.6.3-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e4249a3e528859bca79a64259603d847c5808f02fe61524c0af114da2108c4db
MD5 7d6aed125561247fda2a7d46364fc3dd
BLAKE2b-256 9da89c0275db745bda49a75d40cbc1fd13a371b0ffeac7e4cb40cdf197b1251b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrodigal-3.6.3-cp38-cp38-macosx_11_0_arm64.whl:

Publisher: package.yml on althonos/pyrodigal

Attestations:

File details

Details for the file pyrodigal-3.6.3-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyrodigal-3.6.3-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e6174aa84b42f91d0d14347eead198b3a089f2f4807086fc453e2a32a23b056b
MD5 4bcd61c93be610997db3cf97741a6817
BLAKE2b-256 2f9ac107c5346c9663aef0dc6dca996118e1a1039c45fe125b5b91aa02dd196c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrodigal-3.6.3-cp38-cp38-macosx_10_9_x86_64.whl:

Publisher: package.yml on althonos/pyrodigal

Attestations:

File details

Details for the file pyrodigal-3.6.3-cp37-cp37m-win_amd64.whl.

File metadata

File hashes

Hashes for pyrodigal-3.6.3-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 8a87116d6d3b8669f8416aba1727b6cfdbdf61b42c01a527c9877c3a8d177897
MD5 c1c7ead2d207a76a90572d975368d261
BLAKE2b-256 bbe5a2bc71ba810393a7e0b2cfa86037ea5fefbe2c4eb18a5effea9684085355

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrodigal-3.6.3-cp37-cp37m-win_amd64.whl:

Publisher: package.yml on althonos/pyrodigal

Attestations:

File details

Details for the file pyrodigal-3.6.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyrodigal-3.6.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ea55d93448b67f53d0ec4913369a7b5b7dea1fe0099ce93c2e505b6f7add1452
MD5 2907d76777d079171fd27af2fc6e62f3
BLAKE2b-256 1a790728890f1a35768600f4fc579e5ceb1e097fdb77f9c02064dba5ed984aa5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrodigal-3.6.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: package.yml on althonos/pyrodigal

Attestations:

File details

Details for the file pyrodigal-3.6.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyrodigal-3.6.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 15093150c5fb4df33bc0313eebe52e46f698fe2241d4aa0af1f9fb9e213e4b91
MD5 ce13a19943f12c43308e02c22c4f4002
BLAKE2b-256 61380afc506ad62af235a7d993cb6fd4b1a8053cd02635f1383450a2a2941c51

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrodigal-3.6.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: package.yml on althonos/pyrodigal

Attestations:

File details

Details for the file pyrodigal-3.6.3-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyrodigal-3.6.3-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b1095ddc2c6550077d9c6fe56ecb6d8a51e9f3a59ea1e3800fbc510627ecfb75
MD5 ccef4f84eb7438131c28252275569720
BLAKE2b-256 1b20116589f815541c9e8ba7c53b9c9cabe12e710c289e33b9dd672934dfb29e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrodigal-3.6.3-cp37-cp37m-macosx_10_9_x86_64.whl:

Publisher: package.yml on althonos/pyrodigal

Attestations:

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page