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.4.tar.gz (48.5 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.4-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (365.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

openszraw-0.1.4-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (358.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

openszraw-0.1.4-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (361.8 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ x86-64

openszraw-0.1.4-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (362.6 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ x86-64

openszraw-0.1.4-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (361.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

openszraw-0.1.4-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (354.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

openszraw-0.1.4-cp314-cp314-win_amd64.whl (220.9 kB view details)

Uploaded CPython 3.14Windows x86-64

openszraw-0.1.4-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (361.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

openszraw-0.1.4-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (355.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

openszraw-0.1.4-cp314-cp314-macosx_11_0_arm64.whl (318.5 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

openszraw-0.1.4-cp314-cp314-macosx_10_12_x86_64.whl (322.2 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

openszraw-0.1.4-cp313-cp313-win_amd64.whl (220.3 kB view details)

Uploaded CPython 3.13Windows x86-64

openszraw-0.1.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (360.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

openszraw-0.1.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (353.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

openszraw-0.1.4-cp313-cp313-macosx_11_0_arm64.whl (317.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

openszraw-0.1.4-cp313-cp313-macosx_10_12_x86_64.whl (320.6 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

openszraw-0.1.4-cp312-cp312-win_amd64.whl (220.0 kB view details)

Uploaded CPython 3.12Windows x86-64

openszraw-0.1.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (360.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

openszraw-0.1.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (353.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

openszraw-0.1.4-cp312-cp312-macosx_11_0_arm64.whl (317.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

openszraw-0.1.4-cp312-cp312-macosx_10_12_x86_64.whl (321.3 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

openszraw-0.1.4-cp311-cp311-win_amd64.whl (223.0 kB view details)

Uploaded CPython 3.11Windows x86-64

openszraw-0.1.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (364.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

openszraw-0.1.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (356.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

openszraw-0.1.4-cp311-cp311-macosx_11_0_arm64.whl (321.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

openszraw-0.1.4-cp311-cp311-macosx_10_12_x86_64.whl (322.2 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

openszraw-0.1.4-cp310-cp310-win_amd64.whl (222.5 kB view details)

Uploaded CPython 3.10Windows x86-64

openszraw-0.1.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (364.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

openszraw-0.1.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (357.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

openszraw-0.1.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (367.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

openszraw-0.1.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (360.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

openszraw-0.1.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (360.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

File details

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

File metadata

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

File hashes

Hashes for openszraw-0.1.4.tar.gz
Algorithm Hash digest
SHA256 ae8accfe7fea42781e4e2f1260dfec40f4d75d4974ffcef640a592ab0487a16f
MD5 47094223f6089566436c3e32b76e5d54
BLAKE2b-256 e0cd77e45df87082df7a795d611c33d0df342228024f7de684cc06cb93c88ea6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openszraw-0.1.4-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9f6145ee2717fff1f2c14dadd7d578caa45a990c02fc26eccc2826ab69f7f0b3
MD5 269a9a7a42428f3c8ae058e373c5e39f
BLAKE2b-256 42388c30ca70a8408dc2263d8895496679e8c9fd6652d0faa1ebb8767910e027

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openszraw-0.1.4-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d1906a6f4ad5b69c4c93399744b1b175963ef255e875c0a2df310d31e485ebaf
MD5 8e3ea6a5a4ab752e8e417fdb15a72dc9
BLAKE2b-256 17f250a31830845cc33fef2128877acbfe571f38c7d69c80783d13c40d4a7f80

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openszraw-0.1.4-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b6ef6ba29a251cdc78a8b047bc65c39ba95998f18947379436abf415c7cff269
MD5 4dde94cc210f27fcd80fb3e9bec2843d
BLAKE2b-256 856e5d03d7f00b7f8c1e751e67a1d97bd46b8698f76b2b034f01d7c2f3f119f1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openszraw-0.1.4-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fd9868dc975d074b92f114ef3f83cda8d9f98ffbbad0b4f33485d0897249a79f
MD5 ea89edc3ef07419354bc4e9241e31a4d
BLAKE2b-256 68cf317c63700836108e061191adbb2a5f9d294f7f896411af92f5187e532b65

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openszraw-0.1.4-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 235edaf00f9676d0724fded4c0abf5ab9d17ede6a74f40fef6e2ae9f6c56a0c4
MD5 b1fd1660cc85d780b6917b76aa3a35b2
BLAKE2b-256 ff83bb9b640f71770127e443a366165aafa5f2d13a6765b0ab855d78a7a15d85

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openszraw-0.1.4-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 857360dec7eb6bbc98eb260a98b22ffae92f189c480524165d91bd8d1b5d728f
MD5 aab203a06041fb7340ad549a2198ccd6
BLAKE2b-256 5d3a983aeb7a5aac11948c26d51c02ebb9a0aeefbd209d8fdd14e4c87510111e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: openszraw-0.1.4-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 220.9 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for openszraw-0.1.4-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 7dd57261a2c2f866aed10ae73be26295a527b808349f23dff2c20d7e172b8bfc
MD5 fb5dd4a744cdb55e4497e3383a87d2d4
BLAKE2b-256 c06a9569938ef863452736f22b23677ef393a51afad525e43a3f26c0211f6be9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openszraw-0.1.4-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2073d0a9cf9d90d8b3fbfaeb4530420f56e4af2d89cab0d19112b8f4db4e31c2
MD5 75aefd56f725ce69c8e52e3eb0f2f2ad
BLAKE2b-256 354e2b8d6dd774e0cf0686d25b6a6d0c612dd6522c50e785a3aea35523985bdb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openszraw-0.1.4-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f3805a9414d750e590fa891572f0ee73e9a4c8cb446181c2aa28eacdb17da5ef
MD5 613ea370330998e006f99260de2e136d
BLAKE2b-256 3fdb525b71f760935edb1d183de1cba8e6c40511e406384b84d2c2793281ef47

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openszraw-0.1.4-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8efe820f6d59c0c450478897d07d5df2c1aaebf2bb9f8869e77f160ac86a956f
MD5 f7774aef9fa85c71044a709e6187fc86
BLAKE2b-256 bc9276e33bf7135e281362ec821c0ba5221e8cc3e1554fc4a3bc97504e21637f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openszraw-0.1.4-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 415c54dd433ca8555e74354acab869d0ce19d0861bfc8f8671da487f8514ff4f
MD5 7a918d7ebd59d66eb5a17d0e8efa0cc6
BLAKE2b-256 d6a2bf47ffc966ee1aa27be18fb4f4e86f076443a41dae3695e7dcb31da57484

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: openszraw-0.1.4-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 220.3 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for openszraw-0.1.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 28ecd4abeed2d3182c62359853173d1cdfcbd85fb48007dcaa43749809121273
MD5 b6d8b5e57502eecb5b171e5af9a121be
BLAKE2b-256 4c269c99ba02c8e87c2c8a5642e5434ecb529488ff83feb521ba89bc1482aaa6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openszraw-0.1.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1ba3cf8fef8d1eacea054b88c973b59e8e300c15e7397c2d861345daf4552752
MD5 e3b6aa272383cc216568f1d3db804104
BLAKE2b-256 4c3a368654afa4a8d4d1f107f71fe987563c9f3e26277c5b371cc9dc9bf5fc6e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openszraw-0.1.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 168e28d1f113dc49e8e9610a3c2538b6711a1c12197eb5cde26382c0d9a20ce6
MD5 a2b2317eda4291322adebcfa65dc82f5
BLAKE2b-256 78c46855d40b8709b284cff8ca4e9e3be8587769add2048221927f8b5cf47589

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openszraw-0.1.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6bf94b66d1ad87aca20833e951e7943025a24ea17d94d11e3db80393c148d15f
MD5 8b0d212b1ec7af3442524190f592e126
BLAKE2b-256 908bde04f1e9f68cae23f25444c6aa0640849d19e2ddcfdb90c5f73590e64c6f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openszraw-0.1.4-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e85cff1e4de92d2e9dacf886df1dcd8cde511b5bd4f61960820561bb089f38ce
MD5 f285cabed75513131134324254eddc3c
BLAKE2b-256 9d59d39d86de5af277a59ad6f147bc5cab1f6fe3c7076b5039e578ad9197bdc7

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: openszraw-0.1.4-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 220.0 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for openszraw-0.1.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b762e74d11d5d69e237dc95dd14183aaf1f54daa103e381dd2f49a737c472fd1
MD5 7ab8bc7619398aaa65e51abc06a09307
BLAKE2b-256 ecb7a6714ef835dbb3bbc84ec8a37cb8f1a39b31e86b97251da4fa537f45e2c9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openszraw-0.1.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b840113ac9860555a8d9071539e7c5ff2f71b712a032ee6e5dc9258def9d76f4
MD5 2fbbe9c565280a303c1b72b2ecb03cf2
BLAKE2b-256 e62545ebaff03e816253aa6a417836f73f041963e111e0948f1eabf504b513da

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openszraw-0.1.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 078442ec2cb015acfb1c6b6a53ce34ed55b08b9d87a029ba7638c917bb0f6c83
MD5 37f48cc1f3f41ac6d36ba2eedecc581c
BLAKE2b-256 7c9424444175ee80681d95b3fff9a260657da19b5fe1936b277f9c04a62d700b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openszraw-0.1.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ebd628c0aa142f1ff1ba8540d94d8ad9ad540f22e9d3f9c4284e140a2e4c6485
MD5 b99271de478c4f03fcf3eb579bb570c8
BLAKE2b-256 19064f11fb15fb881638774a505c6b4593cce65e48131b6fcb59c3e2102efcd3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openszraw-0.1.4-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 bedfa2da8d72b494e20dcc5dc96782bead85c99bee4156aa56dc7efd50e77a7b
MD5 d47bb29657dcb7785fd6788f8514614b
BLAKE2b-256 70b4c3defadc28ff81a77407e04e86feae352b462b20e8cb3925d87a2f281ce2

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: openszraw-0.1.4-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 223.0 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for openszraw-0.1.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 aec70df303e402162dcdec82f013c99696299387dfa02cabea2ea22c29dc6c10
MD5 fef9218a06bd43a8cf8fe42c28fa468f
BLAKE2b-256 1f9ee58606e8ffc7e9fb9a1877876d9d6e70187316d6ccac59b947ee415634a4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openszraw-0.1.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 05fb51fbea2f3875aa1f0c8f69104a2df593f7b9e53738eafad63ccace3b42da
MD5 1c1e9cb4bd772469a340c25eac6e3acf
BLAKE2b-256 18de6fc165498e5eaa5342c89cfdafced1d739309e3eec18c9ee8e4b5c9e85b9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openszraw-0.1.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b2050bc31b86b71c3726594164fe64a630d435e69a27933f083544f1e1f4e5b0
MD5 da2842e9ca4af90667ec0917ebdf6c91
BLAKE2b-256 f7b261587b3b4618299066e7eae16d9bd5a9f178453bfe929746e8109b485868

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openszraw-0.1.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 52aaa37d72476f6bccb776a22ad26dde66dd8fc198980bd50c9139c6003de16d
MD5 a6edd98ee02589f0214b3d4cb53ed2df
BLAKE2b-256 4e7761d02d34c5c39a0ccb8a78c1abc616062d9abba609a08252d1042515dcf4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openszraw-0.1.4-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d3b41ac85a5fe36892457f2c4390054b87b3c7999e1ccfc388e90a5ffe0aac09
MD5 4d119eec16def59f9b27eff6dd7d4851
BLAKE2b-256 a203ecc09e608d47a4e3f59a20b3abad94a87a91599f8244add3d095603e1e41

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: openszraw-0.1.4-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 222.5 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for openszraw-0.1.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 14ce8946b94a25396f457b271cc1e68bb1848d0b62c60ab1f99d10ba02602012
MD5 c2d8b340b34dab6113fd0e75c5422c04
BLAKE2b-256 452aaf9bfabef4c578d071fea26a55c642bdfb0f1bd702cdef6181d4ef41bb3b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openszraw-0.1.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4b790b93c6cf21ae2161322413b0f30dc52716b386f8ea83359c1efda9030bf0
MD5 77b50c4204cbf989ac7a9a4efb161c15
BLAKE2b-256 69b2a96a4a5c238e69404bf206ebd7a7b72d89ab26afa0b1ec95af5691a7224e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openszraw-0.1.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f328328dbfbf901bd25154ea0a595b2feba97b2076907fbdc4bd1040c6dfc185
MD5 4459960114d8bdf56b9bad79a577d220
BLAKE2b-256 b4b2828425df15ec1f6b67c6693bab20d0c2c9af71d67b4ba232ac91a37602d5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openszraw-0.1.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 873cf0ecf356af34374ff902c1eb8ef024688c8473caf92be527a53399f58208
MD5 a1137cf4fb47bf55b00e1a71989022e5
BLAKE2b-256 b631e53dcdc3cff47759d8c3c4eafc6bb5d4d7557d3d9e64276fc435a43c6a3b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openszraw-0.1.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 936d1a24f01411d095bb418c37055d05e72d80c5a5d3bfcb4c9963202065b83d
MD5 bf6c629c95c438700782931853a9300a
BLAKE2b-256 32c2cb05f9e0ef224c77909abafe27dcfc3a485590b988c33a24c87d7b179290

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openszraw-0.1.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 77dc04a23050fa258af47dacb74c6d6c440e26070205438510eac42f4b566e9e
MD5 0f7b828eab633207dd8623e612c992f0
BLAKE2b-256 f5a5df9515f4d06d543d22ae18e5be1e227e51fb5a05230b2948e67d318d2340

See more details on using hashes here.

Provenance

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

This release

0.1.4 This release

33 files

0.1.3

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