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
circular=False, # Set True for circular wraparound detection
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 fileoptions(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)circular(bool): Detect genes that wrap sequence end to start (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 usequiet(bool): Suppress informational output (default: True)
circular=True cannot be combined with closed_ends=True.
OrphosResult
Result from gene prediction.
Attributes:
output(str): Formatted output (GenBank, GFF, etc.)gene_count(int): Total number of genes predictedsequence_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
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
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file orphos-0.2.0.tar.gz.
File metadata
- Download URL: orphos-0.2.0.tar.gz
- Upload date:
- Size: 652.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7645e23d160df65bc307d57c23eced31d2a554184314ce829dbf28875ef3e219
|
|
| MD5 |
f6c1b874b987fd428fcd197a3f5beaf1
|
|
| BLAKE2b-256 |
6d37adf048584c71683c8e119abe6b969176f13f48315bf455f5b135190d38b3
|
Provenance
The following attestation bundles were made for orphos-0.2.0.tar.gz:
Publisher:
publish-pypi.yml on FullHuman/orphos
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
orphos-0.2.0.tar.gz -
Subject digest:
7645e23d160df65bc307d57c23eced31d2a554184314ce829dbf28875ef3e219 - Sigstore transparency entry: 1279256015
- Sigstore integration time:
-
Permalink:
FullHuman/orphos@1b0bece5ed9c94e631cf099634a6721b35635531 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/FullHuman
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-pypi.yml@1b0bece5ed9c94e631cf099634a6721b35635531 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file orphos-0.2.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: orphos-0.2.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.5 MB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
879223fed361f74aa162a0d9a6e6a0a202e463172c2e2eda66b035b23856e3eb
|
|
| MD5 |
1ba1fbc709d8359ad7297f6044dca6ce
|
|
| BLAKE2b-256 |
c9ec8e18d2a9a7621b742f504b2c09e7054c7c85bb52bfb10806892545b8066f
|
Provenance
The following attestation bundles were made for orphos-0.2.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
publish-pypi.yml on FullHuman/orphos
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
orphos-0.2.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
879223fed361f74aa162a0d9a6e6a0a202e463172c2e2eda66b035b23856e3eb - Sigstore transparency entry: 1279260156
- Sigstore integration time:
-
Permalink:
FullHuman/orphos@1b0bece5ed9c94e631cf099634a6721b35635531 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/FullHuman
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-pypi.yml@1b0bece5ed9c94e631cf099634a6721b35635531 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file orphos-0.2.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: orphos-0.2.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.5 MB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
200fec0ed20cfbdc9291b13ad1c7735999ffede114190c6748af22ad5044113b
|
|
| MD5 |
e974e1c215fb49b6227dc9461e6ff789
|
|
| BLAKE2b-256 |
669b5b4b8678c3f81170099ef7049735a4f6892710e1ebbe71ab7f1ac1f81cd4
|
Provenance
The following attestation bundles were made for orphos-0.2.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
publish-pypi.yml on FullHuman/orphos
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
orphos-0.2.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
200fec0ed20cfbdc9291b13ad1c7735999ffede114190c6748af22ad5044113b - Sigstore transparency entry: 1279258038
- Sigstore integration time:
-
Permalink:
FullHuman/orphos@1b0bece5ed9c94e631cf099634a6721b35635531 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/FullHuman
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-pypi.yml@1b0bece5ed9c94e631cf099634a6721b35635531 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file orphos-0.2.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: orphos-0.2.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
43a3ac27a7c5cc5cfd1064173e63b106c6ea614cec4984cc966392a93fb62549
|
|
| MD5 |
d09c439c9fb50d37ffe616fe9083d013
|
|
| BLAKE2b-256 |
305f9eda879f161cc5d8bdaf244e43a5c4583b47dbdb044474a0564051a7ab42
|
Provenance
The following attestation bundles were made for orphos-0.2.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
publish-pypi.yml on FullHuman/orphos
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
orphos-0.2.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
43a3ac27a7c5cc5cfd1064173e63b106c6ea614cec4984cc966392a93fb62549 - Sigstore transparency entry: 1279257855
- Sigstore integration time:
-
Permalink:
FullHuman/orphos@1b0bece5ed9c94e631cf099634a6721b35635531 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/FullHuman
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-pypi.yml@1b0bece5ed9c94e631cf099634a6721b35635531 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file orphos-0.2.0-cp314-cp314-win_amd64.whl.
File metadata
- Download URL: orphos-0.2.0-cp314-cp314-win_amd64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.14, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6312ed5757a28b7513dfe64e3f6fb905ce9b58ae49dd5bea2565df1ce84c113e
|
|
| MD5 |
287e5d139f4d31bf4abfbc2a20492981
|
|
| BLAKE2b-256 |
f64df87465c96265ec59901d4143256e2d70ec8fcd0c930dfa0da22514c1e434
|
Provenance
The following attestation bundles were made for orphos-0.2.0-cp314-cp314-win_amd64.whl:
Publisher:
publish-pypi.yml on FullHuman/orphos
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
orphos-0.2.0-cp314-cp314-win_amd64.whl -
Subject digest:
6312ed5757a28b7513dfe64e3f6fb905ce9b58ae49dd5bea2565df1ce84c113e - Sigstore transparency entry: 1279259860
- Sigstore integration time:
-
Permalink:
FullHuman/orphos@1b0bece5ed9c94e631cf099634a6721b35635531 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/FullHuman
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-pypi.yml@1b0bece5ed9c94e631cf099634a6721b35635531 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file orphos-0.2.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: orphos-0.2.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.14, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
76c4b0efa098426cb46ec201e564d5c324ed1f315527de32a8ae17c0df3238a0
|
|
| MD5 |
196723a7dac954eb69c14d9f6329d0ba
|
|
| BLAKE2b-256 |
f766034438ffe6e7da67b00236161a2aa3dd03aae0f058b49502a9181efa905f
|
Provenance
The following attestation bundles were made for orphos-0.2.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
publish-pypi.yml on FullHuman/orphos
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
orphos-0.2.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
76c4b0efa098426cb46ec201e564d5c324ed1f315527de32a8ae17c0df3238a0 - Sigstore transparency entry: 1279256326
- Sigstore integration time:
-
Permalink:
FullHuman/orphos@1b0bece5ed9c94e631cf099634a6721b35635531 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/FullHuman
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-pypi.yml@1b0bece5ed9c94e631cf099634a6721b35635531 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file orphos-0.2.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: orphos-0.2.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.14, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a035cfd80ef005cb177b9099547b8838495af8b42194c52abb2e63adad4b4f7b
|
|
| MD5 |
6dfa2f1c39de3b6a27ff0e3260333793
|
|
| BLAKE2b-256 |
65e6a6a065fee49b931649a163cf8f8134e88a5e1a4d14c470427adb2ee6de1a
|
Provenance
The following attestation bundles were made for orphos-0.2.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
publish-pypi.yml on FullHuman/orphos
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
orphos-0.2.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
a035cfd80ef005cb177b9099547b8838495af8b42194c52abb2e63adad4b4f7b - Sigstore transparency entry: 1279257684
- Sigstore integration time:
-
Permalink:
FullHuman/orphos@1b0bece5ed9c94e631cf099634a6721b35635531 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/FullHuman
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-pypi.yml@1b0bece5ed9c94e631cf099634a6721b35635531 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file orphos-0.2.0-cp314-cp314-macosx_11_0_arm64.whl.
File metadata
- Download URL: orphos-0.2.0-cp314-cp314-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.14, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
52b3a77cc77439229098eb56a4e841727e983a836f318fa1b5dec78d741ff2d7
|
|
| MD5 |
19a49b5cd13a4d1dd54da32dc7a5c950
|
|
| BLAKE2b-256 |
b3343803ba0b7cca644205c8e045e6a42522a3e45fb2556f7c0b04d63daccd43
|
Provenance
The following attestation bundles were made for orphos-0.2.0-cp314-cp314-macosx_11_0_arm64.whl:
Publisher:
publish-pypi.yml on FullHuman/orphos
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
orphos-0.2.0-cp314-cp314-macosx_11_0_arm64.whl -
Subject digest:
52b3a77cc77439229098eb56a4e841727e983a836f318fa1b5dec78d741ff2d7 - Sigstore transparency entry: 1279256609
- Sigstore integration time:
-
Permalink:
FullHuman/orphos@1b0bece5ed9c94e631cf099634a6721b35635531 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/FullHuman
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-pypi.yml@1b0bece5ed9c94e631cf099634a6721b35635531 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file orphos-0.2.0-cp314-cp314-macosx_10_12_x86_64.whl.
File metadata
- Download URL: orphos-0.2.0-cp314-cp314-macosx_10_12_x86_64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.14, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4a6c236281866bccabb2ecdf8e9b7f1b5330888d0edc2ac9044dc52da46103d5
|
|
| MD5 |
526116d41af341ce7d732cb5b3d098cb
|
|
| BLAKE2b-256 |
8e5cacf37284dfc23e91de327a223c14ded61cfce2eb39013917e4b1fd2cd078
|
Provenance
The following attestation bundles were made for orphos-0.2.0-cp314-cp314-macosx_10_12_x86_64.whl:
Publisher:
publish-pypi.yml on FullHuman/orphos
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
orphos-0.2.0-cp314-cp314-macosx_10_12_x86_64.whl -
Subject digest:
4a6c236281866bccabb2ecdf8e9b7f1b5330888d0edc2ac9044dc52da46103d5 - Sigstore transparency entry: 1279256821
- Sigstore integration time:
-
Permalink:
FullHuman/orphos@1b0bece5ed9c94e631cf099634a6721b35635531 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/FullHuman
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-pypi.yml@1b0bece5ed9c94e631cf099634a6721b35635531 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file orphos-0.2.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: orphos-0.2.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7784e9bb8c326014b34036214eeb67fc48030436fcd29fd107e1528dd183b97b
|
|
| MD5 |
3388028dda21bb8c5176069dadb76610
|
|
| BLAKE2b-256 |
607057be462bcf41dbbfe210d19b2956b82f6c998d88b23be92b0ccc3d7ae673
|
Provenance
The following attestation bundles were made for orphos-0.2.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
publish-pypi.yml on FullHuman/orphos
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
orphos-0.2.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
7784e9bb8c326014b34036214eeb67fc48030436fcd29fd107e1528dd183b97b - Sigstore transparency entry: 1279258095
- Sigstore integration time:
-
Permalink:
FullHuman/orphos@1b0bece5ed9c94e631cf099634a6721b35635531 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/FullHuman
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-pypi.yml@1b0bece5ed9c94e631cf099634a6721b35635531 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file orphos-0.2.0-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: orphos-0.2.0-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3acbd2cfc6976f4a2d09549605138cad980b950266ea9a5953ac142790093eea
|
|
| MD5 |
c758a72e43ff799878b3b9b4f3dc5768
|
|
| BLAKE2b-256 |
d975338cc41590de2a60ce9a4edbb12c7b5afd6701615b3e8cf00ba2dc607575
|
Provenance
The following attestation bundles were made for orphos-0.2.0-cp313-cp313-win_amd64.whl:
Publisher:
publish-pypi.yml on FullHuman/orphos
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
orphos-0.2.0-cp313-cp313-win_amd64.whl -
Subject digest:
3acbd2cfc6976f4a2d09549605138cad980b950266ea9a5953ac142790093eea - Sigstore transparency entry: 1279260216
- Sigstore integration time:
-
Permalink:
FullHuman/orphos@1b0bece5ed9c94e631cf099634a6721b35635531 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/FullHuman
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-pypi.yml@1b0bece5ed9c94e631cf099634a6721b35635531 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file orphos-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: orphos-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
002c27f55cc37e3041e24b46dd7ef43a33c86bc0a018d46b86f48f11c36dca37
|
|
| MD5 |
0f54c92f5a93b6d0d1f3332a6129611d
|
|
| BLAKE2b-256 |
9eac7786b446d9c30a4880e70eafb4213a89b6f277c3d03ea9195a08180b5b3e
|
Provenance
The following attestation bundles were made for orphos-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
publish-pypi.yml on FullHuman/orphos
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
orphos-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
002c27f55cc37e3041e24b46dd7ef43a33c86bc0a018d46b86f48f11c36dca37 - Sigstore transparency entry: 1279257241
- Sigstore integration time:
-
Permalink:
FullHuman/orphos@1b0bece5ed9c94e631cf099634a6721b35635531 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/FullHuman
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-pypi.yml@1b0bece5ed9c94e631cf099634a6721b35635531 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file orphos-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: orphos-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b9fbc9334e8e88abf3f7d4bdcfe3cd6fc73b499ba65edc984a3702544929a52e
|
|
| MD5 |
b646097eb9a7c288baaff0ea532a3836
|
|
| BLAKE2b-256 |
5b2b9f8271c879de9f97a76563d734563aa197b99359eeee40c0aca2537d74c5
|
Provenance
The following attestation bundles were made for orphos-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
publish-pypi.yml on FullHuman/orphos
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
orphos-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
b9fbc9334e8e88abf3f7d4bdcfe3cd6fc73b499ba65edc984a3702544929a52e - Sigstore transparency entry: 1279257788
- Sigstore integration time:
-
Permalink:
FullHuman/orphos@1b0bece5ed9c94e631cf099634a6721b35635531 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/FullHuman
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-pypi.yml@1b0bece5ed9c94e631cf099634a6721b35635531 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file orphos-0.2.0-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: orphos-0.2.0-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b6d7740ff3cca26a0923aeb2366f702aa9e4fbfe84c6c5df5103f17b9fc059ea
|
|
| MD5 |
5d1e6831463084425556a8f65ce78d23
|
|
| BLAKE2b-256 |
4a54d90c5d41d502f91471cd4f0fcccdaa356a66fb0be68b36143ca1001b35cc
|
Provenance
The following attestation bundles were made for orphos-0.2.0-cp313-cp313-macosx_11_0_arm64.whl:
Publisher:
publish-pypi.yml on FullHuman/orphos
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
orphos-0.2.0-cp313-cp313-macosx_11_0_arm64.whl -
Subject digest:
b6d7740ff3cca26a0923aeb2366f702aa9e4fbfe84c6c5df5103f17b9fc059ea - Sigstore transparency entry: 1279259961
- Sigstore integration time:
-
Permalink:
FullHuman/orphos@1b0bece5ed9c94e631cf099634a6721b35635531 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/FullHuman
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-pypi.yml@1b0bece5ed9c94e631cf099634a6721b35635531 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file orphos-0.2.0-cp313-cp313-macosx_10_12_x86_64.whl.
File metadata
- Download URL: orphos-0.2.0-cp313-cp313-macosx_10_12_x86_64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.13, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
304cb2134c600ea6fb4a47219739f19a818b047491ed7f7ce1bc112c6fd32c8c
|
|
| MD5 |
e95665ecd295e18121a705f77ae90022
|
|
| BLAKE2b-256 |
268e16396948f546db6558e2f4de5eee57c14fece7161d9ea082748848105fde
|
Provenance
The following attestation bundles were made for orphos-0.2.0-cp313-cp313-macosx_10_12_x86_64.whl:
Publisher:
publish-pypi.yml on FullHuman/orphos
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
orphos-0.2.0-cp313-cp313-macosx_10_12_x86_64.whl -
Subject digest:
304cb2134c600ea6fb4a47219739f19a818b047491ed7f7ce1bc112c6fd32c8c - Sigstore transparency entry: 1279258176
- Sigstore integration time:
-
Permalink:
FullHuman/orphos@1b0bece5ed9c94e631cf099634a6721b35635531 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/FullHuman
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-pypi.yml@1b0bece5ed9c94e631cf099634a6721b35635531 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file orphos-0.2.0-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: orphos-0.2.0-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3ef59b552f0c5d483bc0e2b64ab5cd648bcdc242dbf4ea0cdb72aad6692e4a3c
|
|
| MD5 |
6f5c3c5147a040f2df89fd47e5c267aa
|
|
| BLAKE2b-256 |
3fbd7a169c1df9ec001dd3d5ebb3fb6acfc1ea9d3768d5c391f504011749c1c6
|
Provenance
The following attestation bundles were made for orphos-0.2.0-cp312-cp312-win_amd64.whl:
Publisher:
publish-pypi.yml on FullHuman/orphos
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
orphos-0.2.0-cp312-cp312-win_amd64.whl -
Subject digest:
3ef59b552f0c5d483bc0e2b64ab5cd648bcdc242dbf4ea0cdb72aad6692e4a3c - Sigstore transparency entry: 1279259012
- Sigstore integration time:
-
Permalink:
FullHuman/orphos@1b0bece5ed9c94e631cf099634a6721b35635531 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/FullHuman
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-pypi.yml@1b0bece5ed9c94e631cf099634a6721b35635531 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file orphos-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: orphos-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b983254750d0f5e9224ea346561e56ea816c3e0d0b309588bf6ee6d04caea75a
|
|
| MD5 |
d681ea13f27d537b50014f714416bf20
|
|
| BLAKE2b-256 |
7795d648c4c5cdfb9b97be0af3ac2c542b4aee7b7d8139e6c969d982882be2c7
|
Provenance
The following attestation bundles were made for orphos-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
publish-pypi.yml on FullHuman/orphos
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
orphos-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
b983254750d0f5e9224ea346561e56ea816c3e0d0b309588bf6ee6d04caea75a - Sigstore transparency entry: 1279256752
- Sigstore integration time:
-
Permalink:
FullHuman/orphos@1b0bece5ed9c94e631cf099634a6721b35635531 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/FullHuman
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-pypi.yml@1b0bece5ed9c94e631cf099634a6721b35635531 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file orphos-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: orphos-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3ee4260710cf4ce152fbea5285bdaa7dc0a1bd7106308f55de048e85e710d09a
|
|
| MD5 |
cfd80f2e6b9bfc4f458fb9fd8f70cc6c
|
|
| BLAKE2b-256 |
3c1243af7a60e3b39daedc2dc705c6e8ecc2e379499c4a4db5fc9279c9f9acc6
|
Provenance
The following attestation bundles were made for orphos-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
publish-pypi.yml on FullHuman/orphos
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
orphos-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
3ee4260710cf4ce152fbea5285bdaa7dc0a1bd7106308f55de048e85e710d09a - Sigstore transparency entry: 1279256248
- Sigstore integration time:
-
Permalink:
FullHuman/orphos@1b0bece5ed9c94e631cf099634a6721b35635531 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/FullHuman
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-pypi.yml@1b0bece5ed9c94e631cf099634a6721b35635531 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file orphos-0.2.0-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: orphos-0.2.0-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9696b697d09f1f479256e93781a88c93d584b21fa562478d86489f3603523de2
|
|
| MD5 |
53e815e98fd61ea8baa55953e5c6665e
|
|
| BLAKE2b-256 |
f64c2ff5ecad443189bd2255d381b93e003f9ad4921eb3b760cec0dc7642a733
|
Provenance
The following attestation bundles were made for orphos-0.2.0-cp312-cp312-macosx_11_0_arm64.whl:
Publisher:
publish-pypi.yml on FullHuman/orphos
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
orphos-0.2.0-cp312-cp312-macosx_11_0_arm64.whl -
Subject digest:
9696b697d09f1f479256e93781a88c93d584b21fa562478d86489f3603523de2 - Sigstore transparency entry: 1279258401
- Sigstore integration time:
-
Permalink:
FullHuman/orphos@1b0bece5ed9c94e631cf099634a6721b35635531 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/FullHuman
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-pypi.yml@1b0bece5ed9c94e631cf099634a6721b35635531 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file orphos-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl.
File metadata
- Download URL: orphos-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.12, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4b5c4c1642bd363283113e3ecbbf7f3cc2b302be479a85bddb34cf29e1a64391
|
|
| MD5 |
ff6744d8b7ce54d03e487ced7ee7bca7
|
|
| BLAKE2b-256 |
93f8c93de7f3553ce7c7f5389859ef451cf56d22bc28aeae2aa2ba6a2b3979e4
|
Provenance
The following attestation bundles were made for orphos-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl:
Publisher:
publish-pypi.yml on FullHuman/orphos
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
orphos-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl -
Subject digest:
4b5c4c1642bd363283113e3ecbbf7f3cc2b302be479a85bddb34cf29e1a64391 - Sigstore transparency entry: 1279257446
- Sigstore integration time:
-
Permalink:
FullHuman/orphos@1b0bece5ed9c94e631cf099634a6721b35635531 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/FullHuman
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-pypi.yml@1b0bece5ed9c94e631cf099634a6721b35635531 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file orphos-0.2.0-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: orphos-0.2.0-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1d3759709e50120d599203cdca2fdc21c1c08f5eb88d548fd23d0ae1f64355b4
|
|
| MD5 |
ed8b6b30f9c4426b9eed8f5851be7068
|
|
| BLAKE2b-256 |
3b37eacaa4b1201abd792b171737884506b498ccae8cdf35351094bd1cbba3cf
|
Provenance
The following attestation bundles were made for orphos-0.2.0-cp311-cp311-win_amd64.whl:
Publisher:
publish-pypi.yml on FullHuman/orphos
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
orphos-0.2.0-cp311-cp311-win_amd64.whl -
Subject digest:
1d3759709e50120d599203cdca2fdc21c1c08f5eb88d548fd23d0ae1f64355b4 - Sigstore transparency entry: 1279259060
- Sigstore integration time:
-
Permalink:
FullHuman/orphos@1b0bece5ed9c94e631cf099634a6721b35635531 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/FullHuman
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-pypi.yml@1b0bece5ed9c94e631cf099634a6721b35635531 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file orphos-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: orphos-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d540cd20dfb9d4113e4af3b6146e14e66d9a525608f0d9fbebdba6171b5a63cd
|
|
| MD5 |
1e84479d1e05e447b73bc754d57e73ae
|
|
| BLAKE2b-256 |
f25e60c13d2f9762c78e4e92a7de914a4b5312e1f7f0a7237571dbb629428227
|
Provenance
The following attestation bundles were made for orphos-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
publish-pypi.yml on FullHuman/orphos
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
orphos-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
d540cd20dfb9d4113e4af3b6146e14e66d9a525608f0d9fbebdba6171b5a63cd - Sigstore transparency entry: 1279259438
- Sigstore integration time:
-
Permalink:
FullHuman/orphos@1b0bece5ed9c94e631cf099634a6721b35635531 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/FullHuman
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-pypi.yml@1b0bece5ed9c94e631cf099634a6721b35635531 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file orphos-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: orphos-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d37ef45a5398cd5f2d87d66a2987e655d5c06cef6b8d271ffc94165c329114b2
|
|
| MD5 |
705240342872426cb8c0976e791224c7
|
|
| BLAKE2b-256 |
107cb4f05732b299adc5420abfb53cf30d7fe11a26afe683043246aac1e79e36
|
Provenance
The following attestation bundles were made for orphos-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
publish-pypi.yml on FullHuman/orphos
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
orphos-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
d37ef45a5398cd5f2d87d66a2987e655d5c06cef6b8d271ffc94165c329114b2 - Sigstore transparency entry: 1279257940
- Sigstore integration time:
-
Permalink:
FullHuman/orphos@1b0bece5ed9c94e631cf099634a6721b35635531 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/FullHuman
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-pypi.yml@1b0bece5ed9c94e631cf099634a6721b35635531 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file orphos-0.2.0-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: orphos-0.2.0-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7f101b657b71bdefc4e4acc92edd163825f408d5bc8ef5d2f2b4499abe54814f
|
|
| MD5 |
6ecba9bf3f52d2da65c2a5f0198c7422
|
|
| BLAKE2b-256 |
7d4d181d317970c357a58c3aa01ec72fde96fd409119c7e9f3bd4c363456393b
|
Provenance
The following attestation bundles were made for orphos-0.2.0-cp311-cp311-macosx_11_0_arm64.whl:
Publisher:
publish-pypi.yml on FullHuman/orphos
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
orphos-0.2.0-cp311-cp311-macosx_11_0_arm64.whl -
Subject digest:
7f101b657b71bdefc4e4acc92edd163825f408d5bc8ef5d2f2b4499abe54814f - Sigstore transparency entry: 1279256922
- Sigstore integration time:
-
Permalink:
FullHuman/orphos@1b0bece5ed9c94e631cf099634a6721b35635531 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/FullHuman
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-pypi.yml@1b0bece5ed9c94e631cf099634a6721b35635531 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file orphos-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl.
File metadata
- Download URL: orphos-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.11, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
28eed0448375be12e35386023739a5f036649de17ec44274c3700889e5c052b8
|
|
| MD5 |
061f8fef788204cc49cf771b24ce6383
|
|
| BLAKE2b-256 |
257941d3dd279357d50e799efb67ba2a89fdd01d7d8b8d65a5d9da3d2a75483e
|
Provenance
The following attestation bundles were made for orphos-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl:
Publisher:
publish-pypi.yml on FullHuman/orphos
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
orphos-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl -
Subject digest:
28eed0448375be12e35386023739a5f036649de17ec44274c3700889e5c052b8 - Sigstore transparency entry: 1279259148
- Sigstore integration time:
-
Permalink:
FullHuman/orphos@1b0bece5ed9c94e631cf099634a6721b35635531 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/FullHuman
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-pypi.yml@1b0bece5ed9c94e631cf099634a6721b35635531 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file orphos-0.2.0-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: orphos-0.2.0-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
74eb579dec82c66416bea4545ce58dec9ccd5d74a435784755eb19fd1a84b17a
|
|
| MD5 |
64508d474b29908576f0f24e469bfbb8
|
|
| BLAKE2b-256 |
67d4c4c6899d96461ad0ec112f5c547bea0096e834acb3db4236173f748b885a
|
Provenance
The following attestation bundles were made for orphos-0.2.0-cp310-cp310-win_amd64.whl:
Publisher:
publish-pypi.yml on FullHuman/orphos
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
orphos-0.2.0-cp310-cp310-win_amd64.whl -
Subject digest:
74eb579dec82c66416bea4545ce58dec9ccd5d74a435784755eb19fd1a84b17a - Sigstore transparency entry: 1279258857
- Sigstore integration time:
-
Permalink:
FullHuman/orphos@1b0bece5ed9c94e631cf099634a6721b35635531 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/FullHuman
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-pypi.yml@1b0bece5ed9c94e631cf099634a6721b35635531 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file orphos-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: orphos-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
088f77d32af02c9d082c9b48332582d51ffa5c1eaca354a59ad5495d397417c2
|
|
| MD5 |
4e7f4ffbb7887e608097ab71c0fba910
|
|
| BLAKE2b-256 |
d3d1d2b0d089ffdd84f6af64ca9dae5d4c4174bd9f78cf7becde8073453a050d
|
Provenance
The following attestation bundles were made for orphos-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
publish-pypi.yml on FullHuman/orphos
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
orphos-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
088f77d32af02c9d082c9b48332582d51ffa5c1eaca354a59ad5495d397417c2 - Sigstore transparency entry: 1279259717
- Sigstore integration time:
-
Permalink:
FullHuman/orphos@1b0bece5ed9c94e631cf099634a6721b35635531 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/FullHuman
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-pypi.yml@1b0bece5ed9c94e631cf099634a6721b35635531 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file orphos-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: orphos-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
70f137b003cc4180782f5c96ec95ab18bcb7045079afe6709794ebc8ce5f02fb
|
|
| MD5 |
fb8478a9e7aa108e5b415d1e8426c8db
|
|
| BLAKE2b-256 |
182cf9d65aeeae2874953eab24dc3f5b39dc8ab6b32c2fc9ce551749920975ca
|
Provenance
The following attestation bundles were made for orphos-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
publish-pypi.yml on FullHuman/orphos
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
orphos-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
70f137b003cc4180782f5c96ec95ab18bcb7045079afe6709794ebc8ce5f02fb - Sigstore transparency entry: 1279259778
- Sigstore integration time:
-
Permalink:
FullHuman/orphos@1b0bece5ed9c94e631cf099634a6721b35635531 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/FullHuman
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-pypi.yml@1b0bece5ed9c94e631cf099634a6721b35635531 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file orphos-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: orphos-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
08345432b4e6766f7839b5120afd76af7fe381130c0abc620e067cf287f3c612
|
|
| MD5 |
d107573b09fb3bb2ebe81dfaeaff3418
|
|
| BLAKE2b-256 |
a2d3558b78cfc953721b54634a3fbbd4085dfeb5348d3d0057397f030074b585
|
Provenance
The following attestation bundles were made for orphos-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
publish-pypi.yml on FullHuman/orphos
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
orphos-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
08345432b4e6766f7839b5120afd76af7fe381130c0abc620e067cf287f3c612 - Sigstore transparency entry: 1279258658
- Sigstore integration time:
-
Permalink:
FullHuman/orphos@1b0bece5ed9c94e631cf099634a6721b35635531 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/FullHuman
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-pypi.yml@1b0bece5ed9c94e631cf099634a6721b35635531 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file orphos-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: orphos-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
411705e4001d5a10ee28d384f3bacf2368f2485ca604153bf1b8a1fb9e61c820
|
|
| MD5 |
ba30ad4378bcf1a893c1a279968b7ff4
|
|
| BLAKE2b-256 |
5bfe18e8e91d491a19f6bb8917aa77464e45a9fc685eb103c7643e4194ed60cc
|
Provenance
The following attestation bundles were made for orphos-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
publish-pypi.yml on FullHuman/orphos
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
orphos-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
411705e4001d5a10ee28d384f3bacf2368f2485ca604153bf1b8a1fb9e61c820 - Sigstore transparency entry: 1279258747
- Sigstore integration time:
-
Permalink:
FullHuman/orphos@1b0bece5ed9c94e631cf099634a6721b35635531 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/FullHuman
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-pypi.yml@1b0bece5ed9c94e631cf099634a6721b35635531 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file orphos-0.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: orphos-0.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
69299df2c576b8e6dc02b2e99b0e45152bb5339781c1a7bf0afef0371e86cc1d
|
|
| MD5 |
144460fdfb8b991447cbd49f4b87e75a
|
|
| BLAKE2b-256 |
60b27cac8d302be5d72a45e581bcc865d94e5e55f5fb7ce006ba335bb6f0fff3
|
Provenance
The following attestation bundles were made for orphos-0.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
publish-pypi.yml on FullHuman/orphos
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
orphos-0.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
69299df2c576b8e6dc02b2e99b0e45152bb5339781c1a7bf0afef0371e86cc1d - Sigstore transparency entry: 1279258949
- Sigstore integration time:
-
Permalink:
FullHuman/orphos@1b0bece5ed9c94e631cf099634a6721b35635531 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/FullHuman
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-pypi.yml@1b0bece5ed9c94e631cf099634a6721b35635531 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file orphos-0.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: orphos-0.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d07320cb5a28a7ed13b15527aa42927b97399f4e76be248cd4b832b7b855caaa
|
|
| MD5 |
82c8f267aa490e44aa47f38239c5cac0
|
|
| BLAKE2b-256 |
05faec697bf7982dff8ba60381e77554c6c7ba182bc298dd1b3e0acd99ad9272
|
Provenance
The following attestation bundles were made for orphos-0.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
publish-pypi.yml on FullHuman/orphos
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
orphos-0.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
d07320cb5a28a7ed13b15527aa42927b97399f4e76be248cd4b832b7b855caaa - Sigstore transparency entry: 1279257545
- Sigstore integration time:
-
Permalink:
FullHuman/orphos@1b0bece5ed9c94e631cf099634a6721b35635531 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/FullHuman
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-pypi.yml@1b0bece5ed9c94e631cf099634a6721b35635531 -
Trigger Event:
workflow_dispatch
-
Statement type: