Skip to main content

OpenSZRaw

CI crates.io PyPI docs.rs License: Apache-2.0 Rust MSRV

Part of the OpenMassSpec stack for mass spectrometry raw-file access.

Rust and Python reader for Shimadzu LabSolutions mass spectrometry raw data (.lcd LC-MS, .qgd GCMS, .gcd GC), with no Shimadzu SDK or software dependency. Covers .qgd GC-MS (full-scan profile and MRM/targeted) and .lcd LC-MS across IT-TOF (profile) and QTOF (centroid) acquisitions.

Documentation: sigilweaver.app/openszraw/docs

Install

Prefer openmassspec-io with the shimadzu feature/extra 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 shimadzu
pip install openmassspec[shimadzu]

Standalone:

Rust:

cargo add openszraw

Python:

pip install openszraw

Quickstart

Rust:

use openszraw::reader::Reader;
use openmassspec_core::SpectrumSource;

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

Python:

import openszraw

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

Reader::open (and RawReader) auto-detects .qgd vs .lcd IT-TOF vs .lcd QTOF from the file's internal CFBF stream layout, never from the filename or extension alone.

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, MassIVE, and MetaboLights accessions). See CORPUS.md and ATTRIBUTION.md.

Download files

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

Source Distribution

openszraw-0.1.3.tar.gz (47.4 kB view details)

Uploaded Source

Built Distributions

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

openszraw-0.1.3-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (358.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

openszraw-0.1.3-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (353.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

openszraw-0.1.3-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (356.0 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ x86-64

openszraw-0.1.3-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (356.2 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ x86-64

openszraw-0.1.3-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (356.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

openszraw-0.1.3-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (348.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

openszraw-0.1.3-cp314-cp314-win_amd64.whl (215.7 kB view details)

Uploaded CPython 3.14Windows x86-64

openszraw-0.1.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (355.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

openszraw-0.1.3-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (348.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

openszraw-0.1.3-cp314-cp314-macosx_11_0_arm64.whl (314.5 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

openszraw-0.1.3-cp314-cp314-macosx_10_12_x86_64.whl (317.8 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

openszraw-0.1.3-cp313-cp313-win_amd64.whl (214.5 kB view details)

Uploaded CPython 3.13Windows x86-64

openszraw-0.1.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (354.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

openszraw-0.1.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (347.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

openszraw-0.1.3-cp313-cp313-macosx_11_0_arm64.whl (312.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

openszraw-0.1.3-cp313-cp313-macosx_10_12_x86_64.whl (316.9 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

openszraw-0.1.3-cp312-cp312-win_amd64.whl (214.7 kB view details)

Uploaded CPython 3.12Windows x86-64

openszraw-0.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (354.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

openszraw-0.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (347.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

openszraw-0.1.3-cp312-cp312-macosx_11_0_arm64.whl (312.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

openszraw-0.1.3-cp312-cp312-macosx_10_12_x86_64.whl (316.6 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

openszraw-0.1.3-cp311-cp311-win_amd64.whl (217.5 kB view details)

Uploaded CPython 3.11Windows x86-64

openszraw-0.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (358.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

openszraw-0.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (351.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

openszraw-0.1.3-cp311-cp311-macosx_11_0_arm64.whl (316.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

openszraw-0.1.3-cp311-cp311-macosx_10_12_x86_64.whl (317.9 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

openszraw-0.1.3-cp310-cp310-win_amd64.whl (217.5 kB view details)

Uploaded CPython 3.10Windows x86-64

openszraw-0.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (358.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

openszraw-0.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (351.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

openszraw-0.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (360.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

openszraw-0.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (355.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

openszraw-0.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (355.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

File details

Details for the file openszraw-0.1.3.tar.gz.

File metadata

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

File hashes

Hashes for openszraw-0.1.3.tar.gz
Algorithm Hash digest
SHA256 ce9c2a96a3f45befd0a1e30430b70a920d786dbe2030628de13dd95e2327b6e9
MD5 5c521f40d2c3bb6342a6900e69cfadb8
BLAKE2b-256 1d462998b262aa3b8fc10d79f5f482e9ce8e628d73c8c927b0fd159ec0fc357f

See more details on using hashes here.

Provenance

The following attestation bundles were made for openszraw-0.1.3.tar.gz:

Publisher: publish.yml on Sigilweaver/OpenSZRaw

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

File details

Details for the file openszraw-0.1.3-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for openszraw-0.1.3-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9750b2f6c980fd39807f9d04b23e5252ad19452e11dca02c6f38e04c763cb2e5
MD5 c3ebc2046d4e359270a6ac9f3d65e10b
BLAKE2b-256 abd3a16370a4b90c73ebb9ee78de91e49a9de732a64fb253cc509df7da25a993

See more details on using hashes here.

Provenance

The following attestation bundles were made for openszraw-0.1.3-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on Sigilweaver/OpenSZRaw

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

File details

Details for the file openszraw-0.1.3-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for openszraw-0.1.3-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8bfc13b20cdde78ba62b3bd8f8916aebd89aea7959a904d44cad0a27c897a442
MD5 54f4cd6c5abd0c02f775a4e6bdf07bd5
BLAKE2b-256 b51c9b20fb438996d6e0613b0a5f85bfd1a682547afdb46a8bd1b0df44c0685b

See more details on using hashes here.

Provenance

The following attestation bundles were made for openszraw-0.1.3-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish.yml on Sigilweaver/OpenSZRaw

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

File details

Details for the file openszraw-0.1.3-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for openszraw-0.1.3-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 aa56d34ea95fe0ef4cbee6cf9b0e207c66b8c356b10eb8002f8ecac6993f8efc
MD5 9ee2b1b8effcab637ba90f7e2e6c7c15
BLAKE2b-256 1ff9eb55b34a8e36e2ef4135cd07f326588a5389c1c90b1f360dfb78341ce401

See more details on using hashes here.

Provenance

The following attestation bundles were made for openszraw-0.1.3-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on Sigilweaver/OpenSZRaw

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

File details

Details for the file openszraw-0.1.3-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for openszraw-0.1.3-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0a09f5b46b008c2ffe32fe66bb3e0e7fd26c00fad538ec542ea9041310d5ba39
MD5 0ddbdfab356d04a53dad5997580d58ce
BLAKE2b-256 10444c9dd212fdf336e4c925f67e812ecec7d71d2ad27cdd2ca2746bc2cf3830

See more details on using hashes here.

Provenance

The following attestation bundles were made for openszraw-0.1.3-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on Sigilweaver/OpenSZRaw

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

File details

Details for the file openszraw-0.1.3-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for openszraw-0.1.3-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 435f17772591a20c59b5995cf561e372501b622be10b621181fd31ca6936b371
MD5 6638f480b321f46a5d705969cda39b7c
BLAKE2b-256 3c7e73393dccd3af6a089d1c278aca3c5b689065415e96cafbe8f05151d94f83

See more details on using hashes here.

Provenance

The following attestation bundles were made for openszraw-0.1.3-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on Sigilweaver/OpenSZRaw

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

File details

Details for the file openszraw-0.1.3-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for openszraw-0.1.3-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 74d491766a635c4b5ef212db9779f43aea291f9814fcbfce61607689636e3db5
MD5 7ec97780c97528a87fa31e1738a6f450
BLAKE2b-256 74dfedfddb7e17d2f1b0539237e690cdd4ed014d118bd182ed7844484ca8f7ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for openszraw-0.1.3-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish.yml on Sigilweaver/OpenSZRaw

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

File details

Details for the file openszraw-0.1.3-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: openszraw-0.1.3-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 215.7 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 openszraw-0.1.3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 862b38f418960ce40f0352a5c6d1767df3c1daae640d14f705d5f97618020455
MD5 6bd03597bec9cdf79133d682ec0e6c39
BLAKE2b-256 6537f98b7fd7588a2b5c4ee4414935afbf06aeb6f29a9306ec34aeff6a554669

See more details on using hashes here.

Provenance

The following attestation bundles were made for openszraw-0.1.3-cp314-cp314-win_amd64.whl:

Publisher: publish.yml on Sigilweaver/OpenSZRaw

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

File details

Details for the file openszraw-0.1.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for openszraw-0.1.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6799864deed60ab50a1de818c45fdd92ea32c48671fb2fdbe48c150492ab7fe0
MD5 2b0c368096f3bc8e03da3e67c126e9c0
BLAKE2b-256 53b262e3a7caaf9f6d7c235f20ed15b533b2b407523e2950cced261677f048e0

See more details on using hashes here.

Provenance

The following attestation bundles were made for openszraw-0.1.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on Sigilweaver/OpenSZRaw

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

File details

Details for the file openszraw-0.1.3-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for openszraw-0.1.3-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0b812d7cd67e7992d1b4f549662e17dd92f55c031aa9acff92a52260c1bf689f
MD5 74e75899f356149fcd98d7da2bd339e9
BLAKE2b-256 a7238afaaa5ec2e05b3ce7bea0839f81155d56522dd7cfa6fe6bdcd1fd084ae5

See more details on using hashes here.

Provenance

The following attestation bundles were made for openszraw-0.1.3-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish.yml on Sigilweaver/OpenSZRaw

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

File details

Details for the file openszraw-0.1.3-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for openszraw-0.1.3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c1c114d352818b693e912de444b72246f0897f73d9088ee059671893697e0326
MD5 0ffc5c329206b4c553851893748f37a4
BLAKE2b-256 f1a33f88751adb834143e6e214774e5ee6638b78da7be0cea2d6f4ceb71ff4a1

See more details on using hashes here.

Provenance

The following attestation bundles were made for openszraw-0.1.3-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: publish.yml on Sigilweaver/OpenSZRaw

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

File details

Details for the file openszraw-0.1.3-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for openszraw-0.1.3-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0d34892b9ed5a0cacf1a0efe50005d1419a15098b55ee46b75984be348352dda
MD5 44fdb58a8df3a96458619d95785913b9
BLAKE2b-256 2ff352766d3bdd98b5bfbc0f6b72a833d28ef7d160c522404dc703802dafab65

See more details on using hashes here.

Provenance

The following attestation bundles were made for openszraw-0.1.3-cp314-cp314-macosx_10_12_x86_64.whl:

Publisher: publish.yml on Sigilweaver/OpenSZRaw

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

File details

Details for the file openszraw-0.1.3-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: openszraw-0.1.3-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 214.5 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 openszraw-0.1.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 01af83cbae0bc5a7006647800fd0a8ac1b77da018cd83b43b1bff7e4a2b47051
MD5 d678eb7974e1bd0512c2bf407046d1ff
BLAKE2b-256 3278c04f356fdbff88abb4045f4aea5941e60e090dcdf107b664c99665204bb9

See more details on using hashes here.

Provenance

The following attestation bundles were made for openszraw-0.1.3-cp313-cp313-win_amd64.whl:

Publisher: publish.yml on Sigilweaver/OpenSZRaw

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

File details

Details for the file openszraw-0.1.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for openszraw-0.1.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 024b80d69f5e9df9824c3dc602f57b2d83b9b60ef85b36876eaa9b662afa76f5
MD5 11980c3ee108eb20568cbfa70de6b848
BLAKE2b-256 7880b87458cdcd403e86999a611c865b28526e2dd1c6fa0cb337963762d432ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for openszraw-0.1.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on Sigilweaver/OpenSZRaw

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

File details

Details for the file openszraw-0.1.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for openszraw-0.1.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1ae78efed287d1a934b6b261133c68bdb5e323ddb1ab366bfaf97610b4d1de8d
MD5 6e9c6d68f0205cf91dc5a224fd92b60a
BLAKE2b-256 aec64f166b0a2c6e206e1e77e22dd399f263f0953cf37ff5be849ff6d76d7993

See more details on using hashes here.

Provenance

The following attestation bundles were made for openszraw-0.1.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish.yml on Sigilweaver/OpenSZRaw

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

File details

Details for the file openszraw-0.1.3-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for openszraw-0.1.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fcaceb94cfa3122a1be6809c10323fbc0d665c93f8cf06cc2f33f76d897a1548
MD5 55ea5a0c2fddc0fac029a3e567e16067
BLAKE2b-256 684f55f1226d39a560f958dceb245850e834066f37b0b542850ce5b2f5fe02b7

See more details on using hashes here.

Provenance

The following attestation bundles were made for openszraw-0.1.3-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: publish.yml on Sigilweaver/OpenSZRaw

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

File details

Details for the file openszraw-0.1.3-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for openszraw-0.1.3-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d47e34e190bcf074ff02686bf3e26e0503d161cae25810bf53e3a82e2384c4ed
MD5 9933f498a0a63ee1ffba60fbcebdd637
BLAKE2b-256 67b4b09b8daaa1a486d4212e54aa72d97fb28f4ff59573439fa0738db24cdbdd

See more details on using hashes here.

Provenance

The following attestation bundles were made for openszraw-0.1.3-cp313-cp313-macosx_10_12_x86_64.whl:

Publisher: publish.yml on Sigilweaver/OpenSZRaw

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

File details

Details for the file openszraw-0.1.3-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: openszraw-0.1.3-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 214.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 openszraw-0.1.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 7a4dc99dc9e882dc11ab735267485217f963249d13baff7e77403b59e2627749
MD5 1dd090fe82ae7f266d78eb7ba646d1a4
BLAKE2b-256 e2bb08753f3ed905d83aa0961f0b7f4ac5fee065f0afd50f71f29a6139f7433e

See more details on using hashes here.

Provenance

The following attestation bundles were made for openszraw-0.1.3-cp312-cp312-win_amd64.whl:

Publisher: publish.yml on Sigilweaver/OpenSZRaw

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

File details

Details for the file openszraw-0.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for openszraw-0.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e1b6a2c1f2b403d1bd83554763323b838d7db6cf5ce2949f9ed5704dce325d99
MD5 f843f17bb8a844cd2629486958b193eb
BLAKE2b-256 c8d31221e77fb7473adc936849aa84191ca6347dae681229716bce37d1c3ef1e

See more details on using hashes here.

Provenance

The following attestation bundles were made for openszraw-0.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on Sigilweaver/OpenSZRaw

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

File details

Details for the file openszraw-0.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for openszraw-0.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 aaea327f5d6cd0e33a2aff4b3fe9afa7692e565e07cc3a70391ccc0ef6d05918
MD5 d5eb59ea641269e6769d0bb1a22e6ca2
BLAKE2b-256 3555badccfec5ae9760efc90f83d25049c21d9de89a0c326389ff3407287409b

See more details on using hashes here.

Provenance

The following attestation bundles were made for openszraw-0.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish.yml on Sigilweaver/OpenSZRaw

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

File details

Details for the file openszraw-0.1.3-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for openszraw-0.1.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 19570f05799b12a5bae063ffb5c80924f0643a439f6a5490a9f82cdccc534495
MD5 ab26eebe1fc14e506cf636f85d97c34e
BLAKE2b-256 acac6535ec61172d27ef6a29ad7369c19577899348d25c732e7785d838dc0283

See more details on using hashes here.

Provenance

The following attestation bundles were made for openszraw-0.1.3-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: publish.yml on Sigilweaver/OpenSZRaw

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

File details

Details for the file openszraw-0.1.3-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for openszraw-0.1.3-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 adfe9ce2a007b9eaf8c600e31de8cfdd0e9a915eb1440e2ac2710c1d2b438873
MD5 01af7453616f17aa3059133154eaf085
BLAKE2b-256 eb5d2e52c35bde943ee472dc088dd530adf220b4d42bf0f036f550e027815c5d

See more details on using hashes here.

Provenance

The following attestation bundles were made for openszraw-0.1.3-cp312-cp312-macosx_10_12_x86_64.whl:

Publisher: publish.yml on Sigilweaver/OpenSZRaw

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

File details

Details for the file openszraw-0.1.3-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: openszraw-0.1.3-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 217.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 openszraw-0.1.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 687df0bedeb50d723b85b5872c387ed97e936557193279318b66e1d322aa5bda
MD5 1f5a8994ecb0eae7f220a44cbca71a06
BLAKE2b-256 ca4cb8caac0fa940910161b2a39aad07e8ef59f6aa0a08510f8cf96b77a46870

See more details on using hashes here.

Provenance

The following attestation bundles were made for openszraw-0.1.3-cp311-cp311-win_amd64.whl:

Publisher: publish.yml on Sigilweaver/OpenSZRaw

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

File details

Details for the file openszraw-0.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for openszraw-0.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0e42b11059d5f31f3be885b995e300a9857df3053dbd91e751479243ada0b684
MD5 67af96dc0ed29cab227b55890eb1bfc3
BLAKE2b-256 bf95ffbe7a9f1406ab6364be1e555a269c15588ce611def324d72ae4e1dbe1ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for openszraw-0.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on Sigilweaver/OpenSZRaw

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

File details

Details for the file openszraw-0.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for openszraw-0.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 df38d7a54af17fe6d8d27bd05aefeda77a35a8aedd28041878d75cf6eafbfee0
MD5 72a8d9ca8114a064131a98b87c62870a
BLAKE2b-256 78ec78dee65befa7fab432cb609b633ea8763a9c9eae1719798057802bf5457d

See more details on using hashes here.

Provenance

The following attestation bundles were made for openszraw-0.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish.yml on Sigilweaver/OpenSZRaw

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

File details

Details for the file openszraw-0.1.3-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for openszraw-0.1.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5497e03c4c12e94cf4df80b26eb843120e99704c779735ae52618f01d8b9536a
MD5 716aa8b4f1728439d24406c29f5ea929
BLAKE2b-256 43de2b92884ab2e904eecd833a175455b89b1a7f1e908fc36d5d44ec0089e494

See more details on using hashes here.

Provenance

The following attestation bundles were made for openszraw-0.1.3-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: publish.yml on Sigilweaver/OpenSZRaw

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

File details

Details for the file openszraw-0.1.3-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for openszraw-0.1.3-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 daac3c6e51773a163afefa8cdec23509730169504647386ea8c5d7a01349724c
MD5 a48b6dc7ef3ffa8c05c2a938773efb34
BLAKE2b-256 aa5959fd1396dc4c3dff892e0cd55f7dd0abf494ab4d825434b85461077a35f3

See more details on using hashes here.

Provenance

The following attestation bundles were made for openszraw-0.1.3-cp311-cp311-macosx_10_12_x86_64.whl:

Publisher: publish.yml on Sigilweaver/OpenSZRaw

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

File details

Details for the file openszraw-0.1.3-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: openszraw-0.1.3-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 217.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 openszraw-0.1.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 13e5c8efcea6423bea097d4ec7f10592233e53ecdeadf6a665365e7a27f14c31
MD5 a3e7b062d9055da7f7aac648dc5ee4f6
BLAKE2b-256 ac66c2732c7c70946ab00b44a0b7194134d179a018b3a3292f0fac642064f684

See more details on using hashes here.

Provenance

The following attestation bundles were made for openszraw-0.1.3-cp310-cp310-win_amd64.whl:

Publisher: publish.yml on Sigilweaver/OpenSZRaw

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

File details

Details for the file openszraw-0.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for openszraw-0.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 553e64e5156b1aaf2d2d6b78538f4a346f057b4891317336f5bdaa77d411a234
MD5 eec08ecd9ccad5248296d7a6244ec315
BLAKE2b-256 fdff812edff33c22dbe3befb90804349dc3c2b5b60163c80889f1806e4ce03da

See more details on using hashes here.

Provenance

The following attestation bundles were made for openszraw-0.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on Sigilweaver/OpenSZRaw

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

File details

Details for the file openszraw-0.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for openszraw-0.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 90592ec0ac1c3d879a8a23cf8e0025e3ad7ce711c7d63d06c74a6a79cbec4ba9
MD5 dca8906d5302be52dc19c146b4abfb8d
BLAKE2b-256 89e0b6b42b24ad0a35389d66d02ddbca6cb5e024f3e302537bcd0af6d0bea829

See more details on using hashes here.

Provenance

The following attestation bundles were made for openszraw-0.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish.yml on Sigilweaver/OpenSZRaw

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

File details

Details for the file openszraw-0.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for openszraw-0.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6ad357ff78c00325a348126997d4610af718df9e3ccea4bccceb45b6d61f6066
MD5 42ec78183f9992d8c6bd4fcd6ed5646f
BLAKE2b-256 5031db19881f0bf006724bd1583d194551b4cc9b2b77b089a2ae5de162421c3e

See more details on using hashes here.

Provenance

The following attestation bundles were made for openszraw-0.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on Sigilweaver/OpenSZRaw

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

File details

Details for the file openszraw-0.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for openszraw-0.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0f2474d1a9e50dee04a4d4391f1d54c7a740c5364e1d5fb92a9315d5b2a5661c
MD5 571dde4e8c17733b9e7d22494a6d8997
BLAKE2b-256 83b3f0d61a5f1bb2e262bf65c422baf6dba4e31e74a63287ad5e770d02d7727c

See more details on using hashes here.

Provenance

The following attestation bundles were made for openszraw-0.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish.yml on Sigilweaver/OpenSZRaw

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

File details

Details for the file openszraw-0.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for openszraw-0.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1b9eaaf28c998cac8b70b8f005c322e6ce78d8a2228468edeacd5166d1ffa120
MD5 17c5cde2f52acc3ae87462cbb12e5aa4
BLAKE2b-256 e3ddc3a66fb4d4a21a90e5d967bd202f9cbc3aafd1ca1dc15f8636e5d880696c

See more details on using hashes here.

Provenance

The following attestation bundles were made for openszraw-0.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish.yml on Sigilweaver/OpenSZRaw

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

Release history Release notifications | RSS feed

0.1.4

33 files

This release

0.1.3 This release

33 files

0.1.2

33 files

0.1.1

33 files

0.1.0

33 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page