Skip to main content

Python bindings for Orphos - a gene prediction tool for microbial genomes

Project description

Orphos Python Bindings

Python bindings for Orphos, a fast and accurate gene prediction tool for microbial genomes.

Installation

From Source

You'll need Rust and Python 3.8+ installed. Then:

# Install maturin (the build tool for Python+Rust projects)
pip install maturin

# Build and install in development mode
cd orphos-python
maturin develop --release

# Or build a wheel
maturin build --release
pip install target/wheels/orphos-*.whl

Quick Start

import orphos

# Analyze a FASTA file
result = orphos.analyze_file("genome.fasta")
print(f"Found {result.gene_count} genes in {result.sequence_count} sequences")
print(result.output)  # GenBank formatted output

# Analyze a sequence string
fasta_string = """>seq1
ATGCGATCGATCGATCGATCGATCGATCG...
"""
result = orphos.analyze_sequence(fasta_string)

# Customize options
options = orphos.OrphosOptions(
    mode="meta",           # Use metagenomic mode
    format="gff",          # Output in GFF format
    closed_ends=True,      # Don't allow genes off edges
    translation_table=11   # Use translation table 11
)
result = orphos.analyze_file("genome.fasta", options)

API Reference

analyze_sequence(fasta_content, options=None)

Analyze DNA sequences from a FASTA-formatted string.

Parameters:

  • fasta_content (str): FASTA-formatted sequence(s)
  • options (OrphosOptions, optional): Configuration options

Returns: OrphosResult

analyze_file(file_path, options=None)

Analyze DNA sequences from a FASTA file.

Parameters:

  • file_path (str): Path to the FASTA file
  • options (OrphosOptions, optional): Configuration options

Returns: OrphosResult

OrphosOptions

Configuration options for gene prediction.

Attributes:

  • mode (str): "single" for single genome mode, "meta" for metagenomic mode (default: "single")
  • format (str): Output format - "gbk", "gff", "sco", or "gca" (default: "gbk")
  • closed_ends (bool): Don't allow genes to run off edges (default: False)
  • mask_n_runs (bool): Mask runs of N's in the sequence (default: False)
  • force_non_sd (bool): Force non-Shine-Dalgarno model (default: False)
  • translation_table (int, optional): Translation table 1-25 (excluding 7, 8, 17-20)
  • num_threads (int, optional): Number of threads to use
  • quiet (bool): Suppress informational output (default: True)

OrphosResult

Result from gene prediction.

Attributes:

  • output (str): Formatted output (GenBank, GFF, etc.)
  • gene_count (int): Total number of genes predicted
  • sequence_count (int): Number of sequences analyzed

Examples

Single Genome Mode (Default)

import orphos

# Analyze with default settings
result = orphos.analyze_file("ecoli.fasta")
print(f"Found {result.gene_count} genes")

# Save GenBank output
with open("output.gbk", "w") as f:
    f.write(result.output)

Metagenomic Mode

import orphos

options = orphos.OrphosOptions(mode="meta")
result = orphos.analyze_file("metagenome.fasta", options)

GFF Output Format

import orphos

options = orphos.OrphosOptions(format="gff")
result = orphos.analyze_file("genome.fasta", options)

# Save GFF output
with open("output.gff", "w") as f:
    f.write(result.output)

Custom Translation Table

import orphos

# Use translation table 4 (Mycoplasma/Spiroplasma)
options = orphos.OrphosOptions(translation_table=4)
result = orphos.analyze_file("mycoplasma.fasta", options)

Processing Multiple Files

import orphos
import os

fasta_dir = "genomes"
output_dir = "predictions"
os.makedirs(output_dir, exist_ok=True)

options = orphos.OrphosOptions(format="gff")

for filename in os.listdir(fasta_dir):
    if filename.endswith(".fasta"):
        input_path = os.path.join(fasta_dir, filename)
        output_path = os.path.join(output_dir, filename.replace(".fasta", ".gff"))
        
        result = orphos.analyze_file(input_path, options)
        
        with open(output_path, "w") as f:
            f.write(result.output)
        
        print(f"{filename}: {result.gene_count} genes")

Output Formats

GenBank (gbk)

Standard GenBank feature table format with gene coordinates and annotations.

GFF (gff)

GFF3 format with gene features and attributes.

Simple Coordinates (sco)

Simple tab-delimited format with gene coordinates.

Gene Calls (gca)

Detailed gene call information including scores and training data.

Performance

The Python bindings have minimal overhead compared to the native Rust implementation. Large genomes and metagenomes can be processed efficiently.

License

GPL-3.0-or-later

Citation

If you use Orphos in your research, please cite:

Hyatt D, Chen GL, Locascio PF, Land ML, Larimer FW, Hauser LJ. Orphos: prokaryotic gene recognition and translation initiation site identification. BMC Bioinformatics. 2010 Mar 8;11:119.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

orphos-0.1.0.tar.gz (635.2 kB view details)

Uploaded Source

Built Distributions

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

orphos-0.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (388.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

orphos-0.1.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (376.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

orphos-0.1.0-cp314-cp314-win_amd64.whl (256.3 kB view details)

Uploaded CPython 3.14Windows x86-64

orphos-0.1.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (387.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

orphos-0.1.0-cp314-cp314-macosx_11_0_arm64.whl (338.6 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

orphos-0.1.0-cp314-cp314-macosx_10_12_x86_64.whl (358.1 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

orphos-0.1.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (374.3 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

orphos-0.1.0-cp313-cp313-win_amd64.whl (256.2 kB view details)

Uploaded CPython 3.13Windows x86-64

orphos-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (387.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

orphos-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (375.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

orphos-0.1.0-cp313-cp313-macosx_11_0_arm64.whl (338.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

orphos-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl (358.1 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

orphos-0.1.0-cp312-cp312-win_amd64.whl (256.4 kB view details)

Uploaded CPython 3.12Windows x86-64

orphos-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (388.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

orphos-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (375.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

orphos-0.1.0-cp312-cp312-macosx_11_0_arm64.whl (338.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

orphos-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl (358.3 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

orphos-0.1.0-cp311-cp311-win_amd64.whl (258.0 kB view details)

Uploaded CPython 3.11Windows x86-64

orphos-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (387.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

orphos-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (375.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

orphos-0.1.0-cp311-cp311-macosx_11_0_arm64.whl (338.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

orphos-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl (358.4 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

orphos-0.1.0-cp310-cp310-win_amd64.whl (257.9 kB view details)

Uploaded CPython 3.10Windows x86-64

orphos-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (387.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

orphos-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (375.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

orphos-0.1.0-cp39-cp39-win_amd64.whl (259.7 kB view details)

Uploaded CPython 3.9Windows x86-64

orphos-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (389.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

orphos-0.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (377.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

orphos-0.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (389.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

orphos-0.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (377.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

File details

Details for the file orphos-0.1.0.tar.gz.

File metadata

  • Download URL: orphos-0.1.0.tar.gz
  • Upload date:
  • Size: 635.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for orphos-0.1.0.tar.gz
Algorithm Hash digest
SHA256 a65c38568d5b1ee53dca7e75223bdaa8c7f23b003ad97529e809dd4063e1070f
MD5 03ca0176dda3606c6f08adb10bed1f5d
BLAKE2b-256 383902e9db555ec383102fd387ddc72ca0011366a326cfeb44ba6c8263890d35

See more details on using hashes here.

Provenance

The following attestation bundles were made for orphos-0.1.0.tar.gz:

Publisher: publish-pypi.yml on FullHuman/orphos

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file orphos-0.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for orphos-0.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 907d7b4b82bb7a8780998a1f9101667e04d288bb9e6789dc775f1c67f55d1ebd
MD5 5ee3c16b214ef5d0e5b867c28ab301af
BLAKE2b-256 6f08d9877608059f09cf2bee3a74bc7654eade405deea78fd5c5633f7e685160

See more details on using hashes here.

Provenance

The following attestation bundles were made for orphos-0.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish-pypi.yml on FullHuman/orphos

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file orphos-0.1.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for orphos-0.1.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7b81dc6c527888693777188cb5b74ea6c2c1950340b5c7071403fa86a9455dc3
MD5 2fd4313b25a6ca75cca34d8cef0977c9
BLAKE2b-256 99a5fc8e3fef50d4d058e9b25b97f85e5ef65d32e8a9694fdd3366c0de6e74ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for orphos-0.1.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish-pypi.yml on FullHuman/orphos

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file orphos-0.1.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: orphos-0.1.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 256.3 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for orphos-0.1.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 7973fbbb69f7d40e6cdc56bbf42c128913de03c7a201236f77bb54e049126dd9
MD5 91234196b8ba2b2515e6e1826846bb7f
BLAKE2b-256 f84c8c33c100b84f59bf0d4a9cf3474921fea408fd01419183d93f12f53ab92a

See more details on using hashes here.

Provenance

The following attestation bundles were made for orphos-0.1.0-cp314-cp314-win_amd64.whl:

Publisher: publish-pypi.yml on FullHuman/orphos

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file orphos-0.1.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for orphos-0.1.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 36cf827e8af27f4c258c42a558606be48e4e823a0b4fafcff149e1525d7f4ad2
MD5 82586f35578e693473c5eb30401050e3
BLAKE2b-256 ffec4b21c7aa747c05d23e768536cc4d458217f7cf9140ae3e8b02c9aee37e98

See more details on using hashes here.

Provenance

The following attestation bundles were made for orphos-0.1.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish-pypi.yml on FullHuman/orphos

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file orphos-0.1.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for orphos-0.1.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 45913820a84df755dfbc2786bb23d796db0968d23787104eda343f77c13a5705
MD5 524da7a31dc43d9224a3f7a25a37aca9
BLAKE2b-256 b58b0a15df6b14a49bb97d4a8816acde22ada49e7fe8530887fa8f29251e8af7

See more details on using hashes here.

Provenance

The following attestation bundles were made for orphos-0.1.0-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: publish-pypi.yml on FullHuman/orphos

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file orphos-0.1.0-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for orphos-0.1.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3a980556373821ded538070cbadfc66c6861620d28bf58f81005ec6cbe081048
MD5 f53e5cded37c692d151264da7e813c57
BLAKE2b-256 eccaf9bd3cae3db380c4106eec01106df5d12f08a8c569938527e26afbf6843e

See more details on using hashes here.

Provenance

The following attestation bundles were made for orphos-0.1.0-cp314-cp314-macosx_10_12_x86_64.whl:

Publisher: publish-pypi.yml on FullHuman/orphos

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file orphos-0.1.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for orphos-0.1.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c7d0ca9c9c0a4c0a51674125cf6a31620a5a84abe3358aa8a877421244bb4a39
MD5 de3145ec90b682faac7f27b6a3b94f14
BLAKE2b-256 452c95e036cb9aac2afcbf4c80e19838be82339b77267c5c4f59b2ccde9ab909

See more details on using hashes here.

Provenance

The following attestation bundles were made for orphos-0.1.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish-pypi.yml on FullHuman/orphos

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file orphos-0.1.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: orphos-0.1.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 256.2 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for orphos-0.1.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 bdc828637f0ee337bcf4ec027c11f7033da88e720c8ee6c84db0f56e44f93604
MD5 b22ef5f73cf0468a95947835ca9297a2
BLAKE2b-256 437cdc54ac0a403f30bcbc336aa71282ba569d21770eabac048d5965b165994a

See more details on using hashes here.

Provenance

The following attestation bundles were made for orphos-0.1.0-cp313-cp313-win_amd64.whl:

Publisher: publish-pypi.yml on FullHuman/orphos

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file orphos-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for orphos-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9c2fe51e54a26db46d4a02c499b03e96d1d839ac3fec2d9fb8ec9ce5956cdda5
MD5 43b7221785dd4196fdda1e8686f076b3
BLAKE2b-256 6e6895173dd1699e89238d8c0a39e7f523288876a8efc48f4479a8d36d23ba79

See more details on using hashes here.

Provenance

The following attestation bundles were made for orphos-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish-pypi.yml on FullHuman/orphos

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file orphos-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for orphos-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dc4e7be27fa856ab5fee1e9b5f634e16699a6860e3f4913ffce325664ebeabea
MD5 ec725232ef334ead75c1242d1baa1875
BLAKE2b-256 a27ea033ad60849c297a11fbb22573e7ddd78346af83c63b57ed55008a30cf24

See more details on using hashes here.

Provenance

The following attestation bundles were made for orphos-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish-pypi.yml on FullHuman/orphos

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file orphos-0.1.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for orphos-0.1.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 790095889e7982a6d0692f1a8b61e2960a24fe1b6ab85c8da819bbb4fb4376b1
MD5 9986e82a4feca6009a01472330b8a16c
BLAKE2b-256 5afa0085a35d0743d695275fd9288827877bf3022ef771a056c477481ad84b68

See more details on using hashes here.

Provenance

The following attestation bundles were made for orphos-0.1.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: publish-pypi.yml on FullHuman/orphos

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file orphos-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for orphos-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3cd31caef158e84ac3e7a03fe7f70fb5fe8014fcdb11c81576716229f169a1aa
MD5 ef9633a53b9e61ec70bf550112e1f2ce
BLAKE2b-256 5de1fa3d12035ae851fe9eaf0cab1371c36d4b369bccab676e8b077d001a4f38

See more details on using hashes here.

Provenance

The following attestation bundles were made for orphos-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl:

Publisher: publish-pypi.yml on FullHuman/orphos

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file orphos-0.1.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: orphos-0.1.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 256.4 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for orphos-0.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 521716420f4869ec338b4149a407c4feab8d5f53888d223c4d9b74fcc4239cb2
MD5 1c77330e741f418f8c38ca753a03f0b9
BLAKE2b-256 a254b82c59ec904bb27fae358aea483c3f7329fdbed5ef1846446bd379554530

See more details on using hashes here.

Provenance

The following attestation bundles were made for orphos-0.1.0-cp312-cp312-win_amd64.whl:

Publisher: publish-pypi.yml on FullHuman/orphos

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file orphos-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for orphos-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2dce6eb9f5f163eb64f2c5d45c4078835c94ac25c59fddbd5972044d3b5ba5e6
MD5 7ec9ef073a4f00d154d427769d602731
BLAKE2b-256 87e7dbf07b8ab5deb135ac55cadb4de78da3f4ef08989ab2c3ef592d85d618ee

See more details on using hashes here.

Provenance

The following attestation bundles were made for orphos-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish-pypi.yml on FullHuman/orphos

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file orphos-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for orphos-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f17c675b9f4407e4335046c2a31960ace8500307e8eacedf655c42202e33b7d8
MD5 4bec762e4a3ca0acf7195ffe6540ff92
BLAKE2b-256 e9896c1c9d82a274b77274504b725c3f02ba0b22413f2aeca0e7e7e45c8d8ddc

See more details on using hashes here.

Provenance

The following attestation bundles were made for orphos-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish-pypi.yml on FullHuman/orphos

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file orphos-0.1.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for orphos-0.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fca2ccc96e84e2c862f935b6b32bb7dee4030e46522ac917ed9e5ef29f4e04b1
MD5 6d576155e8c4ab17c30921eea691b6ce
BLAKE2b-256 ecf53fe3bfe72e2903010076e7cb3c1d76cb70f519232df667b636e64b520cf3

See more details on using hashes here.

Provenance

The following attestation bundles were made for orphos-0.1.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: publish-pypi.yml on FullHuman/orphos

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file orphos-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for orphos-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f67afa73033461ddab7f34711c38fe79d1a8beec308fd9ba0994c5cba5289bb1
MD5 fdb1cec4fb1d59f0f9c7ebaa8d59dce4
BLAKE2b-256 ccf4894b6af82b3a64ba6aaff03e60c301d08d8ffb145c1bf33e01de07e82ee3

See more details on using hashes here.

Provenance

The following attestation bundles were made for orphos-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl:

Publisher: publish-pypi.yml on FullHuman/orphos

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file orphos-0.1.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: orphos-0.1.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 258.0 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for orphos-0.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 aa3525851e718791da7875343bafd07b46fc1c5a57c524e77a9a4356328b8e18
MD5 d7272203fb36377ec2a5499b980f5b77
BLAKE2b-256 352afca1b547eeff0928717ac0dd5a9765cc16f02d162b9977e7711fbf170ecb

See more details on using hashes here.

Provenance

The following attestation bundles were made for orphos-0.1.0-cp311-cp311-win_amd64.whl:

Publisher: publish-pypi.yml on FullHuman/orphos

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file orphos-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for orphos-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cf19a77c4ffc944515d232b95df2d03406c636c3be668774fa09229eccf3bb50
MD5 b83968a369eff2ad58af4d61716ec136
BLAKE2b-256 23a4bd8fcd3a8c9d2d34581d41bf21557f30b03000127f3ecc853398cd2cf53c

See more details on using hashes here.

Provenance

The following attestation bundles were made for orphos-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish-pypi.yml on FullHuman/orphos

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file orphos-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for orphos-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cc1db2abc42b8e7e44e326de8dc992ad73af59bf6b96799ac3c524ea2713d39e
MD5 dcf4c933a468b7f28b7845aa616c2356
BLAKE2b-256 0a1f3932f7fe17fdb82ea530b9cd9549d8ab70f15f0e001ca34c54b62df28778

See more details on using hashes here.

Provenance

The following attestation bundles were made for orphos-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish-pypi.yml on FullHuman/orphos

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file orphos-0.1.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for orphos-0.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 08ca691b8876fcfe76c6a207f9118d388e48a65eaee23e0f6899044afc77ff02
MD5 68d98246abf543fb20c4937362e264e8
BLAKE2b-256 d370fb986b147cf285410c12958a8d8819f54d4a7560f669a0081d13fcdd2776

See more details on using hashes here.

Provenance

The following attestation bundles were made for orphos-0.1.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: publish-pypi.yml on FullHuman/orphos

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file orphos-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for orphos-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 743e85b553f7bf96b7def7f4b02d60903a260bd316d8d8026ca192cf0d0b9fe7
MD5 1ad5d4e9c6e08062c4385b215b12c8eb
BLAKE2b-256 ad49508512ee1f5aade8ebe7d29895dea70331685b242062f440b27b6b8f266a

See more details on using hashes here.

Provenance

The following attestation bundles were made for orphos-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl:

Publisher: publish-pypi.yml on FullHuman/orphos

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file orphos-0.1.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: orphos-0.1.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 257.9 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for orphos-0.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a62a5f4c011b1e57f0fede851a2f20c94b2a76eba604dee6fe319488d4008a14
MD5 eace55eaf78e9091079bad77959cafaf
BLAKE2b-256 5bd6a0bb616f0e135942946136941d091644c21cc4ebc929e6760f56f9915a73

See more details on using hashes here.

Provenance

The following attestation bundles were made for orphos-0.1.0-cp310-cp310-win_amd64.whl:

Publisher: publish-pypi.yml on FullHuman/orphos

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file orphos-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for orphos-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 193d9d60832ca7496940fc3fac0bfbbc7bf1866253ff8e151c7aecc079acee65
MD5 a706b5468dd7ad9133a4b9ea75ca6738
BLAKE2b-256 75a3cade3f725052b1c93d849170af3e9247a94a6de70b5137f5400583f696fb

See more details on using hashes here.

Provenance

The following attestation bundles were made for orphos-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish-pypi.yml on FullHuman/orphos

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file orphos-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for orphos-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1e8d0c5dcc457b6501c62eb7482965a263d8cf8a3203d777d7eb3f2cc5e081bd
MD5 1554f4194db4fc12ba07baaf9e2ee57e
BLAKE2b-256 010955a4062eb7cfea064f982eda9069bf2d3cb304eab27f9a6a4dcaac329e94

See more details on using hashes here.

Provenance

The following attestation bundles were made for orphos-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish-pypi.yml on FullHuman/orphos

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file orphos-0.1.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: orphos-0.1.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 259.7 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for orphos-0.1.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 1a0faef4b2d6b20a6c827d32c8d12d72794b33f990d1a2d78c0e4058a922086d
MD5 67b11ed121f04f49c01f1dba1edb8401
BLAKE2b-256 046fec931f95d0abab3ead202d10b1df3304c48ce5d189a2da59a2c2a8c9d3ef

See more details on using hashes here.

Provenance

The following attestation bundles were made for orphos-0.1.0-cp39-cp39-win_amd64.whl:

Publisher: publish-pypi.yml on FullHuman/orphos

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file orphos-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for orphos-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c05ba2ba7294c1fc44434fda3ccbc5799c2760af0d003d7ed15d9973e14e430e
MD5 4b6292de93787021eca6d4795a44b5d4
BLAKE2b-256 275631bcc2e871d0b97cb708323271a0ad8f15a9c2b44ec8db939ce28d698003

See more details on using hashes here.

Provenance

The following attestation bundles were made for orphos-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish-pypi.yml on FullHuman/orphos

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file orphos-0.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for orphos-0.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 81e5623668f18967dc924e3e6b37a870d7a9044a0a441162de2d988dde1ac208
MD5 a4815aaf8c1def65b905692000fe5497
BLAKE2b-256 f44e97fc6fac31325d21c49b142cd76844d8b137064cea2e48ad61bfd7e79388

See more details on using hashes here.

Provenance

The following attestation bundles were made for orphos-0.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish-pypi.yml on FullHuman/orphos

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file orphos-0.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for orphos-0.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ee4a3b2b806548c44f662d062a9c6f1e08ce384bf8d59f3bf11cde749ed31bae
MD5 8fad2a86581b978a9e88e87fd2ac0e7a
BLAKE2b-256 f381446410b500e399558a03fafeb147f0d985e045b17e762e7bc01f6aa6c813

See more details on using hashes here.

Provenance

The following attestation bundles were made for orphos-0.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish-pypi.yml on FullHuman/orphos

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file orphos-0.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for orphos-0.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b37ea3874a84057e363abbcc4b524346c62ae275ca23b5820830f962fddd694f
MD5 1136296d6cda6a80fb11b1253a40753b
BLAKE2b-256 2ebdb70674f663857c81757f016f7a6de5566171e4c196d38d01acc86de9d5c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for orphos-0.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish-pypi.yml on FullHuman/orphos

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

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