Skip to main content

A fast Python library for reading and writing XML files, powered by Rust.

Project description

rxml

PyPI version Python versions License: MIT

A fast, lightweight Python library for reading and writing XML files, powered by Rust.

rxml provides up to 2× faster XML parsing compared to Python's built-in xml.etree.ElementTree, with a simple and intuitive API.


Features

  • Fast - Rust-powered XML parsing, up to 2× faster than the standard library.
  • Simple API - Read, traverse, and write XML with minimal boilerplate.
  • Type-safe - Ships with a .pyi stub file for full editor autocompletion and type checking.
  • Cross-platform - Supports CPython and PyPy on Windows, macOS, and Linux.

Installation

pip install rxml

Quick Start

Reading XML

Given an XML file note.xml:

<?xml version="1.0" encoding="UTF-8"?>
<note example_attr="example value">
    <to>
        <name>Example Name</name>
    </to>
    <from>
        <name>Example Name</name>
    </from>
    <heading>An Example Heading</heading>
    <body>An Example Body!</body>
</note>

Parse it with rxml:

from rxml import read_file

root = read_file("note.xml", "note")

for child in root.children:
    print(child.name, child.text)

Writing XML

from rxml import Node, write_file

node = Node(
    name="greeting",
    attrs={"lang": "en"},
    text="Hello, World!",
)
write_file(node, "greeting.xml")

The Node Object

Every parsed element is represented as a Node:

class Node:
    name: str                # Tag name
    attrs: dict[str, str]    # Element attributes
    children: list[Node]     # Child nodes
    text: str                # Text content

Refer to the rxml.pyi stub file for the complete API surface, including read_string, write_string, and additional utilities.

Development

rxml is built with PyO3 and Maturin.

Prerequisites

  • Python 3.10+
  • Rust toolchain (stable)
  • Maturin (pip install maturin)

Building from Source

git clone https://github.com/nephi-dev/rxml.git
cd rxml
python -m venv .venv && source .venv/bin/activate
pip install maturin
maturin develop

Running Tests

cargo test

Contributing

Contributions are welcome! Please open an issue or submit a pull request on GitHub.

License

This project is licensed under the MIT License.

Support

If you find this project useful, consider supporting me:

Buy Me a Coffee

Project details


Download files

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

Source Distribution

rxml-2.4.1.tar.gz (13.8 kB view details)

Uploaded Source

Built Distributions

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

rxml-2.4.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (555.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

rxml-2.4.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl (587.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

rxml-2.4.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (623.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

rxml-2.4.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (521.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

rxml-2.4.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (349.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

rxml-2.4.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (369.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

rxml-2.4.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (489.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

rxml-2.4.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (348.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

rxml-2.4.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (345.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

rxml-2.4.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (373.5 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

rxml-2.4.1-cp314-cp314t-musllinux_1_2_x86_64.whl (550.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

rxml-2.4.1-cp314-cp314t-musllinux_1_2_i686.whl (581.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

rxml-2.4.1-cp314-cp314t-musllinux_1_2_armv7l.whl (619.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

rxml-2.4.1-cp314-cp314t-musllinux_1_2_aarch64.whl (515.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

rxml-2.4.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (365.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

rxml-2.4.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (478.4 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

rxml-2.4.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (345.1 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

rxml-2.4.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (339.4 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

rxml-2.4.1-cp314-cp314-win_amd64.whl (198.3 kB view details)

Uploaded CPython 3.14Windows x86-64

rxml-2.4.1-cp314-cp314-win32.whl (186.9 kB view details)

Uploaded CPython 3.14Windows x86

rxml-2.4.1-cp314-cp314-musllinux_1_2_x86_64.whl (550.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

rxml-2.4.1-cp314-cp314-musllinux_1_2_i686.whl (580.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

rxml-2.4.1-cp314-cp314-musllinux_1_2_armv7l.whl (620.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

rxml-2.4.1-cp314-cp314-musllinux_1_2_aarch64.whl (516.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

rxml-2.4.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (345.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

rxml-2.4.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (366.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

rxml-2.4.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (483.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

rxml-2.4.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (346.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

rxml-2.4.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (340.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

rxml-2.4.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (366.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

rxml-2.4.1-cp314-cp314-macosx_11_0_arm64.whl (308.0 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

rxml-2.4.1-cp314-cp314-macosx_10_12_x86_64.whl (314.7 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

rxml-2.4.1-cp313-cp313t-musllinux_1_2_x86_64.whl (549.0 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

rxml-2.4.1-cp313-cp313t-musllinux_1_2_i686.whl (581.8 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

rxml-2.4.1-cp313-cp313t-musllinux_1_2_armv7l.whl (617.4 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

rxml-2.4.1-cp313-cp313t-musllinux_1_2_aarch64.whl (517.4 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

rxml-2.4.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (365.6 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

rxml-2.4.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (478.5 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

rxml-2.4.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (342.8 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

rxml-2.4.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (340.9 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

rxml-2.4.1-cp313-cp313-win_amd64.whl (198.8 kB view details)

Uploaded CPython 3.13Windows x86-64

rxml-2.4.1-cp313-cp313-musllinux_1_2_x86_64.whl (550.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

rxml-2.4.1-cp313-cp313-musllinux_1_2_i686.whl (581.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

rxml-2.4.1-cp313-cp313-musllinux_1_2_armv7l.whl (618.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

rxml-2.4.1-cp313-cp313-musllinux_1_2_aarch64.whl (516.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

rxml-2.4.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (345.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

rxml-2.4.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (366.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

rxml-2.4.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (483.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

rxml-2.4.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (344.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

rxml-2.4.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (340.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

rxml-2.4.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (366.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

rxml-2.4.1-cp313-cp313-macosx_11_0_arm64.whl (307.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

rxml-2.4.1-cp313-cp313-macosx_10_12_x86_64.whl (313.9 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

rxml-2.4.1-cp312-cp312-win_amd64.whl (198.9 kB view details)

Uploaded CPython 3.12Windows x86-64

rxml-2.4.1-cp312-cp312-musllinux_1_2_x86_64.whl (550.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

rxml-2.4.1-cp312-cp312-musllinux_1_2_i686.whl (581.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

rxml-2.4.1-cp312-cp312-musllinux_1_2_armv7l.whl (619.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

rxml-2.4.1-cp312-cp312-musllinux_1_2_aarch64.whl (517.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

rxml-2.4.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (346.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

rxml-2.4.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (365.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

rxml-2.4.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (482.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

rxml-2.4.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (344.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

rxml-2.4.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (340.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

rxml-2.4.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (366.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

rxml-2.4.1-cp312-cp312-macosx_11_0_arm64.whl (307.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

rxml-2.4.1-cp312-cp312-macosx_10_12_x86_64.whl (314.2 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

rxml-2.4.1-cp311-cp311-win_amd64.whl (200.9 kB view details)

Uploaded CPython 3.11Windows x86-64

rxml-2.4.1-cp311-cp311-musllinux_1_2_x86_64.whl (553.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

rxml-2.4.1-cp311-cp311-musllinux_1_2_i686.whl (585.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

rxml-2.4.1-cp311-cp311-musllinux_1_2_armv7l.whl (622.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

rxml-2.4.1-cp311-cp311-musllinux_1_2_aarch64.whl (519.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

rxml-2.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (348.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

rxml-2.4.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (368.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

rxml-2.4.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (486.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

rxml-2.4.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (347.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

rxml-2.4.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (343.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

rxml-2.4.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (371.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

rxml-2.4.1-cp311-cp311-macosx_11_0_arm64.whl (309.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

rxml-2.4.1-cp311-cp311-macosx_10_12_x86_64.whl (316.5 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

rxml-2.4.1-cp310-cp310-win_amd64.whl (200.8 kB view details)

Uploaded CPython 3.10Windows x86-64

rxml-2.4.1-cp310-cp310-musllinux_1_2_x86_64.whl (553.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

rxml-2.4.1-cp310-cp310-musllinux_1_2_i686.whl (585.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

rxml-2.4.1-cp310-cp310-musllinux_1_2_armv7l.whl (622.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

rxml-2.4.1-cp310-cp310-musllinux_1_2_aarch64.whl (519.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

rxml-2.4.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (349.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

rxml-2.4.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (368.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

rxml-2.4.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (485.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

rxml-2.4.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (347.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

rxml-2.4.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (343.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

rxml-2.4.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (371.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

File details

Details for the file rxml-2.4.1.tar.gz.

File metadata

  • Download URL: rxml-2.4.1.tar.gz
  • Upload date:
  • Size: 13.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rxml-2.4.1.tar.gz
Algorithm Hash digest
SHA256 c51982e6542bf3c299ed27b9382536a93d33868e309fa9943c97e6276a53c300
MD5 cb498c5f314d16e2b607167f96a91941
BLAKE2b-256 f69d2437b586992b00c0aa3ace56364acd7aaee8a4f4696d7e1722bc2cd031d9

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.1.tar.gz:

Publisher: CI.yml on nephi-dev/rxml

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

File details

Details for the file rxml-2.4.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rxml-2.4.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0e880d4976e8a03bf4d18457babf5f731b8cce0b5433581ccc33dfa8a8eeb1a5
MD5 90bfcc08cb502bd9cc681f91c3c28bc9
BLAKE2b-256 652e8289d37a165be7eb8cb2dca192cf985dd83fef12d86650634f8ebc394244

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on nephi-dev/rxml

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

File details

Details for the file rxml-2.4.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rxml-2.4.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fbdcd8f1f2c1e5416e43a8913ead399be19e89fad78defcea08168329f3ef504
MD5 80e870edfc721dabcf1a2a7bfc3202c5
BLAKE2b-256 2ecc218f3b078c44a703f3954e5021c98c87a825fe90981c3350379a9ece0df5

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl:

Publisher: CI.yml on nephi-dev/rxml

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

File details

Details for the file rxml-2.4.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for rxml-2.4.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1b616fed132534bd5bc68d22b3fa2751dd8e6832f0751b7dbf127d0b0022f617
MD5 5d6438113eb1090c9edfaf27e8a03de9
BLAKE2b-256 94e87a98eb4eeb2f757d095fc43c04c5eb4b108c4eb766d5c65c3dbd91421447

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl:

Publisher: CI.yml on nephi-dev/rxml

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

File details

Details for the file rxml-2.4.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rxml-2.4.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 092ffcbb4bc8af5a46afd8e22737fe26121d8ce97d1d9d58a79f8c8406113013
MD5 b867d63fa9aa11d090a2852256499a61
BLAKE2b-256 7478e3e79118bd15321965bbe76d54f6d81e276e6e5fcd67ab857e5bdf9dd4ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on nephi-dev/rxml

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

File details

Details for the file rxml-2.4.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rxml-2.4.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9b668f2e7ae8d2ed1c4509f8edee0036dce54ad6bccd8c785f753a1196cb304b
MD5 98afd35036805c62c3be94fb678156e0
BLAKE2b-256 00d88c7f9a4588ecdae2eaa7549a1e45c8a0b9076a95c2b64b81956e1c460550

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on nephi-dev/rxml

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

File details

Details for the file rxml-2.4.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rxml-2.4.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e5a90ef4f4f70a8ab9b6a99f0ba51902c65e46978e51864a0d3f6bbec1da2926
MD5 b152935feacae0b7c25d9d4bfe6a25b2
BLAKE2b-256 8a4352e8baf9739388a10fc01732ff7b8abc90ec653bca1dec9b8bb407c51505

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: CI.yml on nephi-dev/rxml

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

File details

Details for the file rxml-2.4.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rxml-2.4.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 128c8b3a5a84befc191fef60d5ed746fd9745a83525b997fc1f7acc2aceee98b
MD5 c0f98dee675523c71758f87ccfb4f19e
BLAKE2b-256 6a3be7442f9c12d678927a449bbe3151e4e28c0e5ab730b23befb5ed4e9e0b3d

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: CI.yml on nephi-dev/rxml

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

File details

Details for the file rxml-2.4.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rxml-2.4.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 13a09ab05fc71149d8dd1ad9796d2cc9e642c0b4b1ecd121a0b9fb51cabb4eeb
MD5 6d119c5390f3111ac0f43398a1bd2bf2
BLAKE2b-256 5437a9dedad6840431b04ac9fc4a4ab5d8bc318e8db196117ef88c218d64e6db

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: CI.yml on nephi-dev/rxml

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

File details

Details for the file rxml-2.4.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rxml-2.4.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b389ce96d30ef56fa66986a7afb964f93488f062c072cc953c07b731253ad711
MD5 9d0bb3c778041731aa975194886c2867
BLAKE2b-256 2058b706da99e9e1f3f631fe0eced66c1418cd697e353d12e7f5a2f6f4c76cf9

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on nephi-dev/rxml

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

File details

Details for the file rxml-2.4.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rxml-2.4.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7a1f71871779b678ffbdb9aa0998b4f6f3076a61e913c6320d346c7f54b9cf66
MD5 517e98c50638c80ee2b3f076e548a10e
BLAKE2b-256 62d0926a587ab3f4a8a6c95a09523e3026e939b81cb2993b9c9997ed4a4f07e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: CI.yml on nephi-dev/rxml

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

File details

Details for the file rxml-2.4.1-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rxml-2.4.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 94f42e4e41e18ea5e293d888be398b15eb5c86559a17e1a45d9b974c3706845d
MD5 477032a6b5ae935ea3edee52f4eb8fe7
BLAKE2b-256 d6951831dd3e87b7d640766e4e2d86d72f707279bd84580daf00a96acb965153

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.1-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on nephi-dev/rxml

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

File details

Details for the file rxml-2.4.1-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rxml-2.4.1-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 61ceca651dca321d1d1e6d3cb6d4573a44016076a1bd0f9efac69effc0566bc0
MD5 ce4df3591486937eb84a671ed750497a
BLAKE2b-256 1352e45af5a360ab4005dfd21d3e79713ea05865ada65cca08deb019737094f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.1-cp314-cp314t-musllinux_1_2_i686.whl:

Publisher: CI.yml on nephi-dev/rxml

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

File details

Details for the file rxml-2.4.1-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for rxml-2.4.1-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 273ae3751804fee46b15095c26b4469d24bbba99be4145162f4ee72d25878069
MD5 742b763e8fc97e932a926fc0b3fafad6
BLAKE2b-256 0f4e22ed378d08ce8c519c9b464709ce5b1ec6c55812d875c2f00e289538a719

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.1-cp314-cp314t-musllinux_1_2_armv7l.whl:

Publisher: CI.yml on nephi-dev/rxml

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

File details

Details for the file rxml-2.4.1-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rxml-2.4.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 63c16032b09cd0706ff0da753fbd71582a70e46ba983b25fb8a606fe9221caba
MD5 698a2922df935c3670856c6ded94f723
BLAKE2b-256 521e226459567d5482eeadf475005d170a23e6e6679939fbc39d323aa75089ce

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.1-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on nephi-dev/rxml

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

File details

Details for the file rxml-2.4.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rxml-2.4.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 da8cde4c495e27144fb94b7101b669c83c17fec2b31d6dbb8f67a5a85d20cb32
MD5 b3540c8ca384e5ffb3dde0e496998d28
BLAKE2b-256 35ee69a4cea748ae56c0d1bac6da23c244a9eb6184a721de3ed652f033e31c31

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: CI.yml on nephi-dev/rxml

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

File details

Details for the file rxml-2.4.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rxml-2.4.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 572d514a9dbb40c052d43191c95a8e7a4ae2d29dde816480021413dd69cb2b32
MD5 022cd82cab37fb417de96c5bd7c0734f
BLAKE2b-256 e6d898f47edadc27d1a537c1d3ebaec15dd944a39a759ca07f8d9237db72e508

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: CI.yml on nephi-dev/rxml

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

File details

Details for the file rxml-2.4.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rxml-2.4.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7406e41f2d140ab0a1199c67e8dde06239a1cd89dccb47029ea1401f6d02e23b
MD5 564ada08855b5ad4f6e7dc77a31306cf
BLAKE2b-256 d941b8260ab0e082732c5c4090fc9cc650f0f197a522405a11d2498bdd879752

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: CI.yml on nephi-dev/rxml

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

File details

Details for the file rxml-2.4.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rxml-2.4.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 527d65b785b847f1196f4a1b7cd79847c99c2d30c00d09d89aa702c94b7ce28c
MD5 f223b4104aa4dfd4864fa6c191333342
BLAKE2b-256 94f04feb55102d07d0012777a973723c2f3f0a6b73ee3588102ac4d1443a6ef2

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on nephi-dev/rxml

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

File details

Details for the file rxml-2.4.1-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: rxml-2.4.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 198.3 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rxml-2.4.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 d6e996a4dbc4a4ec7460c49c893fe34482af6a322ffe622fb53459123b3644e7
MD5 389b54206752b7b719ae249717b93eef
BLAKE2b-256 95cf142dd5fb49e6262a2cb8fd0dd249f387461931db76a1687e04c4c897539f

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.1-cp314-cp314-win_amd64.whl:

Publisher: CI.yml on nephi-dev/rxml

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

File details

Details for the file rxml-2.4.1-cp314-cp314-win32.whl.

File metadata

  • Download URL: rxml-2.4.1-cp314-cp314-win32.whl
  • Upload date:
  • Size: 186.9 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rxml-2.4.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 19fa6ba668a99ffbcb959da61ee6b23500ef289f24bc7ea4bc7594473c872a08
MD5 7743b5f7bd7363e772d69d541fc81677
BLAKE2b-256 66757f85528650b9c38442904209e48be7a2c61b889bba6ad5d15de6d15fe055

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.1-cp314-cp314-win32.whl:

Publisher: CI.yml on nephi-dev/rxml

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

File details

Details for the file rxml-2.4.1-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rxml-2.4.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 52700fd443d65c7fea61db6aa6978ca6516dbd296040792cd6b55ac686404208
MD5 444abf726a915a522fe00d3062cb8c65
BLAKE2b-256 7650111f6f85a26ac4ac80c7ddfdadabb0f15e8d2c624d27163f0eccd410574a

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.1-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on nephi-dev/rxml

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

File details

Details for the file rxml-2.4.1-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

  • Download URL: rxml-2.4.1-cp314-cp314-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 580.9 kB
  • Tags: CPython 3.14, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rxml-2.4.1-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9fd6a95ca885e70d1e7efda18b47cb15451484df35edaf381812030baa3ab026
MD5 a0260d18cc745adcf245c3c496274822
BLAKE2b-256 6e75f9009d09a10ed97471567b5c74878b904c5cd3fdaeee404d37dd8ee81ec4

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.1-cp314-cp314-musllinux_1_2_i686.whl:

Publisher: CI.yml on nephi-dev/rxml

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

File details

Details for the file rxml-2.4.1-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for rxml-2.4.1-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 eecef7fddf1ca93d59f82cc351f0fce3684548a02ebca4d111aa3fcb7fc67767
MD5 6be41ff222bb1e156ff9b83f9290b072
BLAKE2b-256 71844ab66fe4b0f36ea64ae38a706c08ce9ddb766072eb2f745cceefd4e8926a

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.1-cp314-cp314-musllinux_1_2_armv7l.whl:

Publisher: CI.yml on nephi-dev/rxml

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

File details

Details for the file rxml-2.4.1-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rxml-2.4.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 151203ea6233bebc68da5bbf7b15ec287da80737751966782abbfc790a0ed3d7
MD5 0c860d04dc8004ab8ecdf07f7e5b4286
BLAKE2b-256 5a1cc09307a30d1d70a1c13371957e154d69e7484b2e7dbdb70a5f96055df010

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.1-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on nephi-dev/rxml

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

File details

Details for the file rxml-2.4.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rxml-2.4.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a6117f1adab476500a8ba15f7f29c5a55a56b7612d1cdd607ea061f2de2aa280
MD5 dd54761ea0d71e87911c2a2d2d1277fb
BLAKE2b-256 0cf3e1e7f2e200b013610ccff456ac7389c88ee7320538c5ef77f58c9573f295

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on nephi-dev/rxml

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

File details

Details for the file rxml-2.4.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rxml-2.4.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3c919e36007b2e8f27526be1ed1c4f46812ff037ca02b855414af7dbf8c83724
MD5 e3d9347dae4b155cc7ba4f73f763bd4d
BLAKE2b-256 42ae926fb429e104414c9f78304cbe892ac4db1b7823bd1e1117e9facf11f8ac

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: CI.yml on nephi-dev/rxml

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

File details

Details for the file rxml-2.4.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rxml-2.4.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e4bd1e20d450e34de106974f0875714982828c5880323ea5120f7855111a8454
MD5 502b1835ea6acf5b5b9f554320bc6be8
BLAKE2b-256 6a6e0d5a6713fb22abbc9797a40cd2e73ee20d95686a388ab752a17694484f2e

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: CI.yml on nephi-dev/rxml

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

File details

Details for the file rxml-2.4.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rxml-2.4.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 cbefdf579ec0bb14f3ab6f059dc6528a2022f1d0c880e1302e564f85bed911dc
MD5 33770a86345db52b0a461ddf5cb1d13e
BLAKE2b-256 8f3fa076e4dc5487e92b5915c0032f2e699c0fab3bbc3f9fcca3edd9188f5760

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: CI.yml on nephi-dev/rxml

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

File details

Details for the file rxml-2.4.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rxml-2.4.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 21900209cf24560adbb62c740c6b61773edd08d28ad9e6ef2c6b58de9271846f
MD5 c98308e1387c9ccd261409751e62cc2f
BLAKE2b-256 cd0bde265f10488dd4ae6834e6c962c4460acc29d1da251a3fca442fb49cde20

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on nephi-dev/rxml

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

File details

Details for the file rxml-2.4.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rxml-2.4.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 642cc114b5b0860e8c1ea7ae88b6ae7e040ff301036a7ba51385423ebc74102d
MD5 439f819a90d59d8d40f513d1d6ab725b
BLAKE2b-256 c047efbdb80cdbba46473180ffec428aebf0bef3b6f611a1eb3495d1d2786b8f

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: CI.yml on nephi-dev/rxml

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

File details

Details for the file rxml-2.4.1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rxml-2.4.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6fe86bb0ac0316c230dc7eac18f3eccfe07fcdc5802fe27d1f7f2bd8893362f1
MD5 0392def0d3d1998e49d8fd26a6527198
BLAKE2b-256 d948c8b11105e7161762cc8442506adecd40479720faf3bc8b58bdfb1d154454

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.1-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: CI.yml on nephi-dev/rxml

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

File details

Details for the file rxml-2.4.1-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rxml-2.4.1-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8c23e8fc1fc8571df5beaccd30c734437663864027fd64bb7748ffab66a0531f
MD5 6d2fcf24ec1a72888ad9fd1b430532e2
BLAKE2b-256 7fce2d112e803f6285a3ac6a2722a2e0eb0aacdeda73fd24d3a0aa5adec395ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.1-cp314-cp314-macosx_10_12_x86_64.whl:

Publisher: CI.yml on nephi-dev/rxml

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

File details

Details for the file rxml-2.4.1-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rxml-2.4.1-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5ccac9227104036027a7322c11e6fbc69121414883e098932f539b685c3804c5
MD5 01ef872c684599d80568fd855ffef668
BLAKE2b-256 ae111f19a1fc78daad0c031437ea7a89c3076ac46aeaea2fbf409980bdb22ba7

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.1-cp313-cp313t-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on nephi-dev/rxml

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

File details

Details for the file rxml-2.4.1-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rxml-2.4.1-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b907cdf29be86e8c31fdf2084ec865cd9177e4f8469921883bb45332c1a318e4
MD5 8f9d873abad0228271d81fcdf854327f
BLAKE2b-256 c997af4051b17b3d360d9532c4cab3091d5861ca80c4648620e09979193fff38

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.1-cp313-cp313t-musllinux_1_2_i686.whl:

Publisher: CI.yml on nephi-dev/rxml

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

File details

Details for the file rxml-2.4.1-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for rxml-2.4.1-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ffc1bb194312d716e2d223bcf093540648ed894e03bb74628b39a2977b35d02b
MD5 12b6149597a95967d85331f90d0f2e87
BLAKE2b-256 9c0c71a311310ef1da573e479e8c3d1c54e66ce604962d809dca5cbbe4bb6471

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.1-cp313-cp313t-musllinux_1_2_armv7l.whl:

Publisher: CI.yml on nephi-dev/rxml

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

File details

Details for the file rxml-2.4.1-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rxml-2.4.1-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4dcc3872c4cde8c8c4b69638bdf936e2e5e6b87cc5d1a4f17dd9f66df3775fd5
MD5 80ea9e77968959cd3d88789fe79bbc21
BLAKE2b-256 7fcc317defa56d126fdc14da489c6b4a4b71feae66e47675b8e900e23d7b543f

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.1-cp313-cp313t-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on nephi-dev/rxml

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

File details

Details for the file rxml-2.4.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rxml-2.4.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 92b9b51261598c05cb0710b7a7e17cc634fa58481b4648c14b657baf197f94d9
MD5 7de3657a8cef928a98e75938b6b3a48c
BLAKE2b-256 410245f0057ac18a1a516714d97e2e949417f863c0c74136806f36260b9336be

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: CI.yml on nephi-dev/rxml

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

File details

Details for the file rxml-2.4.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rxml-2.4.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3797f576b72655b8c83b23beb7f29354b4c73bf667a71e4de788c1d4bad48e89
MD5 a71b9d478748f646efd1f55088383692
BLAKE2b-256 548c3f65378aa5207bf36ced0a5ae33717663af73e1f3965c52ee931905cc9a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: CI.yml on nephi-dev/rxml

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

File details

Details for the file rxml-2.4.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rxml-2.4.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e34415c6f5bb635f79e81327835e661767293215b8513061840ea6ea582db3e3
MD5 beb67c8f41cf27aac020dc7b3fec56a7
BLAKE2b-256 9e3cb2f752297eaaa26848be4f2bbc4e8d00fef367466e19c5448601909ac1d9

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: CI.yml on nephi-dev/rxml

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

File details

Details for the file rxml-2.4.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rxml-2.4.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 94967ced41ed0599110097ae99e68c065736f8b2c2ebace22ffeba173e14467b
MD5 0aada178db1adb5115055946ad96f26e
BLAKE2b-256 a6eb25ceaff01a9ae0a026936cff9bd3160083d01a5fcef93ac6a565a360d893

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on nephi-dev/rxml

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

File details

Details for the file rxml-2.4.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: rxml-2.4.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 198.8 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rxml-2.4.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 026af416d209aae4f246b5cbbc66d0fd85a63db1c2b045ccde2480369ae37762
MD5 da15a4217adfff0e6195441e4a384e8b
BLAKE2b-256 d613386d7b45810dce3f0adf7ba0df98e3d9cbe27e26b7c20491a658c3b12c9d

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.1-cp313-cp313-win_amd64.whl:

Publisher: CI.yml on nephi-dev/rxml

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

File details

Details for the file rxml-2.4.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rxml-2.4.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 db2d0f9c9da6bec953eef296efa2c1b6d4302327ce3f132cf5f2b28496baa792
MD5 a09858833c632d878ea5df05bc1ce15a
BLAKE2b-256 f3850e5ebdb51bdb941cc35a19ca0eac84bc235dde8fecaada64dd8754bcbeed

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.1-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on nephi-dev/rxml

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

File details

Details for the file rxml-2.4.1-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

  • Download URL: rxml-2.4.1-cp313-cp313-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 581.1 kB
  • Tags: CPython 3.13, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rxml-2.4.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d4de1514c2568abdd1091202d4ec532d896939610227ef2785fb54d0f28f7042
MD5 9b9dc7797634ad6998ccf8fb8ba816d9
BLAKE2b-256 149cbff3e3ee183917159e52e8cbc55775e003d69ec907bb8bc778b1a872201a

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.1-cp313-cp313-musllinux_1_2_i686.whl:

Publisher: CI.yml on nephi-dev/rxml

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

File details

Details for the file rxml-2.4.1-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for rxml-2.4.1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c53257964871a9f72e86b5f1a44f64b35784ead57cfdc7b8ab843b1fcc093a02
MD5 71dd0475cdd0d15b04178e7dc0f28eec
BLAKE2b-256 e5d8ac6eba5b7b286a2a86c43f03b48dc0adfde06d12ab46e2e6836fa4b8d446

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.1-cp313-cp313-musllinux_1_2_armv7l.whl:

Publisher: CI.yml on nephi-dev/rxml

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

File details

Details for the file rxml-2.4.1-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rxml-2.4.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8fbff9bd532b4f4d5a4bf51b355c9e8a31f022e636509b3297ba0e30187204fa
MD5 c12c4818b4b629a83ace200b767c01a1
BLAKE2b-256 1e4ce40d99f460affd25f15f925b986da0ab743c2cf49cd8b64071fcedba71e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.1-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on nephi-dev/rxml

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

File details

Details for the file rxml-2.4.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rxml-2.4.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c282dcdd5996325c54b2c918035f789054a1f758cfc5430a21644830abf8fc65
MD5 23f568c0fdad1072c438d56c6076badc
BLAKE2b-256 e4c5c33a30100f5dece51902d12a0444d0d5a165826186d5ee08f1c6c5b2e043

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on nephi-dev/rxml

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

File details

Details for the file rxml-2.4.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rxml-2.4.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 dd3e5e97ab4c4fb2d1be71144ab23055cbd181bda32dd827742ded77718d1d13
MD5 fa267807a833054d5810429e1b517179
BLAKE2b-256 8dad50fabac97e81674df6bfd1388e7406092f2197ff7d043534868c96cafb82

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: CI.yml on nephi-dev/rxml

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

File details

Details for the file rxml-2.4.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rxml-2.4.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d5fb8e794f3dc7ab283fcf8dcbcc80add1967d0749869d2467609e2ca1571023
MD5 2fad3955f79a29650f56c6b4ad1e70db
BLAKE2b-256 cf2c6c96a6e71f89a1e869ceca026a92e606656d20b1176627e80eb9fbd18cca

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: CI.yml on nephi-dev/rxml

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

File details

Details for the file rxml-2.4.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rxml-2.4.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9ca0dbddae4aba0baac2187ff4b176895e4f1b459e2af1e3fc0c107c92ac6226
MD5 9a2ea5a092c5c4a18174da67a9764309
BLAKE2b-256 99bda70aca5a2340433bd60a75499459a117567d479c9f344125064b2a2a0c0c

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: CI.yml on nephi-dev/rxml

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

File details

Details for the file rxml-2.4.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rxml-2.4.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 22c7b6d5cf82a713fa39820c0a33b937ce011188c7b3b78105a724692e101094
MD5 35b3dcd8a7c8d30e71db67535b41a59b
BLAKE2b-256 3b07e2b5178c4658b7a680b8e47c20e0d077e98948cb61385a50f3c87fda67a4

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on nephi-dev/rxml

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

File details

Details for the file rxml-2.4.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rxml-2.4.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2436ed4495ad4004474de65eee69e0ca99172c3925bc187b1eb0654da78e413e
MD5 40d2d9495354ffe35f359085ab70e38f
BLAKE2b-256 149e8f6c242f741e2711b6ca0f56214c49140dcbe486924c95f6691384722bce

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: CI.yml on nephi-dev/rxml

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

File details

Details for the file rxml-2.4.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rxml-2.4.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 440a88568afcfb34cec2bb448313cf0876a6da69a45a43f07758c019102d66e4
MD5 b5ae36b862d250e607e347be321e5e04
BLAKE2b-256 bba231b793826908ac6f660b19829577a0d7e2705a07d996fc736418e04ed35b

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.1-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: CI.yml on nephi-dev/rxml

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

File details

Details for the file rxml-2.4.1-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rxml-2.4.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1dd97130759a73487bc2bfc9670e7d997eaef65c93cd446cc480ecf847e9eaae
MD5 00d899e2f928804edc502ac881c31fd3
BLAKE2b-256 b2f9e9aac68e696833998f322fa5401ecbba26dfdfc1f4adc65239d95b4abdc9

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.1-cp313-cp313-macosx_10_12_x86_64.whl:

Publisher: CI.yml on nephi-dev/rxml

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

File details

Details for the file rxml-2.4.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: rxml-2.4.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 198.9 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rxml-2.4.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ceadefc707b6404c39b1e203b8103b0a235efa6e6d655ef2eb5c24dc337800bb
MD5 5f62428eb271b3ef277a8a75f004a86b
BLAKE2b-256 20a7b2e039118eadde56445b204bcaac0c2939af6758c4a219e9da172800a3df

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.1-cp312-cp312-win_amd64.whl:

Publisher: CI.yml on nephi-dev/rxml

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

File details

Details for the file rxml-2.4.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rxml-2.4.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5843e99bcf320543095c781ebee22d344618f86c796e898437d2ad0ec27e6166
MD5 85ed1d06fccebc7ab898ad240a4db780
BLAKE2b-256 d4f236bb65d236c633f9ce4a7e8385c0becbcc52fa5fe3a88a228c2d475f98cc

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.1-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on nephi-dev/rxml

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

File details

Details for the file rxml-2.4.1-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

  • Download URL: rxml-2.4.1-cp312-cp312-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 581.2 kB
  • Tags: CPython 3.12, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rxml-2.4.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 20b05f2cff193475b8956e61655cb30bc4feb5e883c7f2e29e9a98051a33f155
MD5 ad0ccd3401b7b2942f7366f65e0f1678
BLAKE2b-256 fdc256987fba3c0a2416e82638987f9590358dc1dda3263a6e4035e2ab6c02fb

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.1-cp312-cp312-musllinux_1_2_i686.whl:

Publisher: CI.yml on nephi-dev/rxml

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

File details

Details for the file rxml-2.4.1-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for rxml-2.4.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3a2cdddcb1103bc5e2e134b1a7d72ddc9489e2af2634831c55c2b966bec84fa2
MD5 20d193d24e7e3b6b1704be1e645ca783
BLAKE2b-256 f36ea373c02c209db5557e45a8760ac64af8b0007c4e2d507a7f508accc6afe7

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.1-cp312-cp312-musllinux_1_2_armv7l.whl:

Publisher: CI.yml on nephi-dev/rxml

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

File details

Details for the file rxml-2.4.1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rxml-2.4.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 040314e81f6789eb039a81377618b2e1bc45646fd269394881cbb869c0cc41e3
MD5 401a5a9458f7eca234858ee06e7d2c64
BLAKE2b-256 c8d6754830288fa0e6ed7bc7f0defb9675d737a6901b46e192d3dcdbd35a7dfe

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.1-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on nephi-dev/rxml

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

File details

Details for the file rxml-2.4.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rxml-2.4.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f2c131f2a547bd58ffb4d14afcbac19e91dba6521b773b1cfa8662d2bfaef26c
MD5 770e0ea7bcbd64c6c4c7c6a63b619d82
BLAKE2b-256 fde31992658decd821939a4d22685f62d3e36ffa0802839edf031147e78f58ee

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on nephi-dev/rxml

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

File details

Details for the file rxml-2.4.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rxml-2.4.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 45a48d024270389cbf582054fc8b998c6ea14648c4c8c71ff42454b42d4586ee
MD5 f63e05b9d703c3e4195b5409b5cb8748
BLAKE2b-256 c66cef6e796a17c6e00ebfa7c5e3b727342cf89896ae2af19e097339e9dcb6c5

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: CI.yml on nephi-dev/rxml

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

File details

Details for the file rxml-2.4.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rxml-2.4.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a1d15a1895e359dcbd055ced3158d7c35c0bafee269c59c9d8954f79bfa6b108
MD5 c38a2b0e9445dd232b675642051939b4
BLAKE2b-256 c25505c458eef29785bb71b3c4ea3e75d8b737aba899a53957804646e5a7d750

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: CI.yml on nephi-dev/rxml

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

File details

Details for the file rxml-2.4.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rxml-2.4.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 35e5cbdb8dc01a4e5fbdd372575608afea8d7d4d89c6fdc2f0d1d7a5c4dd8c54
MD5 dbe76e2e6b2a3347729c59eb0eadf97c
BLAKE2b-256 f86ddfa350334a7002ce7874ebd306fcb9df14463f2f5f3f9aed06bf0eea9569

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: CI.yml on nephi-dev/rxml

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

File details

Details for the file rxml-2.4.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rxml-2.4.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 87d0331f2248585d9e14c2e3721fb4661a476baf2a8994ce2b66504e28ddbccd
MD5 7fcd30bf462dc12c30a149633863a316
BLAKE2b-256 e7bee6fcab740a537bdb04a768cd9af141bdc1a2f515a4a69a31a973e72d3402

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on nephi-dev/rxml

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

File details

Details for the file rxml-2.4.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rxml-2.4.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 16fe91f8342bdbec2e7cafe740e5a7025c029dcf4f1bdef03bdb5a080b1e5a7c
MD5 cdda5708253289a893f63e118abb4199
BLAKE2b-256 45744dcf62f7b9851caf14a9feda3ee9a18fa442cf1dde7d8d7c40e46c2ddaff

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: CI.yml on nephi-dev/rxml

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

File details

Details for the file rxml-2.4.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rxml-2.4.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0d325b905bd848fc83c4318d23be3ddd611d07a4ad6de549a99f52c7959e5867
MD5 de90bc0c3c27256de71323ec8587a827
BLAKE2b-256 6b056bf844d026bb40fadd2e2b8af6b695a06511924e92d130bc63dbd17b6dc7

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.1-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: CI.yml on nephi-dev/rxml

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

File details

Details for the file rxml-2.4.1-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rxml-2.4.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4b4a85e9eb0cabaffe2b04360264ac4c4b2cf6e004fb84b3b16767e34db4c4da
MD5 4a4a86cdf951919c892c604e928fc197
BLAKE2b-256 819018caf3c941be534e4ddaf4d44db07a8db67e178685e776c7b75dbf53f593

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.1-cp312-cp312-macosx_10_12_x86_64.whl:

Publisher: CI.yml on nephi-dev/rxml

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

File details

Details for the file rxml-2.4.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: rxml-2.4.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 200.9 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rxml-2.4.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 385fe98875955cfd86d99ae914cf32e0994e7d3a67d2457e0e5a0917980187e1
MD5 3694d91ba875487c2c981be0450fa9f5
BLAKE2b-256 400d9192eac680d67c27f08b46bdb3c6d917a2449c564df22d141f50e95f56eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.1-cp311-cp311-win_amd64.whl:

Publisher: CI.yml on nephi-dev/rxml

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

File details

Details for the file rxml-2.4.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rxml-2.4.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 498068528b2d8e05c348d4d3e4468a8a065d28c1e54ac905cae8aa344e88e956
MD5 d8f2ea151fe4b117c03ccd0de351c508
BLAKE2b-256 13de723c270237730b419e393b9291e4d86c37b6053341b55930ecb245f969ed

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.1-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on nephi-dev/rxml

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

File details

Details for the file rxml-2.4.1-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

  • Download URL: rxml-2.4.1-cp311-cp311-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 585.6 kB
  • Tags: CPython 3.11, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rxml-2.4.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a9c1e159183379560fe690efd138935a0e2e5d400c88294ab5526b35c8921aec
MD5 2cf9bddd8bdf0e6a6912b19dbf39e2cf
BLAKE2b-256 f175d838379e6588b16c183df83a7b85794fff70a33a83be992eb33065d8b5c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.1-cp311-cp311-musllinux_1_2_i686.whl:

Publisher: CI.yml on nephi-dev/rxml

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

File details

Details for the file rxml-2.4.1-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for rxml-2.4.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 948c3db717ff06256e308dd20493f5657fcd047c49082c07fd8009e60b495f5f
MD5 6034a6b1db32477f46b9e9f1e378be36
BLAKE2b-256 9e33d6bfe15ff99e16ae11763bdacb8dad8c4b1ae59bf3f48a6e58c0a981ec76

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.1-cp311-cp311-musllinux_1_2_armv7l.whl:

Publisher: CI.yml on nephi-dev/rxml

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

File details

Details for the file rxml-2.4.1-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rxml-2.4.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 71c57dfcc225c72f51cb31a627685490c8656b8b24a7c09957b6d61964b61dd9
MD5 ace13d747f0e95e6e54ba6810998f047
BLAKE2b-256 ffa1ce46a04cb9402e35a975376f6b0f7770b0b14d1ae77f6a178bef84a73d35

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.1-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on nephi-dev/rxml

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

File details

Details for the file rxml-2.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rxml-2.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b0b5fa41580e74d4f85fa842cd3469c38a1894cc47740ac1cc09bc7f26388e7f
MD5 473dc58dc6ca38a23004c1d297e79ce0
BLAKE2b-256 fda4c193140c8177333c57403de34f2b038154153d215408341360bf8611198a

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on nephi-dev/rxml

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

File details

Details for the file rxml-2.4.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rxml-2.4.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3b7736bd3de53b582edabaf0048f03272a597e2bb6d8813fae26bd61e8f902cc
MD5 8ff35a7bdee31d165cfc86d3713c50df
BLAKE2b-256 a3ca1858848da246de230363c7db7ff81d8432ecab82d4c9c166b46c4a50bedb

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: CI.yml on nephi-dev/rxml

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

File details

Details for the file rxml-2.4.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rxml-2.4.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 50316cd539830a8b858b8663b4eb6f678243df806d84e267d20c628af2ffb156
MD5 4319100d08f2df14c872e14549f048b8
BLAKE2b-256 af61f10e8e349c0ef853dd83826d10556a296c621d51e7110bd3612f1c2ca345

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: CI.yml on nephi-dev/rxml

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

File details

Details for the file rxml-2.4.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rxml-2.4.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 70bd1943aeb1b3dd0969addb49a75c37bc6dcb15f19b7dc06d2324f11aae6692
MD5 01c70e26a6b67d6b31c312f66790b9e2
BLAKE2b-256 fb0540271a5e6a858f03095aa2cde5a9c1dfc26e03694fe0b963a633e9e44a10

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: CI.yml on nephi-dev/rxml

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

File details

Details for the file rxml-2.4.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rxml-2.4.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 142308007da6f227f899bb03c1e5df541986657917eafd9558d6e3f85df28636
MD5 f10f27246a33e54d0a96a4c5a064f69a
BLAKE2b-256 08e5633e8af21ea20d3a5757bf52b6416f98e654d8ddfe01cc535331a29ada16

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on nephi-dev/rxml

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

File details

Details for the file rxml-2.4.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rxml-2.4.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 741f4a81407bfb722d49e2254f6b9973f1d5f2defc05a99c0c56a114edc4bc0b
MD5 9b2ee533df3c806810517cc05a505d97
BLAKE2b-256 072ebdf7fdcde1a0c370a5d551e238976f23d8205855dfb86388ff9756911c10

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: CI.yml on nephi-dev/rxml

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

File details

Details for the file rxml-2.4.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rxml-2.4.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ae92c9f24249f0379756c2b250b0326bb45b78fd9f4640a80f97a9dc7a16f88f
MD5 1964eead1f83997fccdbc0c9a7f5f98b
BLAKE2b-256 461c62608bd06221d7b14a6abd23210dc40bb19606bee433fabd469c0949a800

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.1-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: CI.yml on nephi-dev/rxml

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

File details

Details for the file rxml-2.4.1-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rxml-2.4.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9ad3210d748eb7aecab10ed3611f54f1c8ca025d0b2d723e8b157edad061fa54
MD5 d066bef33cfadeb7a636c86dd8dda9cc
BLAKE2b-256 a4889ed8aa06ed1e13ba7b90789f8a43c2aa2571d84c9c711b3a9cfa55419b93

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.1-cp311-cp311-macosx_10_12_x86_64.whl:

Publisher: CI.yml on nephi-dev/rxml

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

File details

Details for the file rxml-2.4.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: rxml-2.4.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 200.8 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rxml-2.4.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a111c02abfcaf599762655ff514e519ae4d2be9a28c02fa65de442d72c93b006
MD5 1579f6e8f0256ed73524b0159de79fdb
BLAKE2b-256 26647d2ca34c8a3b36e274ea7b183f4ed49362d7040916e7e3220bde63df6a1e

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.1-cp310-cp310-win_amd64.whl:

Publisher: CI.yml on nephi-dev/rxml

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

File details

Details for the file rxml-2.4.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rxml-2.4.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c45f08ed5c5471de8b133780542cc4e6c5348b05a07594d239a47e6f1c8ebe0e
MD5 14a9268e8c7ab5b5b23dbb20d411acec
BLAKE2b-256 528f136d0b4e7df09a3c2109a35808963c1d48c1b6562edae5598475469e6139

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.1-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on nephi-dev/rxml

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

File details

Details for the file rxml-2.4.1-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

  • Download URL: rxml-2.4.1-cp310-cp310-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 585.4 kB
  • Tags: CPython 3.10, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rxml-2.4.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1fc634d3e9971760d5f148f0cf1159bf88e4580dc33650dcd11577f0f19c3df3
MD5 f2c4ec1c41b2772f4c8eaf279e5a2e70
BLAKE2b-256 9787bf4dbd05753d2b521566b6b6143c43dc185d9f63976171c03815e9066d12

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.1-cp310-cp310-musllinux_1_2_i686.whl:

Publisher: CI.yml on nephi-dev/rxml

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

File details

Details for the file rxml-2.4.1-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for rxml-2.4.1-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 dd8e392e3285a2c9e4a0a1b8b6ce4e819556aac9f42d3ea88d2ff01fc7a3476a
MD5 5b1d88d838d816d1729e0f5a00168a9d
BLAKE2b-256 94c37224653b5edcd88b74bc43541f6386bf711f76c91a305f357c941850fd6e

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.1-cp310-cp310-musllinux_1_2_armv7l.whl:

Publisher: CI.yml on nephi-dev/rxml

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

File details

Details for the file rxml-2.4.1-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rxml-2.4.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 94fbd4f3eebe70bd398e25c3c059f24935be0e0e4138b59a5d6dc310744ea595
MD5 9659d5ed281e35ad82e1ad6da75bd171
BLAKE2b-256 6671b025101b5fd5bcc9788ac357bdc75d8f1ced7ea31c5c11f589a027a0b056

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.1-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on nephi-dev/rxml

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

File details

Details for the file rxml-2.4.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rxml-2.4.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e907183571ff039bea56796a4e11c1e44c31930f35e8080affead67c832e4408
MD5 a995858e041855bafb045ae0c1b974b3
BLAKE2b-256 2a2c89dc584ce7602408db21f932103dbb7508b6cad454d07cfb1ae99f78e733

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on nephi-dev/rxml

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

File details

Details for the file rxml-2.4.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rxml-2.4.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 79b083e8a32c302af1a6a17f23a7f46ee3291363257c46dc66f5b6b43b30c536
MD5 1c6e80f060ca38f97451b752b08be3ea
BLAKE2b-256 a3f9e1e72e37d926050489ecc7f06c6774e70ba2ab2a2ec1bc1881acc0849b0c

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: CI.yml on nephi-dev/rxml

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

File details

Details for the file rxml-2.4.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rxml-2.4.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e64471a186dac07ed5f6979de092c76aa3032042f7072c30b48e07ab8261e2f8
MD5 ba21d1a14155deac23d91c95be6d9d7a
BLAKE2b-256 57e4dea34bb7a9b93c7bd4b03a1e80f3ddad132ff231b82a40be5505fb0d2d1f

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: CI.yml on nephi-dev/rxml

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

File details

Details for the file rxml-2.4.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rxml-2.4.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b2c74520e197e7e9d711938bf96c3fb453a393bb4238751ec62d97a88eaea729
MD5 544e831249ded64a065ef49a5031a865
BLAKE2b-256 77f662c4d3f8268329bf7c4a08472006a6238007be73b9df66c9fb562bc250f4

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: CI.yml on nephi-dev/rxml

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

File details

Details for the file rxml-2.4.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rxml-2.4.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5dc1dba7fba1f610afc946e5730b1d377a02a988b9c21fb492ae537c00c0182c
MD5 d498fa494abfa5086a1dc2a2f6de4001
BLAKE2b-256 7c7396e5738baf50f97c10472438fdd0a741e3fc90b266fcfcc0d6c00908a23d

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on nephi-dev/rxml

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

File details

Details for the file rxml-2.4.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rxml-2.4.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 dad0fca174c17ec3f630a1390b944cd2575e1fdddacf261f49ba0ef9562cb167
MD5 7c3ce9ccbcb4e0904c3f93bc563354f4
BLAKE2b-256 3c523f7c82635cc889447c049f63dd34888e2e63318a9c738343c9e9da8c9d2e

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: CI.yml on nephi-dev/rxml

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

Supported by

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