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

Uploaded PyPymanylinux: glibc 2.17+ x86-64

openszraw-0.1.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (351.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

openszraw-0.1.2-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (355.1 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ x86-64

openszraw-0.1.2-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (354.1 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ x86-64

openszraw-0.1.2-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (355.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

openszraw-0.1.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (345.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

openszraw-0.1.2-cp314-cp314-win_amd64.whl (214.5 kB view details)

Uploaded CPython 3.14Windows x86-64

openszraw-0.1.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (353.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

openszraw-0.1.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (345.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

openszraw-0.1.2-cp314-cp314-macosx_11_0_arm64.whl (312.7 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

openszraw-0.1.2-cp314-cp314-macosx_10_12_x86_64.whl (316.7 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

openszraw-0.1.2-cp313-cp313-win_amd64.whl (213.4 kB view details)

Uploaded CPython 3.13Windows x86-64

openszraw-0.1.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (352.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

openszraw-0.1.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (344.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

openszraw-0.1.2-cp313-cp313-macosx_11_0_arm64.whl (311.3 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

openszraw-0.1.2-cp313-cp313-macosx_10_12_x86_64.whl (315.9 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

openszraw-0.1.2-cp312-cp312-win_amd64.whl (213.5 kB view details)

Uploaded CPython 3.12Windows x86-64

openszraw-0.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (352.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

openszraw-0.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (344.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

openszraw-0.1.2-cp312-cp312-macosx_11_0_arm64.whl (311.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

openszraw-0.1.2-cp312-cp312-macosx_10_12_x86_64.whl (315.5 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

openszraw-0.1.2-cp311-cp311-win_amd64.whl (216.3 kB view details)

Uploaded CPython 3.11Windows x86-64

openszraw-0.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (355.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

openszraw-0.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (348.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

openszraw-0.1.2-cp311-cp311-macosx_11_0_arm64.whl (315.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

openszraw-0.1.2-cp311-cp311-macosx_10_12_x86_64.whl (316.1 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

openszraw-0.1.2-cp310-cp310-win_amd64.whl (216.4 kB view details)

Uploaded CPython 3.10Windows x86-64

openszraw-0.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (356.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

openszraw-0.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (348.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

openszraw-0.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (358.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

openszraw-0.1.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (352.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

openszraw-0.1.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (352.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

File details

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

File metadata

  • Download URL: openszraw-0.1.2.tar.gz
  • Upload date:
  • Size: 46.2 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.2.tar.gz
Algorithm Hash digest
SHA256 34fd5ce49dea7335184a9f28e953869debb544b0101021fef251601b951c0271
MD5 7655da6c8e1f6fff8f9867582835134e
BLAKE2b-256 6eeeb5911af04ad1c3a2b89cfe6dd11891a746d16764654c6e246b2497b05850

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openszraw-0.1.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f02f436316f37c857a32672aabe488186a2286647b873af6e0914e6748d6ba75
MD5 7d5a530977dc431999f362fe0994444f
BLAKE2b-256 4bf6403efdae4ddd2a15145ff5e8cd53b0f82ef15ed78e052ff728c894aba83c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openszraw-0.1.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8213edbfffd6807c5a889a696a36ea02b76b5c3f9bd109147abd61f3be1c6dcc
MD5 27d84effed28b942a222d94b51b68cc7
BLAKE2b-256 9fcc545267d34fd3367940e773b9d14971a20d46a38a1b96c6cc1655357172da

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openszraw-0.1.2-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a6dba18dad9ea8f05f1ec0dab924d71fdae1c656f7872a012b5707ca7d05b256
MD5 2689d42eec7f21cb4f2797c4e2b8fb1f
BLAKE2b-256 3cf0fc199300b9d569354d392fcc2048c6f899cc391c28bb228d0b9f4f8d5b87

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openszraw-0.1.2-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6f8ca4146e86562b4cd2c91b4313884f96a1e83a168592fcd3ad53faab0dc199
MD5 07434b30f03103b13f4ef38852e22c40
BLAKE2b-256 8c7c878c94989b5fe326e15f0b843cc4eac771e1cbaba71f167db9533d2bc0d1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openszraw-0.1.2-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9f3b09cc87c06a5eaa836ffbc14c05e922b93b99dd037a1f1d15974d08e1319b
MD5 1c116be5566bdb0cb70707e5360a9b7d
BLAKE2b-256 e8876cf6a23da4922354b008c2ac7374003717a2293b619ea7534b52667887e1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openszraw-0.1.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fd0722b9093b75797808db90d18e5d804e583dd4f5f45559dc43a8e00090c72a
MD5 a17c28d749b760afd5e459aa62b6a4dd
BLAKE2b-256 50a4c93b0de32b68fcff7516a38b7822b604a142acedd6364e2784c217ef4d62

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: openszraw-0.1.2-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 214.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 openszraw-0.1.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 249ff69a1d93afe69ebe2323efbeebe03d08e5d59669d3f171e33f8effb2f4b5
MD5 68bac3cfb7e6032e53a948faed84a4c3
BLAKE2b-256 05eac644aa08cf6c123473e74dd633cf0e77d6018f00bbed6a5962e91cb51574

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openszraw-0.1.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b557dec078845aee303f5e43c1c661000287a5bb43866e32bf616efeb2f92287
MD5 72e0e59b6d1a28702a17b4bb820d9523
BLAKE2b-256 1d703ba962b69d055c7763550cda5e5a1d9fd774cf345253ce21300973d932c2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openszraw-0.1.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9d3bdfc48881cadd5852e731e2eb887e8366145915257e7dbb5744447595b761
MD5 373d4bfdb39b0b58100f6cee539e0b89
BLAKE2b-256 1915ddabab55a7d27fe6018c335edb4dc07e893eea62f95da89f18d03d9c639e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openszraw-0.1.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3f2479304abe9aea9bc49a8abd997e0e68bc7aa0e00d204ef26bcb171b27964b
MD5 341afb0f9465f8d70ad8073a94f34658
BLAKE2b-256 62702242c07f3526db584aa74581ddd1fd1f33e986f13d5788e689fb219fde20

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openszraw-0.1.2-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8ba63d29e25c7d19b8e9b0e97d284ac305caf1dc52a53e75fae41ac8fa1356db
MD5 0bac336e9a4010bd11639574098ac4c0
BLAKE2b-256 6ecaf32c2c1e5a78748183b377e9cf3786f43f19af484752a979e6b4a1815c02

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: openszraw-0.1.2-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 213.4 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.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 bb96d35064fe46c5aab1c2fe5c7ade1ec05ba71af0e013751385c87cf499a2c2
MD5 9c26187c224e9870afc255c5176163c2
BLAKE2b-256 84175f91d3de213638e41964f341b31c40a354fdbaaf039fc5b9792cd7271711

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openszraw-0.1.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2f1fe7774cc5d3caf42fed60bfe910dbc7aacd8adf0d03351d7e44a6c71bb024
MD5 487e7a22de46846197e143b1067f37d4
BLAKE2b-256 b81cb269241591b49836d461b61a7fdca674c89f4c0eb2709882db9bda472777

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openszraw-0.1.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 58b261283d3990c51a461aab38d785f9ead703d08d116d3650490c9f589bfff1
MD5 820afabdbb199f65b7c7dad94aece491
BLAKE2b-256 914d26777b3a2c0a95d6884b9e416eae72ff9c44a02fd13c69e6a8007bbe0e6e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openszraw-0.1.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 949107c5a22ca292db883848ef821c17a6730504adffb7ab9628e860504b22c0
MD5 a090be149593c853afbe9e11c8113c36
BLAKE2b-256 5a349bf80de1f7b5ca6958a34c62bb1312bd36c2e9ae2ace9db00027f0cf8ad9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openszraw-0.1.2-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 faa7d674f9b66ddb34b7289f689d1d303a8f229e331f6e93d7322b81b838243e
MD5 0e4bddee406eb6c5665520c327dab1d1
BLAKE2b-256 7c93ba8a39763824721733cf1eb204f4d216c2973496ce842d0f7007a09da3be

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: openszraw-0.1.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 213.5 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.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 3b175b61adf5f8221562d4f7d4b1316e74dfdee88d31f04c8fde545aba45f11d
MD5 f8a94e73063c3df77bb48bcc864ca767
BLAKE2b-256 8430f685af5c77601f7e7dd7dd7b2bdef4ffb5e4bf19bb8b3397562fad94d78c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openszraw-0.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7767999312b4b437846bdf50b8aa0eeaa47ca4dec63f5207cf364271963a269f
MD5 84d4da48df58d0e481a368c089469d43
BLAKE2b-256 bffdbb49062786820dd7a0762077f50f7014afb59bde6cd1cd9d448c8dbd3a7f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openszraw-0.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f535da5490da2b38a2039ddf60e53d08c1c45c332c24e6e897359841a83777a2
MD5 bd52ddacd2cbacca5b2ae0bb4868cafb
BLAKE2b-256 fca623ed963e9e3b8247f05783dd6c49ae7bccbe5325a585a2b248157ea51b17

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openszraw-0.1.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 35e6366c36000f3ec990550b29b8cbb70d9171db3b905f2ed99c87cf1579dd99
MD5 6645fef415c183018de35584677ba37d
BLAKE2b-256 909c0470c1f1fc3eb1b597c3b73fd9ca266e03fdfd9a1fed63481769dbe3e78b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openszraw-0.1.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 eedf833f44a8205695ea9d1ae50d1685a4db18f494ca7d2ba5565568c918be05
MD5 adbc682cedb5aa04856e256016729ec1
BLAKE2b-256 3aab9619813418aa4577dccc2f37d5de92a43fa6b8cb559092de1e4471bd513b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: openszraw-0.1.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 216.3 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.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ef66b50656c9b18c05fb51512595d18b86eeb9c5af9f51fdf5bb4f66301e88d8
MD5 97039ddc7e592b67c20e7750c40fc1a1
BLAKE2b-256 1b5eb92d811ee8081d70b7351649d83d13c08fe3c506a21c4e4efee7ad19d48c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openszraw-0.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 75695e1b6c3cb3798c8bd0389b4aa61e023a11b23576dd33d34f5d071520a0e0
MD5 98f8df02ccbbe22c079f03285d886e84
BLAKE2b-256 ebb135d45c897ff8ebce44faa4448e5791b033b352adad5c0bdc8a09a7b640e3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openszraw-0.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1bc97e959e03c90fb95e3e65040791f5f39b2bf2a0aacd0d2d6b6d3df49f0a71
MD5 3e22b1c76f02ffbf0a34059563ab9cdd
BLAKE2b-256 481e0d42814881004a68ebe8e39a0b0599f3e74aa53e2dc973253c121910bb2e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openszraw-0.1.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 85fc501c940ef26907afde21fa11426c09d8dcf3349b8258f744ed32b9be3d12
MD5 7e8cf980afc9837d00606f56b80a0a64
BLAKE2b-256 2d7dc00b2b216053c06d5d785866a46fe69361714680e2940e3bab8924e15d71

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openszraw-0.1.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1195c51318caa64ebb408b5ce96f7bd8a42ad4ab130c3a3043cbb168ae735da1
MD5 ed3a74ea5b0b74336394a300aecb1124
BLAKE2b-256 844b30c366fb6ba96c9b49c4f485c8c748a3036698267487ca4929a80a3f1eb1

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: openszraw-0.1.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 216.4 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.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 85f9958ca95df81c0054380bf03eee68ac60e5c292b421ac4df95c65df08ae18
MD5 864a35fe68a2a449108697ffa4f3eed3
BLAKE2b-256 f540746bc5adc4fd824b0602f3df07bede3f3e1b49273563bfb49e96513dbaf2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openszraw-0.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3fa6b36e1f8f324a3301aec4007b8084ce66f6262c97baefd7c4aa7162e8d5b4
MD5 df419ac068cff6a9dc039646e088f85e
BLAKE2b-256 eed4931e54a8bc53247600b942505062ae4ab758915e2c05d1ac7188bf397e6d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openszraw-0.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 08ddb9c0734eaaa18dad5ec40778bc9041cc21e6ac0c0f5ce5c248c2a99c3279
MD5 29518994bba1067416999be0ecf12eb1
BLAKE2b-256 d3bd7308fa514e40bcd4c28ac81ca0f978d6b06e91283465535a8f4177a48f24

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openszraw-0.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 42e7c44abd39a4fecd28c353b09802d3b276fd719250664b25e771a76c3803e7
MD5 ec19ab2fc083bee9a5f0d7d77ee963bf
BLAKE2b-256 f91d42119b6f09783558ebad480e370a8a8bf74f47d6f302621a2a6b45fdc559

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openszraw-0.1.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b905381593edf7311470e2b1f523e78a8d27927199253f49615558757b556681
MD5 f2b461f973e60f6795c84ad1bbc0ae6f
BLAKE2b-256 77676b20436d84914be6b6a2cf7e96bc7602068de287c00d9dc6225fe9387b2e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openszraw-0.1.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2639231dd3cefe25a1ef50771d66ad45e16114f99d613f37b2d90d069aa0560c
MD5 78471702e382789a74a943ef08749a83
BLAKE2b-256 68e4a3fc1e21e80c12443d5b7e0f31f3890ad08d07729a57d70eceed2283262d

See more details on using hashes here.

Provenance

The following attestation bundles were made for openszraw-0.1.2-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

0.1.3

33 files

This release

0.1.2 This release

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