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.5.tar.gz (49.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.5-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.5-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (352.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

openwraw-1.2.5-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.5-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.5-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (353.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

openwraw-1.2.5-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (346.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.14Windows x86-64

openwraw-1.2.5-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.5-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.5-cp314-cp314-macosx_11_0_arm64.whl (314.5 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

openwraw-1.2.5-cp314-cp314-macosx_10_12_x86_64.whl (321.2 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13Windows x86-64

openwraw-1.2.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (353.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

openwraw-1.2.5-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.5-cp313-cp313-macosx_11_0_arm64.whl (313.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

openwraw-1.2.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (352.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

openwraw-1.2.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (346.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

openwraw-1.2.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (356.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

openwraw-1.2.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (349.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

openwraw-1.2.5-cp311-cp311-macosx_11_0_arm64.whl (317.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

openwraw-1.2.5-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.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (349.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

openwraw-1.2.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (359.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

openwraw-1.2.5-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.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (353.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

File details

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

File metadata

  • Download URL: openwraw-1.2.5.tar.gz
  • Upload date:
  • Size: 49.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.5.tar.gz
Algorithm Hash digest
SHA256 008eb897443e0986348c279ecec0c3b2fbdb7f72042265e302ebf17a85294fe9
MD5 b1dd27050f7376601e6a2c7a636d8703
BLAKE2b-256 8bbd52fb200fce40990571b240d553a928efa3dedb7f160e2d975f05b7b5089d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openwraw-1.2.5-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ddd34b0fdc9df557a0da7357b6b9116f4ed77cef51bb31f063d356e2713e2dc7
MD5 8ec71539d39e8175dcc7b2e3f2801f98
BLAKE2b-256 a5d7b806f703824e05af0856c814ae7b0352fe254642e0a29597c77e8aa64db3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openwraw-1.2.5-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4ab0556c02243c33dd9f68fa75a2e25f2041e287b49de3fa30fe42276a5ce8a4
MD5 5541a47af231fdde8856ece27ad8ed44
BLAKE2b-256 7becf2e1446260fedaae12bc7488968f87b3e99377ca5e39c2f3366477a1eb40

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openwraw-1.2.5-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 67d8677f718a47578ab453b66ba942371889c95829044f4662cf33ee60cdce29
MD5 4fe23bd70aa30a469345d325128b21c5
BLAKE2b-256 6a92d10255d69a12a647372cfa869efcab4d9fdda03a0dc1dd254dcbce1b00e5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openwraw-1.2.5-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f96371da2b4bd3c2b72b168eccd37e8446c4f52e395178f125e88a75fa8ef3e3
MD5 4d12c4dd3eea5f128f3e00d64405a925
BLAKE2b-256 5e3120407cdf0b0e1031ce49f68d63cf534af12bb1058455523e52ad724ea1a5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openwraw-1.2.5-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4b5bfb4e5bd11373aea5571682d99a2967bec1df5f0cb13d823e3dcfe8dad7e2
MD5 92cb2c2d9b0c892b8f38a5e49de40dc1
BLAKE2b-256 01bee18723b85c6074e1bc2af77887682246edc99a5593cfec322db1f9010e98

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openwraw-1.2.5-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3ad78392e4077181d7839d9e3be157b239386e7ba6bf2251749ee77376194caf
MD5 8d0b8d696e6c6bf7b182c31e28adaebf
BLAKE2b-256 ccdb349827bf1d1a3fa7f4ce862bf158a2552e50761a042c871a6857fceb3a1a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: openwraw-1.2.5-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.5-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 ac93c1dfa8a4d3f27cee28b3014300b8c71b74e0799aa21e817194a560855b38
MD5 1714a06646f42399c8f3b352204feba8
BLAKE2b-256 7df8c18efa0d95ea8b14141ae8d3c561aeee5e4237d3a556d8a6a3d258bdfb22

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openwraw-1.2.5-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 48599ba48dbfa40e8f8df6b35f071d008ada621d98a0b6a7d4813e3b6c6881d2
MD5 f343773512eec4539ffe13a2d91d41bb
BLAKE2b-256 0159df2f7e8a39080d04f864e4e1f7c1bb06beb5f92fd847edb12b1aa4e40f75

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openwraw-1.2.5-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 81bfbf6b89ddba1d7a64c69f9b2cd5f2df57917a62a87dd2442d9fc6ff6587b0
MD5 edf82e5dcf74f9f83d0d8f8c9444a8f7
BLAKE2b-256 43617ba43eee3dca1c0288db6e01894ba02e266689758eaa4cbf0aeda1be29bd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openwraw-1.2.5-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 64e71f2cca3a961efec149a808599432420f50f29f7f6726902039046d722aae
MD5 5d46ec83e6650fa36430d874a6073a94
BLAKE2b-256 f39286c0f2d535827074fe4d571cc27b9c357fe0cfe61d471ba885dec277495a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openwraw-1.2.5-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5a49564b743ad921c75a96a6a3e218bdb1a26207177c9c662c2959f9a04c5dfd
MD5 14781a48bba8d6879f552e20757e0746
BLAKE2b-256 008cc5b302708b4dd7d861fde7bd21f4f79a24f33c6903dfeee22f731cd2fa56

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: openwraw-1.2.5-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.5-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 ee9caa804d27bba68708ddad9abd2c646e3adf9c81b5bcd7f973866e8347439c
MD5 df6eba4ae2e671e1abe3ff41d4530680
BLAKE2b-256 545dc4673cbac326b767e4f9f76086ef47b9f0b2b604f01575437a4408b10f8c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openwraw-1.2.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5def85a433aa8cb6088a1ae138d7f3c8bec843b498684930be2de8baab139c85
MD5 2a0f2782968c4d9eb0192cd0e9f45ab0
BLAKE2b-256 4674aadb2bd1154335c4f6c2c737a7ea423c39817539f990af1444c468db9689

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openwraw-1.2.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f147376d0508b8f84da98f2a7443e2c3522df6d84605b76a96ec5c96a2da73a5
MD5 6d7fc3ce64cf42fc7260cd4384e1a1c2
BLAKE2b-256 abb304aa7af907eb08644d822ec87424b6050091debe3c9eccd2d388d5a0fd33

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openwraw-1.2.5-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 17435a7b67f386d593a8663ea72c49e56e5eace6f229a07d15221e7ae286a27e
MD5 3c5ac01ef320ad62218a202b2ecaa131
BLAKE2b-256 6687a898719f8cfd0ff33c2b321d20f9114c6a2ac55015cba7bfd6be185c27ed

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openwraw-1.2.5-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5ceedb60d3ec4ecd48f99d5bb34714044a8ff7cb5498a635f0d7636c2a152e93
MD5 634912cbdb57592b8c7d67695ebbcea5
BLAKE2b-256 000ca1cfe642b825d539392f6e78b05d3558dd9eee4b9d258cb624a6dfe1e558

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: openwraw-1.2.5-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.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 88db56959679512ed14bf441116168f3d83904125a2cff6fb0589fa56ae4f47d
MD5 1917352fda6b7e8cdb6c01a9d92a5956
BLAKE2b-256 f60894ab60ab1ab8f95718be9cec3d4bf15794379a927c25447d09f67b237aec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openwraw-1.2.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9566b22b5f543f92438751d28ae4de69747ab7dceaf04838747f0650212f7851
MD5 923adedc7857b53e4064a8c34ef6697b
BLAKE2b-256 243b934bed9cb33bf160b7d68d7462fd7468642aaecdb617cc2d0307e159540a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openwraw-1.2.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 89727d34ce1f45b6128d56af298f407ba303ec3a1215d01ce73d4b2a938bc4bf
MD5 ae5753dec7ed802750159ca3d87c22ea
BLAKE2b-256 5ff3fa505d519cac0bfe4801c6471f79f2b227c50c59cc381f55181e9f1b25d7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openwraw-1.2.5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f4200b7f375a15f1fcf1665396f23c77896789bfd922249f94f76ede18bcc209
MD5 c258ae635dfe1adae397eb0d306a6bc7
BLAKE2b-256 fff245aa7fe8f0dd2791a5c8ba190001c0dd44043ca67006e5b54afa347832dc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openwraw-1.2.5-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 cc01947753c6ec86fc8ba4200bbaf2ac21f5178c74253ab96de61c2d43ffb156
MD5 6c74c3fe01b915e6f599a447c5ffd869
BLAKE2b-256 9eb515f8dbca83d059823aa87681cce46b2c00489e2c59168eb40dd5fb7ee18e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: openwraw-1.2.5-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.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 10d45c3ad228c2da030edd1b31c1002ff123fb41355276d06cad89e1ab33f697
MD5 f72f5c1d4a917aea5bb9db54de8024eb
BLAKE2b-256 1778bc135138b4cbe993c11992ef73cfe1920adca161a40cee64d6e07871f8fe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openwraw-1.2.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ac02a2149147a8e218a2a246b54221d6b234b61e54b9106726227cc42e16e59c
MD5 33820b287ee2adae25ea4b2fa4f79fe7
BLAKE2b-256 7bfe45429597d0588105ede265667044cee73acb99ab96a8913e5c63dacef6e6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openwraw-1.2.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7cf875df11840ad2a074e0b52282a638f696ed2aa29467f5c45193542cc51382
MD5 ca88a33f489d2fe4d79eaa6d8c5ce205
BLAKE2b-256 02477a4413bbb80d55d0fac77e74d6eefc7b15a829323f5a4f56bb3eba80a2e7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openwraw-1.2.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 41c430e28b7026db9f8760434ac266a7f668c73c1c676433b8f33bc8a52f41b6
MD5 bb2112eb56310d9ca56e18b03c565bbb
BLAKE2b-256 bc8adc403aeaccd35e40412f88aac6c6b602af9e2b7fb74985147c1525e13b82

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openwraw-1.2.5-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f30fce35460be06bd6963b05b50d6df5d922fc33f013559cc56edddcb6ec2776
MD5 e531a00b809c597686511ebcd04f9d20
BLAKE2b-256 5b5dd991511f5bf807f518a2d651b62d186780ea77bccb12b762f22b4faffe8c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: openwraw-1.2.5-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.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 3da1ab8b6953a31e9906a6188b74816d593016bed9bc01a65c6536b225c0682a
MD5 01959e193c4115b7d28cff1c8226d101
BLAKE2b-256 bf98aeddf0f7abd5db762c957b9a749f7f0c0dd2b13ccf69649a686f09963c89

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openwraw-1.2.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e9e986e9ec2e9c392d4f309ff4fdc694fc99f6e759394940680aa51267f3f76b
MD5 1481287268b0dc20f8f8d3183aeb474d
BLAKE2b-256 49a652be4a1f0e90814495c3aeb041a3a50158f040c961f02fd49475b7c7e00f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openwraw-1.2.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c9c3d9ae929d3f0048d2b7faf2e76f65ab01848b4b5988e0229dabe423548ef7
MD5 a64dffa0dc19d7780b8e38b6717391df
BLAKE2b-256 1d3d09a58ec0ff02e83a656de380d9644884141796984de703d24267cf0ec9fb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openwraw-1.2.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fe01021cabcb0cbfa39ba5489e16453c97125991fc0ed1c43ddff63f04326c24
MD5 0440a3048ac1356ec76ba4e872356e4f
BLAKE2b-256 bb5572e5b05b07543f43d6608d427114ab6eeb891876849e9d54756466e9a3b5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openwraw-1.2.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8572928ea9b69834c0bb2f1d0b0409a3281052750771d51c59f54db798de9a66
MD5 6bc1fd5f81a3024a0fc7966c36227bd1
BLAKE2b-256 0e7f257f72b30f2aa078c0a07479ac20556edeeb816ea58e8f2e422073c8826c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openwraw-1.2.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 95b344488984a26a7f1bc703c2129b75a22b3641594bf90492dac9c852d82479
MD5 f7950dd4873693c0fd117a7233f6d754
BLAKE2b-256 537368f851cbd8314a6aff74e56eb6894ba51c126cdcfed5810a93952d0aca96

See more details on using hashes here.

Provenance

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

This release

1.2.5 This release

33 files

1.2.4

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