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.post1.tar.gz (3.6 MB view details)

Uploaded Source

Built Distributions

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

Uploaded PyPy Windows x86-64

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

Uploaded PyPy macOS 10.15+ x86-64

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

Uploaded PyPy Windows x86-64

pyrodigal-3.6.3.post1-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.post1-pp39-pypy39_pp73-macosx_10_15_x86_64.whl (2.8 MB view details)

Uploaded PyPy macOS 10.15+ x86-64

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

Uploaded PyPy Windows x86-64

pyrodigal-3.6.3.post1-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.post1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (2.8 MB view details)

Uploaded PyPy macOS 10.9+ x86-64

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

Uploaded PyPy Windows x86-64

pyrodigal-3.6.3.post1-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.post1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (2.8 MB view details)

Uploaded PyPy macOS 10.9+ x86-64

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

Uploaded CPython 3.13 Windows x86-64

pyrodigal-3.6.3.post1-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.post1-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.post1-cp313-cp313-macosx_11_0_arm64.whl (2.9 MB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

pyrodigal-3.6.3.post1-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.post1-cp312-cp312-win_amd64.whl (3.3 MB view details)

Uploaded CPython 3.12 Windows x86-64

pyrodigal-3.6.3.post1-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.post1-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.post1-cp312-cp312-macosx_11_0_arm64.whl (2.9 MB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

pyrodigal-3.6.3.post1-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.post1-cp311-cp311-win_amd64.whl (3.3 MB view details)

Uploaded CPython 3.11 Windows x86-64

pyrodigal-3.6.3.post1-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.post1-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.post1-cp311-cp311-macosx_11_0_arm64.whl (2.9 MB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

pyrodigal-3.6.3.post1-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.post1-cp310-cp310-win_amd64.whl (3.3 MB view details)

Uploaded CPython 3.10 Windows x86-64

pyrodigal-3.6.3.post1-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.post1-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.post1-cp310-cp310-macosx_11_0_arm64.whl (2.9 MB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

pyrodigal-3.6.3.post1-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.post1-cp39-cp39-win_amd64.whl (3.3 MB view details)

Uploaded CPython 3.9 Windows x86-64

pyrodigal-3.6.3.post1-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.post1-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.post1-cp39-cp39-macosx_11_0_arm64.whl (2.9 MB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

pyrodigal-3.6.3.post1-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.post1-cp38-cp38-win_amd64.whl (3.3 MB view details)

Uploaded CPython 3.8 Windows x86-64

pyrodigal-3.6.3.post1-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.post1-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.post1-cp38-cp38-macosx_11_0_arm64.whl (2.9 MB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

pyrodigal-3.6.3.post1-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.post1-cp37-cp37m-win_amd64.whl (3.3 MB view details)

Uploaded CPython 3.7m Windows x86-64

pyrodigal-3.6.3.post1-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.post1-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.post1-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.post1.tar.gz.

File metadata

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

File hashes

Hashes for pyrodigal-3.6.3.post1.tar.gz
Algorithm Hash digest
SHA256 f42e8df8062b08796f2e92902800584c0b62ead765945594d06224e0b6c2b96c
MD5 1faec828f3d7c30021e239eb3a765bc5
BLAKE2b-256 43f0ff2b20577a7167639a9a911a25bf073f93bcdca409af2ad5eff294b8fcc8

See more details on using hashes here.

Provenance

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

Publisher: package.yml on althonos/pyrodigal

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

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.6.3.post1-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 1af38ee7d465d00351385151e22982911923c139e7bf9ce4a0a284041eb80975
MD5 3b73f0e135515baa1344cb317cceec99
BLAKE2b-256 93256837301872e6dadda3c87a8a2b9e072e26993f0a6c2d9c2e5662afc1ffb8

See more details on using hashes here.

Provenance

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

Publisher: package.yml on althonos/pyrodigal

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

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.6.3.post1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b562b2f227b93868a4a089d319f03eeb9a20a7f79b64ecad0f5579ec8fb78b3d
MD5 192ca74d89a01702bde856687cc6c3f5
BLAKE2b-256 fe1d8b57b382d0e74e89f2abdc8056f69d8d21535c95732fd717d139d4921f31

See more details on using hashes here.

Provenance

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

Publisher: package.yml on althonos/pyrodigal

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

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.6.3.post1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 de69015c163414e32b67c48f9ffb969f7af7ffbc2dbe3c3db7b865181498d82e
MD5 3441f015f74318cb6c668eda2af05db9
BLAKE2b-256 16d6c5098a1987ac9fe34827101a5169a04cfead4ba35be9bab38906a07a12c3

See more details on using hashes here.

Provenance

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

Publisher: package.yml on althonos/pyrodigal

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

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.6.3.post1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 b6373a9b68d957008180d747b893b985fab84f5daf386aa233a96ad9ca6ad40d
MD5 7aa0deb74797c762c0a1a070606ea220
BLAKE2b-256 9131c2bd175ed8dc0879498e1fb0f540cb3c594344571ba66164c2789bf959b8

See more details on using hashes here.

Provenance

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

Publisher: package.yml on althonos/pyrodigal

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

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.6.3.post1-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 dda7f4e2c91429ab5491903e24565d2230b69c654d4765d769a33471c65b29cd
MD5 f7b98b2195de72b5de7e41e962bf5aea
BLAKE2b-256 1b75b011eb91406b9b17a7e6d69dd7f05aa69dc0df4ceada39d3f44964325ffe

See more details on using hashes here.

Provenance

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

Publisher: package.yml on althonos/pyrodigal

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

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.6.3.post1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0ff354ac7a7f9dd1964743d3a3dd854b4a89553c675d11bec593869bd483abc2
MD5 c71534639256b51d6938fdbc6834c8f5
BLAKE2b-256 ac3ba0611604106390c18cfd8d98118a2793a4786feb4af4a47bc34ec6bc2f1a

See more details on using hashes here.

Provenance

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

Publisher: package.yml on althonos/pyrodigal

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

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.6.3.post1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c98f57037196f218b3aa9af674e3c6bd7755df86fc7a03f9ee5ef0154f9aea44
MD5 14b29bf62640ac06982898fb095ae430
BLAKE2b-256 47e94dc05f23495e348b61d35111f41b322acd34dbdf7bf9f72a720928a9dede

See more details on using hashes here.

Provenance

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

Publisher: package.yml on althonos/pyrodigal

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

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.6.3.post1-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 5f1c76d255670b28c67cb9840b42bb55aaf9a15f7575b3a36cd43d87c1178e85
MD5 eca91d096addd0eb4ac619b571d65c98
BLAKE2b-256 1e6206ee5d97360be1aa8df0d4a7831a37601d22830c08c4a7446036cc6ee2e0

See more details on using hashes here.

Provenance

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

Publisher: package.yml on althonos/pyrodigal

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

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.6.3.post1-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 0c20d818168feccb025ce63bcd04d3a46f5883e5822e5bfdaacbf9918d5af62e
MD5 f2899696cd5438727181824394b01b36
BLAKE2b-256 b574fdaf82f25e3af46bebdfb6d3431dd67d401c474dfe2bd5d16c60c2c1ffe8

See more details on using hashes here.

Provenance

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

Publisher: package.yml on althonos/pyrodigal

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

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.6.3.post1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 97fddd5b545761eb9a4ecd788393873dda89187b21f719778b9b118681351346
MD5 2d76df185fe37fe54c83d0d51c235785
BLAKE2b-256 7f6cc4e533fe45f09c2f1633686dde5cfd89e6ca78a32d0abeb1bf00fd68f0b8

See more details on using hashes here.

Provenance

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

Publisher: package.yml on althonos/pyrodigal

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

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.6.3.post1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 020ee44ca594f3500be01017d058ebc53c3a5b8f603afb69aef09f72e6070508
MD5 e5079a3a76dc5d84e27f26c7cc16c1ac
BLAKE2b-256 9dc7af512bfea1266866e9cba2bc19097fa3976ac7a720592987cdde419e9250

See more details on using hashes here.

Provenance

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

Publisher: package.yml on althonos/pyrodigal

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

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.6.3.post1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 166f2e5267f1eac02998c6f730fc95690dcf0a49781b007ddffa095052def6e8
MD5 65252993b24b340c1b2714f7a13488cb
BLAKE2b-256 84a38760d48c8119ce352feb35d70625fcc7cf96c9565d3cc5c344e04c970fc4

See more details on using hashes here.

Provenance

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

Publisher: package.yml on althonos/pyrodigal

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

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.6.3.post1-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 81e467f43b980d5fbbca81127d33f5f2d606f9b1efa4d9aae519d21994c34e1d
MD5 f340ae62cb758eecfc030a7c8d6b5393
BLAKE2b-256 a5c0a3a057dec2efecc9a61b29634a88eb6a83b3d9be4c1e3ca901db7343fbd4

See more details on using hashes here.

Provenance

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

Publisher: package.yml on althonos/pyrodigal

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

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.6.3.post1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5232e58123b1bc1013fc125c34bf9a14db1ed62fd8e0632363513d8ce7dc212c
MD5 8abf1b60af8b193f80081891601c7904
BLAKE2b-256 968f777c012be0dfdd8c05026e1e56ae033cc490731b18b57cac1aa3801bc84f

See more details on using hashes here.

Provenance

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

Publisher: package.yml on althonos/pyrodigal

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

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.6.3.post1-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ba8e78520ed27b6b7b440b0e7e989901171ce78ad2aea92c1d0e7ebbc4d9191b
MD5 cf299d3fc020e10d840947df4119936a
BLAKE2b-256 feaf8944daa74b31dc8f21190fab75f2167c007f825f2cfdefb5be589882701a

See more details on using hashes here.

Provenance

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

Publisher: package.yml on althonos/pyrodigal

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

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.6.3.post1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f3fd6b250bb09c36474de1a7617ed2bb7c93a752df6c77a4fffa0702fed47f60
MD5 cb8ea1b3d581be7460eb3535b5136f39
BLAKE2b-256 82ac34233f5f5e959180cc8e1b91e76537df9370b5586a822cd6f003f246b890

See more details on using hashes here.

Provenance

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

Publisher: package.yml on althonos/pyrodigal

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

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.6.3.post1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 096dbdaae148e1c1a60b3d5bca84b7b5a7deb2d6a44b965dcc2cc640be02f667
MD5 267c4dc133a19cb969672a6e797ccdeb
BLAKE2b-256 21a01acdb8e2e2ad64e10ada85ad505126bfa3098ffb5b0f41a5bdcd9ef33b7b

See more details on using hashes here.

Provenance

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

Publisher: package.yml on althonos/pyrodigal

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

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.6.3.post1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6be72165cb5df563d00d92cc8d887782076648fe1191377cd875c45603b57273
MD5 0c78105e9471084172e18001e7d0cfaa
BLAKE2b-256 667a66088014a89e34dd4acf5f3a2783873d31c667852ddb905613b69943945a

See more details on using hashes here.

Provenance

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

Publisher: package.yml on althonos/pyrodigal

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

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.6.3.post1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f87cd91f547e7fb797d2c591208c1a9dbefe94e3c62be9d76b1ed0ed2022416b
MD5 6b63d4ac219ad7af02f73468bb8803c7
BLAKE2b-256 4aaa310ecb5f532df5b9734b07e3c8b40608e34bf62cc563fb662c9e119245cb

See more details on using hashes here.

Provenance

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

Publisher: package.yml on althonos/pyrodigal

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

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.6.3.post1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6eb312424e4e06163ff63aab09a74d0f289dfc533a65cc8b101928dbb38d7871
MD5 1203b2258dd1617073c78e93d42b7b04
BLAKE2b-256 e37f8454c0389109f1606d5b1e50d01c179f7dbd3132a6b694de9ccb310907fd

See more details on using hashes here.

Provenance

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

Publisher: package.yml on althonos/pyrodigal

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

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.6.3.post1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 b06bcc490e8348bdf6d8957be11c27c79dcd501a55edd16d6fda742955bb21ff
MD5 7de29ead06ce5d2ff5b3e3cbac8cf7ee
BLAKE2b-256 82acdfbf9402aa430c019d3a7793d9746dfaa35e5162d8a8dbe053b447470bf5

See more details on using hashes here.

Provenance

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

Publisher: package.yml on althonos/pyrodigal

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

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.6.3.post1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 842f4faa891036afd4e5fad96495fdf454c7ce3f3286f299fa7b92091c0e116e
MD5 5f63d32c86cb056d298366bac8cce19a
BLAKE2b-256 57ba4f6d23cf1d53cbb8b1968442086c5cc85a3dff59f6df1207016e559c514f

See more details on using hashes here.

Provenance

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

Publisher: package.yml on althonos/pyrodigal

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

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.6.3.post1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8c5e5038e6a33ed84e4894957fe2c117235e20483409ea7788eb689fbd33f099
MD5 59573d90557cd1d457bdd09bfb68127e
BLAKE2b-256 aa9b060c0269ff913b2d5c48e22a684a73534a0dfcd9a46d21d450987263d962

See more details on using hashes here.

Provenance

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

Publisher: package.yml on althonos/pyrodigal

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

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.6.3.post1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 de6e9f6798ab3324b16c1e61722cc919f4e34d7cf849f862ceec6d9acc78e659
MD5 9de15ac874da2a2aaba07a735d944942
BLAKE2b-256 d4c0ed28267582d83e6908a9be305b8d0901cd0eb6998858bf4b07f3a95d1797

See more details on using hashes here.

Provenance

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

Publisher: package.yml on althonos/pyrodigal

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

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.6.3.post1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cb7a254ddb64974a0416c9621e3b752260ab84d496da6d4913848f16b1b53c94
MD5 deb2e7b784a8d8df68c7ae3c2023cf72
BLAKE2b-256 7301e7bf49105a80463a614d25323d6c485a8e6b1769f102622dc434bc52f405

See more details on using hashes here.

Provenance

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

Publisher: package.yml on althonos/pyrodigal

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

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.6.3.post1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 00ca0dd0b3d3a9d29066fa838bb6e8553b2b7482220a15f5c4811324884f0ef2
MD5 949894cec0ba4b36eec6f5abe2808ae2
BLAKE2b-256 bff52133b4d08753e90ba184dfca4802bb00d69b97fa557e56c32979864d72d1

See more details on using hashes here.

Provenance

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

Publisher: package.yml on althonos/pyrodigal

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

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.6.3.post1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ccf3e104391cbff291926509fe8d8b3672c6619d592919d96bfc0e783ff68fed
MD5 1b1ecb77ce69cfc0a5666b0a6dc4e293
BLAKE2b-256 2dce013a41cbfc2516c37d879583cae08151f1ba17ee8819560db9051707d700

See more details on using hashes here.

Provenance

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

Publisher: package.yml on althonos/pyrodigal

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

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.6.3.post1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b8412f1c92d8eebce63b3b8a182bc5e02117fc9d31325652482fc40f399d6446
MD5 534f906263ba34fb45e0bd5b9e514769
BLAKE2b-256 16ff998e77e1cddb4c542aad2b2f80f9afcc03870d2ae1a14d7deb14101132aa

See more details on using hashes here.

Provenance

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

Publisher: package.yml on althonos/pyrodigal

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

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.6.3.post1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ae38cd783eed0c5f1c2db8175863374768d3a290e54566e680947caafb610700
MD5 eb7346ed0dbaade1f05f7f0a20c0c8d1
BLAKE2b-256 f01d00b5982f61897429a500a15cd4143a7b9a2a4996234ed6a771aaefa16aca

See more details on using hashes here.

Provenance

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

Publisher: package.yml on althonos/pyrodigal

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

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.6.3.post1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c4fde749c103393702c37b762ed2ac14acbf1abbac948a98c3d4730a5531d606
MD5 b9175d15ce14e0908ee7778fcb719bba
BLAKE2b-256 999abff14e308a5550022fb8347385b7b645f718d7f04ee8db3cf835715c7694

See more details on using hashes here.

Provenance

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

Publisher: package.yml on althonos/pyrodigal

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

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.6.3.post1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 20c27add4cb94b3aad83ebdbda9e35a24472a0ee9f67669d1db61d733eacaa75
MD5 271602f245afebc204f92ec90a2d45e7
BLAKE2b-256 b4b62fffce45579745e4ce0a810194709809f2801ec784fa971be3840fdae69d

See more details on using hashes here.

Provenance

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

Publisher: package.yml on althonos/pyrodigal

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

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.6.3.post1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 abae1e35d8420c8276984833b5e7b9cf983b9cf1ec15cc2aa18c387114e71175
MD5 6f74ad446a009f231819a4731a1c2ed6
BLAKE2b-256 136075ff11458d5b29d39f9c3a147d25139107de0271119f08414974db1714a6

See more details on using hashes here.

Provenance

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

Publisher: package.yml on althonos/pyrodigal

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

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.6.3.post1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8b8b78739e14c35fdc585585a3dd0add1965bfeaa4c950386c163383fc796fa1
MD5 3160eaeef97d977beb0cae6081bf979a
BLAKE2b-256 d5d984e7f22e6098e43a82986d9821abee60103b43fe6f8d6776020d7534e023

See more details on using hashes here.

Provenance

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

Publisher: package.yml on althonos/pyrodigal

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

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.6.3.post1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8cfa9bba4f4789c588c826b66b58b047b08ee49aa352df0ce0e14c61db7d0cb1
MD5 36a44b4428bd3f79a6470722d7fe90b5
BLAKE2b-256 46eab540f9e7e1af4b08332a54e8c014cdfc70d3301a099fc004a49be03c64a7

See more details on using hashes here.

Provenance

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

Publisher: package.yml on althonos/pyrodigal

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

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.6.3.post1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c2ca35342a2e00b89adb803b6c00af66d9a5f959140d05efce0e75ab6f4c78a9
MD5 d04bfa759f2f76e067c195e7166c8136
BLAKE2b-256 88ab69a6bffefec715bc944d70ce8c8d37a9a6b5f6865659d398a6c48f19f43e

See more details on using hashes here.

Provenance

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

Publisher: package.yml on althonos/pyrodigal

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

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.6.3.post1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ff9137e7bddd73c3e9da4039ab2c373c3132252ac8956b32212cd9510f52ea68
MD5 51908774b3711debb0dbe44697a47e5d
BLAKE2b-256 ac92dec1683488ad50d0810c3c49d15db2400eac898559f53066b7b1d08ac896

See more details on using hashes here.

Provenance

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

Publisher: package.yml on althonos/pyrodigal

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

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.6.3.post1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 7c701136c4b8f0ebbcaa8ffc6e12d6e595cc2167273a5f072af29746b50289bb
MD5 23e2223c3c9711965663f584737dc54a
BLAKE2b-256 bf8e2d0cfbb483a8a80e40d168f1247519fd4eddeddbcb6629f48249b7a52b3e

See more details on using hashes here.

Provenance

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

Publisher: package.yml on althonos/pyrodigal

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

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.6.3.post1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 06d6a3d3cd9f1268c0fcdd655d7af3caa21c51db2823c8c5edd1f9d072319a98
MD5 69bdf7d6da2df59452b2fbbb5b276975
BLAKE2b-256 19d1853ea09b04a48bc74005592bbcd284dfafc717c477d71a145535b293dddb

See more details on using hashes here.

Provenance

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

Publisher: package.yml on althonos/pyrodigal

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

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.6.3.post1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5678db820fb550f55cd359752d22e54d04ce0e3c2e1993e4e27755f3e7339e6c
MD5 8c0c6c3ec33cc4af43b541ea4fb537cd
BLAKE2b-256 5db5963deb8225651a1d70a0cfb9de856a1476e8a82796353263adeb2d956096

See more details on using hashes here.

Provenance

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

Publisher: package.yml on althonos/pyrodigal

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

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.6.3.post1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a6bc9a7b6ec45de3e47ab0b886c94add6b26a80fe3f489d111317dc379da4164
MD5 28b3036ff7086f1d8df456b1ca8e4e72
BLAKE2b-256 2f2afdb85e25d660008a37cc2f919ec179eae43028c262a0921558c8f8e2034e

See more details on using hashes here.

Provenance

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

Publisher: package.yml on althonos/pyrodigal

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

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.6.3.post1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e7b210c4150f33949bdcc575e09037d70d894806d5ba0d232ac30e153abe4f0f
MD5 5f0bd7e08fec6aeaf6d58db479588ef3
BLAKE2b-256 74d14bccf00786d304b30f73e8f149d629bacd962e1dfd3521706db3888a405a

See more details on using hashes here.

Provenance

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

Publisher: package.yml on althonos/pyrodigal

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

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.6.3.post1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 9bc701f3d637c9270a43f2b2abc099aad89b53da44ca25c9c54290dbe5847258
MD5 43971feffa7a1fa52c8ef4d0871402b3
BLAKE2b-256 a89135313596ebfddd974430b8d94a74ef685003f8729f93c04429c4950da986

See more details on using hashes here.

Provenance

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

Publisher: package.yml on althonos/pyrodigal

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

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.6.3.post1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 af742d2df1380268c90c55afaf95b8df760b80cb7f5325a2edcb6afc15200529
MD5 5d8fea0c6a2d1534a3832ac12f7ebc27
BLAKE2b-256 8a54447d4dfa861220fa4e847f8c8c620448dee9b256a3c6a70005bd5b3d2b9a

See more details on using hashes here.

Provenance

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

Publisher: package.yml on althonos/pyrodigal

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

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.6.3.post1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 35ab793bab1ec631421137cfa582bf7580a514e73482c64f379b72559f9d46e7
MD5 8079970da12f57f0b4652213acc8bf49
BLAKE2b-256 2025b4b1bb5580363eb6e3c878def817df1f87eed979aa48f1069a5ba462ec1f

See more details on using hashes here.

Provenance

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

Publisher: package.yml on althonos/pyrodigal

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

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.6.3.post1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 64f61dfe391fdec170f639911d7459337e2a117a4597d078b31408bac3dfec53
MD5 c510d2808c926bcd3eb86b96714661c6
BLAKE2b-256 b72034551f5c98b27512d78d0541e72b3f24e7b418bc33ac9e9892b0c8303e0b

See more details on using hashes here.

Provenance

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

Publisher: package.yml on althonos/pyrodigal

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

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.6.3.post1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6f3e7d7553d4b9fe68de8548f697c726cb43a38f322b6ffabefde80285b784eb
MD5 1155379e8d6fbd20427f24463e089145
BLAKE2b-256 b47bea8b5aa1d93f4a200cfc25c69d290b1e1cd366d5a87b6292474369a94290

See more details on using hashes here.

Provenance

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

Publisher: package.yml on althonos/pyrodigal

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

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.6.3.post1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 49d1f0d77c2e2dd75ff4614291622937b6685dd35207c76c836dc607ff029312
MD5 38d7d35ed5e978e810b35b6905ca6ccf
BLAKE2b-256 c6591ec4c3bedc624d8a077a9d49d6eabfd42bf7f09f5bc5dd1396bde6758cea

See more details on using hashes here.

Provenance

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

Publisher: package.yml on althonos/pyrodigal

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

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.6.3.post1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3cd5efd8e8c98d9718b835594ed9817bd553f848b14acaf4968077d8e5286deb
MD5 51859f9d7323545555940d2ed69cb88b
BLAKE2b-256 f4e94091cc7c09378785d1fc108abbb0f602b4978b1cd02f5d1141eb319bf24b

See more details on using hashes here.

Provenance

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

Publisher: package.yml on althonos/pyrodigal

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

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.6.3.post1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3c70d2a0a245f2ededb145dd7ee56829f5df57871c5f38e2975fa7c5bc119341
MD5 2c7a13998d3b35f6fd619799c221a7b8
BLAKE2b-256 0eff43d8048ce988a34baf28c29c88757955bf624f8c904feac8cd0678e73018

See more details on using hashes here.

Provenance

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

Publisher: package.yml on althonos/pyrodigal

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

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.6.3.post1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5235708d818cea713e7fac6cd304ec2aef4890ad0c62516e9c279b2687b3aef3
MD5 b166aad1f682672ecc7b92424508aa29
BLAKE2b-256 527c8f5cf98f32f80df0605f387bcb970fc06b4ad3a252c2b43a74cd2b713189

See more details on using hashes here.

Provenance

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

Publisher: package.yml on althonos/pyrodigal

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 Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page