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 DOI

🗺️ 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.
  • lower memory usage: Pyrodigal is slightly more conservative when it comes to using memory, which can help process very large sequences. It also lets you save some more memory when running several meta-mode analyses
  • 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.

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

🐏 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 finding the start and stop nodes.
  • Node arrays are dynamically allocated and grow exponentially instead of being pre-allocated with a large size. On small sequences, this leads to Pyrodigal using about 30% less memory.
  • 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.OrfFinder instances are thread-safe. In addition, the find_genes method is re-entrant. This means you can train an OrfFinder instance once, and then use a pool to process sequences in parallel:

import pyrodigal

orf_finder = pyrodigal.OrfFinder()
orf_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/OSX/Windows) and the Aarch64 architecture (Linux only), 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

💡 Example

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

🔬 Biopython

To use the OrfFinder in single mode, 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:

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

However, in meta mode, you can find genes directly:

record = Bio.SeqIO.read("sequence.gbk", "genbank")
orf_finder = pyrodigal.OrfFinder(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

seq = next(skbio.io.read("sequence.gbk", "genbank"))
orf_finder = pyrodigal.OrfFinder(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.

💭 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. The cpu_features library was written by Guillaume Chatelet and is licensed under the terms of the Apache License 2.0. See vendor/cpu_features/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-0.7.2.tar.gz (1.8 MB view details)

Uploaded Source

Built Distributions

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

pyrodigal-0.7.2-pp39-pypy39_pp73-win_amd64.whl (2.0 MB view details)

Uploaded PyPyWindows x86-64

pyrodigal-0.7.2-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (2.0 MB view details)

Uploaded PyPymacOS 10.9+ x86-64

pyrodigal-0.7.2-pp38-pypy38_pp73-win_amd64.whl (2.0 MB view details)

Uploaded PyPyWindows x86-64

pyrodigal-0.7.2-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (2.0 MB view details)

Uploaded PyPymacOS 10.9+ x86-64

pyrodigal-0.7.2-pp37-pypy37_pp73-win_amd64.whl (2.0 MB view details)

Uploaded PyPyWindows x86-64

pyrodigal-0.7.2-pp37-pypy37_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (2.0 MB view details)

Uploaded PyPymanylinux: glibc 2.12+ x86-64

pyrodigal-0.7.2-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (2.0 MB view details)

Uploaded PyPymacOS 10.9+ x86-64

pyrodigal-0.7.2-pp36-pypy36_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (2.0 MB view details)

Uploaded PyPymanylinux: glibc 2.12+ x86-64

pyrodigal-0.7.2-cp310-cp310-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.10Windows x86-64

pyrodigal-0.7.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

pyrodigal-0.7.2-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.12+ x86-64

pyrodigal-0.7.2-cp310-cp310-macosx_10_15_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.10macOS 10.15+ x86-64

pyrodigal-0.7.2-cp39-cp39-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.9Windows x86-64

pyrodigal-0.7.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

pyrodigal-0.7.2-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.12+ x86-64

pyrodigal-0.7.2-cp39-cp39-macosx_10_15_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.9macOS 10.15+ x86-64

pyrodigal-0.7.2-cp38-cp38-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.8Windows x86-64

pyrodigal-0.7.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

pyrodigal-0.7.2-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ x86-64

pyrodigal-0.7.2-cp38-cp38-macosx_10_14_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.8macOS 10.14+ x86-64

pyrodigal-0.7.2-cp37-cp37m-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.7mWindows x86-64

pyrodigal-0.7.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.0 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

pyrodigal-0.7.2-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ x86-64

pyrodigal-0.7.2-cp37-cp37m-macosx_10_14_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.7mmacOS 10.14+ x86-64

pyrodigal-0.7.2-cp36-cp36m-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.6mWindows x86-64

pyrodigal-0.7.2-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.0 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ ARM64

pyrodigal-0.7.2-cp36-cp36m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ x86-64

pyrodigal-0.7.2-cp36-cp36m-macosx_10_14_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.6mmacOS 10.14+ x86-64

pyrodigal-0.7.2-cp35-cp35m-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.5mWindows x86-64

pyrodigal-0.7.2-cp35-cp35m-manylinux2010_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.5mmanylinux: glibc 2.12+ x86-64

pyrodigal-0.7.2-cp35-cp35m-macosx_10_14_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.5mmacOS 10.14+ x86-64

File details

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

File metadata

  • Download URL: pyrodigal-0.7.2.tar.gz
  • Upload date:
  • Size: 1.8 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for pyrodigal-0.7.2.tar.gz
Algorithm Hash digest
SHA256 0b4a590e7835f85656d7f5fc361ee9124ff1a5091a9935c795de1eb348be307a
MD5 b35fa2090a0ba73f330883a57f7cc3d3
BLAKE2b-256 6ec8a07a3a3ffe6330e8a8a234fe0d340c8e514c4ac705ec0f1703b944a4a69e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyrodigal-0.7.2-pp39-pypy39_pp73-win_amd64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: PyPy, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for pyrodigal-0.7.2-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 fa8bee6679490b61323977befddf6a87b623275692e3410cdd817e27c5f98ea5
MD5 bc0c8c9b9dda2d3b3e3cf3a14c0d29b5
BLAKE2b-256 23b538e5586106f615ec6b66adc7189c40a5abc0530729d10c73858b12c0e500

See more details on using hashes here.

File details

Details for the file pyrodigal-0.7.2-pp39-pypy39_pp73-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: pyrodigal-0.7.2-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: PyPy, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for pyrodigal-0.7.2-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2d43c22bcbe1b7ecc7a5861d1b6b3dbd4faf809d622d6a2c8c07321341fec29e
MD5 a5d568b47da85658755c837789d329a1
BLAKE2b-256 bdd5052660ab6891081d750845e600bd6149a371e7ec4a0a66c2fe3c0df6b382

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyrodigal-0.7.2-pp38-pypy38_pp73-win_amd64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: PyPy, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for pyrodigal-0.7.2-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 69f0dfcf56b40494f9a32a6c0581e6f2cca58dee611fd12007ad41565fc1b2ef
MD5 8b59f5b1cab5656c7e77e8d555918e9b
BLAKE2b-256 11d359cd4ef83b840a52a23eb31698c0b5c4f1ccb159e0638bd3566afc65f902

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyrodigal-0.7.2-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: PyPy, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for pyrodigal-0.7.2-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c1e406ae8fd93bb80e5199fd280b50209cfb5181a3bc74d82a1583d8a3d3a6af
MD5 bcacf0804e4666da31c06ea3dfb93876
BLAKE2b-256 5fb901c753c41a8205e667a3f300d4b774c5f39ede2aba21d9aa023fa9518b39

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyrodigal-0.7.2-pp37-pypy37_pp73-win_amd64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: PyPy, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for pyrodigal-0.7.2-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 4fbd9455fe735717e6e7b834b94b5120dda458078a20f5b5c99f75fcdb7741f6
MD5 5a2141236ecf980689cfc184dc0d1d12
BLAKE2b-256 c4996560f9c756cdb81e770d614e4a76fcdb48d96167db520f8da2413a11464a

See more details on using hashes here.

File details

Details for the file pyrodigal-0.7.2-pp37-pypy37_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

  • Download URL: pyrodigal-0.7.2-pp37-pypy37_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: PyPy, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for pyrodigal-0.7.2-pp37-pypy37_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 02061c624015a0c9331f4cae12e0dc689127ae1ec40c931903a8ca6cbb30625a
MD5 d91dc8d86613828f47a48eb0f2fa1942
BLAKE2b-256 74f2d2e23065d18bbacc7c1139b44fc2740f4e36a87e36fb8a5ea3f062fc8e10

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyrodigal-0.7.2-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: PyPy, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for pyrodigal-0.7.2-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0d45fef3e56670ff7ddf9ca78b43a7b4f19f169d88cf7afe70a3c01950936cff
MD5 315be55c4b1271f52cb23e1fb0cefc2f
BLAKE2b-256 63e9366d841fbda77cf4a40168cf935fcf9ba0c6199f794492de09b1e26109e9

See more details on using hashes here.

File details

Details for the file pyrodigal-0.7.2-pp36-pypy36_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

  • Download URL: pyrodigal-0.7.2-pp36-pypy36_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: PyPy, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for pyrodigal-0.7.2-pp36-pypy36_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 a190e638649646b021617c77a779103d05d359ce0496f74edeb8714497068803
MD5 8746fde85655c374459d8a41b3cd3bdb
BLAKE2b-256 83f5fc59f40ee0347f7bf1137eb7992395deaa2047e1140e5562957ea08ec3eb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyrodigal-0.7.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for pyrodigal-0.7.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 006c84c75c39e3bf699c45cdb3fd85cc596136579504adbc55b75ee10b6f75b5
MD5 368cf2ae8078426ab76c574357d7cd8b
BLAKE2b-256 c3ff57d3a2daec9f43e2918be2094924b079d8ba2d4e6113d96c3391600dc12c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyrodigal-0.7.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for pyrodigal-0.7.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5ae4de7ad444ea66d43af9f7379cea7b7c5d73f913e1b4747d680457df7fd9cb
MD5 804dee123764f2bb579f5202b22860c3
BLAKE2b-256 65cb4496e6af5c2d47886396c03a3fec8d9184017f21bd8d83a8fa285f086c45

See more details on using hashes here.

File details

Details for the file pyrodigal-0.7.2-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

  • Download URL: pyrodigal-0.7.2-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
  • Upload date:
  • Size: 3.1 MB
  • Tags: CPython 3.10, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for pyrodigal-0.7.2-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 180df5baa5765a1828d252d7c5de8c193c7fa6a8c7e570d31b65f808c3ca4191
MD5 f7fa719bdb053250cad484bad126a97d
BLAKE2b-256 a9dbe5d01698b5b60f810f0f4a003eb42f69ec12b42481d12b33eb4e03622f43

See more details on using hashes here.

File details

Details for the file pyrodigal-0.7.2-cp310-cp310-macosx_10_15_x86_64.whl.

File metadata

  • Download URL: pyrodigal-0.7.2-cp310-cp310-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.10, macOS 10.15+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for pyrodigal-0.7.2-cp310-cp310-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 392f91e1cd8532202b7d8cf125132edca7de33fd683c88885aa5989ce19ef934
MD5 2585c355272054c9c4a0e1bd24eb9786
BLAKE2b-256 7aee41ef0ce1ce7c011799b22f0f1cc556b087aae48a63ce2cd35457757c67ec

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyrodigal-0.7.2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for pyrodigal-0.7.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 27ad4a5ce7220021f2b21c2681f6e9fc6705efae86afca828f05e66d0c25b5af
MD5 28db495bed261bcb721aed78783eb237
BLAKE2b-256 839c401372dee40a64e809935084956817ae0e403d3f3ddc53f3b6fe5b89a7bd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyrodigal-0.7.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 3.1 MB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for pyrodigal-0.7.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 04a09889046376de59c41af7b7102f1e8a92a0cc83895899b497c5fea5486fa9
MD5 7d7546415abff05b7b1da2fe05711d3b
BLAKE2b-256 84322e70d6958a3f90557f52bd6252b1c65676b52352a00bc180a4b612691de0

See more details on using hashes here.

File details

Details for the file pyrodigal-0.7.2-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

  • Download URL: pyrodigal-0.7.2-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
  • Upload date:
  • Size: 3.1 MB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for pyrodigal-0.7.2-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 56c7d513ecfef68b6842c8424095ed49acb8dc27219678b82c916e53b98a6f86
MD5 e2c76b3ac828a826ba714d67f4201f01
BLAKE2b-256 021584019ad843d4082875e6b74e0b8f7af7ff8fe19bc938e63af69809713d8e

See more details on using hashes here.

File details

Details for the file pyrodigal-0.7.2-cp39-cp39-macosx_10_15_x86_64.whl.

File metadata

  • Download URL: pyrodigal-0.7.2-cp39-cp39-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.9, macOS 10.15+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for pyrodigal-0.7.2-cp39-cp39-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 a6b9b734f185fccf14781213f7109f90530c61f00b2a9076bacb4bd20f5d9925
MD5 abf58b320acd13d25d4b083f0335538a
BLAKE2b-256 cc0ac20598620f251dadf42721ad8cceedb5d4094a040b7e3cfe05326a8a0a96

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyrodigal-0.7.2-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for pyrodigal-0.7.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 5c84b0418037731b45f3d644413097c8a5bc9f2c370f01c0fa0377072a5ddc15
MD5 29780cb752e871248a8c00c7ca77d76f
BLAKE2b-256 5af233a5d99b7455a50b46705ca63b0bcfc7f0bf3567398813d5543e5c75d992

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyrodigal-0.7.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 3.8, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for pyrodigal-0.7.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2376402dc501c08005daa6141008d6d516975da82c14b95cde1b2833d49333b1
MD5 102c2a99818d0fd0590d02a782e25ddc
BLAKE2b-256 612f9f8466db1db0a959e1af755ed9e75bebd2d60d73c29c4ecf40fcbcb59faf

See more details on using hashes here.

File details

Details for the file pyrodigal-0.7.2-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

  • Download URL: pyrodigal-0.7.2-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
  • Upload date:
  • Size: 3.1 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for pyrodigal-0.7.2-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 9ed8720b39d955e64a4631d05925bf44f88aea61d7ed384ff76b7c8160c9ae25
MD5 be57ba9d5103b915de4aef0cdcc6cb7f
BLAKE2b-256 33fa90c9f0f21e70a56707afbf60f191362196a2b7dffba5f22bf593cda4bc9d

See more details on using hashes here.

File details

Details for the file pyrodigal-0.7.2-cp38-cp38-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: pyrodigal-0.7.2-cp38-cp38-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.8, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for pyrodigal-0.7.2-cp38-cp38-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 b7683e61981224a271a49c5650645da1d8a4be165881b900104ed04d452003d8
MD5 df797fde7a66edfb1e14914e22f8c8fa
BLAKE2b-256 c50086478e99869c439bdc0d9e66dfd743b7dd69826969fc9ce9ced72091dc88

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyrodigal-0.7.2-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for pyrodigal-0.7.2-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 9ea7ad4c2ab9e787acaf63b826486d7c8b8f37c32fa0051d46eaa58ed3184d7b
MD5 0cb72a7c7df3588d04a353de8128b9de
BLAKE2b-256 8e808f806d33f164f0def099f6a9132eab67d8410d031b5ed230963b5ae68151

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyrodigal-0.7.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for pyrodigal-0.7.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5ce93ce58885c467d9f396503d76cc5890c5f730a0136d86c14a56740ba2dfef
MD5 200e01f1b8dcb963f9eb3101689ab768
BLAKE2b-256 0461105fc6f621007878a81daa7cb50dbeea1a93bd70c86c51876aa587e832c9

See more details on using hashes here.

File details

Details for the file pyrodigal-0.7.2-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

  • Download URL: pyrodigal-0.7.2-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for pyrodigal-0.7.2-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 7e5fb9dda3dbf8fd51e2cf654aaa1c3faf6b7ec2a5e39259cbed2e3559e5289b
MD5 8ab66ad4937275cca09c6a236da19a72
BLAKE2b-256 5387d824ef38acbed3f033285be0f8e77569661b40425c23a8255a3d47fd5348

See more details on using hashes here.

File details

Details for the file pyrodigal-0.7.2-cp37-cp37m-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: pyrodigal-0.7.2-cp37-cp37m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.7m, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for pyrodigal-0.7.2-cp37-cp37m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 3f62a7f534fc4ac5cc7f0e922f317f7d9f0058a049dc5992f47cc455a0dd2401
MD5 c622e9d442dcc619cd535cbd07685bd3
BLAKE2b-256 8f13e014d3a878fb9a695fb9b1ad3c32bb736d351a2cf1eb6fc56901730d3a3d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyrodigal-0.7.2-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for pyrodigal-0.7.2-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 fdf24ac29aaa5ce106ce6fde905684ff1d3066ef7cd2a3aa8d761545fc2bc778
MD5 568edc6511dfa5694f71ec2a220604ed
BLAKE2b-256 5072040193c1de37e95e3ce5494bc76c717fc7406d8288fec33a316d3267e861

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyrodigal-0.7.2-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for pyrodigal-0.7.2-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 811e50a5c65394e5939a5c07eaf55bf9f16722bb9e33410b4f2f992e3aabf731
MD5 38085cb3525606e8fff73a7aa06bfcbc
BLAKE2b-256 dec90984642e7626c6f4bbaff3adeca5ea07f1f294317e6b7967e5fc6a6ea5a9

See more details on using hashes here.

File details

Details for the file pyrodigal-0.7.2-cp36-cp36m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

  • Download URL: pyrodigal-0.7.2-cp36-cp36m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for pyrodigal-0.7.2-cp36-cp36m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 48424d9753ad4588861eedb46eb06a407215944fceb5236f7038aefd58aaa01d
MD5 05bf162ef918d370d287fa40217f92ee
BLAKE2b-256 d52d08f12ecad3055137de144944ac84c25c8ef08dcc2d9e000aabe6e8f2a719

See more details on using hashes here.

File details

Details for the file pyrodigal-0.7.2-cp36-cp36m-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: pyrodigal-0.7.2-cp36-cp36m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.6m, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for pyrodigal-0.7.2-cp36-cp36m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 57050b7b484ecb338875e09e244cc06b812c05db1b514fce3e416e985faf1ff8
MD5 7b5772fb32f8214157e4acfb00f0908e
BLAKE2b-256 8437667fb981ea0d16a90f2c7d30e2ed71c3e4bfc394a8ec76880b9ef01d9803

See more details on using hashes here.

File details

Details for the file pyrodigal-0.7.2-cp35-cp35m-win_amd64.whl.

File metadata

  • Download URL: pyrodigal-0.7.2-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for pyrodigal-0.7.2-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 2b3292fd2becfa60be219dc4963f6a64fd592ceb68252cb7ee84f7a5ce41f75b
MD5 599fca4b4eb38f0be41171a9aa4b5d8f
BLAKE2b-256 31ffcb9023ad8098a264e6342ca01cad3baf4ab8572f68796cd6fc923b32ad99

See more details on using hashes here.

File details

Details for the file pyrodigal-0.7.2-cp35-cp35m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: pyrodigal-0.7.2-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for pyrodigal-0.7.2-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 09f90beade4421652e300f7446214cb685359cff9880349913015191ffa91c02
MD5 cb7dc98352be716f347316e3ec75d134
BLAKE2b-256 06b0d7351ddfe7f5fc5a9f21ecca856a3d778e42d28c93f7427883cc7b629107

See more details on using hashes here.

File details

Details for the file pyrodigal-0.7.2-cp35-cp35m-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: pyrodigal-0.7.2-cp35-cp35m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.5m, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for pyrodigal-0.7.2-cp35-cp35m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 99dfaa3f7b54b9dd51d646ebd1f08cafaa4440eb0a1efcbbd60c5fa8a3d986bd
MD5 466d34af70dd694e3b7921c735497027
BLAKE2b-256 f2103170c80a5663b31062fda1c7b3b143748bf477c09d7a77f96f9fc79d3024

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