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 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 two changes compared to the original Prodigal command line:

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

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.1.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.1-pp39-pypy39_pp73-win_amd64.whl (1.9 MB view details)

Uploaded PyPyWindows x86-64

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

Uploaded PyPymacOS 10.9+ x86-64

pyrodigal-0.7.1-pp38-pypy38_pp73-win_amd64.whl (1.9 MB view details)

Uploaded PyPyWindows x86-64

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

Uploaded PyPymacOS 10.9+ x86-64

pyrodigal-0.7.1-pp37-pypy37_pp73-win_amd64.whl (1.9 MB view details)

Uploaded PyPyWindows x86-64

pyrodigal-0.7.1-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.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (2.0 MB view details)

Uploaded PyPymacOS 10.9+ x86-64

pyrodigal-0.7.1-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.1-cp310-cp310-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.10Windows x86-64

pyrodigal-0.7.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

pyrodigal-0.7.1-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.10macOS 10.15+ x86-64

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

Uploaded CPython 3.9Windows x86-64

pyrodigal-0.7.1-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.1-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.9macOS 10.15+ x86-64

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

Uploaded CPython 3.8Windows x86-64

pyrodigal-0.7.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

pyrodigal-0.7.1-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.1-cp38-cp38-macosx_10_14_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.8macOS 10.14+ x86-64

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

Uploaded CPython 3.7mWindows x86-64

pyrodigal-0.7.1-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.1-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.7mmacOS 10.14+ x86-64

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

Uploaded CPython 3.6mWindows x86-64

pyrodigal-0.7.1-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.1-cp36-cp36m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.6mmacOS 10.14+ x86-64

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

Uploaded CPython 3.5mWindows x86-64

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

Uploaded CPython 3.5mmanylinux: glibc 2.12+ x86-64

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

File metadata

  • Download URL: pyrodigal-0.7.1.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.1.tar.gz
Algorithm Hash digest
SHA256 e54d032100e2b01543d6a22ec7ae8972a72951168025a6454efef40cd70f1e50
MD5 d32963f090235497216b6db7923b6d99
BLAKE2b-256 abe4b2f6c5184dc35bf6bf68e0462b2da4000d96edf4846d92bb5ce560cb91f8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyrodigal-0.7.1-pp39-pypy39_pp73-win_amd64.whl
  • Upload date:
  • Size: 1.9 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.1-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 1d7b32e45f124c49113c9fd90d7860dcd224d075feb0651172b82c4d2bfb3a8d
MD5 747644f53e819860003cf03a9edb1d74
BLAKE2b-256 ce8b5b37208ce94b8e37f69126db2371b6dfe83d84a1bda5b2a54f577c1b9a23

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyrodigal-0.7.1-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.1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f7a671e634516fd3b5f01e4f7f44ad0a8e9049c40b94f405a2a93ca45f0df41a
MD5 e11753a8ea24a3143e98e098e0ba0c8d
BLAKE2b-256 393996559b63c91085c348cda3e526488c9565f677ef2bfa9bd6648ff1be5954

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyrodigal-0.7.1-pp38-pypy38_pp73-win_amd64.whl
  • Upload date:
  • Size: 1.9 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.1-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 bfcf73e0259b301703a1ead38c84111333ce118446f39ddc8a00d19d66a499c0
MD5 ce7664b71d8841e11cbec4b714896c9b
BLAKE2b-256 6bc24533ffd1710018e5e0a6494bdebf7c62ad5eacbe63d9d06a8ce1be3f6320

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyrodigal-0.7.1-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.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4438b80e74a90e314c088136e1e698120821c95a611f887c740bd00e27ae8cf7
MD5 a67e2d7dc7668be35f6b3856409d29ab
BLAKE2b-256 4434ec197531f09a9fb18ffc6a9786d230d3d15d4debaf470af5b0d7e6fc3196

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyrodigal-0.7.1-pp37-pypy37_pp73-win_amd64.whl
  • Upload date:
  • Size: 1.9 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.1-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 af4456733c6fa18f16ba6cd0d5ab1e1573303c15de9d234b6a68da2107012f7b
MD5 98a6e163416ada824f13d24e5ec5e3f2
BLAKE2b-256 80112725d26c79e4da20a16da80731c74db79fa9fb29a52d5c58900301cf35d6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyrodigal-0.7.1-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.1-pp37-pypy37_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 110946b9c4279d06237a36a9c39c43d9eefa0904c09b4c1c36dd04670880f4f1
MD5 378cd396494238c2b7b706f5cbc1af00
BLAKE2b-256 c0539bff2c1ff660d293973ea6ce8f369517f0af373b9e3e0b882df656086bde

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyrodigal-0.7.1-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.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cdfcd7d6cc7ede5e3a7f74bcf2d6823c51502dc9ad95e84ffa8a49f4bb083d18
MD5 bc6f2aa992d7d3288bbd4165ee54c17f
BLAKE2b-256 1a53dd721810ea7f3694bcf8c6e41b14dce3e2e578c47ab2c050eca0da6b1cb1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyrodigal-0.7.1-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.1-pp36-pypy36_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 366e46dddf2b5a9cbc49fc864832b097c9fccbae9ed4030b8a7c6ca2e2c9443c
MD5 be464c0a5595e4b377d0247758c3de86
BLAKE2b-256 254967e59e7d1a88e33412f41ce1d360a33e31318f41b262bdf95794096f6692

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyrodigal-0.7.1-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.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 fad83c802c2d5f41059c21f6aba96619207722df7515e808d16bddb782e7046e
MD5 efa6fdcf40ca0eb330b14e8285c30f07
BLAKE2b-256 dd614252cb3da24b273a4dd97ed509406a7923c753d80e312d7bc38906716e79

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyrodigal-0.7.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 3.1 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.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a7f96e45b2b45f6c851c52a059b0ed23e2ff13a861b41a5ca3ca55c88ff99f6b
MD5 003e5b53a880fb9ca830706c1301e900
BLAKE2b-256 e7c30aac710c2c151bc052f66be0369caf59d7b11225f833a757f9022b82504f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyrodigal-0.7.1-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
  • Upload date:
  • Size: 3.0 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.1-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 e9f5197dad7e28a841da06b62cb5838d3143ca8087f38d17cb746c095c3ff450
MD5 b00461a903aca9b1d39149cf15aae067
BLAKE2b-256 ab4186752a37579761ea72753e164e73ea517a05be5cd40c30c945bda9a41046

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyrodigal-0.7.1-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.1-cp310-cp310-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 6ba74e173c3d9aa96e9be77bee1c226e6632cd327c61c461906d7625bef1bf79
MD5 4c9c11ef39e67d27efeb920ae5ddbd25
BLAKE2b-256 d4173a75c596977fdb9b3d47a4e0a7b8c85c2401830617b64ceae1a9c1ef4b8c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyrodigal-0.7.1-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.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 285a0974e8265c4b04a62d54fbb3d009dc791d164a1afc58749c129584cbf1fc
MD5 308d408b71fccb9ba8c632ee5d767235
BLAKE2b-256 8005e7461e4f297168229f06c244360b6f034f83ebeb2af0edd1986cc398ae20

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyrodigal-0.7.1-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.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 03ce71e94d110e6e88e7c675eb65dc0efde4e25bae09ae9cebccfbcdca29effb
MD5 44a96462bf63ce3bab51cef9376828e2
BLAKE2b-256 4cd3c5e5eff863fc5f7f02784bba670c39185d11f200c1906953d5ab0cc663a5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyrodigal-0.7.1-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
  • Upload date:
  • Size: 3.0 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.1-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 6fcf5a1702053d876560fdf510a53591f29e923eb7f79bb65ff5f0a6438cae17
MD5 e2909aad4a1d79381f46111c595ecf37
BLAKE2b-256 d823beda0f63f3d5357053e9a603ee9f574602e550d5beb10915f78acdb64830

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyrodigal-0.7.1-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.1-cp39-cp39-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 dcf8584cdafc0778c3b168d76699c501ed90cc6ceb20d6c579217a14793e78a6
MD5 f1bb028f99332394a83cd4873d8b24e2
BLAKE2b-256 ec4a9bf1bc5bc6ea8d7f3401e7fde5bb8a7a8df0ca3ca03ef9d7e21ace818748

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyrodigal-0.7.1-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.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 1f9f395957ce62ae16b4eab8697e5f3a1df905aba660ce116dd1c6cc7e2c4090
MD5 86c7aae9e2448c332e92c5b8db8bba6b
BLAKE2b-256 3960e42311e401816304db4232562be066b75949d5c4e294509d8da7ec32f8e4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyrodigal-0.7.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 3.1 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.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e9188d1da041c6c1bec3edce409dab67084362b2ef092eb6b3e6a237f6907108
MD5 31241c960ee522bea4f3133a3ba80dd3
BLAKE2b-256 3b6588844a91989e70de0caea82cf2c45b00b7074f4a1c3420379787f6766cca

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyrodigal-0.7.1-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.1-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 d96b409b33750358172441098540be436681c50adba8db23e21b358c145a6612
MD5 5f6a889a9316832ab2cd926eee91a4d9
BLAKE2b-256 d6d41d76b0926d3303d7a772312510b6d8e93e857fe657be300d09482fcd70ff

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyrodigal-0.7.1-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.1-cp38-cp38-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 9b3064c35b447e1fe06b7dce3a959409b6723301b11deff35766a6dbd66a04af
MD5 7de0a1b83ec90755c258aec264868545
BLAKE2b-256 7cb4e2b23d2d008fd89b31491baeeca1db05af2fcab39e74d91a8380794733f1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyrodigal-0.7.1-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.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 2dfbf9bfd0d45659561189b5cd0d1fc2b22656003aac30dc8c57080ccba91e55
MD5 ed390b458cbdcf348f5bcf30f748f28c
BLAKE2b-256 9d0a0f85430c726a49fb00caf22cd70077cd7fa5ab331d0852d4fd4e1b27c82e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyrodigal-0.7.1-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.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5d803e587341e5098b56ee443eccc6e61a9e824686f044ea50039fd025405a47
MD5 bdd8ed5a46bb694eea7757051a332f22
BLAKE2b-256 262bdcba115a5e2a3e624870961423026d6df5c4162ebb43abc51b1dbf09b178

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyrodigal-0.7.1-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.9 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.1-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 4272628493ce49e6076d8f9f1c944c1e78460533bbe54eb786b670b7dbffffd5
MD5 0a4e18a7afbb414fe5308b027f8f4dc1
BLAKE2b-256 542d79073d4b00c474817ba06884532dba1f3e1b7ce23eb6c724c1d526f6430e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyrodigal-0.7.1-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.1-cp37-cp37m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 f1b52c8a1a37fe201fefb78bf10fb3a6af8cdddaff2156b13ce11b15b1214a85
MD5 8d48cde6ee2eea796ed3e4c96f12e0f3
BLAKE2b-256 74540d5f2d4e605477dd77656e6a75394caa6735b1a8b6ee1d183453beffc7f1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyrodigal-0.7.1-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.1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 ebe69ccb877a5ccc6396d3acd9f7157f3a2bab94d11ae679aa2c8541fd55c9d0
MD5 04841d9894ba0b8512b7793d516efb7e
BLAKE2b-256 d0c46b53a74011c71b20d9b244af02e31004a76f5b8752c3debd562af1e1b778

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyrodigal-0.7.1-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.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 83f746b6613c0a53a4db6d9dc4981c3f035aedbe387e893b9bb5429cafd365e2
MD5 f4569afe90599945ccdad97444f3342e
BLAKE2b-256 5094cfb87a58aa1b245ddb704489e9f929add2198e186dace803e3a7a05e697e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyrodigal-0.7.1-cp36-cp36m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.9 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.1-cp36-cp36m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 c6fd5f9ece691c83711028c9c144009bd18c8c70fda9a8d7fcb20bc55154b650
MD5 58b648e557b9dbbb92f0806f936fd830
BLAKE2b-256 4a897b58dcb36dc95f8da96e1574f42029c67d3cb43bc09152ac431a1091f769

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyrodigal-0.7.1-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.1-cp36-cp36m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 85f4584975315454c29f03303b3d42c871259326990c73216c35876bdc46bec7
MD5 ca364a8f0cf86cbbed780270178ebff8
BLAKE2b-256 a5cc5c4a44243b1966acdc1f58c67da10f5a39f333391e9200b11cfcf3b57dcc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyrodigal-0.7.1-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.1-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 5c6357ec430eadcf592e93250c451b295409ef237816e3d76bb3982da5a56b3d
MD5 98154c562af6459a1da6a7f3bfa243aa
BLAKE2b-256 dbc3d9c1a028894d18377e483d7e24d04109db956818aac161e7d3cd917a3bb9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyrodigal-0.7.1-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.1-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 e2856496510e4bd85402581f39433c2d0689ba35f8424a214838398da0677df9
MD5 9a2f3a427be7c6aedd18213e2e328e33
BLAKE2b-256 cb65014ddde9af1ed32b2729cb71ff8864b428bc0bf6005380c62a83302af3d5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyrodigal-0.7.1-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.1-cp35-cp35m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 d7cf4fa6b8507197a661f6ed8eaeb28422d547693dbeb35754454734433df37a
MD5 f3fba91df1b4fe3478384a879235a065
BLAKE2b-256 5c3dd805e462a6fe23b39aa074bae4637e53ac159332d5a7712a65d1e6ab7d92

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

3.5.1

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

This release

0.7.1 This release

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