Skip to main content

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

Reason this release was yanked:

Broken CLI

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

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


Release history Release notifications | RSS feed

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.5.0.tar.gz (2.6 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.5.0-pp310-pypy310_pp73-win_amd64.whl (3.1 MB view details)

Uploaded PyPyWindows x86-64

pyrodigal-3.5.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.8 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pyrodigal-3.5.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.8 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pyrodigal-3.5.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (2.7 MB view details)

Uploaded PyPymacOS 10.15+ x86-64

pyrodigal-3.5.0-pp39-pypy39_pp73-win_amd64.whl (3.1 MB view details)

Uploaded PyPyWindows x86-64

pyrodigal-3.5.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.8 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pyrodigal-3.5.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.8 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pyrodigal-3.5.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl (2.7 MB view details)

Uploaded PyPymacOS 10.15+ x86-64

pyrodigal-3.5.0-pp38-pypy38_pp73-win_amd64.whl (3.1 MB view details)

Uploaded PyPyWindows x86-64

pyrodigal-3.5.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.8 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pyrodigal-3.5.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.8 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pyrodigal-3.5.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (2.7 MB view details)

Uploaded PyPymacOS 10.9+ x86-64

pyrodigal-3.5.0-pp37-pypy37_pp73-win_amd64.whl (3.1 MB view details)

Uploaded PyPyWindows x86-64

pyrodigal-3.5.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.8 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pyrodigal-3.5.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.8 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pyrodigal-3.5.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (2.7 MB view details)

Uploaded PyPymacOS 10.9+ x86-64

pyrodigal-3.5.0-cp312-cp312-win_amd64.whl (3.1 MB view details)

Uploaded CPython 3.12Windows x86-64

pyrodigal-3.5.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

pyrodigal-3.5.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

pyrodigal-3.5.0-cp312-cp312-macosx_10_9_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.12macOS 10.9+ x86-64

pyrodigal-3.5.0-cp311-cp311-win_amd64.whl (3.1 MB view details)

Uploaded CPython 3.11Windows x86-64

pyrodigal-3.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

pyrodigal-3.5.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

pyrodigal-3.5.0-cp311-cp311-macosx_10_9_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

pyrodigal-3.5.0-cp310-cp310-win_amd64.whl (3.1 MB view details)

Uploaded CPython 3.10Windows x86-64

pyrodigal-3.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

pyrodigal-3.5.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

pyrodigal-3.5.0-cp310-cp310-macosx_10_9_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

pyrodigal-3.5.0-cp39-cp39-win_amd64.whl (3.1 MB view details)

Uploaded CPython 3.9Windows x86-64

pyrodigal-3.5.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

pyrodigal-3.5.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

pyrodigal-3.5.0-cp39-cp39-macosx_10_9_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

pyrodigal-3.5.0-cp38-cp38-win_amd64.whl (3.1 MB view details)

Uploaded CPython 3.8Windows x86-64

pyrodigal-3.5.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.5 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

pyrodigal-3.5.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.5 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

pyrodigal-3.5.0-cp38-cp38-macosx_10_9_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

pyrodigal-3.5.0-cp37-cp37m-win_amd64.whl (3.1 MB view details)

Uploaded CPython 3.7mWindows x86-64

pyrodigal-3.5.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

pyrodigal-3.5.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.3 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

pyrodigal-3.5.0-cp37-cp37m-macosx_10_9_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

pyrodigal-3.5.0-cp36-cp36m-win_amd64.whl (3.2 MB view details)

Uploaded CPython 3.6mWindows x86-64

pyrodigal-3.5.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ x86-64

pyrodigal-3.5.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.3 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ ARM64

pyrodigal-3.5.0-cp36-cp36m-macosx_10_9_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: pyrodigal-3.5.0.tar.gz
  • Upload date:
  • Size: 2.6 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for pyrodigal-3.5.0.tar.gz
Algorithm Hash digest
SHA256 f80bf17a2388e4007c65312c7ed84b661e0244be1ef8ef74006f4967a3591d09
MD5 9d90e6797d89f608519f04a054d44026
BLAKE2b-256 13b52d7a9f1b43d9875cf02facbcacddc66ec6e6a5ca07ac4a00b7961c031df4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.5.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 736c2eff88912b162d8b4fa9e92068699ed31a8ed2a02a0f20e97d94adbe717c
MD5 fb0f0e1fc62e2d2f6b60f1d73070324c
BLAKE2b-256 96f4138174f0aa459e13128e47c5f9f81772e0dc7c22418848a2d8fcf907abb0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.5.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ec94bf1389089e6f731eb28749351cdc4d1970ec4d30eae5708fe1d8a7ea13b9
MD5 889a546a0c01998023c06a1c423fbb57
BLAKE2b-256 fcfe354e3b8b531e2c4c12fc4e7fbaccf72ac36b017f8a3639907d03f5606a30

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.5.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 990b402485699e21283282e7edb244c4409a5ea1a784001e83116d5bb033397e
MD5 b47e03553966e6b29509eebb70f9f03f
BLAKE2b-256 8b13542b38f8b70b9c85c327ff9ba5dcf256d5256003cef8d233135e1c79900e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.5.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 90cd9076114ef49bd683035edab1ef0d0154764704dae5199d940e6a61676f7b
MD5 57e48f60c186896fba2c4a1cd06cd4bd
BLAKE2b-256 ea06b06b8246edce0ce3366d972e5fbf5eadf4e07eb760dafca2cca2783a801f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.5.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 2f533527db9c21a21e50c59329d0706aa7e29597717bd14927fb1077b4cca065
MD5 f5a94bd8f7cfe9093a8a7277f173e95b
BLAKE2b-256 edc2d367e8db8e1d576e08883e2b48c7ba26d293545c28bdf3a0115a5165332f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.5.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 50330a7770ae0302e829d6ecc4df368dbb8482813c0e1d7ddc676506d0eb5e2f
MD5 8fa96fbc792a48c29f5a86d13f77c44d
BLAKE2b-256 b6eeff1368359609ee3a5f4a1bdcf4bcd682f67bbee7c87eea8ffd9ed70647da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.5.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 77a9a700499b28493a867b29255a54c556e17609203af9f03e8279b148d9a278
MD5 dd755157ba85edc6cf9dc016b512d5bd
BLAKE2b-256 fb931c03db98fba5f8674df718e8285deacc027a40c7444cec5f17ae2424907a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.5.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 24c95f7af27cd9c54f25c22752f2043573c06432850a9863c1f1a2fa21e98907
MD5 0b0c6234706a77b1a4bdbdfd5bf1ad5f
BLAKE2b-256 dd1b92aa9fb2c94bd8cf7b7edc70d4b944764af13bb767edafcf69bac4295b21

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.5.0-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 7041514f082bd18dccb2937ba22fb3e9849ecbce596b0f1a145e82fa91da73d7
MD5 07d70d2da308135a376af22a1eed391c
BLAKE2b-256 5a1bac1648c95a47fa3822f17cd7f19d9d862a4c57ce90b97bff4720d91b82d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.5.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 83ee886349cebf7d0fd76ec65fd229fc4a7cd8851bbe663eeb8350e83d583902
MD5 1a661f0d8aae8b412805132d02ad11f5
BLAKE2b-256 6c91c993b97061381a1933fe2b46bff74a7b9c348616610997ab523ecd95113f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.5.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 eb6436948e6016385c53e83fab13d4e27980e1f76277fedbe85b3d5661958fda
MD5 44ca629c16eb7930ff27719fa4a8c981
BLAKE2b-256 e828f878c94c3eee2236314929c180cf38e7f8e81e7a1f51d3af5fc37f1022e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.5.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7d73916cac2e80b872c9ce7b65e92156418e56f1ced8750e1e25ba9536663399
MD5 2e015b9a981ece77ad076cb9dae701fd
BLAKE2b-256 fadaf6f5cb02410964bf097c0fb2c57aff071bb16f38721daef878315d410bf6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.5.0-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 dfffb9d3a33aeb9f086ebff0f3989a5c4419273097e042d1beca64823a538fdf
MD5 004e05c3ce67c3b9a8cf47844a330a7e
BLAKE2b-256 7d97f8db09a636b15d35abc3f806eeb96fd2ce6c01cd35ef13c725a808f0180d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.5.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1621a25ae620e001b5f4d82af0d505015f8a3a953d79043869f8a04683808f21
MD5 1c32a73ad5410dc50342957b2ba7e175
BLAKE2b-256 bccb3baa55bf7c3664f6054b2675e7ebfb61c5e1b73d672a6b4363155d41cfbc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.5.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a073013520aa2a1168541355a2e14558dfd0e9f3473ac20f0a9851edbaab685f
MD5 a4ad9a4a9544065d8572498545bc0eee
BLAKE2b-256 51905f89bf7a59c8ff9817198fd14dc683e81b181cf1da7c0a8514a6be567380

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.5.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 eb9f671da326dd56795946c5d5cea655d8628ac2f992c33b87d9d880a5174e00
MD5 03f831af034c8cf6a6ea4d8c71880b14
BLAKE2b-256 3bffa344a3ac9723f6d85c63684a8e757a4b2da4b75bbab0e132679de92bf775

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyrodigal-3.5.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 3.1 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for pyrodigal-3.5.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 25e945b1bcb32de2777c8c5122d72e6186b83ed978d275b223c62cf66a38c223
MD5 280eb327e0a2a60618d1681654699fd7
BLAKE2b-256 fa39b36c99acb2762b8dba8976db14f463e863c4f30bad3814c991569cb85764

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.5.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 58d4aa761e9ac751ec434cdd33515cca9d7f1fe75dccaccfb20c54e762e3cdd7
MD5 784b13ccfd5220f54c71f6e9ef8e8ee2
BLAKE2b-256 f70ad8c707345312e155302f5df8e4d7c6d967db3705ced697b1efa4513a4dad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.5.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 903cd1ac9012c75b514a070573b905c3a629bd92471437e639664684629d7bdb
MD5 a3a8f71966136a0f1b69df63b7f62fca
BLAKE2b-256 1d0c042c49efb185a69d79fe55aa0b27a9e58df298349c700b21133af15c2fbf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.5.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1462cfc56e25f4bd1bb54284218c4cb609d1deaf13aafaa178c6822f2ef819e4
MD5 ee99a322bacc9d77143855c48c8491a0
BLAKE2b-256 413fef586f8dd6d7fe71b3b7a7b117bf1ed500f5357da913f4465e0a13b27126

See more details on using hashes here.

File details

Details for the file pyrodigal-3.5.0-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyrodigal-3.5.0-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3883a2a495451aa6bd1a7ce11957ddfb5e07eb8e12af189c8164cdc8305d473f
MD5 9a7b900416ace23309cdcf964dec3a09
BLAKE2b-256 b1964126b7eec4ab868df90f75c166bb5cfb7d1985fcdfe5b31a85a2a59fc1c3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyrodigal-3.5.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 3.1 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for pyrodigal-3.5.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a337fb109fb06d2f696e00af0d7715448430760c992f511e2c1fc632fce8b01f
MD5 58a63defc9a028ae20a021dfe22e9bbe
BLAKE2b-256 daac56ae563d50cdda73ee1db0cf46412026438c3adc896cdb46077b0894a0c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8f6cb233278f4615c79eee73e381ed1f1cb0ac750beaeeaad9b9cac00570f6a4
MD5 015cbcc2989fe7e0bb0896f90d132e62
BLAKE2b-256 ab31ed04748ef9a33a0b808fc1c5d75c9e79c402c5286967ad1d786e718d6273

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.5.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b385502b909273e39e57fd2fae019ee652e04953ae51fd570ca69d898a6cb4a7
MD5 3b3c4b496964bb70a8341a526a5d5f87
BLAKE2b-256 4efe43d147a061b85ef8ca626bcbb2dded33fa7f0e0b49093ca57bb028cc44c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.5.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8de5ffa2a38733df4f86951ed3a42538268bf414404d820002d83b1f097b30f6
MD5 5f5498d95b56a57b7b3f3d4e0a8a60c4
BLAKE2b-256 3857c7fe09e6ddca1b3dd9751582b0b054353b612edbd6b56c995fc4abf6ae86

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.5.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c7386aac00b118a07a7a761803571acf0bb7e76f4aaa188120d8092e0c03d9de
MD5 69f7160c2094ab7153b25e6829272903
BLAKE2b-256 88fccc95d8692ec29ab8ea3301dbb13c48ec8fb8cc189337fe6790d19c80eaaf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyrodigal-3.5.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 3.1 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for pyrodigal-3.5.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 82dca12374927dcb1c538ba9880d7e3e69a74e12210c5f793732dd5f8cbcca0e
MD5 c074d3d109079662b5c30c797694f8ae
BLAKE2b-256 f82097fc7d8a98a3f090ef6ba7fd9e17eccad35573265bfca5d89d2505245959

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 592229492384e2e26c37234f28c4ad538a7e6f02cd6f103196f506986dfc98e9
MD5 5f5ea2ccfad872fbfa5887446ef54d5c
BLAKE2b-256 89d1113a1c0d4b6c201eb15bee0b16ece0431fe6e9cd557818f493036ab18e4e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.5.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 85547551714cdce9154587aed31e9d46835691ba961a95ff7fd5468f8fb6ad11
MD5 a7ddd5be84ed8e3b6f3f9e7a8ea154dc
BLAKE2b-256 f6dc8290c33aae96dbb3659097de87b513eed021ad32f9f1c4621713c35d00b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.5.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c9a676ec044299183da59aa843402e47c53e6b0f7aadac702706978302be6712
MD5 bb5fe93e806b991f24d25638d7c27bba
BLAKE2b-256 bfb42fe7c3025dbbcd09f390d88d16c2549f9835b68b2abfd0fa28dbc7f6c268

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.5.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3f1b14b1b9733fed149c58f4129827fd9d4c1531c1627ab57c545dd3a2db16fe
MD5 1109c64b0a9115c28ac73510348fbe28
BLAKE2b-256 1ef69cdcfe30dd834ee0edfd15097abff1f7cef00db6a2f8712dd1340e01d7ea

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyrodigal-3.5.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 3.1 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for pyrodigal-3.5.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 c5a6ce58c8c264de84bb9ec6dd56fe32bb9f36d2edea2d58b3da5ae0dd207303
MD5 0b256361634cb3567ff04a7491962b5b
BLAKE2b-256 2a80a131b60dc0652216580c4b647bf2ed91d2d9630025f97147ea42bba8d2fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.5.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 099e087d63e4942ff719778a7d46a424a95e2b2305f7cf4b65a28c9916571507
MD5 5e05ae723e67976464e7bc3dbdcb0053
BLAKE2b-256 5b7e57cc554a1b335ef694f45ca9fb46645dca79b55ea39a672f558751be9bb0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.5.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7f908b4165de447b53fb437b130597d802228b5513a950e8d30fa29ce7aac756
MD5 24fd94d02a38c20b6744648414e0a7cf
BLAKE2b-256 f91505abc1dc720cb16ecfff5316ffdcf3b9af213fee56d5911fba978f53e0c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.5.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a5033d7dca070465e7b6740e83c9b4c9b621d57b81ce0bdace47ba456bbd4f19
MD5 a8cfeb6b095058c2da48b92a19bf7860
BLAKE2b-256 951705b7d02151ec47cae7eb9a4cf28072799b2c8f5172575d64ac3124bca6c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.5.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 be5da106f4a70bb231ab524baf66b207fb6e4e7648f23c1918a02b9d98d23ba1
MD5 186cca879715dc7df9da087b95acf95c
BLAKE2b-256 a9c30164efea728ef1430dc0bf9fa32d516d282c8bfdf501543cef80ec22c814

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyrodigal-3.5.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 3.1 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for pyrodigal-3.5.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 fe0b041079f7ed15d8938a19fa30eef1fffafb4b2136a7423deca7b75440885c
MD5 1d745c4e541b59a29dd43216833e300e
BLAKE2b-256 3336e5177d2d44de7ebefe997b68f23220758cf7885d8f0d1071246e54d5142a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.5.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 33d4781023a313ab0910af8a4bac2de6eccd77caafe62b2ffe02c7d6eebf332b
MD5 5e47bb8e25c3957b55f74627cfbc2810
BLAKE2b-256 90653f2434e961126948f21998789bd4b94fa74abd0fe16a75a61e2429eaed7c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.5.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7c091b26a0d3ef4fa2e80a51b95e3cd06230f4382162e09702cf03c4114070c4
MD5 648fdbb0b83bd6185fa89c550b956100
BLAKE2b-256 55d80b754867e9ffa969d10710504cfa8b19b64cc2cced3ed8ac0a4cf9834611

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.5.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 45ba90c64943c1717e678ae1d565f4429e57b671684e777e19827f5c889b2dc4
MD5 89f78de579325d0f77f8647bf184fc48
BLAKE2b-256 2b488ad7e55bb46cd54597abc2f3d2332219bf32288287147da55762321059f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.5.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 71e0038bd4d8c00a0ae8f508a64151ae14846297492436d8d128ede3a86ad0a0
MD5 ee7fd727ba57b461fad2c2dffeabcde3
BLAKE2b-256 f3518ccb4aab46093e3f3103a79c770c30d8f57b83fce7169617924de1f7340a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyrodigal-3.5.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 3.1 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for pyrodigal-3.5.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 696a2be243f37d76e763a7f6880d6eef5444258907f3c6e88d41ef52892af26c
MD5 a3bb2cee1f08755a38341a546991a0e9
BLAKE2b-256 175e649b18a8d65ad27f5a01f9309e55037f9fd7bdf689e5000be4f4733693d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.5.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6c856fdae729049d7e4dbc3641ccb0f0f87e91dd2cec10b362e73746f31a7c7e
MD5 de64d5640de65abf4c117d70cd690a62
BLAKE2b-256 7acb7c227f8ba3890168e18a3e8084196073ef9c4af3a206f1ab9ebc848b803d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.5.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 734fcfc33919d513d73f27b927b722cc73f407578985cea54f20ea3e683a50b8
MD5 0d0a00439b276fd8973b9996a86b6a17
BLAKE2b-256 9f26529f3e793a5d920a15cd20ade94985763c98882e0dd35bc3bc3e0793fbbc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.5.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8556067da0f5ac2b3961ced7465d11af2233bd5505538126c8b5c2e45ce53191
MD5 ecf02a63d8ca804256f50cc8f4cada42
BLAKE2b-256 2f6f6f2f4bd65dc71936139726a97befc49d021118362cc8d322e1799a2d6c95

See more details on using hashes here.

File details

Details for the file pyrodigal-3.5.0-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: pyrodigal-3.5.0-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for pyrodigal-3.5.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 1a3106fa57f04a02824564438406688edcf41f89eed66f52ccccedaf03b9cdef
MD5 ededd64b7b797adfd6f7351ac58fff93
BLAKE2b-256 46ffdd74ef5c711640a1641b955b82aa04f750ab75afa4a86f9c6f95f2fde167

See more details on using hashes here.

File details

Details for the file pyrodigal-3.5.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyrodigal-3.5.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a9bfe11596f393d9620be6b9f50371a35eb0ca173526b109533d7fd01106b0f6
MD5 9f88e1f05d8b0a6acf201adfb775afe4
BLAKE2b-256 64a82cb79a5532d3a6a01d84d874cc557caed859c0c8d53163f946af0847a21b

See more details on using hashes here.

File details

Details for the file pyrodigal-3.5.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyrodigal-3.5.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f21dbca8a2e19e9066747607a91de54276f7f555211096489370f0b510aae334
MD5 6b1da3db537d0eea3cd444a2da5fe318
BLAKE2b-256 68f0f177a8257b19c95af718b23c16fa48461dc6b60e27005ca0991c4edcd056

See more details on using hashes here.

File details

Details for the file pyrodigal-3.5.0-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyrodigal-3.5.0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 44ab330eda241c1c9adc2a461116725a806d94b65f64d95413fef79e0e281429
MD5 1b8856a4d6796475ece050d6cec32fed
BLAKE2b-256 6281fbc2caf4bb78ad129b1db563f262171b188f2db94220cfdc7722f4940910

See more details on using hashes here.

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