Skip to main content

🔥 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.

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.1.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.1-pp310-pypy310_pp73-win_amd64.whl (3.1 MB view details)

Uploaded PyPyWindows x86-64

pyrodigal-3.5.1-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.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.8 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymacOS 10.15+ x86-64

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

Uploaded PyPyWindows x86-64

pyrodigal-3.5.1-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.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.8 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymacOS 10.15+ x86-64

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

Uploaded PyPyWindows x86-64

pyrodigal-3.5.1-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.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.8 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymacOS 10.9+ x86-64

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

Uploaded PyPyWindows x86-64

pyrodigal-3.5.1-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.1-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.8 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymacOS 10.9+ x86-64

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

Uploaded CPython 3.12Windows x86-64

pyrodigal-3.5.1-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.1-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.1-cp312-cp312-macosx_11_0_arm64.whl (2.8 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.9+ x86-64

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

Uploaded CPython 3.11Windows x86-64

pyrodigal-3.5.1-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.1-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.1-cp311-cp311-macosx_11_0_arm64.whl (2.8 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows x86-64

pyrodigal-3.5.1-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.1-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.1-cp310-cp310-macosx_11_0_arm64.whl (2.8 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows x86-64

pyrodigal-3.5.1-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.1-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.1-cp39-cp39-macosx_11_0_arm64.whl (2.8 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

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

Uploaded CPython 3.8Windows x86-64

pyrodigal-3.5.1-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.1-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.1-cp38-cp38-macosx_11_0_arm64.whl (2.8 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

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

Uploaded CPython 3.8macOS 10.9+ x86-64

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

Uploaded CPython 3.7mWindows x86-64

pyrodigal-3.5.1-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.1-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.1-cp37-cp37m-macosx_10_9_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

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

Uploaded CPython 3.6mWindows x86-64

pyrodigal-3.5.1-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.1-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.1-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.1.tar.gz.

File metadata

  • Download URL: pyrodigal-3.5.1.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.1.tar.gz
Algorithm Hash digest
SHA256 20af59a6d968c88910b99d5f647bb7dd22d49e440ead95fe715cdd2c49f36e9f
MD5 d28558d3b19f2822b2f461812c4274f5
BLAKE2b-256 ca227f13942fe55586a8f0cab3bc119ce368c550e9afc2c26a8e0b6f8ed68a9c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.5.1-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 f412480fb1784e5844c5e2ae08347bd3955e0a9f1033897dd8531414d41ae9ed
MD5 dc71cda9f3045c62aa6a2187b7baed28
BLAKE2b-256 f8bf24e4915ec94cf0dc3c08f1f83efeaeae28c1dbad737d2c457143476752ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.5.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 aef0d5a970cfc87867e00a4e20fe8c54f6f867238c1d6c1ff4f8e73ebab3c2fe
MD5 fd792d1bcc632e4f4464725ff0419645
BLAKE2b-256 980a32a5f330b0b984eb70a876a157b3eb0b2da0f9168f9d20dcadbac38d1d6d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.5.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 033820152edb70a68c2511923ce3cc6c7690f1094022c544a8bcf4da54b3d7b9
MD5 80be81e70d484ce193f1b8fc9f5cc8ab
BLAKE2b-256 fd4fb60627c8f745a4379d11758bf9b61ba454ebc5e8203d4708ffd1ddab785f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.5.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 05706414fb1782ebcba3e1bc0255904eed38f53d8da6d5857dbb0befa51feb57
MD5 ad7056d3e9ead034ed2589855cc343ed
BLAKE2b-256 73824cc1506df2d5b0c0dd775fa0bc24d7d23916190b73c6b4f779b9631f39ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.5.1-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 bbf3579cd847e51639eb9691e12dcb1171240a7e35feeac075ae17e792671cb4
MD5 0e65dbcb908540648d2ec2c5ce2e2d5f
BLAKE2b-256 b4d23ce10c249382251bb079eb92ab715eda0f41afca1dfd1fdd6707028e364e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.5.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 48b607d024a357db1ab35883d8f96e6fa2c7c7b3dd62074ca8b461c4df8c4ca7
MD5 cff8947e4b67f62b9fbae40a3285ab0e
BLAKE2b-256 208ca30e44699f7b4fd4d462ba1992c74c3cf227b2a735595ad262d91b93e463

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.5.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f9e1186143ccbf9c27f7f0b993f133b8508fd9f1cf445f7d7e22cb4714f4b0a1
MD5 75d733003b065065d24501f8c9742f2c
BLAKE2b-256 ec21cc9e553820bc951773cf0af286217fa54116a6abb23fa81b3497309211b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.5.1-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 1c91941fc10d8d13277a4b2ff2d7d916b60da6569ac9251c98adb96fc2cb3db5
MD5 c03487ea4492a85de81c848db06870cc
BLAKE2b-256 f6f554162cbf20339bd989ed2107638f00bd534303e5893ba692d19e895cb4f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.5.1-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 ea1d75d48a84b99ba0cc348c98368c1ebf13812b4ef505479b7b32ba90d9abd2
MD5 983171a13e3375ac3ff1727cf1a0435a
BLAKE2b-256 c36c797e026bf745df3d8d2e15fef7e3aa995f75a3e8161bab37ddd6e7e0e1f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.5.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f425b86ce7ad6c9b427eea6a0bc3a7e77ad04e37c12d456fa245a67d88bbd104
MD5 08bf66ba484165327b77824c1307eb52
BLAKE2b-256 4d592e0d2579cb7892d10b0692991de4e1ba49d199410f44e90b757a1c9032e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.5.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e22e876ea446fa08aa32acb9b1c78fac0a45029b6eb8fabb51d8aa89b3d117ed
MD5 8154d3dca2b8e85babb94d014e04669c
BLAKE2b-256 1d5cec0443b04a60cd892c96899bee566a03d36f1766d7662ac6a4f9fdc9f6aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.5.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 dcfef1438c08ee0bcb6b495abec18a1c7302173601823b2592daf75b2f74fadf
MD5 52d726a48400b3627cbab9a0d9d8aac3
BLAKE2b-256 a3eeec8476256b7893d2ed7453b64d34a61128a915be14dabfae17a052aa0d93

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.5.1-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 71bb27bb43fd94f668625a53e65208b8a5bb40a46dd0b89cb2d456d9b96da3bf
MD5 d7c44a0eef487dfb925b0e01f02e98d6
BLAKE2b-256 e1207b39def40178bee3247d3260c2b3fda29c49ce574c492fa5c174d2c9ddd2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.5.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f562e5328ead23d4afd831c903f5d1295069753735a8c2e37a6428797c36f642
MD5 3ba60066b2c3bb3f68faaa184e71faec
BLAKE2b-256 10248f26821a8e30ee1485d31cff628a503bca7788639657e9a436a5addb6b83

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.5.1-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 caa716cb884f871ca2ae00a96e29883f6c019c5575f5bbfb13158b66a868038e
MD5 4692e25e6bce16310b442b3e0cd26129
BLAKE2b-256 0fe668220f2c7821a1fb9fd78f4093eb6d43a94fe2bf4652d1189ebdb86b1e6b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.5.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 110ac65f9c1e4f2f36d6e0331404ae6fd72cd31155defe6ecc97758c44c4697c
MD5 0867fe936a95f67445c58fbdfa0ba190
BLAKE2b-256 b45835fa2a62db8842cebb40790c125df0ad71e6de8c60602f3dd5504b017aa6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyrodigal-3.5.1-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.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 1b42b538d4ebcf1fd9b9b99946832a4bd08aa147b8ec7fb7e279497cbbf88739
MD5 a0f4c137f8a5b353b72bf6948a82e7de
BLAKE2b-256 eaaf1478c5efefa3956ed7ac9676252e3f5c298bc3b4cbc9b70498fb39358de1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.5.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 754118f08fc89ec47cb563eb409ef339b2143a76168cf2f9f2645c5a53713407
MD5 4fc1959c22bedaba33db15c57a9a6e3f
BLAKE2b-256 472b44797593da274c916e750fa19c1dffad0d689f417d4fe0948712c9547ba6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.5.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d820e0c6c37042bc5035077b6c9786e423a43fec8aca66c3ce90c60e2b264c8e
MD5 8c5f076750f84d6220bfcac38d5a971c
BLAKE2b-256 ff35ed87b929c2190cb7ac56e9d62a2b11e1265864c4ac913ee10d95f780ca38

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.5.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 58cc8fde7df14936024a119ab55796d1b249fda18c141844bb4c062be297ebb5
MD5 659764b212b4f246f031f12b3d041222
BLAKE2b-256 c70978c893a31773348fda8e437aa863257022c32d034685e1f7d5f44cf5b470

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.5.1-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b1ba411084cf640757b7349ae874ec3b7c2882962f141233a506a0f939f67dbb
MD5 7178325978b91672f16ffcae64d2240a
BLAKE2b-256 73dd1ee3a10d0b468b8a81279df0651b23bc11c24cf036729cdd4edbac369065

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyrodigal-3.5.1-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.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 68afa7f080c17ea7b51c293ab688d731a63e150cb96966163a7dd0c50c93d37e
MD5 0a1806940a4110ad392641cf2362ad87
BLAKE2b-256 d51356134c526afab0f6306abab49ff9c7c895db9ad0293c155f34bb731182a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.5.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5344273faa1638f9e32a0c8adb07d8d2ebb8066841ccb326bff6ea95a35357d4
MD5 3aacaf831cd4a4f6383ee4779090a3ab
BLAKE2b-256 7f041892f07afae0e164c8eeedae1c87fafc829a39af9bcc51047cd9e2d6e343

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.5.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e88665e05075b69cdcc0df0df495db7dff2360663905aa267628d7ad10122a99
MD5 673bac3675c41e2194c2f850f94d8684
BLAKE2b-256 e81dbc6e37026009ad0c39ead6fd2513000efdb76a9465fcc9fdf8cb0b28fb8c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.5.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 217795538d27abeb66fb3fff0dab674c61a5226584b1c6440154a052295f4d16
MD5 093c94792383448310f4a5000c64075b
BLAKE2b-256 db267357dc135b3a7f72f17d8bb044db2ae85e14ff5c990fd0dcf38831857ed9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.5.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e2b69dbaf657a842b758443f314b28727ff6f4cdf74d9326de6787ae9bc02587
MD5 b4f109b1f4408ff9a70465f5aa7a21f2
BLAKE2b-256 cae31350521c4d2af82f612fbee71bcdc75e74f484aa5cd378a8e2d94f2c15d4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyrodigal-3.5.1-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.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 cd7bd9aa09de63f8660b9f6ef44ac02ae3e9809a2284e052e1e8ad99ac7ba68c
MD5 69f6fcaf704acf061f7d999c5e9ff19f
BLAKE2b-256 c3863596ab66755ff3d4dc856088fd689a153f830dd692f3597b3bd2f5855ddb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.5.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fb46d6f7879ed753609c9b52c1f8bc9681762ec0bcd9cc433681479b302f1b59
MD5 7e5148c132d28f643a47e10db1a6c083
BLAKE2b-256 cd1ad5ee35df86b8de63defc2067304410cc623e5f17c16184a342e6240111a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.5.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4979d268e29f377aadab3f71869629c9ec3a2b57398aa4afd98a4b3cf1158b35
MD5 9967a1a5ff3f45ff1540745f62d6eba5
BLAKE2b-256 0c963cdc58c220b46c7701989e230579ac63c0a7f26ba44fd8ae5449830fb804

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.5.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9857ea8732e0407cfe86af1fa712a17aa76b723c4eabb28011253bff5f63f03d
MD5 6939add54de29f2e7636e3e362cda243
BLAKE2b-256 f75b79f365b6ae4edde5a9b0baf857a156dd7bec6eff2879939b4c634babd25e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.5.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d109bf29beff72c6d40a158d04f7de58b9c285812017112b913b50d599497017
MD5 1f6d8c1c16986cd4d9d2af02936d2a73
BLAKE2b-256 8d761b71dff669c2ee03c903523587a9bd92087ae9b9426f38ddd1d762a53b2f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyrodigal-3.5.1-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.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 6d1ba25ef43a587feabc826effe6a1f3764317d76d042f39c07ab53546725e25
MD5 c0d35f9dbabea715e79b7cb0a952a13c
BLAKE2b-256 d5863f612577cf473a0100ca044728be6e6d4a7cbfaa3405164facc9a84bda2e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.5.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d975d78dcc42302996121d489886c13dfb6a504bd588f09555f3acd94bb5eed8
MD5 b2324aac1d3e7fbf8d93542bcb1fc79c
BLAKE2b-256 9e7af641d1b5246ecd871f5d84f4d58e218ade3ee9eb36262a20cfb5deee23c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.5.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9bc24c89dfe3a2c9fdd16f67ef592068b2f8cd856d618457b36e559129c37b2f
MD5 6c7bf604ed87ce4ad3151fde579df7eb
BLAKE2b-256 97adf27f8ff2c873d4d28750d28d22bee38f61a5f44eb94c2a2dac9134b39d3a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.5.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 284dd7e1d35dc4ea280ac38bcd5861e1e9dcbbf24ee9330646b5310fd3ca1362
MD5 2589e404b7841df05ce58e512c75ed8c
BLAKE2b-256 56ac523893a9c7162a2d3a5e0e3c85e5fc3d1a2c48ae2309a204b8f723a131a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.5.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 27d02a7b65c465cbec0d47317b7abba6e55ec2c46490db1dfc520b75ad6f16ca
MD5 276c13078a0bc2aa68450004a0294129
BLAKE2b-256 5fcf25788e58c4ffc70095e195f1285f8f9e922d4fa18cc8688a15b8636337ba

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyrodigal-3.5.1-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.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 a1b013f65f8c585936ddfdc85326de7ee8c4d12e5756c578e41fa5f4f5ed7e20
MD5 02684b1f539e2618ce6b2cdf0a4a16bf
BLAKE2b-256 6ba4a327eec5f8679ad984e595fc9248a675f9da1f8d43907710457d4abb19f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.5.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 93f172155e3004038b42172bbdccb6af73243373913636b1d5b6819309d99fd7
MD5 d30d26a2da570c27a941037d98603bfa
BLAKE2b-256 e3bf4db2a5c811fb2e49a304d262cd0f366c932d60d0811763d7c9befb9d29f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.5.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 143ecf1f72434fb22d8c3a244f27ebb269d5bcdeb9e0883dba7a70b289f80607
MD5 bb4a1f99fa70b27690619193d3135daf
BLAKE2b-256 444fedfb6ff347bb1ac7fafaa186e844bec35b79ce814a103fdb41970c69a931

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.5.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 050923963d3abe6e8cd3ab57a66d8b2f50741d8c179239c5f2d037929230c205
MD5 9648a2e78ed74acf272403bb4e38f33c
BLAKE2b-256 21007f4661effd8ff9ac9a9d273197f6e5e43205bd2625a488e2962294acac14

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.5.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 37356693f95264429cd58fda80a6f92b68b3149d31093b587dfa1dd9aa44ddbc
MD5 6c14a91ffb245b2c4a42022763cdf767
BLAKE2b-256 e1bf9085116e01533fbaf442e00ee07b93c0c9b46dccf782438f8e15785aaea9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyrodigal-3.5.1-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.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 c379cab9882f764ad36928699271c32a2a0d5b0732db025b29796bd56324f04c
MD5 2c681712d4b94047b277d16196efb556
BLAKE2b-256 03ecdb641a36739515dc14b769ef0b4d3fb6cd97eff3a75931b9854d20c14d7c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.5.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d2d6d1efa86f9cb5fcc79312c81408e7d9bbef7ccb3ac6513c4bdca07c3c1bcb
MD5 4af2575cd77df83b4624d21599d6a47d
BLAKE2b-256 45900e30f2a4d92408db7a7b045811baf2ffa356c45d8416fba1e53001a536ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.5.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2b67874f23c48a7ab94421936d1f47007594dedb32570d7e229d3cec7c02dc08
MD5 7b7f16345315eac13e8fae78365bb817
BLAKE2b-256 435f233e843306e9cffe51661aae0efab59cf494d836b4ce483dd4ce2bffdd19

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.5.1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3f15e371f99e623c56af9ab846bd993bedc496d457ef643ef40f4b40c5f8d098
MD5 5462182bec37ddb03b2cb6359d20d519
BLAKE2b-256 d2cd020bc82cc0acb3f6ac7616b78f22005d23a4144cdcf0d8216112637c1360

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyrodigal-3.5.1-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.1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 2a4aa92ce893a63d69a4634b1f1550e4848f70ab4f37fa1af0cc7d85bb71112a
MD5 e63c8af604ab6b2c459ae9a6d3ad0424
BLAKE2b-256 126742583e7207ba581c440a397a86ddb829e8fdbece45b731a0d3529d6eb638

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.5.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4cd6f7a068cba0ad0b449f9c60a131201443ee1a74db5ea542a938ea5c4435b1
MD5 1f23554ae5f5ba8bd24b2ab4c08a6984
BLAKE2b-256 65f70df593cdae399f219f80239115d07bae41603092155ab6b697bb95c0e4c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.5.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bab5724411f79f8ef6b9968e34b77d030719308687409f4bbb428be5063608a5
MD5 4b8c86b3d491ebf18548456fde5f768a
BLAKE2b-256 64442153a63ecc1be9acc107f7049a094d8398f0e39041dc683371068fda44a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyrodigal-3.5.1-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 55258bd71b2f55c30dbed50496d12ce851cab220f11c6ffa1dadb4f9f07b89ae
MD5 aded4e6c4096b048800753ef099c5ec8
BLAKE2b-256 afa837ffe656e54c9551a917b3342355d7dbe67e9f12be413a8c2e323bad4734

See more details on using hashes here.

Release history Release notifications | RSS feed

3.7.1

41 files

3.7.0

41 files

3.6.3.post1

51 files

3.6.3

51 files

3.6.2

51 files

3.6.1

1 file

3.6.0

1 file

3.5.2

50 files

This release

3.5.1 This release

50 files

3.5.0

50 files

3.4.1

50 files

3.4.0

50 files

3.3.0

46 files

3.2.2

46 files

3.2.1

46 files

3.2.0

46 files

3.1.1

46 files

3.1.0

46 files

3.0.1

41 files

3.0.0

41 files

2.3.0

41 files

2.2.0

41 files

2.1.0

41 files

2.0.4

41 files

2.0.3

41 files

2.0.2

38 files

2.0.1

38 files

2.0.0

38 files

1.1.2

32 files

1.1.1

32 files

1.1.0

32 files

1.0.2

32 files

1.0.1

32 files

1.0.0

32 files

0.7.3

32 files

0.7.2

32 files

0.7.1

32 files

0.7.0

32 files

0.6.4

25 files

0.6.3

24 files

0.6.2

25 files

0.6.1

25 files

0.6.0

25 files

0.5.4

21 files

0.5.3

21 files

0.5.2

21 files

0.5.1

22 files

0.5.0

22 files

0.4.7

20 files

0.4.6

20 files

0.4.5

20 files

0.4.4

15 files

0.4.3

9 files

0.4.2

9 files

0.4.1

9 files

0.4.0

9 files

0.3.2

15 files

0.3.1

10 files

0.3.0

14 files

0.2.4

13 files

0.2.3

10 files

0.2.2

10 files

0.2.1

10 files

0.2.0

6 files

0.1.1

10 files

0.1.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page