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.3.tar.gz (44.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.3-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.3-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (352.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

openwraw-1.2.3-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.3-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.3-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.3-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (346.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

openwraw-1.2.3-cp314-cp314-win_amd64.whl (215.9 kB view details)

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

openwraw-1.2.3-cp314-cp314-macosx_11_0_arm64.whl (314.3 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

openwraw-1.2.3-cp314-cp314-macosx_10_12_x86_64.whl (321.0 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

openwraw-1.2.3-cp313-cp313-win_amd64.whl (215.5 kB view details)

Uploaded CPython 3.13Windows x86-64

openwraw-1.2.3-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.3-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.3-cp313-cp313-macosx_11_0_arm64.whl (313.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

openwraw-1.2.3-cp313-cp313-macosx_10_12_x86_64.whl (319.7 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

openwraw-1.2.3-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.3-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.3-cp312-cp312-macosx_11_0_arm64.whl (313.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

openwraw-1.2.3-cp312-cp312-macosx_10_12_x86_64.whl (319.8 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

openwraw-1.2.3-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.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (349.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

openwraw-1.2.3-cp311-cp311-macosx_10_12_x86_64.whl (320.4 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

openwraw-1.2.3-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.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (349.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

openwraw-1.2.3-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.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (353.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

openwraw-1.2.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (353.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

File details

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

File metadata

  • Download URL: openwraw-1.2.3.tar.gz
  • Upload date:
  • Size: 44.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.3.tar.gz
Algorithm Hash digest
SHA256 18b5c739b71d28e98a29753a5ca11d6852a22078667c279b9fb7d0a31085194e
MD5 fe6d4a02a6671f284c2b197b720086df
BLAKE2b-256 ae9274e657824af466f1a676502eb03b7792d23a4b8945b4d4628fc9c5b99175

See more details on using hashes here.

Provenance

The following attestation bundles were made for openwraw-1.2.3.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.3-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for openwraw-1.2.3-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e061530ef8c88c381bb0d2c70b8612ed0da2bed207e0f02a5bcd947de8d24549
MD5 765b4fb0f7718567e31c2d35ca614a9a
BLAKE2b-256 609123247037c0ba10208b67af3c8e61b066c4b858d845b1218918312174b2a4

See more details on using hashes here.

Provenance

The following attestation bundles were made for openwraw-1.2.3-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.3-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for openwraw-1.2.3-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ff5611476bfc2ca602315e73ebbe1d10fc567fedfd8d89a4a66518811ea3ccf3
MD5 2294bd97353771519c4e149598ade610
BLAKE2b-256 55a36e5ebc1cdd0f593ff254c89f5df792164623368107cfe74adf70eec2c6f3

See more details on using hashes here.

Provenance

The following attestation bundles were made for openwraw-1.2.3-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.3-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for openwraw-1.2.3-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ab72525ab88ea3032afaa85c62ff2e1ba89b3427fde47df3a5fef92f1d402836
MD5 a45cb11991636fdd55ded501f1a5f633
BLAKE2b-256 8a5fe29f2c3eb191a3521efc3fc3acb97c59c950ec40c6b34e9373bf0d0e7d9b

See more details on using hashes here.

Provenance

The following attestation bundles were made for openwraw-1.2.3-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.3-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for openwraw-1.2.3-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 508412eea774fc041946c039958277feb94f2171d808adca9b7a4663897e5557
MD5 46ec1a33a7d4b58752c22a58da6ee141
BLAKE2b-256 f12d734e36e90455f009934c8773fe9dae710a3ac7f5c152d6093580f485fb22

See more details on using hashes here.

Provenance

The following attestation bundles were made for openwraw-1.2.3-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.3-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for openwraw-1.2.3-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7ad50cb5032dbf7f4d3c2e8b85611c9bceda7dde9a3698865afef19982a15f3b
MD5 dc484fcb3436acf4b190767412dc6c32
BLAKE2b-256 3f34532d66068785ed80328407803738dc8cc74e7fbc9e670835bb1f01564c9a

See more details on using hashes here.

Provenance

The following attestation bundles were made for openwraw-1.2.3-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.3-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for openwraw-1.2.3-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 81ad24259da6ccabad9d8b5c36f4fa8dd9980bfcf34ea50c10c795909db6a713
MD5 122c4c4a52b0acc4962b2a48282c49de
BLAKE2b-256 22057156808d6c154655c65835ecd94da3fd7c24440d660f02a41ac0442bd9b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for openwraw-1.2.3-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.3-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: openwraw-1.2.3-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 215.9 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.3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 15474e696886aec2abd9fb86fe8d17dd14d8b84be2f57b83b47a779cbc6db8f7
MD5 30184740ae0a4bef093361db48ea8c6b
BLAKE2b-256 b545a0b2eac39d9fcce7d6bf5ea0734a56ec8a6fa2a1f679b84d16cd36dbc62d

See more details on using hashes here.

Provenance

The following attestation bundles were made for openwraw-1.2.3-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.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for openwraw-1.2.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 81f3026864800977cca2dd9f424ad7209dc3310f77ecf0ef0d87bb4aa3c18625
MD5 a56bafb34e7167314a8b6686f9809cf8
BLAKE2b-256 7c63ad29d81c84bde8e62fe433165d31b7e1d6a75089184300a6be6e40fdf3f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for openwraw-1.2.3-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.3-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for openwraw-1.2.3-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 429872e6cc1c436e65118c00376bae52179104bd08ba23f307cf44203783b79d
MD5 c0729e2f890b50acb002ea472b7b862a
BLAKE2b-256 9100324d636fe9b994eaced656106d2a19dcee5045f0d361e2dc4f05d740853b

See more details on using hashes here.

Provenance

The following attestation bundles were made for openwraw-1.2.3-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.3-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for openwraw-1.2.3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 942d0b70bd5cc6e7bf94daf9d0abf1ac684f794ec30b36ec5feaaaf4ec87deac
MD5 b37166d490fd892696abc9373b3b037b
BLAKE2b-256 83f9c784a7828a6e5f011a9bf2d8ec745f1b6d534e4d7ff25c397bb51680ea59

See more details on using hashes here.

Provenance

The following attestation bundles were made for openwraw-1.2.3-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.3-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for openwraw-1.2.3-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ed81bd158d015a01ec4954278c7ceaaea6ee8c10601b9c540031555de19fca73
MD5 d86173a9485d2d8c9b26b3add0d8bdaa
BLAKE2b-256 efdc486106586bfb1ddb9b647c674329c20cfe8db4b1653bf2c8a2de01743907

See more details on using hashes here.

Provenance

The following attestation bundles were made for openwraw-1.2.3-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.3-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: openwraw-1.2.3-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 215.5 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.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 288baad287a06b02d59a78fdf1f8972f4f61c139a58e017ada5dd23f64544eb9
MD5 a9b26d40c3edfa2635d0bb8712948a16
BLAKE2b-256 570491cbb6e9b7fc6122d13e265b9196126621f383ae7d5d9da75533c174170d

See more details on using hashes here.

Provenance

The following attestation bundles were made for openwraw-1.2.3-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.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for openwraw-1.2.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 130e7f7dd891ec620065d052c75253e44e633446980d25750939b3ef4b5a6fe0
MD5 89c879baf4d6cb92bd3775b94e203e78
BLAKE2b-256 fb11ad4499413a4fe984ad22229161903b69cfe0eb22393cf8e8f3e8285b014f

See more details on using hashes here.

Provenance

The following attestation bundles were made for openwraw-1.2.3-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.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for openwraw-1.2.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7b0489923e2deeec9bea6709f9c3de8f3c8dba49342987ac604cc86cd8214d4e
MD5 97c60916fd4c645a8cf9f526e2911c66
BLAKE2b-256 f175c5b048df9c23507a177b4e62e079b101adcfce02ee98f9c07bbf7ea9d0f0

See more details on using hashes here.

Provenance

The following attestation bundles were made for openwraw-1.2.3-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.3-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for openwraw-1.2.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b3436738448cf798439b7977ff2a5d94703002849afe75844f396e2a85005523
MD5 8fc7e7ec03684ef9cff5f30edffcfa00
BLAKE2b-256 7173387c42be00a9f03894aafec193aa1313b1a9c9f3b7fe2107944814f11034

See more details on using hashes here.

Provenance

The following attestation bundles were made for openwraw-1.2.3-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.3-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for openwraw-1.2.3-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 eb94d22b50e4735e1a8f6fafee9a72c7e70faf8e36a9eda13686965566a2a8aa
MD5 58becb8bc4ced32517cc55b583ce6869
BLAKE2b-256 408679df35b09bba0daea9a468ae4a3bcb009955f29c49584192fe5ac671abba

See more details on using hashes here.

Provenance

The following attestation bundles were made for openwraw-1.2.3-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.3-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: openwraw-1.2.3-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.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 dd3e7c5a1cf3f8a8fdef2d00d38c0cc01ad6ad193c0d32973803917a965fdc53
MD5 9e28934028fdb458a60f900467264a26
BLAKE2b-256 2a9c5f1c6eb349cd270925e314804182583198934dc301b74e181b14861a9d55

See more details on using hashes here.

Provenance

The following attestation bundles were made for openwraw-1.2.3-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.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for openwraw-1.2.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7d30b01c108933c209a3d943c1ba69bb01fb4ad526e5a5fa5f6bb11f413c6d88
MD5 6191b6edbeed08eba6f463dff49efea3
BLAKE2b-256 60a9e0163cad845ec77526d18526cf322441b9eed8240c525a219ef2f189eded

See more details on using hashes here.

Provenance

The following attestation bundles were made for openwraw-1.2.3-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.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for openwraw-1.2.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 51a156e1271c405eaf0456638d3652a7ea67eea7aa2249bb4ee61077854895d6
MD5 0ff813f414618905712c79f6d4d7dc42
BLAKE2b-256 14b461a47bed73f1da7b5761829a35201c7d4da941a3a4561e503fad14e0844f

See more details on using hashes here.

Provenance

The following attestation bundles were made for openwraw-1.2.3-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.3-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for openwraw-1.2.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 966aa68078be1ab9d8c522bab5e70e7258b81638015d6266bc02a28167d4529c
MD5 ad016413529d74a0906f1578a0d4a81e
BLAKE2b-256 20ec4f776258d3bc1b27452a5d07986cdfb960527a094aa55ea8576ae751315e

See more details on using hashes here.

Provenance

The following attestation bundles were made for openwraw-1.2.3-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.3-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for openwraw-1.2.3-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 aeaf15791d0bb03eaf715537012fa25a77f82cb3593cca3e03e3c156cf7942b7
MD5 471aa10d94102177bcfc47727fb8efa8
BLAKE2b-256 1941e6223ef8a164b025d1f04f63dd94c11d0a056c792e5fa6defa151065d1d6

See more details on using hashes here.

Provenance

The following attestation bundles were made for openwraw-1.2.3-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.3-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: openwraw-1.2.3-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.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 3aee541587bc98ea80ea45af43a698ca4a952d7fe3a41cb32b023e1efe6d3c12
MD5 a435946e2325adc29023d9c367588a0f
BLAKE2b-256 072bb16cddc431e4efbd489017cd38848d32085d63d874b670ccdf42e94cc35d

See more details on using hashes here.

Provenance

The following attestation bundles were made for openwraw-1.2.3-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.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for openwraw-1.2.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 929f13f0085f9bc8652fab7c66d5be1c3ac99fa7fe643d114f76f752ee2b8361
MD5 4348eefb5d38cec22dcb134027d81a90
BLAKE2b-256 dda666035c1363fd934efea75fcd1701ab3f81c8ab12228f068b01af1497a89a

See more details on using hashes here.

Provenance

The following attestation bundles were made for openwraw-1.2.3-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.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for openwraw-1.2.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 94acce7849ec483e714631ae7c6149c7d8a75ab38d075a6d4b995322c4c9761b
MD5 7fde6b6caa226f9cb9223385e036ec95
BLAKE2b-256 b36a2ce3aab87ec9be3b364e191330226a694fc25cdccd827e5547535c99f0a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for openwraw-1.2.3-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.3-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for openwraw-1.2.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7f019ae8eec07441cd666f9aaa50cecae9707c5506df10b4dfed22a5f9935022
MD5 27084ddec4d2f67b2a83264df0e727ca
BLAKE2b-256 170ab25b80b4e4f482a6499e3ba2a8928c089e9161819d8a05d8f8f6c62e578b

See more details on using hashes here.

Provenance

The following attestation bundles were made for openwraw-1.2.3-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.3-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for openwraw-1.2.3-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d0b8d0b8fbd45030fe713914f3845325df3a61e7d71fb216192d2240d788905c
MD5 736ef97651c09273e22e7091bd93ad42
BLAKE2b-256 b582084ddd648ecf5e1085a15aacba2af4bda4e37e7a3fbefbd85610a018f5f0

See more details on using hashes here.

Provenance

The following attestation bundles were made for openwraw-1.2.3-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.3-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: openwraw-1.2.3-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.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f238a420ebdd97a4096edb421f32d6bb467023e3766443ca6ffc084f76922fb4
MD5 2a72675592c79601c128172bfc897290
BLAKE2b-256 dd022933672c015e4c61872237ca3f779bb9d303a764b1beaafe62f8c9680f0e

See more details on using hashes here.

Provenance

The following attestation bundles were made for openwraw-1.2.3-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.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for openwraw-1.2.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5f0d4235b8601edadf098f1d8bf33126b14906d84cb1f86c7db95cb567d538cc
MD5 5acb7309823fd19adc8794827db7a31a
BLAKE2b-256 9ff0b81bb6322fa7789822ecdbc67263d9340a49b1368fc1de68042ece393fba

See more details on using hashes here.

Provenance

The following attestation bundles were made for openwraw-1.2.3-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.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for openwraw-1.2.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 71a1d7cccea5ebb3c4a72598c1074a20507ab2af965854db451696c6d21bcfed
MD5 742efddc9995d8be1c59b8f4d9f39a5b
BLAKE2b-256 476782cdd1efba8ebc5c5aaa401f5ecf4c5e82fa8f71bb49d38f53bea15eadf9

See more details on using hashes here.

Provenance

The following attestation bundles were made for openwraw-1.2.3-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.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for openwraw-1.2.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 44b066e5604ce6a591813654a1164fe9ac7f162710960b218997692eddda990d
MD5 a08afa7a972c91d71c113a4622a824e5
BLAKE2b-256 f4679111cbbe43ba4e6bff962debf00db77b28405b7ad3804de1f277e4e82fae

See more details on using hashes here.

Provenance

The following attestation bundles were made for openwraw-1.2.3-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.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for openwraw-1.2.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 05446ce29520503e4c71ae348b0baa80a5e7afdddae5e5e365f4ed3dc000965a
MD5 535ea42a183e250c1397623f1ffb400c
BLAKE2b-256 130046d884db8bd93a776865e1ea865b67fcfac0fbeb148d62c70d1846807b61

See more details on using hashes here.

Provenance

The following attestation bundles were made for openwraw-1.2.3-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.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for openwraw-1.2.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c5de3bc5b500418dd2cafaabb2ad0c44871139b9e46ed27cdd2f8fd31c57e732
MD5 85e444ad8433c63df5c57e412baa5ea5
BLAKE2b-256 5e88e157836336f73bfe6f47213f8a383c9177c235bd7eadbb04d65b19052c83

See more details on using hashes here.

Provenance

The following attestation bundles were made for openwraw-1.2.3-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

1.2.4

33 files

This release

1.2.3 This release

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