Skip to main content

No project description provided

Project description

raidx

High-performance FASTA file reader with Python bindings

raidx is a drop-in replacement for pyfaidx implemented in Rust, providing 2-4x faster performance for FASTA file operations while maintaining full API compatibility.

⚡ Performance

raidx is fast:

Operation pyfaidx (ms) raidx (ms) Speedup
🚀 File Opening 0.254 0.068 3.72x faster
🧬 Sequence Access 0.252 0.061 4.13x faster
✂️ Sequence Slicing 0.259 0.077 3.35x faster
🔍 get_seq Method 0.268 0.071 3.76x faster
🔄 Reverse Complement 0.287 0.071 4.03x faster
🔁 Sequence Iteration 0.299 0.097 3.08x faster
🎯 Random Access 3.403 1.172 2.90x faster

📊 Benchmarked on the hg38 human genome assembly with 1000 iterations per test

Installation

pip install .

Quick Start

raidx provides the same API as pyfaidx:

>>> from raidx import Fasta
>>> genome = Fasta('genome.fasta')
>>> genome
Fasta("genome.fasta")

# Access sequences like a dictionary
>>> genome['chr1'][1000:1100]  
>chr1:1001-1100
ATGCATGCATGCATGCATGCATGCATGCATGCATGCATGCATGCATGCATGCATGCATGCATGC...

# Get sequence metadata
>>> seq = genome['chr1'][1000:1100]
>>> seq.name
'chr1'
>>> seq.start  # 1-based
1001
>>> seq.end    # 0-based  
1100

# String-like operations
>>> genome['chr1'][1000:1100].complement
>chr1 (complement):1001-1100
TACGTACGTACGTACGTACGTACGTACGTACGTACGTACGTACGTACGTACGTACGTACG...

>>> -genome['chr1'][1000:1100]  # reverse complement
>chr1 (complement):1100-1001
GCATGCATGCATGCATGCATGCATGCATGCATGCATGCATGCATGCATGCATGCATGCAT...

# Method-based access
>>> genome.get_seq('chr1', 1001, 1100)
>chr1:1001-1100
ATGCATGCATGCATGCATGCATGCATGCATGCATGCATGCATGCATGCATGCATGCATGC...

# Iteration
>>> for record in genome:
...     print(f"{record.name}: {len(record)} bp")
chr1: 248956422 bp
chr2: 242193529 bp
...

Key Features

  • Drop-in replacement for pyfaidx - same API, same behavior
  • Memory-mapped I/O for efficient file access
  • Rust performance with Python convenience
  • Full compatibility with existing pyfaidx code
  • Comprehensive indexing (.fai files compatible with samtools)
  • Rich sequence objects with metadata and methods
  • String-like operations (slicing, reverse, complement)

API Compatibility

raidx implements the complete pyfaidx API:

# All pyfaidx features work identically
from raidx import Fasta

# Indexing and slicing  
genome = Fasta('genome.fasta')
genome['chr1'][1000:2000]
genome[0][:100]  # First sequence, first 100 bp

# Sequence operations
seq = genome['chr1'][1000:1100]
seq.complement
seq.reverse  
-seq  # reverse complement

# Method calls
genome.get_seq('chr1', 1000, 2000)
genome.keys()
len(genome)

# Iteration
for record in genome:
    print(record.name, len(record))

Benchmarking

raidx includes two benchmarking approaches for different use cases:

pytest-benchmark

Use the organized benchmarks/ directory with pytest-benchmark for development, CI/CD, and detailed performance analysis:

# Install benchmark dependencies
pip install -e ".[benchmark]"

# Run all benchmarks
pytest benchmarks/

# Run specific benchmark categories
pytest benchmarks/benchmark_file_ops.py      # File operations
pytest benchmarks/benchmark_sequence_ops.py  # Sequence operations

# Save and compare results
pytest benchmarks/ --benchmark-save=baseline
pytest benchmarks/ --benchmark-compare=baseline

Standalone Benchmarks

Use the small benchmark tool for quick performance comparisons on your own files:

# Benchmark your files
python benchmark_raidx.py your_genome.fasta

# Adjust benchmarking details
python benchmark_raidx.py genome.fasta --iterations 1000 --random-access 500

Why raidx? raidx provides the same familiar pyfaidx interface, but with the performance of Rust underneath. Perfect for the pipelines that need to scale.

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

raidx-0.1.1.tar.gz (32.5 kB view details)

Uploaded Source

Built Distributions

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

raidx-0.1.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (337.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

raidx-0.1.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (345.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

raidx-0.1.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (327.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

raidx-0.1.1-pp311-pypy311_pp73-manylinux_2_12_i686.manylinux2010_i686.whl (353.9 kB view details)

Uploaded PyPymanylinux: glibc 2.12+ i686

raidx-0.1.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (338.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

raidx-0.1.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (345.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

raidx-0.1.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (327.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

raidx-0.1.1-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.whl (354.1 kB view details)

Uploaded PyPymanylinux: glibc 2.12+ i686

raidx-0.1.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (345.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

raidx-0.1.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (327.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

raidx-0.1.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (338.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

raidx-0.1.1-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl (353.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.12+ i686

raidx-0.1.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (341.4 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

raidx-0.1.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (323.9 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

raidx-0.1.1-cp313-cp313-win_amd64.whl (199.5 kB view details)

Uploaded CPython 3.13Windows x86-64

raidx-0.1.1-cp313-cp313-win32.whl (189.4 kB view details)

Uploaded CPython 3.13Windows x86

raidx-0.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (335.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

raidx-0.1.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (343.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

raidx-0.1.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (325.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

raidx-0.1.1-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl (350.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.12+ i686

raidx-0.1.1-cp313-cp313-macosx_11_0_arm64.whl (284.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

raidx-0.1.1-cp313-cp313-macosx_10_12_x86_64.whl (305.6 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

raidx-0.1.1-cp312-cp312-win_amd64.whl (199.9 kB view details)

Uploaded CPython 3.12Windows x86-64

raidx-0.1.1-cp312-cp312-win32.whl (189.6 kB view details)

Uploaded CPython 3.12Windows x86

raidx-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (336.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

raidx-0.1.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (343.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

raidx-0.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (325.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

raidx-0.1.1-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl (351.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.12+ i686

raidx-0.1.1-cp312-cp312-macosx_11_0_arm64.whl (284.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

raidx-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl (305.9 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

raidx-0.1.1-cp311-cp311-win_amd64.whl (201.6 kB view details)

Uploaded CPython 3.11Windows x86-64

raidx-0.1.1-cp311-cp311-win32.whl (191.2 kB view details)

Uploaded CPython 3.11Windows x86

raidx-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (337.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

raidx-0.1.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (344.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

raidx-0.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (327.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

raidx-0.1.1-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl (353.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.12+ i686

raidx-0.1.1-cp311-cp311-macosx_11_0_arm64.whl (287.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

raidx-0.1.1-cp311-cp311-macosx_10_12_x86_64.whl (309.2 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

raidx-0.1.1-cp310-cp310-win_amd64.whl (201.8 kB view details)

Uploaded CPython 3.10Windows x86-64

raidx-0.1.1-cp310-cp310-win32.whl (191.1 kB view details)

Uploaded CPython 3.10Windows x86

raidx-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (337.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

raidx-0.1.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (344.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

raidx-0.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (327.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

raidx-0.1.1-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl (353.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.12+ i686

raidx-0.1.1-cp310-cp310-macosx_11_0_arm64.whl (287.8 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

raidx-0.1.1-cp310-cp310-macosx_10_12_x86_64.whl (309.6 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

raidx-0.1.1-cp39-cp39-win_amd64.whl (202.1 kB view details)

Uploaded CPython 3.9Windows x86-64

raidx-0.1.1-cp39-cp39-win32.whl (191.2 kB view details)

Uploaded CPython 3.9Windows x86

raidx-0.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (338.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

raidx-0.1.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (345.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

raidx-0.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (327.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

raidx-0.1.1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl (353.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.12+ i686

raidx-0.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (338.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

raidx-0.1.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (344.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

raidx-0.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (327.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

raidx-0.1.1-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl (353.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ i686

File details

Details for the file raidx-0.1.1.tar.gz.

File metadata

  • Download URL: raidx-0.1.1.tar.gz
  • Upload date:
  • Size: 32.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for raidx-0.1.1.tar.gz
Algorithm Hash digest
SHA256 f211401396de5b31c6e5c583d6a4648121672f97d72669594815268d26da979a
MD5 30ee2903a70b55114119be861e253db5
BLAKE2b-256 ff7d5b18bdd2fb2537d9839189fdd99d63f2192c434fd9f5e8b26bdb5d30b285

See more details on using hashes here.

Provenance

The following attestation bundles were made for raidx-0.1.1.tar.gz:

Publisher: ci.yml on gtca/raidx

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

File details

Details for the file raidx-0.1.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for raidx-0.1.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f3b44b356444eb37c51abbfaaa524152a56645ca93e52953da9c97b08daa5b22
MD5 2d8e061b907b43d11d0d9ea7c7a4258f
BLAKE2b-256 f37bb9ba631cbd3cb4cb3ee18cfab4111286178cc3f7c77a5c11112cd6ea0f57

See more details on using hashes here.

Provenance

The following attestation bundles were made for raidx-0.1.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: ci.yml on gtca/raidx

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

File details

Details for the file raidx-0.1.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for raidx-0.1.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 40d2911682143bb31a7873904e4dee9b2bafe4ff2a102305913c52a0d95d0729
MD5 dc0ccca3781b9e9333ed7cc6063ad463
BLAKE2b-256 5847efca2a7a86043c8bd245b221ef31b684cdddd6ec289d221d5bbf1951c99b

See more details on using hashes here.

Provenance

The following attestation bundles were made for raidx-0.1.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: ci.yml on gtca/raidx

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

File details

Details for the file raidx-0.1.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for raidx-0.1.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d42ffad2e7f25b9371ff755c0d551062635145c3818821ca2e0dc79b515ad0e7
MD5 63dd819b043cae0a3bdfc49bfa489938
BLAKE2b-256 fb408aceba261f49b9177b2eb9517008c2ff84b00a38d4a2f99d775db4239a59

See more details on using hashes here.

Provenance

The following attestation bundles were made for raidx-0.1.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: ci.yml on gtca/raidx

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

File details

Details for the file raidx-0.1.1-pp311-pypy311_pp73-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for raidx-0.1.1-pp311-pypy311_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 f1f9faeca968fcf3ab6bf9da2b4f77f9a3f329b195e6861629a2b65a9d1211e7
MD5 fbd5a4cead5d9acc5a31b7c08ec68be2
BLAKE2b-256 696672af001ed82fd3ceb7fc6326c9a27021cbd03918018a8cf7dae62f8df1e7

See more details on using hashes here.

Provenance

The following attestation bundles were made for raidx-0.1.1-pp311-pypy311_pp73-manylinux_2_12_i686.manylinux2010_i686.whl:

Publisher: ci.yml on gtca/raidx

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

File details

Details for the file raidx-0.1.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for raidx-0.1.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3cea4f9a7755eb3b3dbd157ca12472182b25f573e6d5f2aed9082ceae670b04f
MD5 6866da5d6ee396ea158bdcf3e35187f4
BLAKE2b-256 5779665798bd30037a62f1e0fab2d7a9acfd02cb21dc875967f4cad4fe7b00d6

See more details on using hashes here.

Provenance

The following attestation bundles were made for raidx-0.1.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: ci.yml on gtca/raidx

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

File details

Details for the file raidx-0.1.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for raidx-0.1.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ca3335e17b79f58c7be8ad2159f8519c7a3ebb0fe3b6e36179fd5a2148591dac
MD5 5f1f394e17f93ba8fe95e9bd6776ccd9
BLAKE2b-256 a95904e467dc7b3fd0e69d967a2e2e60ee2b2c71d43fe617f568d3c4b22f6b2e

See more details on using hashes here.

Provenance

The following attestation bundles were made for raidx-0.1.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: ci.yml on gtca/raidx

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

File details

Details for the file raidx-0.1.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for raidx-0.1.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dfbaa2d78b6a6a9477e6383d8099a3f9196b6bb0716484133afd7dd61c89c40b
MD5 cf84e6a4a6f5dfb9d3a054c598aa13e3
BLAKE2b-256 fa6d65cb6f547866eed457048ae80a6536a3e9c424fe6276e9be0540e49bc585

See more details on using hashes here.

Provenance

The following attestation bundles were made for raidx-0.1.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: ci.yml on gtca/raidx

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

File details

Details for the file raidx-0.1.1-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for raidx-0.1.1-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 9fccb03ba8439b01739a8da5c90a8203f90a1c4045c9a27e7039c7de46547078
MD5 4b3203e2361e86f3c8015a88a2b0f77d
BLAKE2b-256 603fbdbee03fd1131d1bcec13e4b3b3462076088ba51d3ae2056dee053b943b3

See more details on using hashes here.

Provenance

The following attestation bundles were made for raidx-0.1.1-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.whl:

Publisher: ci.yml on gtca/raidx

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

File details

Details for the file raidx-0.1.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for raidx-0.1.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 dbde2f0182b694b7231f3fd84b082ba10a3849090df862b2611a5f70d126b929
MD5 0ed8ecfade22ec1a33a8e02dda471c30
BLAKE2b-256 f618ba909c77308b00b51d6c8f67cc00a9d97f38b50f78ca6d84bbbce3299eb4

See more details on using hashes here.

Provenance

The following attestation bundles were made for raidx-0.1.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: ci.yml on gtca/raidx

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

File details

Details for the file raidx-0.1.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for raidx-0.1.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 413ed2a41d9ea41060a7d0101701b0f1a2a998f8386133d4cf90479c24c180b1
MD5 362e6032d338163894b2ceb72ddde149
BLAKE2b-256 0573e2d66acb44a04bafa36e02374662b6574e65dbeeb1c6c49f5e7ff45566ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for raidx-0.1.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: ci.yml on gtca/raidx

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

File details

Details for the file raidx-0.1.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for raidx-0.1.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f4d2795f39266fec39f897413ba2e1bb484ea2f5fbdecf5d9116a04c04f2fab0
MD5 1fa3b90c3c7374bd3dd7fa126e1ad7ba
BLAKE2b-256 1de539e3c4adbd3bb08a0af54dd6d018e5726addaa7721732708d7de5b29055a

See more details on using hashes here.

Provenance

The following attestation bundles were made for raidx-0.1.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: ci.yml on gtca/raidx

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

File details

Details for the file raidx-0.1.1-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for raidx-0.1.1-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 c52d6601cdced54f77501fe39bdd6171d7dd5fe9cbcd270e02d76a0cd8aef12e
MD5 bf991d84575d9520bae3145b62055d01
BLAKE2b-256 2cb36e796b27e5806b0432cd8a05aca7b1ff062cbb9c0ccbdef2d8df1cec3b7e

See more details on using hashes here.

Provenance

The following attestation bundles were made for raidx-0.1.1-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl:

Publisher: ci.yml on gtca/raidx

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

File details

Details for the file raidx-0.1.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for raidx-0.1.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 55390e2678df10533cc1f2b0ff1df6357b61774c9e07e4c3770787397145cb61
MD5 30792c6cdba66a5778cb11580da87586
BLAKE2b-256 a9b313074c2de0f1c26a11ee8233b22b8e6e8ba161bac7160a41abd2313dc3e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for raidx-0.1.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: ci.yml on gtca/raidx

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

File details

Details for the file raidx-0.1.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for raidx-0.1.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 49bac1f1381c83bcfe01a5ea48a881cee2a0a03e589c4e1f4c32898ff965be82
MD5 e304f5fe071a1e4274888a3ba02bee73
BLAKE2b-256 6a808f609e8cc84e7b2958fe2ab1d0b63277578b0129fdb341991077530aca0a

See more details on using hashes here.

Provenance

The following attestation bundles were made for raidx-0.1.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: ci.yml on gtca/raidx

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

File details

Details for the file raidx-0.1.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: raidx-0.1.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 199.5 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for raidx-0.1.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 0e408ec19b97d9b6353abe1b07ebd393c29f622e1384b11718a0a03e728e5be8
MD5 8bd468a1f52fceb8c38d8605b5186a88
BLAKE2b-256 284258799a99d89f943fa90697feb3436e649a905ec1bae012035ce7389afde3

See more details on using hashes here.

Provenance

The following attestation bundles were made for raidx-0.1.1-cp313-cp313-win_amd64.whl:

Publisher: ci.yml on gtca/raidx

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

File details

Details for the file raidx-0.1.1-cp313-cp313-win32.whl.

File metadata

  • Download URL: raidx-0.1.1-cp313-cp313-win32.whl
  • Upload date:
  • Size: 189.4 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for raidx-0.1.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 b7b24467ec922ec72c21d38ecb48ccd8ae2d6c1b5d7c6b11b44eac24d3bae0da
MD5 d850fe24bd158bcf1e9fa2e100aba08f
BLAKE2b-256 98f88ea1d6833cb988e19f35d133feffe37bbc3b4eadc0247abe1fa9f6377f1a

See more details on using hashes here.

Provenance

The following attestation bundles were made for raidx-0.1.1-cp313-cp313-win32.whl:

Publisher: ci.yml on gtca/raidx

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

File details

Details for the file raidx-0.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for raidx-0.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 44e2262cb9c5365011bb2d3547c9f28ed5366585d53b31a22d16e94b5ce1f7f8
MD5 a063d0e492874200940a76100b4db6a6
BLAKE2b-256 f51fad7e52c1448e909b2aefb7b0cd4044983ba4b6d04d854cffdb8ccdda98ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for raidx-0.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: ci.yml on gtca/raidx

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

File details

Details for the file raidx-0.1.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for raidx-0.1.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3454ebf1c11c023f38d66026a1d0e895b14b40d437bf491d146d21568da9b3cc
MD5 296ff42fc4f2fc5682934772f8441a57
BLAKE2b-256 74e4e66466bd75525edf2a7ad4cfb77cf440f63730e36d2e10a70cb4fecf6a35

See more details on using hashes here.

Provenance

The following attestation bundles were made for raidx-0.1.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: ci.yml on gtca/raidx

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

File details

Details for the file raidx-0.1.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for raidx-0.1.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ef4af8536423a8737322823b0e335fff40a51620284c66778c7646ed13b62f95
MD5 4bfc2ffa1761cc01588bc08f2943f212
BLAKE2b-256 1b9adda9b969dbb81a9155b18ba8f57aea760612b7f6e575e810bbbf4f92f8fe

See more details on using hashes here.

Provenance

The following attestation bundles were made for raidx-0.1.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: ci.yml on gtca/raidx

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

File details

Details for the file raidx-0.1.1-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for raidx-0.1.1-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 266860f4652e8920f6aa045ac16aaa2878cc9f92b723b7c0c51e54c08a6daca4
MD5 fdc97c56e538b8aa60b51071cad86968
BLAKE2b-256 af17b545f1828d40332982f04bac0f4a6b0d11ea87c9ea625b24d324d212482b

See more details on using hashes here.

Provenance

The following attestation bundles were made for raidx-0.1.1-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl:

Publisher: ci.yml on gtca/raidx

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

File details

Details for the file raidx-0.1.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for raidx-0.1.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 aea97f941c3481589a972be72baa5c6d39d23d521db137731f5a6b3a18ff1507
MD5 794ebfc99ebeb7f94b77af5f1ba0e738
BLAKE2b-256 fd52d62910468739b3aa99200db8bf9d711276a95c0308a4e7bf6d493a7b374f

See more details on using hashes here.

Provenance

The following attestation bundles were made for raidx-0.1.1-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: ci.yml on gtca/raidx

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

File details

Details for the file raidx-0.1.1-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for raidx-0.1.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d2514434d951830ca9aa1c32d150b7aa1c464864bd8cbc716b9515a1b511d100
MD5 333028c8aa292d2fa2668b9c7205d012
BLAKE2b-256 306489517ccfb79f9df84c1a2637e7352a86812c2678d2e0ce50df9f31a47357

See more details on using hashes here.

Provenance

The following attestation bundles were made for raidx-0.1.1-cp313-cp313-macosx_10_12_x86_64.whl:

Publisher: ci.yml on gtca/raidx

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

File details

Details for the file raidx-0.1.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: raidx-0.1.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 199.9 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for raidx-0.1.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 6135508686e6ee8286fc4249a36a75b7844dbcec2614c07e3c54c0067ac783fd
MD5 9498bca806ffe09ae679fa816150abc8
BLAKE2b-256 f7b7f6504e92cd189308208653b509a55edf47da264e2b2d09caa6aae19bbffa

See more details on using hashes here.

Provenance

The following attestation bundles were made for raidx-0.1.1-cp312-cp312-win_amd64.whl:

Publisher: ci.yml on gtca/raidx

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

File details

Details for the file raidx-0.1.1-cp312-cp312-win32.whl.

File metadata

  • Download URL: raidx-0.1.1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 189.6 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for raidx-0.1.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 fd702a202fd24313e71073ccf6fcd25329ac8f3fc6ac2d2221ecd38d723089e3
MD5 6c4df98096c0779aecdf712e524e4aa6
BLAKE2b-256 393806740ac8eb5ea1b910a08cb5a66f42c96235351e9a58240af575f59644a4

See more details on using hashes here.

Provenance

The following attestation bundles were made for raidx-0.1.1-cp312-cp312-win32.whl:

Publisher: ci.yml on gtca/raidx

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

File details

Details for the file raidx-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for raidx-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 894604650c71badf3e3750c631a4baef01037f98d93db41b277f7a2a63d86241
MD5 a12c4f2819efd801da28d0827cd61883
BLAKE2b-256 1b770fd0559d59bfb6466df05b750cee09be6e6768938f1a033b1b3d1c9195c0

See more details on using hashes here.

Provenance

The following attestation bundles were made for raidx-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: ci.yml on gtca/raidx

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

File details

Details for the file raidx-0.1.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for raidx-0.1.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3f1982c0510de303e6f2689d3fcdea1d51dd0c0fe3651f360cc794abf0b429f3
MD5 cd5327a314ce78041bc0ef1a2cfd5f48
BLAKE2b-256 b8992cfcd89dced5d1edb91939963e59e8925d625929e556dcdbc89e640b5aea

See more details on using hashes here.

Provenance

The following attestation bundles were made for raidx-0.1.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: ci.yml on gtca/raidx

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

File details

Details for the file raidx-0.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for raidx-0.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9b7e864e4ecad32100c4bdeb6f88a6125f92fcf48e0005fb9ffe4a14c3a965e5
MD5 41c535a7bda42a6ebbed1b7ee6e837d8
BLAKE2b-256 6dc882756f3456aec0d1ca57b7d896f4161e3715dd194429c909a2446b81022e

See more details on using hashes here.

Provenance

The following attestation bundles were made for raidx-0.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: ci.yml on gtca/raidx

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

File details

Details for the file raidx-0.1.1-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for raidx-0.1.1-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 1a0dc5dfb9aeb9869d2602f50eb7ecf252f7be684b2cf801770d3bd3fc36018c
MD5 240a312718680fb311d80120592f7fad
BLAKE2b-256 eec50116b71e696661fdf489648e11ce293c8202c683dea1f25cc6d7eec293df

See more details on using hashes here.

Provenance

The following attestation bundles were made for raidx-0.1.1-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl:

Publisher: ci.yml on gtca/raidx

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

File details

Details for the file raidx-0.1.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for raidx-0.1.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5d4ed78625600cda7b9a4a2f651ca080361520b9501c8a4a9e9c5d64c4caac0e
MD5 b531d0a6da1ec8424fce1751433cff46
BLAKE2b-256 443e487522bec6598d10d1a7c533a1f007572f349cf8ad4311a49abf4ba60216

See more details on using hashes here.

Provenance

The following attestation bundles were made for raidx-0.1.1-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: ci.yml on gtca/raidx

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

File details

Details for the file raidx-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for raidx-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 db2534f4fac40cca0148444dde02e9c9f8ee3059e3050939b2ef1c13501fe1f5
MD5 ee3e261dd0b6a18aab1dca7caaf6fdd1
BLAKE2b-256 0cac4d618722209ed140fc0b3e46ed04f78a07dcf6e3c13cb2b229ea771fa2cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for raidx-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl:

Publisher: ci.yml on gtca/raidx

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

File details

Details for the file raidx-0.1.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: raidx-0.1.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 201.6 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for raidx-0.1.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 fc23f3cd9395cb4d47dc7df7a899e403111642aa36cc79d1e447673160477ca0
MD5 90c9ca02b8999c5fb9019fd6e5bfb86c
BLAKE2b-256 e332fbb11db9af58dbfc76299ef93ac333f86a9aa696ed604c29f149105d3ff1

See more details on using hashes here.

Provenance

The following attestation bundles were made for raidx-0.1.1-cp311-cp311-win_amd64.whl:

Publisher: ci.yml on gtca/raidx

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

File details

Details for the file raidx-0.1.1-cp311-cp311-win32.whl.

File metadata

  • Download URL: raidx-0.1.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 191.2 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for raidx-0.1.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 58efd57a6aef6f66429a565bbc2fd0581c3aa969c2bc6c8d2e043ffc1216489c
MD5 5a95deb32b98bc270b397a24217e60a5
BLAKE2b-256 78af7d178d45f91235d42f52ec1ccd98613958a631b293c5ed40b6d78dab3eec

See more details on using hashes here.

Provenance

The following attestation bundles were made for raidx-0.1.1-cp311-cp311-win32.whl:

Publisher: ci.yml on gtca/raidx

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

File details

Details for the file raidx-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for raidx-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ca68f23e63da049ae2f24abe7d227bc4364929acca25e4b96ff67c0979174284
MD5 38c19d2e68fe64da7ef7246713573519
BLAKE2b-256 b0b4b889f5c5e1d7286c27b930336fdd2178a57b30cbfbb71778a227c8596688

See more details on using hashes here.

Provenance

The following attestation bundles were made for raidx-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: ci.yml on gtca/raidx

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

File details

Details for the file raidx-0.1.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for raidx-0.1.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 23a2276136518f9b147b1ba7e033e5acc67eb33a03dd5d2e71f5e99f11625635
MD5 1521474b32414c0def78dc1972c91360
BLAKE2b-256 416360dcaabb978eaef919f77766971e22f8b532838161b8e9d3757a49e3729b

See more details on using hashes here.

Provenance

The following attestation bundles were made for raidx-0.1.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: ci.yml on gtca/raidx

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

File details

Details for the file raidx-0.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for raidx-0.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c589adcd2a01290d532391fe7a82a995fec5b9a60f6a9401348ee5a7bcae69d3
MD5 1ea9465fde8f175fc7278fbaf33322e6
BLAKE2b-256 aaf37f1bbee0d22c98d1b4bae50e5d83a03434b0216b07796feb8cde94e9eeb6

See more details on using hashes here.

Provenance

The following attestation bundles were made for raidx-0.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: ci.yml on gtca/raidx

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

File details

Details for the file raidx-0.1.1-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for raidx-0.1.1-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 534bc99474d3df05bda1186cd78693efd0340005b404ccb2faf39499d82cc496
MD5 f9129f1e3b2ec367fd90dc1812220204
BLAKE2b-256 e2c4c6d623a22d6286159163faaf7f20b52c3065bf49cfc116fcc7e6513f87c5

See more details on using hashes here.

Provenance

The following attestation bundles were made for raidx-0.1.1-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl:

Publisher: ci.yml on gtca/raidx

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

File details

Details for the file raidx-0.1.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for raidx-0.1.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 634e90e5a86d1c2860d9ff4db2629d6930ef7df6ea16d6aa4f6c210e8262bdf9
MD5 3e3abf304d139f97e6ce34fdfb6200d7
BLAKE2b-256 de062fb12bd65158c6c6c2460604156c7ab85021e4c92bc77c0c3a6a316d4f39

See more details on using hashes here.

Provenance

The following attestation bundles were made for raidx-0.1.1-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: ci.yml on gtca/raidx

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

File details

Details for the file raidx-0.1.1-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for raidx-0.1.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 00888c8e2a10bcf78ee5304365ed70ef11673e1b727a9760c5e744eeba81cfc6
MD5 2d82c794626a424bedcc4f487d0da44d
BLAKE2b-256 1dd06cec5d15c92acd8276f5cab58192a4efa379584107986fbd7e7c28673fe0

See more details on using hashes here.

Provenance

The following attestation bundles were made for raidx-0.1.1-cp311-cp311-macosx_10_12_x86_64.whl:

Publisher: ci.yml on gtca/raidx

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

File details

Details for the file raidx-0.1.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: raidx-0.1.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 201.8 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for raidx-0.1.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 bf6d88b33a237cf206b39fd558c0063a5e3fa8553f967711e1fefc3e530b387e
MD5 87f08ee390a9fde657a7e1d4af87aed8
BLAKE2b-256 825b5b89654fb791a62906c7acde796a85e20bd002ce89d774f2c549e9d3139c

See more details on using hashes here.

Provenance

The following attestation bundles were made for raidx-0.1.1-cp310-cp310-win_amd64.whl:

Publisher: ci.yml on gtca/raidx

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

File details

Details for the file raidx-0.1.1-cp310-cp310-win32.whl.

File metadata

  • Download URL: raidx-0.1.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 191.1 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for raidx-0.1.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 7431b49d6fbf84fb730c910b36da8bc0d0bd2b68696236a9f69e8d334e173e46
MD5 870fb5cff292c33d82fcd5fb317b9107
BLAKE2b-256 8a1486f1c1e73bc34f038a33edf80bae6a7e6d2e578b8c9f9b0b4f7f5ca1e637

See more details on using hashes here.

Provenance

The following attestation bundles were made for raidx-0.1.1-cp310-cp310-win32.whl:

Publisher: ci.yml on gtca/raidx

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

File details

Details for the file raidx-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for raidx-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 be58608d572b6e84b0cb3e51ab55e66a8e6f4bd05909d7c95388c2af49a34481
MD5 8402ad6caaac473a0179d13607bac268
BLAKE2b-256 089165cc572684969f30c427e3ce7808cd53eaa2e28ceed5e65d05c0e855c8fa

See more details on using hashes here.

Provenance

The following attestation bundles were made for raidx-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: ci.yml on gtca/raidx

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

File details

Details for the file raidx-0.1.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for raidx-0.1.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0c966b9e5554ef45693effa4911e4597098c7e34af0be9a9bba84005aaa7d2da
MD5 03608200af951bf95e36c6f71f1d8301
BLAKE2b-256 d79d06d34b63d898507b1c8a1aa197304415e11365f158b0388fb6270d1549ff

See more details on using hashes here.

Provenance

The following attestation bundles were made for raidx-0.1.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: ci.yml on gtca/raidx

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

File details

Details for the file raidx-0.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for raidx-0.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8ac5536c76185b5e33f40ab7f6309fc8ddff525a5cb39c5379a90020ee668f89
MD5 fb274838d67290539ee75ef04b5bbebf
BLAKE2b-256 6973374348030e2e02ff22681bc58a6e2504ca1d2aeedd7d9a181f37f21a69db

See more details on using hashes here.

Provenance

The following attestation bundles were made for raidx-0.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: ci.yml on gtca/raidx

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

File details

Details for the file raidx-0.1.1-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for raidx-0.1.1-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 f89acb98f7cee1d2755912bce772e268d6723c2dde4f70b2793fa9ee47455015
MD5 48480883ac22b152f8db48a5ab8711dc
BLAKE2b-256 cd7e959a0a89d29800975f8262c85918855ce92319f2a0a670a9f18dbf4be8d7

See more details on using hashes here.

Provenance

The following attestation bundles were made for raidx-0.1.1-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl:

Publisher: ci.yml on gtca/raidx

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

File details

Details for the file raidx-0.1.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for raidx-0.1.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 893c9ddb2b3f1a876702f82a352b91851c1f1d830a5beb1dd3daad63490355c8
MD5 9d8bfe67c46955d648b3f0d1b03a7428
BLAKE2b-256 bbb9d7472ce20f890d7844b2c69b44d6b05cc579383b1796380b8910c2cf91ac

See more details on using hashes here.

Provenance

The following attestation bundles were made for raidx-0.1.1-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: ci.yml on gtca/raidx

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

File details

Details for the file raidx-0.1.1-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for raidx-0.1.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b036c56eb18876d26c7d6fca293475861ea4fbb77a783c68094afd761e9d6e27
MD5 dfd7b1cd79ad08fa0055bbe37ba04825
BLAKE2b-256 762229e67cbb0220f33250cb450022d412345b32908294d730a87a4d7894f922

See more details on using hashes here.

Provenance

The following attestation bundles were made for raidx-0.1.1-cp310-cp310-macosx_10_12_x86_64.whl:

Publisher: ci.yml on gtca/raidx

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

File details

Details for the file raidx-0.1.1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: raidx-0.1.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 202.1 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for raidx-0.1.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 6801010901765c148e375cdfbedf24321088ce62c77f5ad111bb54d0e8e62dff
MD5 656e5cffd93f2385f3ca1d39de178702
BLAKE2b-256 52d8779e9470c077662c673db708ad885c7c78c8b54810205091a205d2721cc0

See more details on using hashes here.

Provenance

The following attestation bundles were made for raidx-0.1.1-cp39-cp39-win_amd64.whl:

Publisher: ci.yml on gtca/raidx

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

File details

Details for the file raidx-0.1.1-cp39-cp39-win32.whl.

File metadata

  • Download URL: raidx-0.1.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 191.2 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for raidx-0.1.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 d5c5aab37fd53fdbee9c907a911cd367dc830b94cbdf5cd5cf9bb31f196753ef
MD5 8e6839d87c9cc01f634f2380158a25ca
BLAKE2b-256 31f3c4d5f393af6909e846822f2e5defd3a1a3a388a2458d0974abbcf8c12d04

See more details on using hashes here.

Provenance

The following attestation bundles were made for raidx-0.1.1-cp39-cp39-win32.whl:

Publisher: ci.yml on gtca/raidx

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

File details

Details for the file raidx-0.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for raidx-0.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6b4ad1f7a8a6102d73a26d4e0addec9da4a34e138be1433929d6c8864d4b909c
MD5 10fb2b867a4b1936134c52967b0d1b29
BLAKE2b-256 f84e164547c60b12eb7ff70a8b8c018c0a328861c6bac65d529af8e080b9064e

See more details on using hashes here.

Provenance

The following attestation bundles were made for raidx-0.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: ci.yml on gtca/raidx

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

File details

Details for the file raidx-0.1.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for raidx-0.1.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4533398d09bd010d8f650dda9dc5cd2796e65445845ed4b3122c9c276fa925bb
MD5 f80e342a6ee72264fe7485ac4a3e1303
BLAKE2b-256 977f45b2bee7ae10643f528a40c492b1879d00f02e387d544dcd0c3d0bf456cc

See more details on using hashes here.

Provenance

The following attestation bundles were made for raidx-0.1.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: ci.yml on gtca/raidx

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

File details

Details for the file raidx-0.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for raidx-0.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ef709b5b3d6fae3cee4fa184bc60cae35f1d93b334743f4c9fb4424e1561f720
MD5 55147423f367e68bcb8c7fce1faacc7f
BLAKE2b-256 1e0dc2244dbd0776f5f77d93bcb0e41c5b79972681c85f1fb0aef2c14261dd26

See more details on using hashes here.

Provenance

The following attestation bundles were made for raidx-0.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: ci.yml on gtca/raidx

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

File details

Details for the file raidx-0.1.1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for raidx-0.1.1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 58a905d8135bf4536df672b02ce93dbf29d760f67435299cd655f99a40ebfb4d
MD5 eab14ff5d0a0887336b27de7ba6469b9
BLAKE2b-256 d2b2041d1ef9c6efb951bc8281792209cf54d938fc1c14f685f7f82d1a61f597

See more details on using hashes here.

Provenance

The following attestation bundles were made for raidx-0.1.1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl:

Publisher: ci.yml on gtca/raidx

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

File details

Details for the file raidx-0.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for raidx-0.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b2c2b44c95491ce6f0fb82d19dda60c464d568cc0044461efadc7d23eaa74e15
MD5 3c1c70036b21c3c0256393a2051ce22c
BLAKE2b-256 8989d67114490061cc5a3c396949315b3882a92cb8cc92e39b5a4c3e5ab23a74

See more details on using hashes here.

Provenance

The following attestation bundles were made for raidx-0.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: ci.yml on gtca/raidx

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

File details

Details for the file raidx-0.1.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for raidx-0.1.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 acc7d32dd5907856971cabf6c4c81da17f2a9178585588b88b5dd7c3a29f77cf
MD5 603bac7a8740ba7cf793e34a140d617a
BLAKE2b-256 c31cb24d66f76fa77b8ec0d3b3dc944e29d60b4a7c8156d101a147f294e93c71

See more details on using hashes here.

Provenance

The following attestation bundles were made for raidx-0.1.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: ci.yml on gtca/raidx

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

File details

Details for the file raidx-0.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for raidx-0.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 16b0d3b8e49ef8d38c3f7200181fe14b9c020d24f45f2c733ef284af262abb51
MD5 874a49be7e949beccb274b813fbc152a
BLAKE2b-256 824885441e5563b3d552f5a49987c6530532b1158178d1fa60b363e31db50f1d

See more details on using hashes here.

Provenance

The following attestation bundles were made for raidx-0.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: ci.yml on gtca/raidx

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

File details

Details for the file raidx-0.1.1-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for raidx-0.1.1-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 f12f04a4247df788f93abb57425d272e107a917dde68d284d031e1670fb4444c
MD5 c011a4573df99899e0218ffc9443410f
BLAKE2b-256 8b1d58488ca4a860903cf83e97cac999ba9920b4f93db21bbde427fa2ad01906

See more details on using hashes here.

Provenance

The following attestation bundles were made for raidx-0.1.1-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl:

Publisher: ci.yml on gtca/raidx

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