Skip to main content

OpenWRaw

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

Part of the OpenMassSpec stack for mass spectrometry raw-file access. Sibling readers: OpenTFRaw (Thermo), OpenTimsTDF (Bruker).

Rust and Python reader for the Waters MassLynx RAW mass spectrometry data format. Cross-platform (Linux, macOS, Windows), with no native or system dependencies.

Full documentation: sigilweaver.app/openwraw/docs

Install

Prefer openmassspec-io with the waters 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 waters
pip install openmassspec[waters]

Standalone:

Rust:

cargo add openwraw

Python:

pip install openwraw

Quickstart

Rust:

use openwraw::RawReader;

let r = RawReader::open("sample.raw")?;
for f in r.functions() {
    println!("function {}: {} scans", f.index, f.scan_count);
}

Python:

import openwraw

r = openwraw.RawReader("sample.raw")
spec = r.read_spectrum(1, 0)
print(spec.mz[:5], spec.intensity[:5])

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

Repository layout

crates/
  openwraw/      Core Rust library (69 tests)
  openwraw-py/   PyO3 / maturin Python bindings
docs/            Docusaurus site (format spec + guides)

License

Apache-2.0. See LICENSE.

The format specification was developed by binary analysis of public mass-spectrometry datasets (PRIDE accessions).

Download files

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

Source Distribution

openwraw-1.2.4.tar.gz (46.1 kB view details)

Uploaded Source

Built Distributions

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

openwraw-1.2.4-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (358.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

openwraw-1.2.4-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (352.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

openwraw-1.2.4-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (353.8 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ x86-64

openwraw-1.2.4-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (354.3 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ x86-64

openwraw-1.2.4-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (354.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

openwraw-1.2.4-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (347.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

openwraw-1.2.4-cp314-cp314-win_amd64.whl (216.0 kB view details)

Uploaded CPython 3.14Windows x86-64

openwraw-1.2.4-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (354.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

openwraw-1.2.4-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (347.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

openwraw-1.2.4-cp314-cp314-macosx_11_0_arm64.whl (314.4 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

openwraw-1.2.4-cp314-cp314-macosx_10_12_x86_64.whl (321.1 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

openwraw-1.2.4-cp313-cp313-win_amd64.whl (215.6 kB view details)

Uploaded CPython 3.13Windows x86-64

openwraw-1.2.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (352.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

openwraw-1.2.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (346.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

openwraw-1.2.4-cp313-cp313-macosx_11_0_arm64.whl (313.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

openwraw-1.2.4-cp313-cp313-macosx_10_12_x86_64.whl (319.8 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

openwraw-1.2.4-cp312-cp312-win_amd64.whl (215.9 kB view details)

Uploaded CPython 3.12Windows x86-64

openwraw-1.2.4-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

openwraw-1.2.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (346.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

openwraw-1.2.4-cp312-cp312-macosx_11_0_arm64.whl (313.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

openwraw-1.2.4-cp312-cp312-macosx_10_12_x86_64.whl (319.9 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

openwraw-1.2.4-cp311-cp311-win_amd64.whl (217.7 kB view details)

Uploaded CPython 3.11Windows x86-64

openwraw-1.2.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (356.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

openwraw-1.2.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (349.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

openwraw-1.2.4-cp311-cp311-macosx_11_0_arm64.whl (317.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

openwraw-1.2.4-cp311-cp311-macosx_10_12_x86_64.whl (320.5 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

openwraw-1.2.4-cp310-cp310-win_amd64.whl (217.7 kB view details)

Uploaded CPython 3.10Windows x86-64

openwraw-1.2.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (356.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

openwraw-1.2.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (349.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

openwraw-1.2.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (359.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

openwraw-1.2.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (353.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

openwraw-1.2.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (353.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

File details

Details for the file openwraw-1.2.4.tar.gz.

File metadata

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

File hashes

Hashes for openwraw-1.2.4.tar.gz
Algorithm Hash digest
SHA256 4222bd275a87df0bafd1b143c109a55c4a7dfce98afa34271c9972131788dc44
MD5 a4ddded85546e32c9ec049096e944061
BLAKE2b-256 9657c529036dfd5ddd0a3212c8c57201289e65cf2ba0ef8044b5507d70b6379c

See more details on using hashes here.

Provenance

The following attestation bundles were made for openwraw-1.2.4.tar.gz:

Publisher: publish.yml on Sigilweaver/OpenWRaw

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

File details

Details for the file openwraw-1.2.4-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for openwraw-1.2.4-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2bf27a579aeeee87787fe691164924631391c9811a94344bfb03c0f86a7dc3bb
MD5 746d44bfbb427bd8361e528ae60d47a0
BLAKE2b-256 9685c3088a4902bcb0c65706a17558656f2d4632a0e063357aee4c563182a205

See more details on using hashes here.

Provenance

The following attestation bundles were made for openwraw-1.2.4-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on Sigilweaver/OpenWRaw

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

File details

Details for the file openwraw-1.2.4-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for openwraw-1.2.4-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c8ca8f7f07170b5596cff6162408d41ce71f5dfd358202cc0aab69979e4dc03d
MD5 57db765b03504413771070a55298ecdc
BLAKE2b-256 ead5345ecdceb60a7372848aff7e020e0cb869cac48cbcb377be44bb85f45e2f

See more details on using hashes here.

Provenance

The following attestation bundles were made for openwraw-1.2.4-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish.yml on Sigilweaver/OpenWRaw

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

File details

Details for the file openwraw-1.2.4-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for openwraw-1.2.4-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 33c72c54a52fa5288757389f30f8606bcb13a817e099e6d9824087e477fa9981
MD5 7414dec16e452b51e47ab5ccffae1e3e
BLAKE2b-256 090f296a2b306de7e026df49301e8133141b2f368831941506ff667a3197bed0

See more details on using hashes here.

Provenance

The following attestation bundles were made for openwraw-1.2.4-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on Sigilweaver/OpenWRaw

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

File details

Details for the file openwraw-1.2.4-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for openwraw-1.2.4-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 534081190e30a891f2135fc2decc052149313c666adc8cf3474b48467514336c
MD5 8f98953fd13e42c4ce38b6715b7d1bf0
BLAKE2b-256 aa333e313d92b66559a07019cdb89e290715894cd21345ba909db92b7776d34a

See more details on using hashes here.

Provenance

The following attestation bundles were made for openwraw-1.2.4-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on Sigilweaver/OpenWRaw

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

File details

Details for the file openwraw-1.2.4-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for openwraw-1.2.4-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 70f0f09f3aab3e669335813368c0d146dfdab3b29128aca7667091397a293ef9
MD5 fd766ade95e8d5eb401067091809059b
BLAKE2b-256 5cd28f54a95a65a5cd77b5c8819ea327c887b5c0d46a90ccdb33049427bfc7ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for openwraw-1.2.4-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on Sigilweaver/OpenWRaw

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

File details

Details for the file openwraw-1.2.4-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for openwraw-1.2.4-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dff5818eb3c0a23bb62fe091382c96b33c5103b3cc41119343ab93ea11f3a3b0
MD5 9ac1df76f8c7359e5afdf1237ee458e2
BLAKE2b-256 f2f8a8673b2060e4aa73acdf9efee94ebe556ff4c7c6bf5eec253f044a85f080

See more details on using hashes here.

Provenance

The following attestation bundles were made for openwraw-1.2.4-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish.yml on Sigilweaver/OpenWRaw

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

File details

Details for the file openwraw-1.2.4-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: openwraw-1.2.4-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 216.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 openwraw-1.2.4-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 9913f43a5ae41bcc66740dee87a7d3592b7e48235ab2c7e2de52398b50775b64
MD5 abb46940d9c07cd42baa36e95385a88f
BLAKE2b-256 6d9e92e449bbdbc93f992846654ee78ff01483b02df3040d65eac27620837039

See more details on using hashes here.

Provenance

The following attestation bundles were made for openwraw-1.2.4-cp314-cp314-win_amd64.whl:

Publisher: publish.yml on Sigilweaver/OpenWRaw

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

File details

Details for the file openwraw-1.2.4-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for openwraw-1.2.4-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bb0366a5a2dae38b82be82cbf2696dfbb1469d40665bc836443d91d62a24a772
MD5 49bb4002661a311f49b3bf12e9bb9d61
BLAKE2b-256 ccc7afd4794da04624aae665f614b23a94dab861634e14fb93d0b562cb028153

See more details on using hashes here.

Provenance

The following attestation bundles were made for openwraw-1.2.4-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on Sigilweaver/OpenWRaw

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

File details

Details for the file openwraw-1.2.4-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for openwraw-1.2.4-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6c8b33d44b8fa611a08e15a4627a26e1d885fd0d548f4165bda2eaa784540d70
MD5 f72b6ac214ad1a6f400b53ad64bbedb3
BLAKE2b-256 2eb3b0561e4052decd0bf8db3393c237c9c1cee3d1b4ff92f6f519aca44f5a55

See more details on using hashes here.

Provenance

The following attestation bundles were made for openwraw-1.2.4-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish.yml on Sigilweaver/OpenWRaw

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

File details

Details for the file openwraw-1.2.4-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for openwraw-1.2.4-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0d8638714a2fb8904dcb6d4064b150f23d36b852de3f86e75cdcf10a96077858
MD5 86d3b881f94081219688bf99008ddb23
BLAKE2b-256 114dd456b6c6f46a11730c2f09b2f0cf6637a0ad02a5e3adbef2dc1ff2914ef4

See more details on using hashes here.

Provenance

The following attestation bundles were made for openwraw-1.2.4-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: publish.yml on Sigilweaver/OpenWRaw

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

File details

Details for the file openwraw-1.2.4-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for openwraw-1.2.4-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 35e944ab7fc7068fb7bc61f063be60c9c88f5f17ee5b1df1bafabf36399d1546
MD5 2ef779662c99781d994b9a149817ba68
BLAKE2b-256 7c44bf255e7c1b26d6d366c9728a1e5208b436f5ff7c336e64826636733ba010

See more details on using hashes here.

Provenance

The following attestation bundles were made for openwraw-1.2.4-cp314-cp314-macosx_10_12_x86_64.whl:

Publisher: publish.yml on Sigilweaver/OpenWRaw

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

File details

Details for the file openwraw-1.2.4-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: openwraw-1.2.4-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 215.6 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 openwraw-1.2.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 4b15266d032d0af29c224b0c3bb3672e1b17bdf03b6002cae511c25bb4939464
MD5 a895ebfc346556f37fd28c1e893b806f
BLAKE2b-256 e0999fcbdbfc5847c6bc77e261e032ab6923910023ee2c4f2b48c276bbbffff1

See more details on using hashes here.

Provenance

The following attestation bundles were made for openwraw-1.2.4-cp313-cp313-win_amd64.whl:

Publisher: publish.yml on Sigilweaver/OpenWRaw

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

File details

Details for the file openwraw-1.2.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for openwraw-1.2.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 58ff18dbd213a13af821813b9bf27454fd4794022e2c5c9183a385f6b31af02e
MD5 c7955b9e93c87419e350e19210718ad1
BLAKE2b-256 1512ee989d37e01c74665089dba8ccd770bc3242829195e6eed26bc56c895713

See more details on using hashes here.

Provenance

The following attestation bundles were made for openwraw-1.2.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on Sigilweaver/OpenWRaw

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

File details

Details for the file openwraw-1.2.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for openwraw-1.2.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 19130d00cfd082aa1fba5fa35747127cb6d71d4fddb702b7d3e246368e6daf00
MD5 d57fc8a67cc6b41827ddd2ed20c4c861
BLAKE2b-256 0aab831fe7a08ca3d428aeec407da72fff4446afd159179b2f454a7c3a774dcb

See more details on using hashes here.

Provenance

The following attestation bundles were made for openwraw-1.2.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish.yml on Sigilweaver/OpenWRaw

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

File details

Details for the file openwraw-1.2.4-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for openwraw-1.2.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bd6fbaa2e445a60a089adef5bdccf1cdc51bdf948eb715c5af3bc8b79579c0e9
MD5 ea3854cb10d8c4ffbd806e9f2c2db4b1
BLAKE2b-256 1ec1d97a2dfb6a530af3337db57cd45247bbe54bf5f5ad090bc2b7621aed4287

See more details on using hashes here.

Provenance

The following attestation bundles were made for openwraw-1.2.4-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: publish.yml on Sigilweaver/OpenWRaw

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

File details

Details for the file openwraw-1.2.4-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for openwraw-1.2.4-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6dd3079b0424e923a8557d50e3c36ab55a06769382682cb812f9d6201af0cbb5
MD5 b4ff03b8e612de7bff85f3364687784d
BLAKE2b-256 54f298499e582912a8a4f86d3567292a2074330c8284454f67f628a1e333dee5

See more details on using hashes here.

Provenance

The following attestation bundles were made for openwraw-1.2.4-cp313-cp313-macosx_10_12_x86_64.whl:

Publisher: publish.yml on Sigilweaver/OpenWRaw

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

File details

Details for the file openwraw-1.2.4-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: openwraw-1.2.4-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 215.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 openwraw-1.2.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 7c4e633439017d76cd1ced9737136d1514a9f6cbb20a5bde5c2961f60b278e8e
MD5 ab066306a5135a4aa9381105400e9027
BLAKE2b-256 b5ed56ae39d5ce343756312617cabda058f08921d5ebeeef8af6616f0b2f80b3

See more details on using hashes here.

Provenance

The following attestation bundles were made for openwraw-1.2.4-cp312-cp312-win_amd64.whl:

Publisher: publish.yml on Sigilweaver/OpenWRaw

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

File details

Details for the file openwraw-1.2.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for openwraw-1.2.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 34b70c65aab93d1f6887c81c6eaa7326cd0b3cc550e85892fc1adbb358452487
MD5 00cd5cdae4bcdf140fc5cfb9e5a5d497
BLAKE2b-256 c695e09eaff1889b918fb9d29394ccd39d2e29209bf35e97a036ed8455f8662a

See more details on using hashes here.

Provenance

The following attestation bundles were made for openwraw-1.2.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on Sigilweaver/OpenWRaw

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

File details

Details for the file openwraw-1.2.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for openwraw-1.2.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 115da5aa43beb9122d57105558f1738bb4d84559a101eb6655e9ef613a97c512
MD5 80793cd8a441245e3c07d007421c8f1c
BLAKE2b-256 677797e4c8744569d28ba0e7b5b4acb78bdf9199e9cf932a14f34ae8ba2b3753

See more details on using hashes here.

Provenance

The following attestation bundles were made for openwraw-1.2.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish.yml on Sigilweaver/OpenWRaw

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

File details

Details for the file openwraw-1.2.4-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for openwraw-1.2.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 894344fc854c830230fe6ecca26aeb9f5233904c229370fc67d98c750cbf808e
MD5 71b0b2953853932ac2146d473eae4dd4
BLAKE2b-256 7ef43b2d1ba86abd4538b175d90d458d091627cc56cc21daa64f951d6ac0011e

See more details on using hashes here.

Provenance

The following attestation bundles were made for openwraw-1.2.4-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: publish.yml on Sigilweaver/OpenWRaw

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

File details

Details for the file openwraw-1.2.4-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for openwraw-1.2.4-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7ddf41dcce19102f6a2229a9671be15c37e5d7d7cf5763519aafab7ee108371f
MD5 178fc7cb107209d8bd3248baacbde433
BLAKE2b-256 22a67550659fbf0d29252ad95fa3215ff3f30e5e2456ea07c3cf48826d25fe18

See more details on using hashes here.

Provenance

The following attestation bundles were made for openwraw-1.2.4-cp312-cp312-macosx_10_12_x86_64.whl:

Publisher: publish.yml on Sigilweaver/OpenWRaw

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

File details

Details for the file openwraw-1.2.4-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: openwraw-1.2.4-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 217.7 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 openwraw-1.2.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 15c89a452ccc538e93391597e302a26cb994a15b26c128c4a861db7093e0be83
MD5 61f68af4cfeba24f721427174093b3a5
BLAKE2b-256 afbf00f542603b1cbb24ce4856488a881f317b10556be5074262c2deb7ff7b94

See more details on using hashes here.

Provenance

The following attestation bundles were made for openwraw-1.2.4-cp311-cp311-win_amd64.whl:

Publisher: publish.yml on Sigilweaver/OpenWRaw

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

File details

Details for the file openwraw-1.2.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for openwraw-1.2.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 81e7498c629f2bb517cebd3ed2b1a392e92a8c8a3a900ac3b36ec7e7a43a820a
MD5 ee88f5539e70000857dba5206c00eb6a
BLAKE2b-256 e5cf8ac4ad4c884b64dba9b518b72486e749f297f2f1a1da523b6249b8b62c48

See more details on using hashes here.

Provenance

The following attestation bundles were made for openwraw-1.2.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on Sigilweaver/OpenWRaw

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

File details

Details for the file openwraw-1.2.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for openwraw-1.2.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f4d3fcf96bece26cbd41cd7792135914debfbd71cb0174844492791e63091d15
MD5 403971cb2e24a52c907377a96b27ba18
BLAKE2b-256 4c3c9de750a0f8ff0984c799fa648a841c3be5e1137f152ea397f07fdbf8edc7

See more details on using hashes here.

Provenance

The following attestation bundles were made for openwraw-1.2.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish.yml on Sigilweaver/OpenWRaw

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

File details

Details for the file openwraw-1.2.4-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for openwraw-1.2.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 11066a795bf3e2c13c77c36e00c9e510a4cc7467f41e1b9b541c639bb285bd12
MD5 e0099cf82b6f4c9fca7afb9d989518bc
BLAKE2b-256 ff5b5080306229a8e2bf8ebe232cda5994cd7fd2a2eab65ab4a304ab1879ddd4

See more details on using hashes here.

Provenance

The following attestation bundles were made for openwraw-1.2.4-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: publish.yml on Sigilweaver/OpenWRaw

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

File details

Details for the file openwraw-1.2.4-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for openwraw-1.2.4-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 92d53b9368a96e380624feaf5b04618687f8d81103757501ec7fb93dd479b446
MD5 ef51bf5cbffcb8ba2530e3ae5a4268c5
BLAKE2b-256 1d26023f6952b395b22b83cad08bb5219b7600cd92f41dccec483d5227141789

See more details on using hashes here.

Provenance

The following attestation bundles were made for openwraw-1.2.4-cp311-cp311-macosx_10_12_x86_64.whl:

Publisher: publish.yml on Sigilweaver/OpenWRaw

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

File details

Details for the file openwraw-1.2.4-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: openwraw-1.2.4-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 217.7 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 openwraw-1.2.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 9a2d36eac2901200763ae9a7636ddd74c39647ae57884819e82d2686ef1d509a
MD5 cdce10f9beee7408c0343fec82b0aa46
BLAKE2b-256 982fa09a45b83d8536f5d94cae56d3aaf919d9273cce09e36117b086c8a0e99c

See more details on using hashes here.

Provenance

The following attestation bundles were made for openwraw-1.2.4-cp310-cp310-win_amd64.whl:

Publisher: publish.yml on Sigilweaver/OpenWRaw

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

File details

Details for the file openwraw-1.2.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for openwraw-1.2.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 681b31013805dcf27e66c2caf85e0d2463b29360b0ac6a4ac9806d1f8aa33d5c
MD5 eca9eb2250c375be54172eaceb80550b
BLAKE2b-256 0b6bd2f58e656164aafa2d62d464138533e51118d79d884073cc7e3a4f763899

See more details on using hashes here.

Provenance

The following attestation bundles were made for openwraw-1.2.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on Sigilweaver/OpenWRaw

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

File details

Details for the file openwraw-1.2.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for openwraw-1.2.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 86450b7a72b2ba98b00a55ff890106a8bc604f324b61aa1c1fdf620d1e53f24e
MD5 f81990179b14358c84817b3c4f74893b
BLAKE2b-256 46c0b27266c3c2c58be675179c701e6450f088f82ec0a7bf54419840f443f8c7

See more details on using hashes here.

Provenance

The following attestation bundles were made for openwraw-1.2.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish.yml on Sigilweaver/OpenWRaw

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

File details

Details for the file openwraw-1.2.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for openwraw-1.2.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ebeaca124eb7d8f4f6596382e2d51fcfc857d1bccd04fcfe2125a932d02fd2b8
MD5 d7f9337260a4f274a7508ac1151ac334
BLAKE2b-256 b97bbc11b8983cafa6e803de780d241f73d6c50ee4c16ecf5ddf37b20eb7b5ff

See more details on using hashes here.

Provenance

The following attestation bundles were made for openwraw-1.2.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on Sigilweaver/OpenWRaw

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

File details

Details for the file openwraw-1.2.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for openwraw-1.2.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 479e0a2855bcb8544d010150444be6b24e2282e28fa53c3b192a2e660e7fdf29
MD5 b7ebce1bd753047b6bcb0b0b9cc3d8f3
BLAKE2b-256 296b2fb003874b8594e821b39c3472df8d4abf5d243d622e30e765c0c3ac4c33

See more details on using hashes here.

Provenance

The following attestation bundles were made for openwraw-1.2.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish.yml on Sigilweaver/OpenWRaw

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

File details

Details for the file openwraw-1.2.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for openwraw-1.2.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9db1679ed704f0f742339c564f283f220285ae6204c0ce58aa61e4cad25ebfa8
MD5 a7935e904ef666e7ca040c72f7951ad1
BLAKE2b-256 62e77682edbcf306d44a5155b6ce682cd513d6a129364c1ab1749227dc00a263

See more details on using hashes here.

Provenance

The following attestation bundles were made for openwraw-1.2.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish.yml on Sigilweaver/OpenWRaw

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

Release history Release notifications | RSS feed

1.2.9

33 files

1.2.8

33 files

1.2.7

33 files

1.2.6

33 files

1.2.5

33 files

This release

1.2.4 This release

33 files

1.2.3

33 files

1.2.2

33 files

1.2.0

33 files

1.1.0

32 files

1.0.5

32 files

1.0.4

32 files

1.0.3

32 files

1.0.2

32 files

1.0.1

32 files

1.0.0

31 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