Skip to main content

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

Project description

OpenSXRaw

CI crates.io PyPI docs.rs 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, with no SCIEX SDK or software dependency. Covers the TripleTOF and QTRAP instrument families.

Documentation: sigilweaver.app/opensxraw/docs

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.

See the docs site for the full guide, format specification, and API reference.

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.2.tar.gz (31.5 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.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (331.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

opensxraw-0.2.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (327.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

opensxraw-0.2.2-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (328.3 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ x86-64

opensxraw-0.2.2-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (328.9 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ x86-64

opensxraw-0.2.2-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (328.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

opensxraw-0.2.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (323.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

opensxraw-0.2.2-cp314-cp314-win_amd64.whl (193.5 kB view details)

Uploaded CPython 3.14Windows x86-64

opensxraw-0.2.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (328.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

opensxraw-0.2.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (323.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

opensxraw-0.2.2-cp314-cp314-macosx_11_0_arm64.whl (291.3 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

opensxraw-0.2.2-cp314-cp314-macosx_10_12_x86_64.whl (294.0 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

opensxraw-0.2.2-cp313-cp313-win_amd64.whl (192.7 kB view details)

Uploaded CPython 3.13Windows x86-64

opensxraw-0.2.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (327.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

opensxraw-0.2.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (322.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

opensxraw-0.2.2-cp313-cp313-macosx_11_0_arm64.whl (289.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

opensxraw-0.2.2-cp313-cp313-macosx_10_12_x86_64.whl (292.8 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

opensxraw-0.2.2-cp312-cp312-win_amd64.whl (192.7 kB view details)

Uploaded CPython 3.12Windows x86-64

opensxraw-0.2.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (327.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

opensxraw-0.2.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (322.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

opensxraw-0.2.2-cp312-cp312-macosx_11_0_arm64.whl (289.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

opensxraw-0.2.2-cp312-cp312-macosx_10_12_x86_64.whl (292.6 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

opensxraw-0.2.2-cp311-cp311-win_amd64.whl (195.5 kB view details)

Uploaded CPython 3.11Windows x86-64

opensxraw-0.2.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (331.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

opensxraw-0.2.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (326.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

opensxraw-0.2.2-cp311-cp311-macosx_11_0_arm64.whl (294.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

opensxraw-0.2.2-cp311-cp311-macosx_10_12_x86_64.whl (294.2 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

opensxraw-0.2.2-cp310-cp310-win_amd64.whl (195.5 kB view details)

Uploaded CPython 3.10Windows x86-64

opensxraw-0.2.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (331.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

opensxraw-0.2.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (326.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

opensxraw-0.2.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (334.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

opensxraw-0.2.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (329.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

opensxraw-0.2.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (329.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

File details

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

File metadata

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

File hashes

Hashes for opensxraw-0.2.2.tar.gz
Algorithm Hash digest
SHA256 761c0da6756c1b6fcf0e949a7694d89ce065bd755a27428ab2e968a545d93310
MD5 16a03fdcad755382d8a68c62b964b1c8
BLAKE2b-256 d80b203ab9213374f6385cbca00e80c2aafd93da06f5a1caf09fb8db8b41be16

See more details on using hashes here.

Provenance

The following attestation bundles were made for opensxraw-0.2.2.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.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for opensxraw-0.2.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0aede3e403608f514ebe29939e0d09d94794ad8ac37dcd33b42c1f82afd5935a
MD5 5767a2e604764307c8ee70ec32d2da20
BLAKE2b-256 5ce99034fe680b400b793c3425dbbaa5c7f826dacf7b6042aa6fa4d42d9d8337

See more details on using hashes here.

Provenance

The following attestation bundles were made for opensxraw-0.2.2-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.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for opensxraw-0.2.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c5a805a3c08af76393f2b43c656c178300c9b11a7f10991e8952c0ebbda1a9bb
MD5 aab962f0cdca792ca0161407a2f2160f
BLAKE2b-256 97a481a69b72f89bcb11802d625941d50ec4c429063bbf5801fbfc0cf0549ea0

See more details on using hashes here.

Provenance

The following attestation bundles were made for opensxraw-0.2.2-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.2-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for opensxraw-0.2.2-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ceecaa6a95339f9688f4f9637cc36c5704049c12cf2537b3caca566c4b386ccc
MD5 518d1b66c8c0a80c3eae1fe0edc6b3b1
BLAKE2b-256 dbf3eed4c904d0b390520886e93a24500626ce086dc9fd153dd207e674ddba0d

See more details on using hashes here.

Provenance

The following attestation bundles were made for opensxraw-0.2.2-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.2-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for opensxraw-0.2.2-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 140f82f0e742908ffee375e0a1f342c71f0625d5e2d07a993ea89d353a1ff445
MD5 7a3d9da661f1c9d8b7c1ed3705eca5b6
BLAKE2b-256 5350961ecf5cba4063160e0b489355a00608e9d5a2cffecc2fcf10dc47a0bfb1

See more details on using hashes here.

Provenance

The following attestation bundles were made for opensxraw-0.2.2-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.2-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for opensxraw-0.2.2-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9af7fb104c1595c2fba50c2c90bea6cb2ea7305e021c537ff0409031ff9ca19f
MD5 f86c2316a160a57219ccfd8c087e3a24
BLAKE2b-256 b6c2c186f62ddd170b9e2c6bad33200c4fa7df6481a7c755173789376a4e8030

See more details on using hashes here.

Provenance

The following attestation bundles were made for opensxraw-0.2.2-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.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for opensxraw-0.2.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3645f1f11091e00e74335d39a76f97cc4b4f21e759c121e48a8df9994cd472bc
MD5 8b72ed00295e534ec7ea52b087d5d0e8
BLAKE2b-256 ac84d28057aa65adb215568b2601715ea44a6648bce4cb1324fb05b1f606a0fa

See more details on using hashes here.

Provenance

The following attestation bundles were made for opensxraw-0.2.2-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.2-cp314-cp314-win_amd64.whl.

File metadata

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

File hashes

Hashes for opensxraw-0.2.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 c64c17d408e2b2797a17e6658132f0f9b5358053318a0e5a6a06ca03a6300394
MD5 79804593b720f7fe23173690f52df9f7
BLAKE2b-256 cac9b753e3619fa93df87069ec95ef3a657f85780e11aa8d125e11fe324ad911

See more details on using hashes here.

Provenance

The following attestation bundles were made for opensxraw-0.2.2-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.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for opensxraw-0.2.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ec2e1a3faa455dd8f0fe91e5aca86b63b2ad662ca1d2729b03a722947440ad5a
MD5 bb363b0d48ccccdc20d31aab954a5e6c
BLAKE2b-256 e5c62d4a064eba81b9396c1c926b3e5e00e98b5aa3f42694f0bb8b1925992b90

See more details on using hashes here.

Provenance

The following attestation bundles were made for opensxraw-0.2.2-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.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for opensxraw-0.2.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ac545f4a8e98cf00820ec201c3d22ba1e4fd96533447e59e7a4411798d5e5704
MD5 46c5e4fdffb49d137ec3eadcd6b4716a
BLAKE2b-256 59603a1ebb0ffd4ae6493dac3755c67c7c323271a8df6913e10b02f9a71b0dd5

See more details on using hashes here.

Provenance

The following attestation bundles were made for opensxraw-0.2.2-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.2-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for opensxraw-0.2.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8291fe0858d99e9f58a7476177649dd6686962e100a4fd5b9ef950fd4d9b4126
MD5 261db855abeca46e50bdaeb1d571984e
BLAKE2b-256 02c194931e9eefdc3f06e39d4c9773add333b54933eb30226faac088a8e5e7cd

See more details on using hashes here.

Provenance

The following attestation bundles were made for opensxraw-0.2.2-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.2-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for opensxraw-0.2.2-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7987a7c25322736dd40e6020f7e283b64bd911ae0d91bc108238e417fefa2e25
MD5 66db8c6ac7b1767ddf263f4f02484121
BLAKE2b-256 13b73acd215ab9712fbb55d95a4b85cc48a0d20c8435cff9a6ca987502276f8a

See more details on using hashes here.

Provenance

The following attestation bundles were made for opensxraw-0.2.2-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.2-cp313-cp313-win_amd64.whl.

File metadata

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

File hashes

Hashes for opensxraw-0.2.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 bc4ad5de0ee8c2a76535c80e77f051aaed9e68ddea176fa1e9837fe7f54cce40
MD5 7b00fea81be5c73da014714d5c69ca06
BLAKE2b-256 a88f7f2f14f7a33ebdcf4b801d720da217eef9c263bddbadb14799ab8e0bbfd2

See more details on using hashes here.

Provenance

The following attestation bundles were made for opensxraw-0.2.2-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.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for opensxraw-0.2.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 85eceae2f47f7fb577a9b81429bca4cb3f716d637654dc67318aa450f39011d6
MD5 2442b7d221627aeace7e639919993218
BLAKE2b-256 e4043748d7c54fe9821c7ee18b6499ba1a82de064bed0092b9af062aac314742

See more details on using hashes here.

Provenance

The following attestation bundles were made for opensxraw-0.2.2-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.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for opensxraw-0.2.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 42f7fec21ade68a10eb0fcc7f914a9dbb55f10d647e0ddc1538ee656c6632d2c
MD5 1f4a5cb9a51a007d41dfa613431c08d3
BLAKE2b-256 97b11b62be9926556842c4f43aa98295fe02b32b339ea2c859e4660da8702499

See more details on using hashes here.

Provenance

The following attestation bundles were made for opensxraw-0.2.2-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.2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for opensxraw-0.2.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1dec4aa7a82e45dce13c1b4ecff16019393e647941eade8600d7b19915ea7ad5
MD5 5909c85b7c299137f481a5889e64e56d
BLAKE2b-256 e1f3d7ef0a0e1964e294a1382f156003a53cb48fc700e70fe43e5f77efc7a3f5

See more details on using hashes here.

Provenance

The following attestation bundles were made for opensxraw-0.2.2-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.2-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for opensxraw-0.2.2-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 170870ccb8d40dbcafcb98ba377345a3d5855c0be69e4efccaf21cba821de582
MD5 1c53f112569acef0d43d23057087b635
BLAKE2b-256 a21284085b4fa7cd83bdf05f2de776f31319e86393701e1561f83f0f7ba0b72e

See more details on using hashes here.

Provenance

The following attestation bundles were made for opensxraw-0.2.2-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.2-cp312-cp312-win_amd64.whl.

File metadata

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

File hashes

Hashes for opensxraw-0.2.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 923d595e77d2c534defd6b73e512ae5255c431309abdbc455c061a429c97d049
MD5 e3c318e2d238b092f5c63270eeecdbba
BLAKE2b-256 ae8063b99ac62960423cc0d0c5450db0db8c394d19a1738381b6b1f48694b799

See more details on using hashes here.

Provenance

The following attestation bundles were made for opensxraw-0.2.2-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.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for opensxraw-0.2.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 002cdeec2bda47a342af43725b8a036cdc133fb1cf311dee4bd7fe80e269a83a
MD5 5c0f5d1aed2c6627f3d147f4efacd76c
BLAKE2b-256 1fd9c85a06250bb6dd749c2ab1d65f2c0810837cf230b434a838cd02aae050aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for opensxraw-0.2.2-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.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for opensxraw-0.2.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 738a3946a9e523512f42c75949697b9a87597d26cfbfa86c26c776e6963c28e9
MD5 c080566cb4dbdd64a3e51200379250f2
BLAKE2b-256 56ae5c506cdd4d7d0d76649a2bc3e50547ab4b82a5a6de8c3125482138697e47

See more details on using hashes here.

Provenance

The following attestation bundles were made for opensxraw-0.2.2-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.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for opensxraw-0.2.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8cbc4e8dee0b6b64646318f9324eb775507de96c0a466f01175dad19fef79ae3
MD5 0d0f369790ee7806adf27251aee20cc2
BLAKE2b-256 34554a954be120707fc12f17bb88dbcc8438e21cdfc389b1922d2b1d12e1f257

See more details on using hashes here.

Provenance

The following attestation bundles were made for opensxraw-0.2.2-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.2-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for opensxraw-0.2.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 cf43f5bd5c7e95e653e67f4859f4290cc4f5fa91e11462e08820f08c843adf34
MD5 d7d8d5ad16a563194713d195139343a3
BLAKE2b-256 70972d1218c50d0becdb726bc1fdb06763c04a8a61df22f6ae75b93e1ca224f2

See more details on using hashes here.

Provenance

The following attestation bundles were made for opensxraw-0.2.2-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.2-cp311-cp311-win_amd64.whl.

File metadata

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

File hashes

Hashes for opensxraw-0.2.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 6857fdcd1b042a2423cc30b770c5d780e5178706c2c3b3033ef0b2bedd2818c1
MD5 73e83616cf86620760c3e1f113ef5982
BLAKE2b-256 4bc5db8a9585dbef491ac01b098a2525ebb880e93fb7bf224155e1adb4617beb

See more details on using hashes here.

Provenance

The following attestation bundles were made for opensxraw-0.2.2-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.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for opensxraw-0.2.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a0291bf0023336cc68e832f7441a928b77771f2307432e47a762d44b7cd43e6e
MD5 7c2b0cd9afde093e2f3c3c9a7f862fca
BLAKE2b-256 fd98b5d59b4ed16287ce585a75ed8e4713e9ac95bfdfb46ab088906efcb966eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for opensxraw-0.2.2-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.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for opensxraw-0.2.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0f0ef04217b13820973e0d137479551dd8d7d869aa4dfaa39dac6518b10d0328
MD5 c49d202787d775b997fa8af13e2fdde4
BLAKE2b-256 45c40c00dd20eed5b1b4c1e71a64e811d87dd709a3beb532df93934ff5149f86

See more details on using hashes here.

Provenance

The following attestation bundles were made for opensxraw-0.2.2-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.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for opensxraw-0.2.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e401fd7efc5228784400cd87bfe93b0688e00920ad3fe00646f06957ee20f60d
MD5 558d636f1143d33bab41477629fbeb01
BLAKE2b-256 3e886822c3cb198f422aca3da66470bcaab19d4d853f817bd9cd9375c3a382ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for opensxraw-0.2.2-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.2-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for opensxraw-0.2.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 73368d14c0b34cdd1a8bf443994d0acbdbd654f0aed324fe8dd67fd6c8dd1d4a
MD5 e58e8a1de18ba85c66671dd0d60ca49c
BLAKE2b-256 066847294be2de2aec9843d9687473b226ba3148120aa963cefea08b6aed49b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for opensxraw-0.2.2-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.2-cp310-cp310-win_amd64.whl.

File metadata

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

File hashes

Hashes for opensxraw-0.2.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 720522b4c8cf495605a468dd4e0d5a7e4b8cbef2ef27e91a28ccf478955d81e2
MD5 bf412fa3a076e354f023ae05ec1e064e
BLAKE2b-256 f5a2c7669c5d580cc6e5529b88746aba52c04cf726582ca3c700e1f502c343c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for opensxraw-0.2.2-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.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for opensxraw-0.2.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ac6f5ee10e717b241a1d8bf6c5851495912e0e0a022064a24cdc19f7a6126a4d
MD5 80e31245e44877516af9d496ab1e0b2f
BLAKE2b-256 c05146e854c765d536cfe9034018061f5e0fe887cf9fc5ab51030596ead13b72

See more details on using hashes here.

Provenance

The following attestation bundles were made for opensxraw-0.2.2-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.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for opensxraw-0.2.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 507d38977163391637c9536368d6ae859eac84669108cc6fd67b010cc4041707
MD5 c367ab13d87c5664be9acf66da464afc
BLAKE2b-256 0ce51d113316ade6e44def94463449b6590dd9044a0754d6ede3c1d5683638cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for opensxraw-0.2.2-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.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for opensxraw-0.2.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 75cb6ca17ea10008d8e7130a7299a1cb9a1a8af32c6157310667a110b1e90f74
MD5 b2f1148e642d5a9a75bfe9d8f9db601d
BLAKE2b-256 9ca059a4ca3d07bb187b44909c5ac77d97e84a3aadd91744a5fa40381998e042

See more details on using hashes here.

Provenance

The following attestation bundles were made for opensxraw-0.2.2-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.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for opensxraw-0.2.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 782320f11a27728d9eb5431c7b3ac16b67fd28be4b5cc149b301e608137fc819
MD5 8c7d81869364b423773bf6a93de2960d
BLAKE2b-256 b741e6106ade9e389fcc32e8ecefe486fe334434e96853a74707e80d1e756213

See more details on using hashes here.

Provenance

The following attestation bundles were made for opensxraw-0.2.2-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.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for opensxraw-0.2.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 81da17460f83d2d87ef4b7a025a519c5980dbd62ceeaaf16fa3508258b778079
MD5 12320900fc77819f68d5e966d4075db7
BLAKE2b-256 ac0bb176ee3021f090a21cbbad22633af420a522d4499498e6e9ee4c83251c16

See more details on using hashes here.

Provenance

The following attestation bundles were made for opensxraw-0.2.2-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