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 by Antônio Camargo, which provides additional models for giant viruses and gut phages, or pyrodigal-rv by Lander De Coninck which provides additional models for RNA viruses.

🐏 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(gene_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 a 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")

gene_finder = pyrodigal.GeneFinder()
gene_finder.train(bytes(record.seq))
genes = gene_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")

gene_finder = pyrodigal.GeneFinder(meta=True)
for i, pred in enumerate(gene_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"))

gene_finder = pyrodigal.GeneFinder(meta=True)
for i, pred in enumerate(gene_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


Release history Release notifications | RSS feed

This version

3.7.1

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

Uploaded Source

Built Distributions

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

pyrodigal-3.7.1-cp314-cp314t-win_amd64.whl (3.4 MB view details)

Uploaded CPython 3.14tWindows x86-64

pyrodigal-3.7.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (2.9 MB view details)

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

pyrodigal-3.7.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (2.9 MB view details)

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

pyrodigal-3.7.1-cp314-cp314t-macosx_11_0_arm64.whl (2.8 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

pyrodigal-3.7.1-cp314-cp314t-macosx_10_15_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

pyrodigal-3.7.1-cp314-cp314-win_amd64.whl (3.3 MB view details)

Uploaded CPython 3.14Windows x86-64

pyrodigal-3.7.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (2.9 MB view details)

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

pyrodigal-3.7.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (2.9 MB view details)

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

pyrodigal-3.7.1-cp314-cp314-macosx_11_0_arm64.whl (2.8 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pyrodigal-3.7.1-cp314-cp314-macosx_10_15_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

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

Uploaded CPython 3.13Windows x86-64

pyrodigal-3.7.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (2.9 MB view details)

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

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

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

pyrodigal-3.7.1-cp313-cp313-macosx_11_0_arm64.whl (2.8 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.12Windows x86-64

pyrodigal-3.7.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (2.9 MB view details)

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

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

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

pyrodigal-3.7.1-cp312-cp312-macosx_11_0_arm64.whl (2.8 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

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

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

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

pyrodigal-3.7.1-cp311-cp311-macosx_11_0_arm64.whl (2.8 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

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

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

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

pyrodigal-3.7.1-cp310-cp310-macosx_11_0_arm64.whl (2.8 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

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

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

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

pyrodigal-3.7.1-cp39-cp39-macosx_11_0_arm64.whl (2.8 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

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

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

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

pyrodigal-3.7.1-cp38-cp38-macosx_11_0_arm64.whl (2.8 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

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

Uploaded CPython 3.8macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: pyrodigal-3.7.1.tar.gz
  • Upload date:
  • Size: 3.7 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pyrodigal-3.7.1.tar.gz
Algorithm Hash digest
SHA256 0262fc5b5fd0b16c18eb3eb9b6079e1590e6d838c3f8431c46d9027c8e67f600
MD5 651964f2e82e245059ffdac9db8fe1d7
BLAKE2b-256 ea71a9664c0251b50dc8f3c3b21f8cc27a21a691d350155b37065cac4eac84f4

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrodigal-3.7.1.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.7.1-cp314-cp314t-win_amd64.whl.

File metadata

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

File hashes

Hashes for pyrodigal-3.7.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 74ad25e695230a8d02c5d5112e062ec83eaf0ef48619c0571ea9740f81f55e79
MD5 7a970cac2b6184c5f75b9a73bb5315f8
BLAKE2b-256 0cd151be2119a5a392f8aa0c44d68a3163e66105a6707abbcf3656a47a72207c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrodigal-3.7.1-cp314-cp314t-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.7.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyrodigal-3.7.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2299fcc3c643fb3b7090d2a3496107ddc720661606d6388180874dd615b0a76d
MD5 301c98d4bbb53b2ad9424c68d2c0bd22
BLAKE2b-256 6b0c698d460f3c669b4573fe5b8ab64e34e532477fd2c512ec98ccc59d13e8c8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyrodigal-3.7.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 38b01b8d5ca3a90cf9f6b0828179cb4ea03114cc6c7e6d767b3f860b15641306
MD5 e73fafc2b319d66920b37ad5f75937f5
BLAKE2b-256 d4f8cdf204e9ad38e6898743254e86195ef59194f7b751b68e650adaf3b866e0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrodigal-3.7.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_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.7.1-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyrodigal-3.7.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 86d6ff3a6b0d4c35a08f47f9142c8eaf283a203a3a51e8c6665265cf4007d334
MD5 a32e463bb3deb4f381bcd000df122397
BLAKE2b-256 f6cad85381ab41ddd382345c44739fda6bcb3177e06085e73eccf0fbb682a1ef

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrodigal-3.7.1-cp314-cp314t-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.7.1-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pyrodigal-3.7.1-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 c298589b45e9bb7eb27f8738a2db1b61ccdceb7be288d3c1c663e6f060607316
MD5 91b7364d1a3f212422235e0eb87102df
BLAKE2b-256 06e7912caf55bc8034f62d727c4dd26214da5c9594053cab170a00c42fb5da33

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrodigal-3.7.1-cp314-cp314t-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.7.1-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: pyrodigal-3.7.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pyrodigal-3.7.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 cb5d202ecd288886539e965f9c88cbd347800f1e69bd4b3cd90a4bfe04989e54
MD5 ab1f34c1bfb4e3fe94d9cbe6a5d1a198
BLAKE2b-256 7ca904ff823b6d3f2ed5f2d29444446973c47824e61609cdbead72ef7c03be73

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrodigal-3.7.1-cp314-cp314-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.7.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyrodigal-3.7.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 51a73df081f49577d50a89676409e7288d26a36d04c5c34c0f40183898e43cb6
MD5 8f99030cbd6d34577d1cd92d452b6fc4
BLAKE2b-256 90fb96aee99651e8deae8bbd1f8a3d49e7c3d7bd84238e572c96706be1d31a15

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrodigal-3.7.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_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.7.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyrodigal-3.7.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 39cee8ac0178229940b682028bb1039d95435dd533189d542d918afdb2a18381
MD5 555d0c7c4d457fde3f075896a1c5787b
BLAKE2b-256 3140a35f0b241e32f46c25cf8540547a7a9a3366b253ac8792f7139dcd57f0dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrodigal-3.7.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_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.7.1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyrodigal-3.7.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 439d5151eee9151c9ba39129e82ac5225f03aafc8189200cbb2b1013b8ebc548
MD5 70643e928b7a5b899b7d4da936a6c998
BLAKE2b-256 3deb1ba975103e7d37a2b50179c31f2ab3de663dd6e7cc4a354219fad744b2a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrodigal-3.7.1-cp314-cp314-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.7.1-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pyrodigal-3.7.1-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 708ba978c83177a670db99403da54e89f3f0e0c43a1d0b5e9e74e851851e9271
MD5 6bbea980e755c765fb39567ba67db015
BLAKE2b-256 76b513d2c5bf5edab03501c0349436a400c4d37da2a8047e3de6be4507d75edb

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrodigal-3.7.1-cp314-cp314-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.7.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: pyrodigal-3.7.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pyrodigal-3.7.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 096dba2904b5a2b8f46f1bea42f8464677e65f82cc766e51c98e1b299e07117a
MD5 2158e46bb41dddb45340be6fc09f140c
BLAKE2b-256 22d9fcfce7ce0f875855ce04f9db1baa754a23c63f2eb9a66b3256bb32b3a030

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrodigal-3.7.1-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.7.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyrodigal-3.7.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 81beddb4a9c8975bb277561fe6645bbf8b6bb660d9932dc39ec5a8b4c33d5645
MD5 2feb251d323e1bae8f76866bf82359f0
BLAKE2b-256 fdc64f6b4abe6902503a1b3c9ee6c30e8d3b3c18f060345fd53403b371e73480

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrodigal-3.7.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_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.7.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyrodigal-3.7.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e6c793cc52c73c48246427fac9d87003e6de56d41dacc90d7c3e41000c967525
MD5 1350b2fee30345145c215d6907efed15
BLAKE2b-256 8b188e78b9dc11bb2ff909d60c37ddfd6c17db33788f6ff3c8ee5496e334826b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrodigal-3.7.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_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.7.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyrodigal-3.7.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 68027a754d30c40e8bec65b96ea7aa674b8d9fd59785d2317f1d384506570e64
MD5 1ab4cb07282b755cf52a6b40f0c45004
BLAKE2b-256 28f3f5f7853a79a40b5e164b33ebd96e38738b05fa199017ad4b03bb5b21dff2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrodigal-3.7.1-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.7.1-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pyrodigal-3.7.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 a575e4c7e2a53048e92d06b6b85cd4c047513e1f14ffb94062e55f47340b3d3f
MD5 f3db1e06fecd541dd1b32347e4de148b
BLAKE2b-256 c6da1badd73afbef3ae09352a7607b70f69bb5fc1e803a9a8a5b22a3ee8426e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrodigal-3.7.1-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.7.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: pyrodigal-3.7.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pyrodigal-3.7.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 0d4968a0ebe1d2434594c1d9d584dfe4277a3044516fd8b3567ad57d3e1ab7ac
MD5 96ba459dd7c6c8332ac6b98f9806cc66
BLAKE2b-256 5ecb4bbbd6af4c6285a3fab32c0f38ea95c664c7a90e798fa970f91075e314fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrodigal-3.7.1-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.7.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyrodigal-3.7.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b18910b02f79f5dc59568e2873f4ab9f0e528c8fe01f253b0df562db3feee4c4
MD5 07de9ca11ad685296363402bb4cab3ee
BLAKE2b-256 a93f6147e909be059b73134b748f42018dbe5121368a58c98edb1ec774623af4

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrodigal-3.7.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_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.7.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyrodigal-3.7.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7cf43de481fe7036293e3f76c8f953a7e353b1aa10aa00db480a80ad8447a412
MD5 5b164273ee12244d4fd1d153f2310b36
BLAKE2b-256 6a080a713e8e61394be6caa54214e7ded17086b07a8cdedff15e3959df750e0c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrodigal-3.7.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_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.7.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyrodigal-3.7.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6d647dc8f932030e4636b692573aae2f57cbb0358f8e5a4bbcbcf0039798e0b8
MD5 6b88c79636f5bd9125b52eef5690343d
BLAKE2b-256 6ba0724f0131f4b6c0e845583c8b259e76ffcaf4e29906438f5921b4a172962a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrodigal-3.7.1-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.7.1-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pyrodigal-3.7.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 bd20828dadd2c4f2819c23abfff43ed0e2a5c6853f9a2d8cafbbf27e40b99de4
MD5 2ffe2f974743ecc19883af3f287e5b45
BLAKE2b-256 2513518ada5cbe2eee7228c801a5531bdfbcdd8b7fad80ef2fa2cbc89594f24d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrodigal-3.7.1-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.7.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: pyrodigal-3.7.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pyrodigal-3.7.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 15c6f22b0eb9940653e4238a51d2314e98b748aca1e9945bc37bcf908ae31c45
MD5 c4f30814dc465b01592c4d874629c733
BLAKE2b-256 412bcf29f1d264dad7a0a8353d201703ae1b4dac29a39a187a3ffd585d2f36d3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrodigal-3.7.1-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.7.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyrodigal-3.7.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3416e22b5a4805606ba3c7585e5197e1b1011d326e3fde8578deee3f1a57fb68
MD5 b448be00cba75cf8a2cbe50b359a27d6
BLAKE2b-256 a1b388249a342e9fc8cd1989b931ca2b842257e85077edc0820475727e3aee92

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrodigal-3.7.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_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.7.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyrodigal-3.7.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a26f82c71ffe63aa88532055c148b49447c0f174aa05bda4669f9bf97a30070f
MD5 7b42eeec7b12b93b39eb0999b2016a15
BLAKE2b-256 c2e0df59189e6469bf7423ab0393cd0355d2627bd35c6aab832253e4f8a0a55b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrodigal-3.7.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_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.7.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyrodigal-3.7.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1b336a93f5036c33f0b80078d41b96d8cc34614eaf8e8df683df54d4b8cacf92
MD5 a734202eb3e32cd15372f943c8ba70bb
BLAKE2b-256 b6097ef9a5e12b7600ce7822b5d3312ec250322053ff63885bb35ea9be05d49b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrodigal-3.7.1-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.7.1-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyrodigal-3.7.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f235786c2ea099ebe4003c28bd720840a583be9b6ac6f429c5d93727adf40939
MD5 007dd1eebb740c0ce819f1a74cea4335
BLAKE2b-256 81e6f1bbe78dd657dddd9108be4aeb3e76a217aa722eb50f03bba722d5c4e7ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrodigal-3.7.1-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.7.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: pyrodigal-3.7.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pyrodigal-3.7.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 c0af32080fec84639295531866de48627caa4ec7cbc4acc38a001c1f35fef687
MD5 a5f0fc8932d8672a4c5b9fac48e2ecf6
BLAKE2b-256 fbdb9ef661540ca654686b72ba32b218eb85fdacc895d0bed0278de8e8f406e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrodigal-3.7.1-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.7.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyrodigal-3.7.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 985631c0fdfcf448d54444f332226d9fcef9b922e7a9e7f72bdecef501f297ad
MD5 e926d5fa7a9d63516d997c4f99fb8ee1
BLAKE2b-256 7a3b3f4e8c319f08d1c1273a771d230267ef7305225f7aff8074659fc266d658

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyrodigal-3.7.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ea568a5634f779b145eac0606e648aec19a122309cc3b0085934343338e53bf4
MD5 ec47ed8e887618c609b662a829096df3
BLAKE2b-256 e126d2aa9eac1591573d85d151cebdeac62cd069020db13f0a9604d0746f0e57

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrodigal-3.7.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_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.7.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyrodigal-3.7.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b5f4c1f6ba5dca2c8081db3996d119c7f59b870ef7fc477d7ce3933292a9c0e4
MD5 b2099e1b7db66064405849bbd8cda47e
BLAKE2b-256 98901342931ec048220193262194f7414e47e511b0456fa7f1a9e68f47948795

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrodigal-3.7.1-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.7.1-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyrodigal-3.7.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0d9dd52987fc30b4961bfcef196f05044f651eceafb2e5d6dca66c79954ffc09
MD5 46ba535c516b822bd3ee8d197f041ab9
BLAKE2b-256 251d0bf69f1215776e9f31ac4239a2cce35114eb927c0565a8813afcf3c5504e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrodigal-3.7.1-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.7.1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: pyrodigal-3.7.1-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/6.1.0 CPython/3.13.7

File hashes

Hashes for pyrodigal-3.7.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 54e7dadcd494963b7dfa1c3db9b0ce9da3a64d3db4c6d5273bb4276b4901c711
MD5 03a810b19257815d3c62a224d9f79a68
BLAKE2b-256 3bf7c5201e67da35d3c72655f418869891a349d7523c7cf7df02ba0209e62822

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrodigal-3.7.1-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.7.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyrodigal-3.7.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 711eef8d6f8ce2792ae03e64ab2f494de5e43579362260865ef3c1b1c1dea632
MD5 6c92d7e3a078de370ab9ae47917d1b10
BLAKE2b-256 46c8f11760962b29e30cc7e75baf35f0749b1270f6c315b9af30cf74da8de642

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyrodigal-3.7.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 562aaf146720f7bd0a8f05c1e16a5fde5e0d186e8c1a252d2609a17a6f2b201f
MD5 eb09e4223a661cb707335d27e4018674
BLAKE2b-256 4dfe6717998cfacc18f6aae6bfa5e66dc2233fc94d49d14e6aad15e33409e954

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrodigal-3.7.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_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.7.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyrodigal-3.7.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 32678289c48d59dc26cddf4f8a80519041fe5162ab1ec4baadda787f27b2e885
MD5 cc1c1b622b2249d08719a92e484e06c0
BLAKE2b-256 837da865db75158c09f0b47ac0e5c9784b10439099472f16bd32085da126b150

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrodigal-3.7.1-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.7.1-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyrodigal-3.7.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5ef0d0050a5301589c2c196528cd810d7d7111efb01b44bb103533aff069b8fc
MD5 f18a362b5e7a1911abaa9bfe0644a72f
BLAKE2b-256 6992adcf3eed4201b278de6c427f2649f58f62717db976198d5f1c962727563c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrodigal-3.7.1-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.7.1-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: pyrodigal-3.7.1-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/6.1.0 CPython/3.13.7

File hashes

Hashes for pyrodigal-3.7.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 19cf777cd619393f95b619057732a34c0a9d795ee56050fb5af74d9d075eded6
MD5 1ddbbca7cee35de970ba7fb072e116ed
BLAKE2b-256 326b93ab618b5eda5fd879091963ff46a607dedf6b19b0ca7a11a9b8f1b2c031

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrodigal-3.7.1-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.7.1-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyrodigal-3.7.1-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 eb31396cad23a76b184d865e03ad5146b9c672cc29481b97c0893fab0a82b71b
MD5 5f217d075364845ec9fa123c9b935350
BLAKE2b-256 b71dd98b5acc6025ace9021a5c93f05f9fbc48cf5d1e89278a1f86fe6374ce6d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyrodigal-3.7.1-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2f9fa8af70ff360fa400f6e3b36f38df69c5bac718f56c8e9a1fae2a6164e225
MD5 852472d574456580648c5a6e5a5f1ab8
BLAKE2b-256 58f5e5f1643f453a6c967eb880792951abdd0542cfaaf711dcf40700ffb62525

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrodigal-3.7.1-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_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.7.1-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyrodigal-3.7.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 839dd3f69a26a302616c6a851bc5b7ff204931b3b87ff1c337a9b97b94532420
MD5 79b8a8c166a1472373a81b77cac65db6
BLAKE2b-256 01257f70208186c50a67275eb7572d756afbfefec745bf38965811b4ce2017d6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrodigal-3.7.1-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.7.1-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyrodigal-3.7.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cd10afbfeed4e991fa9862b5c8f69edb5a76b94af74425f5cd83e4b234040e0d
MD5 415f2ac204e0619ff263dc7a1b83a85d
BLAKE2b-256 91da545d11006d65f84395dae27508056e0edfc3ae5996b8df0f391691014890

See more details on using hashes here.

Provenance

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

Supported by

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