Skip to main content

Python bindings for the OpenSXRaw SCIEX .wiff / .wiff.scan file parser

Project description

OpenSXRaw

License: Apache-2.0 Rust MSRV

Part of the OpenMassSpec stack for mass spectrometry raw-file access. Sibling readers: OpenTFRaw (Thermo), OpenWRaw (Waters), OpenTimsTDF (Bruker), OpenARaw (Agilent).

Rust and Python reader for SCIEX .wiff/.wiff.scan legacy mass spectrometry data files, clean-room reverse-engineered with no SCIEX SDK or software dependency. Covers the TripleTOF and QTRAP instrument families.

Status

Published on crates.io (opensxraw). Python bindings (opensxraw on PyPI) publish from the release workflow. The legacy .wiff/.wiff.scan format is fully decoded and has a working reader (crates/opensxraw), tested against a real TripleTOF 5600 corpus file (2228 scans decoded).

.wiff2, SCIEX's newer self-contained format, was investigated in depth (see docs/format/03-wiff2-container.md) but uses proprietary encryption; a multi-week GPU-based key search across 4 GPUs did not recover it, so .wiff2 support is deferred pending new information. See docs/format/ for the full format writeups and this repo's re/ROADMAP.md (local-only, gitignored) for the working history.

Known limitations: m/z values are raw, uncalibrated time-bin integers (no ExperimentTOF calibration yet); MS2 precursor m/z is not yet populated (DDERealTimeDataEx not yet decoded). See CHANGELOG.md for the full list.

Install

Prefer openmassspec-io with the sciex feature unless you need this parser standalone (minimal dependencies, or building your own abstraction) - the umbrella gives you format auto-detection, mzML conversion, and Arrow streaming across all wired-in vendors for free:

cargo add openmassspec-io --features sciex
pip install openmassspec[sciex]

Standalone:

Rust:

cargo add opensxraw

Python:

pip install opensxraw

Quickstart

Rust:

use opensxraw::reader::Reader;
use openmassspec_core::SpectrumSource;

let mut reader = Reader::open("sample.wiff")?;
for spectrum in reader.iter_spectra() {
    println!("{}: {} peaks", spectrum.native_id, spectrum.mz.len());
}

Python:

import opensxraw

reader = opensxraw.RawReader("sample.wiff")
spectrum = reader.read_spectrum(0)
print(spectrum.ms_level, spectrum.retention_time_sec, len(spectrum.mz))

Reader::open (and RawReader) expects the paired .wiff.scan file to sit alongside the .wiff file, with .scan appended to the .wiff filename.

License

Apache-2.0. See LICENSE.

The format specification was developed by binary analysis of public mass-spectrometry datasets (PRIDE accessions). See CORPUS.md and ATTRIBUTION.md.

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

opensxraw-0.2.0.tar.gz (19.6 kB view details)

Uploaded Source

Built Distributions

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

opensxraw-0.2.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (327.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

opensxraw-0.2.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (322.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

opensxraw-0.2.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (325.1 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ x86-64

opensxraw-0.2.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (325.3 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ x86-64

opensxraw-0.2.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (325.1 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

opensxraw-0.2.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (318.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

opensxraw-0.2.0-cp314-cp314-win_amd64.whl (190.8 kB view details)

Uploaded CPython 3.14Windows x86-64

opensxraw-0.2.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (324.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

opensxraw-0.2.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (319.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

opensxraw-0.2.0-cp314-cp314-macosx_11_0_arm64.whl (291.5 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

opensxraw-0.2.0-cp314-cp314-macosx_10_12_x86_64.whl (294.4 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

opensxraw-0.2.0-cp313-cp313-win_amd64.whl (190.4 kB view details)

Uploaded CPython 3.13Windows x86-64

opensxraw-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (323.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

opensxraw-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (317.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

opensxraw-0.2.0-cp313-cp313-macosx_11_0_arm64.whl (290.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

opensxraw-0.2.0-cp313-cp313-macosx_10_12_x86_64.whl (293.0 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

opensxraw-0.2.0-cp312-cp312-win_amd64.whl (190.8 kB view details)

Uploaded CPython 3.12Windows x86-64

opensxraw-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (323.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

opensxraw-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (317.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

opensxraw-0.2.0-cp312-cp312-macosx_11_0_arm64.whl (290.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

opensxraw-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl (293.4 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

opensxraw-0.2.0-cp311-cp311-win_amd64.whl (192.6 kB view details)

Uploaded CPython 3.11Windows x86-64

opensxraw-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (326.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

opensxraw-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (320.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

opensxraw-0.2.0-cp311-cp311-macosx_11_0_arm64.whl (294.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

opensxraw-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl (294.3 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

opensxraw-0.2.0-cp310-cp310-win_amd64.whl (192.6 kB view details)

Uploaded CPython 3.10Windows x86-64

opensxraw-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (327.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

opensxraw-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (321.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

opensxraw-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (329.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

opensxraw-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (325.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

opensxraw-0.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (325.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

File details

Details for the file opensxraw-0.2.0.tar.gz.

File metadata

  • Download URL: opensxraw-0.2.0.tar.gz
  • Upload date:
  • Size: 19.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for opensxraw-0.2.0.tar.gz
Algorithm Hash digest
SHA256 64fdc694d402e14da66658ed863991b8b46b7651b7fe4726b90afd54f17913a5
MD5 c820d5b8757797d29e7763960cc5656f
BLAKE2b-256 41c0c742116ecc6dadd9564403006a2039238c80d4cbb87ca7fc8c0814e24281

See more details on using hashes here.

Provenance

The following attestation bundles were made for opensxraw-0.2.0.tar.gz:

Publisher: publish.yml on Sigilweaver/OpenSXRaw

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

File details

Details for the file opensxraw-0.2.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for opensxraw-0.2.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3c5af550dc6470a19cc94eb874961dbee53d75233bc45e05f51e3adbc46b351b
MD5 7f04d8026bb6586d98b9d4f57732c251
BLAKE2b-256 4dd6e9d0252d86d9cd4fd108a48b7777772409127839d29d4b13d60faa1a92d3

See more details on using hashes here.

Provenance

The following attestation bundles were made for opensxraw-0.2.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on Sigilweaver/OpenSXRaw

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

File details

Details for the file opensxraw-0.2.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for opensxraw-0.2.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3c6e7d8a5b5022f45f0ce60317ac6de96bce00c3ead9631be5df0f8f6da78138
MD5 7449f06ba7291c76c28ffd465f3fa14e
BLAKE2b-256 04edc4ce7f23c4eea2a44e5a246db194ee068bb7e89d9380240bc78d72c1771c

See more details on using hashes here.

Provenance

The following attestation bundles were made for opensxraw-0.2.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish.yml on Sigilweaver/OpenSXRaw

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

File details

Details for the file opensxraw-0.2.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for opensxraw-0.2.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bc9757b1b3d0999ecb14b620b465f20f2867499ecd97f66feb4059557716958a
MD5 093b9405f7e335fd9582827ced1d2563
BLAKE2b-256 de099a5941cd275954bac18b8820b196d2571a7911afb07ba810b26e9bb33fb7

See more details on using hashes here.

Provenance

The following attestation bundles were made for opensxraw-0.2.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on Sigilweaver/OpenSXRaw

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

File details

Details for the file opensxraw-0.2.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for opensxraw-0.2.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cc0be1086e13e28d31dc066df833f6ff59d93bfffa231b06345761675f51f0e9
MD5 fc64af190c4fd4d3b44cd71d0431f081
BLAKE2b-256 d02f1b36cbc091cbd431ff1a55b5a2a89b418aed668d9985e459d466257f2a9e

See more details on using hashes here.

Provenance

The following attestation bundles were made for opensxraw-0.2.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on Sigilweaver/OpenSXRaw

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

File details

Details for the file opensxraw-0.2.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for opensxraw-0.2.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a6020604672e4e50c5e60d8644296c9c89a6283cd8e13d1e7b9df6580998c83e
MD5 cf6f5ff78dd8afcc1670fce2e4374b07
BLAKE2b-256 0f22f662ca8e1c16fac5fe6a24e08c5a917ed7ee60ea88981f7f7e9680599f48

See more details on using hashes here.

Provenance

The following attestation bundles were made for opensxraw-0.2.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on Sigilweaver/OpenSXRaw

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

File details

Details for the file opensxraw-0.2.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for opensxraw-0.2.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a6ad7020912f6b33a1e68927310b2577bffe67f8d610adb7dcaf3c982f330f2f
MD5 36aa185c2f435c6b9a41d4e2cea12cd6
BLAKE2b-256 67e309095a1a5f39d8c98646131ba30f336588540183125c9885b7444ffabfeb

See more details on using hashes here.

Provenance

The following attestation bundles were made for opensxraw-0.2.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish.yml on Sigilweaver/OpenSXRaw

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

File details

Details for the file opensxraw-0.2.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: opensxraw-0.2.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 190.8 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for opensxraw-0.2.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 86cf65b3de9ad2fbd689c47ff51ae09bfd231b34486b12c0400f298a137c45c5
MD5 12dfa310ef7a9a7a399cbb3545748221
BLAKE2b-256 710bd162ddb32d6bb32b6e7a18400314cd406b944abe426ac91f3e65b63b5fb9

See more details on using hashes here.

Provenance

The following attestation bundles were made for opensxraw-0.2.0-cp314-cp314-win_amd64.whl:

Publisher: publish.yml on Sigilweaver/OpenSXRaw

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

File details

Details for the file opensxraw-0.2.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for opensxraw-0.2.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d9e568f4817decd6f33385ee5e63062f2e2171ad17ea8109545d9b51840f84ab
MD5 30673e7dd4b092ecbbeac640191b2852
BLAKE2b-256 a838f8a2d993407076e6b78ab0c8c5fe9584580813406187a3c115459dd2d1e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for opensxraw-0.2.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on Sigilweaver/OpenSXRaw

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

File details

Details for the file opensxraw-0.2.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for opensxraw-0.2.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a94081c351194cc054171b4b1d1137b97881b330e9881732595a707306dee9d9
MD5 7b962d699e796886dda0a3ad6da8d1e0
BLAKE2b-256 df0d60ff0c7b36e8486ea06b8fc9b3c3a00ae8168698f00de823e4f04c529d04

See more details on using hashes here.

Provenance

The following attestation bundles were made for opensxraw-0.2.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish.yml on Sigilweaver/OpenSXRaw

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

File details

Details for the file opensxraw-0.2.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for opensxraw-0.2.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 75391f242d8eb721410968a597be041ecd0eaaf72ad7cf6ed75641fd8aac1063
MD5 24b40d963caeb8f59db6b50bd1954987
BLAKE2b-256 6d7e8e83aa15913f1662538e5e56d1863ae9213a47c81527e2834ea3eff212b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for opensxraw-0.2.0-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: publish.yml on Sigilweaver/OpenSXRaw

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

File details

Details for the file opensxraw-0.2.0-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for opensxraw-0.2.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 cc12c453a0e4ec7390ec4c34328fb48ef9ba8876b3648ef45bf60d9efd249081
MD5 44228ed8027c89d1f6464ad0d05f78a2
BLAKE2b-256 9087c485652f1741c7e65708b66651fa9fb7f450c877408cf88314356a3f6a43

See more details on using hashes here.

Provenance

The following attestation bundles were made for opensxraw-0.2.0-cp314-cp314-macosx_10_12_x86_64.whl:

Publisher: publish.yml on Sigilweaver/OpenSXRaw

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

File details

Details for the file opensxraw-0.2.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: opensxraw-0.2.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 190.4 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for opensxraw-0.2.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 211178a089ca8632f917f5364039edbd2e55e701ac64de46f69d20f69f3d66fb
MD5 aaeda1c1b47d3450db50deac60484d30
BLAKE2b-256 43a9762412999736bc86cb3fbf3a1977464c6d975988f2f1f7117cf1797931d3

See more details on using hashes here.

Provenance

The following attestation bundles were made for opensxraw-0.2.0-cp313-cp313-win_amd64.whl:

Publisher: publish.yml on Sigilweaver/OpenSXRaw

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

File details

Details for the file opensxraw-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for opensxraw-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4d860ecaf9b41aeb76099ded525f476af6ef237d5743d4dac2bfa51c5b8df5a6
MD5 7cd2fedc34bae17e05170e2d3fcc7d4c
BLAKE2b-256 c28cbfd34995a0cf1917a90c0a126af008115a5876b7dfb82e64ea03d53aecc3

See more details on using hashes here.

Provenance

The following attestation bundles were made for opensxraw-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on Sigilweaver/OpenSXRaw

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

File details

Details for the file opensxraw-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for opensxraw-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0618d2023a2bebee53a161223538423d28e47cdd6312541c005ed49340b85576
MD5 b4d969e6c9207798d17bc893fe6e835e
BLAKE2b-256 631731c46dbcf14372d58d3215dc6d2906c1cd0b0c40421a5bde12434173d2a3

See more details on using hashes here.

Provenance

The following attestation bundles were made for opensxraw-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish.yml on Sigilweaver/OpenSXRaw

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

File details

Details for the file opensxraw-0.2.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for opensxraw-0.2.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 34aa079f383c28d70705dbc5ec94e3c44453a2c48ecef17ef21d8e331276a656
MD5 5b5d23c3b078a18193e7e1fe9f8e75eb
BLAKE2b-256 d325fd0e4748ae55db499aa6a53b471d1ea1411827fffc18c9622b1ad3339768

See more details on using hashes here.

Provenance

The following attestation bundles were made for opensxraw-0.2.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: publish.yml on Sigilweaver/OpenSXRaw

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

File details

Details for the file opensxraw-0.2.0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for opensxraw-0.2.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 354b4233bff7e1435ee380d825aa6cc7f9a7b29e4bc2e0c40a6a513f19d43299
MD5 76d1580943809336999b213c25f9a441
BLAKE2b-256 d6de27779b75d53badd8c0f5d6fc8c9c20719d796d513430a2aa4b63f069516f

See more details on using hashes here.

Provenance

The following attestation bundles were made for opensxraw-0.2.0-cp313-cp313-macosx_10_12_x86_64.whl:

Publisher: publish.yml on Sigilweaver/OpenSXRaw

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

File details

Details for the file opensxraw-0.2.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: opensxraw-0.2.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 190.8 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for opensxraw-0.2.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e9891cb485b1d365f16ed89419bb6f23c1981380e14ab50af8fd7d30eb3b5889
MD5 cb917a11f59b4f9bf6d20ea11bd8764d
BLAKE2b-256 08058a4311b3f498782fbd2a6045c40195dc469e1dae31b40b472923f823a134

See more details on using hashes here.

Provenance

The following attestation bundles were made for opensxraw-0.2.0-cp312-cp312-win_amd64.whl:

Publisher: publish.yml on Sigilweaver/OpenSXRaw

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

File details

Details for the file opensxraw-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for opensxraw-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 64b66bc8ec56fba6549a9888b747536fd8322e2ad6c3053889ea51ddda60c44c
MD5 e30399be15a4aba89a8415a16fbf4f23
BLAKE2b-256 7aba86f149985bf3ca9a3464ad10b993df7411924605686b1bbeeff6ea77b566

See more details on using hashes here.

Provenance

The following attestation bundles were made for opensxraw-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on Sigilweaver/OpenSXRaw

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

File details

Details for the file opensxraw-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for opensxraw-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a0cc8fd3384daa96ddc865e8768533176e634eb63b4137d3c1adc5c4bae51437
MD5 48b1a8a8487259458b0308eae235834b
BLAKE2b-256 cd0686d0230cbcd55d3fc69d930b02a73be291cdbc22c2814e687b03372e56ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for opensxraw-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish.yml on Sigilweaver/OpenSXRaw

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

File details

Details for the file opensxraw-0.2.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for opensxraw-0.2.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 457a1a9bc6d4b1d5c892c042b352c9298c5c8cf8b00ef60ca12675acce25913a
MD5 178a5bd20bf82069f7ece00f28d5816b
BLAKE2b-256 b75cea24300ff3f973ce6fd245340c65cd93762f6755ba53dc3c60db770cb1cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for opensxraw-0.2.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: publish.yml on Sigilweaver/OpenSXRaw

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

File details

Details for the file opensxraw-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for opensxraw-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c0794148359a444239ef44bcff02a0b7696c7f1dbc1ea586c3cc823821df19a4
MD5 6cda40960313093496cc2433c40939c5
BLAKE2b-256 4d2cc612f90a1481c5c09d77a2adcca26a595c7e0cc4b5e4fac7b25fc690035b

See more details on using hashes here.

Provenance

The following attestation bundles were made for opensxraw-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl:

Publisher: publish.yml on Sigilweaver/OpenSXRaw

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

File details

Details for the file opensxraw-0.2.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: opensxraw-0.2.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 192.6 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for opensxraw-0.2.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 cb76b47a4075d6d686eb5f4205ee4a7136ab2d21a2b4b083ee9cc965cd63ffa8
MD5 7d9edcd34ee839544d65b5abf4f7d963
BLAKE2b-256 62fa197f92e6cecda208991e2a9e0c68db5ddf892bdeba4e72721c5fe9776b83

See more details on using hashes here.

Provenance

The following attestation bundles were made for opensxraw-0.2.0-cp311-cp311-win_amd64.whl:

Publisher: publish.yml on Sigilweaver/OpenSXRaw

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

File details

Details for the file opensxraw-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for opensxraw-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cf19e682273cc8fc2d667befc89ee8878fac6ef5928f295e7d92dd62c96e741f
MD5 74d481099460b0beaa32607eac7182d5
BLAKE2b-256 eb539f19ce241d257c4e540aa9e728cab6c527afe34a56f123a98c577fd8d075

See more details on using hashes here.

Provenance

The following attestation bundles were made for opensxraw-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on Sigilweaver/OpenSXRaw

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

File details

Details for the file opensxraw-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for opensxraw-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 76fa66a7d42c2fad8af2c4ac8bb03e9975d0c8d89c8ec3f5942f5886ff20f146
MD5 e545d2330a39124dd6e436f82e2d3979
BLAKE2b-256 5626ad5184497816b151cfd32bf09f36c9766269e09140eeaa291ddb1f7c360a

See more details on using hashes here.

Provenance

The following attestation bundles were made for opensxraw-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish.yml on Sigilweaver/OpenSXRaw

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

File details

Details for the file opensxraw-0.2.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for opensxraw-0.2.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 559f931711cd3cd3a3e72850c8f02a667de440b103da4fb69018a5ca14551a0e
MD5 b2b16d10a5e13e52b05f655910e07da1
BLAKE2b-256 7ef39fdb3832379354dd973a704bdc3a2b69501fbe6820c8ac28dbd6af886a97

See more details on using hashes here.

Provenance

The following attestation bundles were made for opensxraw-0.2.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: publish.yml on Sigilweaver/OpenSXRaw

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

File details

Details for the file opensxraw-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for opensxraw-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0fe5f47a1930dcb09669ec2d825bde1c1c70d866ec8f1934b783083dff7a8bbb
MD5 052b0c9a74b78e9243a01774211038fc
BLAKE2b-256 6505331e97cb57e0f7c4ba7244a469c14ac16720d1f6f15bdb14b36b78fc4804

See more details on using hashes here.

Provenance

The following attestation bundles were made for opensxraw-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl:

Publisher: publish.yml on Sigilweaver/OpenSXRaw

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

File details

Details for the file opensxraw-0.2.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: opensxraw-0.2.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 192.6 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for opensxraw-0.2.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 2d11a8a310455d314f8e072a052e4169f72b67be5a38bc0509e81d1aeae67c4e
MD5 e33f003ea02fae5a775e1c61259dd35f
BLAKE2b-256 d2499a04de96d2d3a82a7f4af63aa7f9582b76974c511d642b9af9efe924e6d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for opensxraw-0.2.0-cp310-cp310-win_amd64.whl:

Publisher: publish.yml on Sigilweaver/OpenSXRaw

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

File details

Details for the file opensxraw-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for opensxraw-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fff14b14c2b0d12918de8d4227d73a179496b3ca0ee5c128398cfaf9f15fabde
MD5 a139abefb849b8a16e4e55aa6fb3eed7
BLAKE2b-256 2af36a55c7f365b6a3f66b2b98e2d93a7bc8f9574ece76196cad886503d07ffc

See more details on using hashes here.

Provenance

The following attestation bundles were made for opensxraw-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on Sigilweaver/OpenSXRaw

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

File details

Details for the file opensxraw-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for opensxraw-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 af86207d74405ea7445175690b2cdcf3c93320d69fe21340bc8edcab02bd98cf
MD5 48f09ad8773eebd8d39fa369795f43d7
BLAKE2b-256 99b5c408271e18b194765dd8739068ef0e52340b2f48546e38c41a86a5bb90c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for opensxraw-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish.yml on Sigilweaver/OpenSXRaw

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

File details

Details for the file opensxraw-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for opensxraw-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 516e15bf3afde51acd09805a9aa94d8050b03cab498dea7053006ea06cd336d7
MD5 9d2b853bbf623904d0660eae0adc4a8c
BLAKE2b-256 b164bf1d3c5f394d6e781190d2d43ab50a6797c0c5596cd118b2617fd44da931

See more details on using hashes here.

Provenance

The following attestation bundles were made for opensxraw-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on Sigilweaver/OpenSXRaw

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

File details

Details for the file opensxraw-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for opensxraw-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 affc9983d899251f6a236847fda0855f70e4ba9a36966f525d6985ec20314150
MD5 315b2f6210d6d9903ff64534d6b24735
BLAKE2b-256 25cbe621c610192ad0c3fc216fc095ff2d29d66578cbb47d10edd4584bcd6ee6

See more details on using hashes here.

Provenance

The following attestation bundles were made for opensxraw-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish.yml on Sigilweaver/OpenSXRaw

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

File details

Details for the file opensxraw-0.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for opensxraw-0.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b2d8f81a3d1a868775549258ea9343c9c8bac9a5b67b44a763fa8dc1c74a94e3
MD5 34dc199368eeb79a7d5be1421d8dea99
BLAKE2b-256 070f3dc013a1d1be539df0cd94add7f90bbe40df6115047bb8f604ddc75f3abf

See more details on using hashes here.

Provenance

The following attestation bundles were made for opensxraw-0.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish.yml on Sigilweaver/OpenSXRaw

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