Skip to main content

Python bindings for the OpenSZRaw Shimadzu LabSolutions .lcd / .qgd file parser

Project description

OpenSZRaw

Rust and Python reader for Shimadzu LabSolutions mass spectrometry raw data (.lcd LC-MS, .qgd GCMS, .gcd GC), clean-room reverse-engineered with no Shimadzu SDK or software dependency.

Sibling readers in the same stack: OpenTFRaw (Thermo), OpenWRaw (Waters), OpenTimsTDF (Bruker), OpenARaw (Agilent), OpenSXRaw (SCIEX).

Status

A Rust reader (crates/openszraw) implements all three confirmed raw data variants: .qgd GC-MS (full-scan profile and MRM/targeted), .lcd IT-TOF (run-length-encoded profile spectra, calibrated to physical m/z via the file's own embedded TOF tuning data), and .lcd QTOF (centroid). See docs/format/ for the byte-level format specs and docs/format/06-known-limitations.md for what is deliberately not yet resolved (per-channel polarity, some MS2 precursor m/z values). Python bindings (crates/openszraw-py) mirror the Rust API; neither the Rust crate nor the Python package has been published (crates.io / PyPI) yet. Not yet wired into openmassspec-io as a shimadzu feature. See the sourcing strategy in the ops repo's SCOPING_PLAN.md and this repo's re/ROADMAP.md (local-only, gitignored) for the current phase.

Install (not yet published)

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.

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.

Project details


Download files

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

Source Distribution

openszraw-0.1.0.tar.gz (35.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.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (345.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

openszraw-0.1.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (340.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

openszraw-0.1.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (343.8 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ x86-64

openszraw-0.1.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (343.7 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ x86-64

openszraw-0.1.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (343.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

openszraw-0.1.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (337.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

openszraw-0.1.0-cp314-cp314-win_amd64.whl (207.0 kB view details)

Uploaded CPython 3.14Windows x86-64

openszraw-0.1.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (343.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

openszraw-0.1.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (336.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

openszraw-0.1.0-cp314-cp314-macosx_11_0_arm64.whl (303.1 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

openszraw-0.1.0-cp314-cp314-macosx_10_12_x86_64.whl (307.7 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

openszraw-0.1.0-cp313-cp313-win_amd64.whl (204.8 kB view details)

Uploaded CPython 3.13Windows x86-64

openszraw-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (342.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

openszraw-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (335.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

openszraw-0.1.0-cp313-cp313-macosx_11_0_arm64.whl (302.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

openszraw-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl (304.8 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

openszraw-0.1.0-cp312-cp312-win_amd64.whl (204.9 kB view details)

Uploaded CPython 3.12Windows x86-64

openszraw-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (342.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

openszraw-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (335.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

openszraw-0.1.0-cp312-cp312-macosx_11_0_arm64.whl (302.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

openszraw-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl (304.7 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

openszraw-0.1.0-cp311-cp311-win_amd64.whl (206.8 kB view details)

Uploaded CPython 3.11Windows x86-64

openszraw-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (345.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

openszraw-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (338.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

openszraw-0.1.0-cp311-cp311-macosx_11_0_arm64.whl (306.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

openszraw-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl (305.9 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

openszraw-0.1.0-cp310-cp310-win_amd64.whl (206.8 kB view details)

Uploaded CPython 3.10Windows x86-64

openszraw-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (345.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

openszraw-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (338.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

openszraw-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (347.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

openszraw-0.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (341.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

openszraw-0.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (340.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

File details

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

File metadata

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

File hashes

Hashes for openszraw-0.1.0.tar.gz
Algorithm Hash digest
SHA256 7f7d7b81dab2dd22132377b6d91c779ec6d6855db4842db1b1fc19d00643e331
MD5 fa402ff3d5bf6226d12f8dee84159cf4
BLAKE2b-256 d56679e078bc2a919267dcb85d4cd143070d6ad9197da498c578c886a71e6151

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openszraw-0.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8ef1cef65215bcc443bf0545854e5c0fe6cda950b0af1cdfcb7f9f7ba717c07f
MD5 2a64aca15c82df87564fc10fed824581
BLAKE2b-256 ee908e726feed360fe4a555ee0f6b320c6b7917b5e45e8818327d8b03bc9f77a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openszraw-0.1.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 093758c87f361564f18f1ad428a52db806377cc452d652fe4523681051a34e23
MD5 58fd8172420c1e9945bd5e51a06c6c6b
BLAKE2b-256 f0bef3f7e46fe0d73f1c5d6eb235d7669bede3e60897ab437a535436bd96ff0c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openszraw-0.1.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 01880b9e5107442056dae57a6980fa8f7806919e4027174be5910750ba94870e
MD5 4607300b7ee63238cb5abfb93c2089ca
BLAKE2b-256 fa72b2b35b60208d62200c00675f7aaccd9c4d708a7cd0ad4cab2917173a4d10

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openszraw-0.1.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 43c54796d5929c51f2694183eb304067520ef47db3930aba73a5113fa73b1f76
MD5 90151e1b5312c7420495bfab9da1ca8e
BLAKE2b-256 d9b6e3f338599a628e6affd2a430621387ac26fdc8fc1938945d44b1df71f987

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openszraw-0.1.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2ffa9c8bc946eaa917036171ee7983e7edb61ca30ba3d8c58b97aea2bc196a88
MD5 bd2d06d55c4ecad799557f2a9d1383c0
BLAKE2b-256 253ce3aeb64d5f195f5e13aa0a5dae7e3b43cb5dde78d776ce81b6c8c9292609

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openszraw-0.1.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 58fa470df385bc7e3f4ce6cc480bae5ab9e8c38cbe92cfaf243aeff5d5dcb13e
MD5 935328c105b975381de0aef200ffb31c
BLAKE2b-256 2e619c5557b0fe8ce695277726a937609b15165d91e78f3f863b61719a74c799

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for openszraw-0.1.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 018535cfa0023c85ced4f9a76e44c8e33012a93981d831a4c53d96037a6884c0
MD5 4eb43c69f13fa331bf26b7c12cde7249
BLAKE2b-256 02bdcfbbaef0486cb3deb2083e4c034031cf3f1e8dcb19fbd4271e3d8b7e549f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openszraw-0.1.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 681fbd11024bf65a509235a93030f7c9352d39f2a6c4b17846fdf317a07a5bce
MD5 b85b568056699c136343a4daf0630611
BLAKE2b-256 98112ce7062893228fe33b1bb1328a0477e87bb33848c0be9828dc84e11802e8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openszraw-0.1.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ff4ec53583a6c73dfe5ebdaf4dc3e66cbf897493fe40884b522a65af90760726
MD5 2e9328fbc94eef3b2af458f95e48c839
BLAKE2b-256 1a8140ea62e4082d9a9b962faf9ed42bec3cb3e77d77580ca1a9a2b148add32c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openszraw-0.1.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cd8d215c9a847c126bc9e203dd5db8425c54cadb585b08d89b78c104b6a485eb
MD5 a3a9217bbc741e8bd53bd6d0651c1f47
BLAKE2b-256 61aa19246a401ff49afce54020090f75c6e673908d04188437b755276a28cb37

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openszraw-0.1.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 50d8a05e7be3ae06850c3f4fa9935517fa989d850896225b70714f36a4b63463
MD5 61e0c595f3dd2f04ed8a24b4cad84cae
BLAKE2b-256 653f7116eaaadf87fdc1c6318152ba41e39d08b35ade0d19b3b0c2d3c6c52c8a

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for openszraw-0.1.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 81805a63cf93a0b4d8b9fa4a767bf80e34c8d8425674e060ee512d56146723c1
MD5 30c18fac08fc90707264ea8f52a0a678
BLAKE2b-256 95204578e8e33dd6f21b2f9d8ac0930e86d86d72e7e4bd4fc61f2a5eb28474d1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openszraw-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6dc1b1ae5ea1bf8338482ba17b75393db4af51b142237ba940f052205c5dde49
MD5 a8c4e37f047c70b8a8444b54b96d9d65
BLAKE2b-256 36f5f43e1823c490522e3f8f3c07be0160d976c582b9f6d931d35ac80f43b26a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openszraw-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2a9934aa58c8557c9c997c41dea975bb9657949ed047d6fb59c10b2953d913f7
MD5 315ea66baf68e5b1b4935d03afa85b1c
BLAKE2b-256 661c2adbbaf0cddcb997f15763a274099d8822de4569a1b498a2693a387d1dc1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openszraw-0.1.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d4d6ceb5e77a174710e3bd25795d72144f1e3955f46c80ed2086fee72b428bc2
MD5 24b56e2720d0c63fea24bc7b5270ddde
BLAKE2b-256 1fb9bdf2394ecae925c20b27307d2f23a08417f37d715553d85eef6601eac986

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openszraw-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0c93df8026dd8dbddebd661950bebe5318bb20b275e9d986f701c943c83a9d5c
MD5 d82df662afab37e1229319bbbf7d3f73
BLAKE2b-256 d84d8983ad7a76c3e9b49333588d85fa3bbcb5ac4eb806bf63f07e142012a1b6

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for openszraw-0.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 231db99b87d7aa650a04c69f613f72f024cfdfeac0706277da2ee62cf2716c7f
MD5 0bf4a78df7b8d311a7505c9b91679f47
BLAKE2b-256 4540b8646b53b4afca17bfe803167d07aa96bc2a77830a52edbb7799f5a5172c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openszraw-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b6b091bd6f85274cb50856a6ef919713b58d2cbe0688eca683e3d4bda1bb5354
MD5 f1192131c1f45e9fcb5b5889a8625da3
BLAKE2b-256 7457250f937d7da8cefb5d591de9c88c66408a029e541a34641eec67f90298f0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openszraw-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9783f8dc7071c03d71b6b4ea4ee1c0d30bf3d50b3e8608fdd546afbda6d5b1fb
MD5 fd46ec40976febded6f13b16a8615746
BLAKE2b-256 84af61c346f2bff3bdf17b51b93fa1cbfb1d791325f700eac6043f0584738b87

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openszraw-0.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9cc8ce09b9f502b1c641096a8be25a1e0be919236644cbeaba2b6919056bc4ac
MD5 f4fe2cd98874b2beac097077ea05da08
BLAKE2b-256 ae0d3cdfa6bfdf9e04198fbda18a780df8842c7e26acbfa9943604d285710d6b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openszraw-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e38a5b042ea9b54ff7f3f6407e37c13c3c52b7fc2446dfa45e6b12ecb1b3f4f2
MD5 4d8a8a42e7adb4462fac9b430db12b53
BLAKE2b-256 76a6a9a74bff3672aa612d10596a563df3cca57ab968c0a9603a43686b10dcf9

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for openszraw-0.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 3a2a6f1865fa26d29d6ebf0b802a87d5a895505176cba2aed285ce6460a25f4a
MD5 2c1c42b08eca0ca91b273dce3001173c
BLAKE2b-256 2ff3b3bbbda9ad000300947aa614001fd7fe58cc78a39141b864458e878577b5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openszraw-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e641322766b460308b48a68412ab02a667cabf7b8584c529ebd8e64ba06ad67c
MD5 1e84d0bb6dd702e7a12900ffc1f70067
BLAKE2b-256 86b76daaf54c1cbb9ba8dfdb5931f0042c5c5b01ed09f4a476999f714e750c08

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openszraw-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c8d4d1e48ca86cc2e73bebee4023908c1c7902a5b68d7b9c5921436b4ef25566
MD5 3ea1191d983d550cc522461e6b6abc46
BLAKE2b-256 e27f6a5be9cb1b4fdc17039f605aec8d6abba4509d533b67dd6c8582967a8678

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openszraw-0.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 702b2503b85e28192e0d3844be0d953cd73abaacb9ede7ef1525f033eed983c5
MD5 89d2429f1d2b7e90555337aab0347fa1
BLAKE2b-256 771c315e6c0557c9a55d8cd92de6e6f24842edb78566768911bba117ee347a14

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openszraw-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b21a7ef8f2ab067d901ff442ff421b706f27dfa817dec0348708ad2b50558369
MD5 f8ed85ead44b6f0089d43314689e48a0
BLAKE2b-256 950c473c767d1af5fef395fc6ae4f5c96f054c7c9c5ddd23601a2eb41e9d7076

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for openszraw-0.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 c820e48445b80d39b0dc70f55389bb7f40e911e7cf8cd8084504d562449df9d2
MD5 216bda7312ad25847983a286f7263fc9
BLAKE2b-256 8aca0997f03d6269f1dbc954d49b6da7db3b79eb62ac36e4f4425f52b53b555d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openszraw-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b4ef2279ca4f9cc0662e6f732b498872b7e8c2ab272185591c50076bbcc2591b
MD5 508e4f271abca72f918f3e12e69b29b5
BLAKE2b-256 70273507dc154f8a08309a0dfd8fa54194e9c3ee83cc67c9a36f4cc7ba09854f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openszraw-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 97fbfc3b4c216ca450f86f98f5e636447fd978acf326e631744f02c1bffebc41
MD5 3502fcba70ece6fe6fe52726dc254d78
BLAKE2b-256 78be66d32705551edf384eabeaa6ba963007669a1e4924d99b369aa0837e7ea1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openszraw-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5ad489113b120505b0a4604f2af5fc42fe88a7cf8c9a9d535733eff8a7116b0f
MD5 8e2615d338e20ee75be38986985aa9fe
BLAKE2b-256 9d08e7cf18de5264d2b1e6b921dc0d0e7299d19dfb81d49e80ac1e06b1b96935

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openszraw-0.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fbaad9fe6116ede9339f7d26a50e638dd070f7c367d7d84a7bc093230d8a38be
MD5 c11398fb010dbf71aa950c49fc01c458
BLAKE2b-256 8b999e9562c8cc20a4a3f3e2a3b34a8de141e292a4dde75d9083b47a920eb821

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openszraw-0.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7e90a4ae6b9c34e302a9ea30cbc8b5e30589022f0854fc9f2500a1c6b23234d3
MD5 980fd314eeb50e0752e86ef1fcf910fa
BLAKE2b-256 01803384b3cff36a7be9217abeca3f2154b8b9cabcd557e3123a8a5cdba5604b

See more details on using hashes here.

Provenance

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

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page