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.0.tar.gz (15.1 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.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (549.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

rxml-2.4.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl (582.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

rxml-2.4.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (619.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

rxml-2.4.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (514.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

rxml-2.4.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (343.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

rxml-2.4.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (361.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

rxml-2.4.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (478.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

rxml-2.4.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (344.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

rxml-2.4.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (339.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

rxml-2.4.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (368.1 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

rxml-2.4.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (550.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

rxml-2.4.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl (584.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

rxml-2.4.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (620.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

rxml-2.4.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (516.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

rxml-2.4.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (361.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

rxml-2.4.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (479.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

rxml-2.4.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (346.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

rxml-2.4.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (340.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

rxml-2.4.0-cp314-cp314t-musllinux_1_2_x86_64.whl (547.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

rxml-2.4.0-cp314-cp314t-musllinux_1_2_i686.whl (580.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

rxml-2.4.0-cp314-cp314t-musllinux_1_2_armv7l.whl (617.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

rxml-2.4.0-cp314-cp314t-musllinux_1_2_aarch64.whl (511.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

rxml-2.4.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (359.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

rxml-2.4.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (476.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

rxml-2.4.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (343.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

rxml-2.4.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (336.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

rxml-2.4.0-cp314-cp314-win_amd64.whl (200.2 kB view details)

Uploaded CPython 3.14Windows x86-64

rxml-2.4.0-cp314-cp314-win32.whl (187.1 kB view details)

Uploaded CPython 3.14Windows x86

rxml-2.4.0-cp314-cp314-musllinux_1_2_x86_64.whl (548.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

rxml-2.4.0-cp314-cp314-musllinux_1_2_i686.whl (581.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

rxml-2.4.0-cp314-cp314-musllinux_1_2_armv7l.whl (618.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

rxml-2.4.0-cp314-cp314-musllinux_1_2_aarch64.whl (513.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

rxml-2.4.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (344.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

rxml-2.4.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (360.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

rxml-2.4.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (476.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

rxml-2.4.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (343.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

rxml-2.4.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (338.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

rxml-2.4.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (366.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

rxml-2.4.0-cp314-cp314-macosx_11_0_arm64.whl (299.4 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

rxml-2.4.0-cp314-cp314-macosx_10_12_x86_64.whl (307.7 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

rxml-2.4.0-cp313-cp313t-musllinux_1_2_x86_64.whl (547.6 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

rxml-2.4.0-cp313-cp313t-musllinux_1_2_i686.whl (581.5 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

rxml-2.4.0-cp313-cp313t-musllinux_1_2_armv7l.whl (618.1 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

rxml-2.4.0-cp313-cp313t-musllinux_1_2_aarch64.whl (511.5 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

rxml-2.4.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (359.8 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

rxml-2.4.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (475.6 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

rxml-2.4.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (343.5 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

rxml-2.4.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (336.7 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

rxml-2.4.0-cp313-cp313-win_amd64.whl (199.2 kB view details)

Uploaded CPython 3.13Windows x86-64

rxml-2.4.0-cp313-cp313-musllinux_1_2_x86_64.whl (548.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

rxml-2.4.0-cp313-cp313-musllinux_1_2_i686.whl (580.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

rxml-2.4.0-cp313-cp313-musllinux_1_2_armv7l.whl (618.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

rxml-2.4.0-cp313-cp313-musllinux_1_2_aarch64.whl (512.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

rxml-2.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (343.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

rxml-2.4.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (360.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

rxml-2.4.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (477.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

rxml-2.4.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (343.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

rxml-2.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (337.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

rxml-2.4.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (365.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

rxml-2.4.0-cp313-cp313-macosx_11_0_arm64.whl (299.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

rxml-2.4.0-cp313-cp313-macosx_10_12_x86_64.whl (308.0 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

rxml-2.4.0-cp312-cp312-win_amd64.whl (200.0 kB view details)

Uploaded CPython 3.12Windows x86-64

rxml-2.4.0-cp312-cp312-musllinux_1_2_x86_64.whl (548.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

rxml-2.4.0-cp312-cp312-musllinux_1_2_i686.whl (580.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

rxml-2.4.0-cp312-cp312-musllinux_1_2_armv7l.whl (619.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

rxml-2.4.0-cp312-cp312-musllinux_1_2_aarch64.whl (512.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

rxml-2.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (343.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

rxml-2.4.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (360.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

rxml-2.4.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (477.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

rxml-2.4.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (344.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

rxml-2.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (337.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

rxml-2.4.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (366.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

rxml-2.4.0-cp312-cp312-macosx_11_0_arm64.whl (299.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

rxml-2.4.0-cp312-cp312-macosx_10_12_x86_64.whl (308.1 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

rxml-2.4.0-cp311-cp311-win_amd64.whl (200.3 kB view details)

Uploaded CPython 3.11Windows x86-64

rxml-2.4.0-cp311-cp311-musllinux_1_2_x86_64.whl (548.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

rxml-2.4.0-cp311-cp311-musllinux_1_2_i686.whl (581.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

rxml-2.4.0-cp311-cp311-musllinux_1_2_armv7l.whl (618.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

rxml-2.4.0-cp311-cp311-musllinux_1_2_aarch64.whl (512.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

rxml-2.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (343.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

rxml-2.4.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (358.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

rxml-2.4.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (475.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

rxml-2.4.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (344.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

rxml-2.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (337.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

rxml-2.4.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (367.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

rxml-2.4.0-cp311-cp311-macosx_11_0_arm64.whl (303.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

rxml-2.4.0-cp311-cp311-macosx_10_12_x86_64.whl (312.6 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

rxml-2.4.0-cp310-cp310-win_amd64.whl (200.2 kB view details)

Uploaded CPython 3.10Windows x86-64

rxml-2.4.0-cp310-cp310-musllinux_1_2_x86_64.whl (548.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

rxml-2.4.0-cp310-cp310-musllinux_1_2_i686.whl (582.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

rxml-2.4.0-cp310-cp310-musllinux_1_2_armv7l.whl (618.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

rxml-2.4.0-cp310-cp310-musllinux_1_2_aarch64.whl (512.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

rxml-2.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (343.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

rxml-2.4.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (358.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

rxml-2.4.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (476.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

rxml-2.4.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (343.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

rxml-2.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (338.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

rxml-2.4.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (367.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

File details

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

File metadata

  • Download URL: rxml-2.4.0.tar.gz
  • Upload date:
  • Size: 15.1 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.0.tar.gz
Algorithm Hash digest
SHA256 0ec079115cdea6b31efb26029b444ec166d0bf0a457d5d76854d90b93f0ae558
MD5 d0e00a576eed28e3283d2accc3653d30
BLAKE2b-256 b390ab41dd84d27dc276c711389abfb77028248d1daa4537f6ba7a8afed750aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.0.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.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rxml-2.4.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 66a4121ec4460565906d8c80994132ac8032cec5ee7a9b196898991401738100
MD5 6225a89d3a00f2564e7baf8cfe9e6986
BLAKE2b-256 cceb1555c00b6870246497cf8d5e2cce6e9026f05766b04eda0e3656d233723b

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.0-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.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rxml-2.4.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b1a2c02fc8eb06bc6970b5446e1f674e2618c3ab6767653d63e164831fcdc8e0
MD5 2fbcbc9ed991227ce5e0460b444f5d74
BLAKE2b-256 521e95050515ed241e91060e7efa8f231300dc9579bc1495c77f509cee71c01f

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.0-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.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for rxml-2.4.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8be534acfa035a6dd3ed81abb4bdd1e820b0882282b4b7dd326dc8f79c74d64c
MD5 702f375478786c1334d7f71b5ba3c20f
BLAKE2b-256 3fce5c456afb8bde016d58e2c3486a02969489ad4735fabbd1e38eca8cb2fd03

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.0-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.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rxml-2.4.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 89bf9fcb61f866167b055470216c1f5cf16e26ae91037582c61973555139b088
MD5 309b85765c8dfe9eafcef8ae71dedf8f
BLAKE2b-256 e7c477511f265a47803f8fc48dc5cbed31494520a6cd2c1eeaa4508979ec2e80

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rxml-2.4.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0cc9c9ec78ab55661b8174621c8c0d0980530dd065ff7daa46da1457a746b049
MD5 b6e0e2dd5badd95559ba67969d12ab23
BLAKE2b-256 4fbebf8d0dcfc1d11f398dadc940c903eaf4a713b81361166f5848e1f1913c94

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.0-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.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rxml-2.4.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9050497bee3155d3a5b833a029eaa09a77f5897a317fdfd1c57d2604fb71fd23
MD5 a1f62d2c2a0d87e1461a1d4320338320
BLAKE2b-256 ae98bbc091b25ea846643d864cc65c2c27ddae26a0689a3cd9d812b075649ca9

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.0-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.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rxml-2.4.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 414db33c20f88b34c6fac2c33f08c1c1daf102095e65e69e397ab82b7b5bdfa3
MD5 38e97039e3a22048aa157534ccde9237
BLAKE2b-256 cb83441bc9dc5f947001b14805e833c0c150f573d3544cd746711fd8435dd7a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.0-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.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rxml-2.4.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a0bd435da56ad1fa8699b25885d4128a07e3474bf352a502306ec9384041398c
MD5 b659132914d119fb59e7b4867c587eab
BLAKE2b-256 b88ed1eab26a6225974bca9873cd778016981afd93170a461a2194432926346b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rxml-2.4.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a7319e6887db816ee56551aabcc5da4721509e6ed82b313db1c4dab3c4a591cf
MD5 c23479a3f6edbab4629d5d736ddbb81b
BLAKE2b-256 a6194d24337ab240f0a8772c88da3c53d731f1849103295aad63cf7e561e7eda

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.0-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.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rxml-2.4.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e74e73b5bbe1941957d3f989e102d45170a807648e35d89fab5212b3ecc1cb58
MD5 3e118d6e10d0d2ec3ab551adc8790fe4
BLAKE2b-256 8f6b613a00a51c7381358605564151a2675d21650d6306f0b4eec081f3afd973

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.0-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.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rxml-2.4.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2800bdbd1618749a0aaeda971671799789690d8520088d6b775855c93f425e6e
MD5 74eedc358d8dbe642307c74d4d6807df
BLAKE2b-256 3b6351f08dc6ac040d094793232e9ab15b94a3deeb7d36b1ac9e254c319d95d3

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.0-pp310-pypy310_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.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rxml-2.4.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ed389ca2dff170604421b981d0b4f25a5a80ec7da76681a4fe36e40d0fbfe195
MD5 4ff0241ded0c52f12acf5f0ba54ff2c3
BLAKE2b-256 a5e22ace6928d7992cd9478f563a61a5246e9dbc26641d1ce43d13880e4151de

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.0-pp310-pypy310_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.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for rxml-2.4.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7fa08a9c7d002d584319c4a3ad35885d6d53f4fa8293581bcb0038159754d538
MD5 8c688a8a80f11643194911bcc2252811
BLAKE2b-256 8f7dfcb4430513a6077b4d8f2dd38862a1c1515ebb02bf8b7ca7cc75ef25f8db

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.0-pp310-pypy310_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.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rxml-2.4.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 47f89804e31096682e77c4ad7febfc92a31b47a43544b79f85a84b663c17f887
MD5 481ac2442a26d1b92ca950bba808bfb3
BLAKE2b-256 15f11538805e67ffe479ba944795e801592465083ca1e584f26e172c9e99e704

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.0-pp310-pypy310_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.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rxml-2.4.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9393a46c2e2d98ff79142ec0abe2bb7bf037f9bc980de36f357082ec0b70f80d
MD5 e70c18fd298cb2730896302c75e8bc99
BLAKE2b-256 ab986c192389f54d4242826a1e0987d1de44f3ea9506c6e28ad53a42100ba100

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.0-pp310-pypy310_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.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rxml-2.4.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6ffd606429c26a4910a91d7eac20178a898fca17f58b8088a640993804574375
MD5 c05f0fc202427681ca03a6c5d6c05ab3
BLAKE2b-256 6ac88ead6e605dad1d27b711f0e2fb8cf660922fc97df19e80420676b25a56ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.0-pp310-pypy310_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.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rxml-2.4.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9a314d0afb3d2b5468467e0eb05327b4e32d5d2de69edd1ba50aeb747f0774ed
MD5 ff34c0e5a310c94a4d30ffa2e392d2e7
BLAKE2b-256 2452a6fd0eb92df249c66cb0fe17c4a5df77d550aa98530eef37cd1cf84ef7ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.0-pp310-pypy310_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.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rxml-2.4.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 354616f93ff4c27960df02888b6439390f51e4e853ca1e04bb9676b95e3d9263
MD5 7d75ac7c221d54433cd6199637a7b39b
BLAKE2b-256 aabfa71ab4999f7fb1685ecb3f2f70590f6d16c6faff87a8115094aa8d35364e

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.0-pp310-pypy310_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.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rxml-2.4.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 91ee323f9fd419428957ce3cf49df36cfa9147ca11a0352b5fcb7650ac762e47
MD5 2b6c0cec063f5ca61b7acd338b732832
BLAKE2b-256 adf0315cd7f1643e671ff593180c5aaae5f16c3c1ef17c8829fe5c29db311d28

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.0-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.0-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

  • Download URL: rxml-2.4.0-cp314-cp314t-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 580.5 kB
  • Tags: CPython 3.14t, 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.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f23f908537371e0b15d113a9dc6b2e896d727f6c195bd1d87aae54911745a333
MD5 f345fdfec8c6cf8198c0e20e4bb23a82
BLAKE2b-256 4c3730f464fa77b2053ee2381f1a123014ab8ff6cdd8855df86c3ae49877e4d2

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.0-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.0-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for rxml-2.4.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 fb530ecdcfeb1661ab7425a265fb189ab102364ca909365c4c596a9a7c6a7223
MD5 1bbaea279266a5e7c0003cd6f0c16867
BLAKE2b-256 619f5cbcdf39f2a49fcb24eb1c0b48282dfd2ed668491636125121129f2e3c28

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.0-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.0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rxml-2.4.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5615dd4ede807658ee78e20d9b8f03f9ee94327207796da9421a847d78ee1dc3
MD5 2155c53e6de2f48e967dbd8520713ef4
BLAKE2b-256 676ab6c734465b3bdf112641641ef571810dd1d3ab03d0ac39b1f1a994816668

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.0-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.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rxml-2.4.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8989de711c5ea47f81311e93b87297be250b372acad8a0354e6b26d884f69c6b
MD5 a66862fe0db4d7e901b7859f4b509575
BLAKE2b-256 7fbbfff2e6a0a866e898dbd3f0ea882abf1c1210fce08e5baf75c3bcc62233f6

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.0-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.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rxml-2.4.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b948900c2fcec971cdaa207cb4920d427122315c9bba30604530723c8eb842e1
MD5 aa28fc43292a3b98183a4d17fd8b298c
BLAKE2b-256 ada3d16a6880f23b5a92583a1240c1ea3066189d4ab4b7eb20ae380a9916b75e

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.0-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.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rxml-2.4.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a9fc21ac8ba341c56dc911f8cf830ccc7487ea3ecd273fb897d073eb7c2aa719
MD5 761e5019f67d13404c89080bebcf31bc
BLAKE2b-256 3db2f42b1bbf616c62d9a33f3ff20a12bbafdc9b2d4f3fc9962e0d834a27e4ff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rxml-2.4.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 64bf614078097339ad5749b10c07595cea451dfca1ace01a21589de3ec614aab
MD5 271ed558262119ac0291d316474b05cb
BLAKE2b-256 d96f363f74daf829f69c68d3798bf60bb69604819e12a35ee19b7dd9ea3a6b0d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rxml-2.4.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 200.2 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.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 37784fcd8cf93e154a46a427c4629111921f7c54e6f9a0d0ea785fef1fde1374
MD5 e6f0e9ce8d688a1652e72229f2871136
BLAKE2b-256 97e8545c645151816a80ff011a03ccea42ea8c3714352e9a792d07918be4d07c

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.0-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.0-cp314-cp314-win32.whl.

File metadata

  • Download URL: rxml-2.4.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 187.1 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.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 944d5e29b4e272702037a972d057d53ad67069e5e4e8744a4f806d85cb31f097
MD5 79a849dc4babc3a02532641c5cfa50ee
BLAKE2b-256 1bcba8d3b55f899500cae1d8304911f7f3077f5371d7e9d0e07b8b9518d70ba5

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.0-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.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rxml-2.4.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ab935f8f15ee50080086bfcbf95979b32994b6fe58aa1f800f45d585c11891ab
MD5 87add3c8a80e9dd6a4e9986069db5b7d
BLAKE2b-256 46d364dbffd2edb31b0d53161743b6a37dc5d0e7f0e7b8bd4a1f46b51e09b797

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.0-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.0-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

  • Download URL: rxml-2.4.0-cp314-cp314-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 581.1 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.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b008026cb82c774848e941cad8b3db4ee05d7ec7ae60f37600dc1e8e7ffa629f
MD5 99e60d165652262569fa3a170d6221ba
BLAKE2b-256 8a485363fd3092180380978967c97af59768724b43b34a675bf93e0d7b9df49b

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.0-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.0-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for rxml-2.4.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 52f9d83ec0fdc51e96f813886087c9742566d712961803d0363438fa504bfc1d
MD5 c7ee9902ccf1938a64563816f11fb8a1
BLAKE2b-256 dd46ff4eb1efdc3f35bd15c4548ad1424ce847465802eba3bf8fafdc5bd63bf5

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.0-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.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rxml-2.4.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 16ce115a416abb8527862c89bcd49e415cca6045f15bab3c605e9d9446a02a92
MD5 e6620ea2bed59ac92f212b03a05c44dd
BLAKE2b-256 8bea7dcd0ea5932faa8c970b1136ea208fec25dd7f2abcbdd60796b07d5780f4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rxml-2.4.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 215bb6cd3df11c1585920c23ddb846ca8f13e7c1d33231f913cc3d4b4e3192bc
MD5 37fdfa234db40a234eeceea17f002eb7
BLAKE2b-256 6a4b12aee39ae7851d5e3f8b4323a17d5ec090428fac1e116a19c16163f55bf3

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.0-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.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rxml-2.4.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 49a8f93e3688368483f073e1947081be4f469efa07af660c97b46798b1a28513
MD5 2ee5acdcf76ae678cbb1ba92b21aef07
BLAKE2b-256 8236c4481d8142d4f3d3d959014502a12fbc77e9ed5079f885009d6beb4db168

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.0-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.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rxml-2.4.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cf9d91f611a34dd978a410e2638d07c28e225686168df82183fee5c8cdc61710
MD5 5647cb81c0fa13a8f9bc33922535cb3b
BLAKE2b-256 9447b7389cf19e61b2cb1c2472dfcadf1ceb1245ab6fb9c2aea34252002c0c57

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.0-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.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rxml-2.4.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c5caa74611d355d79ede46b60a3293183740f9571fee7868512f867c0b0e0e90
MD5 002ef9ca5b062413ef3f46cca6d0a5ea
BLAKE2b-256 f8d48c4f8ccc6715c2980c3e74389f81db7fd70a7dc6f4a7086eda2d5b593daf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rxml-2.4.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8b215a02cb7f791fc3a83c6effba1a7ee2e8b100f7403fe6ab7c596c6f34906e
MD5 598276aa83ce229a2c6007d2c329f3eb
BLAKE2b-256 793a6fe5915e2e3003433e5b9563245046c165ad6b612a26c3a8aeb56be671c0

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.0-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.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rxml-2.4.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 441e81f26ef98ea22282dfce4cc603ea2eadc0f38280707cf4e81e1c54c7ab77
MD5 d8700a331c778c735e74c767c76105e5
BLAKE2b-256 edca51ccf62dc55bcd3e46f4853cadfdda8f84a847cd215c014d62cc04555904

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rxml-2.4.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e37d1ccdf807455abd43c290354631bede6e5519c118e4fcf02c9f4b9bd4bb40
MD5 6248bea3f87fb3ea540fa6def9bededd
BLAKE2b-256 f8847d8bea5d1483811134a660f08403b3878a6401493d0130d5e0cfae213b24

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rxml-2.4.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3f070477b6db42c8ed8d83ed688a26474fd387da2b5b1b241a0c574ca3cd25d2
MD5 9b824a85c914877cbd22559ea10d724e
BLAKE2b-256 5511d98451bdc7a57d8fd670a62676a24570cda8e09c6df83c76ee980b5282b8

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.0-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.0-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rxml-2.4.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b81c46465c7149a61232e77c0ddfa4208a5c6f6991c8da88e7db161bb8f84bda
MD5 8e499cc7849d5c611d3ebed63ceb0893
BLAKE2b-256 1632d8e1959ddd750fcf6fa2106123c1372ed255fcd14a7df79d8c3e5616c7e6

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.0-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.0-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

  • Download URL: rxml-2.4.0-cp313-cp313t-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 581.5 kB
  • Tags: CPython 3.13t, 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.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3ef54dd1da4a03747c56d759a61e617c63fdba52ad75e8ba048546b97a8c3292
MD5 6760555634cd5c866360b97a996c153d
BLAKE2b-256 4a0823d6329ad6fee9479e78a125fd69c7c5c5976b09d4330ef7d938aed0dbb2

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.0-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.0-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for rxml-2.4.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8b709914d8ca7a2a019d2a0767672c7b576139ce51c8f08de3f1cfc48f1cbeb1
MD5 281c83f770a724e0369c3385d4dc8341
BLAKE2b-256 f381163c6ca85e7524dfb64dc8c2fa17b98984e474f9bf251304b48bc4b30b37

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.0-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.0-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rxml-2.4.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8732ac1b3586098fcf998991d6b59fb3a8ea6d76516fb244908022a6a980d5de
MD5 acc3eb3595eed72dcdcd4b6036ec44e0
BLAKE2b-256 7b85fcb0ce77028023ce5c1bddd8d801e70df875284f7bce8c5085adf81ea019

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.0-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.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rxml-2.4.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a58df4f6085a15ff3426a55295a314430ef200d881e4ec934a3e67156d1750bf
MD5 cf00e3b1af4c0903a3d16e7aab2a0cc4
BLAKE2b-256 b1c93f688cc0de8c6d17347b225cd45769f052be8b74521842652a7e71ae3810

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.0-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.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rxml-2.4.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7c1ba5eea487b727a38442e09b84f278e0aa799f91bc4dabcf1d7b6345f2e9fa
MD5 9abff006899d3b652af9fcd53971a0a7
BLAKE2b-256 91ede30bffe10a718ae7c7dd4ca3179ccad7d78321dacc04bac619064c7269d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.0-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.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rxml-2.4.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ea970e7bd97f19a792330fde28e71cb0d42332be0328ea10c99e66946a87f818
MD5 752174c3f1aba00cb998bb1f22934a6c
BLAKE2b-256 c28ad37fd0e252437a82843d29adc9a5589563f020b718cad9fcf96ff6405a3e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rxml-2.4.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ce693a5cddb22eff7a41313e7f6835a6d34294798931e3ba3fe5bcf9f28d42c6
MD5 9b913115648844360d8124c3aba4aaba
BLAKE2b-256 9322ac2c6cfcd3d6939b9af87592af4c6edae1ffd0bb0bf029f52e70ad4f96e4

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rxml-2.4.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 199.2 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.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 506fd6de91ef1fb60878df1ef7ef615a44548b43db3be6f7e84383f71721d2bf
MD5 e29fad89a2758baa7a450fcaa72b01ea
BLAKE2b-256 4ea447bbabc9af32782368c51d4f112c98ae0f445c87f959c2731483af7a8ca6

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.0-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.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rxml-2.4.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0cdfec39e5b6a87047363e1a1c36be24eabe17e81b23b7473ae2f96a1bb87869
MD5 1d1b6edf152147a6d6847533d4abe3e1
BLAKE2b-256 47058b5986b61fe7b7664562d1e797542fdd01d834d058e32748031413585b0e

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.0-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.0-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

  • Download URL: rxml-2.4.0-cp313-cp313-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 580.4 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.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 823e9b2b54329487770d5e7b02843bba2c6c5a9776a09e01db533dfc9f2f221d
MD5 f9e94226ecfd534fa54904f800d621ac
BLAKE2b-256 bf80d6c6e019d3a8383fc0bce15c8ffb25a64588bf48353cdd8ab4db4f3e03e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.0-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.0-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for rxml-2.4.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 bf2d7111684f73cf0d4268eedac4464bbe055e5fd182c53a789b9a7bd47c27a7
MD5 eb10c9c19711fd1183b7a2e353c58a08
BLAKE2b-256 2f51e16aa5cee0bebe472cefa3c2a09541fa5d4a257b2f3a659fd10605e2057c

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.0-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.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rxml-2.4.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8c1678caf648db3a37fa8fc6dcb217f4ec642c77f42b9aa2facdd912eb30d86c
MD5 aa2e49f8543be7447b34b6674160f1d3
BLAKE2b-256 6b057acf50d76d003a28ede7b4d2e13aed31ab538a74b841e1cc54b6e7364cdf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rxml-2.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 30f58e8f37e8edb911a0d74b040b8337f13e35ed3130d0bd45949fce4b2b0542
MD5 bc5224143883168ae06170d8f66ebad7
BLAKE2b-256 6bad7e22dd2c3e999ea0a16c930b52028bd44bcd76368ccb12051796aa5fa113

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.0-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.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rxml-2.4.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 599ee7341e851b27c39a7918faf4be67e259527044f603707ab13a0077786363
MD5 871d5b6b26d4501c069abd51e0d5174a
BLAKE2b-256 af7e1dac12159f9a1b2fe6cc47d100bbf2521f6b2f8bbc1ba5a19c1b252c4c3f

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.0-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.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rxml-2.4.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b2cd086e25b61668b6e12437f72c398a95d58188066e00cfd85490ad5fa37fde
MD5 06bc4a1f2a43a71e94666f5f61fcb81b
BLAKE2b-256 9126858ea0b60ced5119a7662bd61cf23f209e151e4d59375d5651f614a05158

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.0-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.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rxml-2.4.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1ce658b6c8f24aec1306d90d5aba72c22d651abf034615df6f869711bde00554
MD5 87e9b7b50aacca4e6a7e7a4a92154837
BLAKE2b-256 84d2df83ba11de479647f1deda7fa1873c15e0f71c41e3f8690c0d252f36f1eb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rxml-2.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0fb2c5adbb2a0dd7fc3eafd605f34131e053c480faa09c7d03659ab43a7ebf96
MD5 29c0c5e3da79a8fcedf50a2cfda54dd1
BLAKE2b-256 1eeed8d35b0ca1fee4123d7b1da63878e6497ea206c4c4d2ee977971c23ddadf

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.0-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.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rxml-2.4.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a4efba990651cf71c3376360a80033e719ba66129bde394286d3a83cda682f69
MD5 042bd4fae53174a8a3481398c0f1391a
BLAKE2b-256 ca3c6de5f18c5c18af066600787cbc0e68f0eeec20aeb24b59d0b2df7bc79b38

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rxml-2.4.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 31f1c3d83becc04ae88120b99b34971d43ddd54755f2c371a745cf4db21d7f8d
MD5 af6a5c3e86453fdd784b7bb91efeaa94
BLAKE2b-256 a8f928cf89e1d106e22211d53885c0b3d2a196396da589601ac61db24a54da86

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rxml-2.4.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e8e204a3e41c7da02a1acae56004bd6c22c130b73c55034124509e8b2b73daae
MD5 c78fa8afb1d8ac2b363dac64d0c66608
BLAKE2b-256 73e9381a8180cc0aeafbb520cdfa98e4fd61d7ccd6b4156968898a321a9e9d3e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rxml-2.4.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 200.0 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.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b7fa8094cb1d2ff33df9343e87d3b3a142b05f4316fd4048c678102ffe7d8a4a
MD5 34ad1ad24608dc128a5d0928eff3063e
BLAKE2b-256 cf2b14886f091a4188f8f2b496a832dc841406f68e7baaf64bd01bb8297fd433

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.0-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.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rxml-2.4.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e472417ce8f7b26332016ec01437ed4149cce47d85a344e9b38b1dec486ace58
MD5 6a27d4860a15433d11dd100b6742b0ff
BLAKE2b-256 399ce8684a6bb4cca1da7ce862d42e9f6623c034feef608b3b2e39da9af12036

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.0-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.0-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

  • Download URL: rxml-2.4.0-cp312-cp312-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 580.8 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.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ab5dc29c3b0dc60a4d26aa7b320804411717af8d48a406c58c5a9298878bd107
MD5 0065c4aa0dbfccf410da1ed6c38e0883
BLAKE2b-256 ca1e3f1ac656dbe1275f8fd613827de56c5c0724da5fd9be61d5db31824cbb80

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.0-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.0-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for rxml-2.4.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5c5f08169e7eb6a158500b405254bb9009f6dff4ad2fe8274cdd8de94c4901f6
MD5 b6d783b82b600755c8299bad03393788
BLAKE2b-256 f9eb22b92b30e5acc7d37a97cf867def736c7419d3e18559abf402cd3b222918

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.0-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.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rxml-2.4.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bd948c09d448588ecf3c18a42d20f6330f28e3ab1b1badaaab1a0a460a10e932
MD5 89060a25e29e5cf8b5f794ee78a2d4b1
BLAKE2b-256 9ba12a1e47ebb814516a926e6bcb0d5988025bfe42e400de5e1c70d42b934c48

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rxml-2.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a8d80f4358af793970ce0731f1eeec236eeb7b9849dfeeee17c84a93d5bc82f5
MD5 6d2551ca6ab45fc078b5755dfe0d508c
BLAKE2b-256 50e1a13a8913a9ea2ae52f5eddad5f9cfcde705aa16376f05317a7edd795aaf0

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.0-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.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rxml-2.4.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 39b9af8af92728a9919dd185122c78a203dc9b7ff2e8b2fa3fce529e79ee2521
MD5 003b1f7697b29aa26e290b77c663d4e1
BLAKE2b-256 812b5853ae7b452af6a0e85877a06655fd0c776ac88256998de2281e707260b8

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.0-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.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rxml-2.4.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fdccac6ec1d1effaeb3a3ebf9b5994aa8c8d32c693148e430a6bddac506dbde9
MD5 034927e8a45581a07d19c43edd9e55d2
BLAKE2b-256 7be44c146aebe6751de50c39d10eee0acb30ffab68d7c7352e386e694bd277d7

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.0-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.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rxml-2.4.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d39de843c1b28ecd1fe4b1a49db43e7f07e24ea4d40b36dacddde8f73a95030f
MD5 6958eebce9f0dcdeef79c51f6d07da7d
BLAKE2b-256 aae222b9937448d3efb335edf969d1982ef59007c1ec9b5b867322e325a508ee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rxml-2.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 51da4db750788f84d9c97555779d74d48612eed8d00aeda54369a98c9836e445
MD5 a01c6faf7d69629e550cf61ce0b4f296
BLAKE2b-256 69c7e49096bb7dc90a4acb37ab7ecb1875f638e1fa25b2437c59245d1fa51367

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.0-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.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rxml-2.4.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0e7a7c9ca508d81289ad9700f80ef6c68c31d1022fad325afefb8bcd316e2377
MD5 a7048142479a6b18fa2e7e0f402fa35e
BLAKE2b-256 3d300e5bf9c8fa6580e3d6faf29f74986d7962fc4311f4ff11a88300934afdca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rxml-2.4.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1c26d8f27de89cbfd2b6ff7947b8220f5c6543c0cd58bd270475fcce908fc2af
MD5 dfdfae9381716fff998fb0fc7c311bdf
BLAKE2b-256 aaae5805e0765e3f13b0eab852f7f6efc14d82366f1498a24809929d954a9cb2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rxml-2.4.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e52a267c8183b5cb3bd8e38381bfdbc96b6e2e99db26e8e34d2bb6122ff8039d
MD5 f3a85592b495ee966a7dddb36db70a5c
BLAKE2b-256 1e8276d186e3df10acb0f79376d221c4f441c29526f9d53c0a65bcb64c2b3a2b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rxml-2.4.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 200.3 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.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b5daafe00c877cec431e55ebadced4f80c904c9c75714725a3acd5cbc5397bc0
MD5 fe5c5a6c70287e0cb7cc5f0a3f9a94e9
BLAKE2b-256 6c07cca7719d13ffceaefc38fb40e1d367eeeadd5954449c757e632431bd85d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.0-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.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rxml-2.4.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8ceff88bc2fdd4ba7e1912e301a14a85bd2b77375b36572dc11cb6cc8a1a9f0b
MD5 3a1ac8bc1da1cbd029c0f298e2964ff1
BLAKE2b-256 19d51830e6520910497e03038d4f1f29b6a8acd55adf5fd7a6476d3fb8f2e04f

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.0-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.0-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

  • Download URL: rxml-2.4.0-cp311-cp311-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 581.9 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.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c5c66fb57429d1d088f4892d785e49bb5e54bc41333d28ebd67b6d8866279339
MD5 26379f0e5304e44bfa75e7f987a284be
BLAKE2b-256 5a6ea968cee088bd034fd4c2cbe744a20550eb927fc89c0fc2bf5ceed0347cd8

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.0-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.0-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for rxml-2.4.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4142e898030a03eca0611492a883f6b60efb4599399a5634e364f6fa35c0a529
MD5 8a10a023e1016211f4aaf12cef453d0e
BLAKE2b-256 2bf60e321542c2d5d919e0a9a24371c9ab3a983bf65a4991d371f0c1ec76cb59

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.0-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.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rxml-2.4.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 98dc0d95c0a9dfbdf1ad02f1ebb2841615fbaa2beaa518041c2f882267d11d69
MD5 8ee6cb642af90f03e9665a39f2a9a895
BLAKE2b-256 146e73a78b29887e72707227ce391c380e7eb14ce578cabff6aabcdbb52e2270

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rxml-2.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4c640eff10def8da7f90e96503581e525d279bcd14ac877f9fa77157f6523413
MD5 b411f08fae9e9087ea1253051a2e0d6c
BLAKE2b-256 eb99d1c4cdb1cb61e3e779da7422d9a88995896628d7d5e271d49da2acbae000

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.0-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.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rxml-2.4.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cbdd85d5ca7d67097553f0814ec5e6bbb1f713721e97505947f044e2887f3083
MD5 1ea18be2de8a7bf569f7c05b4bccfc0f
BLAKE2b-256 023227c48a96ff22ba26341601916188795a068c1913ad9d038a8d64bbab46e7

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.0-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.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rxml-2.4.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d8acdb2dfc3354cf4fcbd01e8643c472bba9385982199d1671a1ea7598fa7f48
MD5 dd5936dbac5333a434aadace5c22b917
BLAKE2b-256 8f6906ebf4eb53b7cb6eef049d20b4e9883496f3fdef1ec9dd1bf8c3cac2e4a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.0-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.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rxml-2.4.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 19d2ab1440aa68b9521f1e8c1ea2216b84bdcea8055a4aea1e9473b01d34a346
MD5 e36b3aeec9591bb53c3d9ec1b094898d
BLAKE2b-256 2b7b90c6992593a483b03a99e34b5fd7bb37e57a81a67404ead33d064d0dafac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rxml-2.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4e9227f56dabadfe00bb7012c6b8bf6d34459f9c309856c7af6a5a41299aabb7
MD5 18d7475da709f9b9996cf14aaec15ac4
BLAKE2b-256 65c3ee94a415250f3cd322766b56210931057ba26dcaa4093dcb71fbc4b7208f

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.0-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.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rxml-2.4.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 41004b39b236e736d030a3646cf2f20aa2a8d212c3664cd9d729d852239ba086
MD5 16c7eb313b5c4d42d9d4f9fb7ed2b642
BLAKE2b-256 5ff9499caee7a5a92a579757ca42be9ca94f0cb0fae6e578af95357017700057

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rxml-2.4.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3da738b0f3e4728c3ea414b22916b21c57ddd6c9bef05c59bf539daa083dcb2a
MD5 ccaf342557672026ef4dcd16588ff959
BLAKE2b-256 bcba47eed38f7681aceec04b593e394cfe3764c9ee445fc169cefdb170116878

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rxml-2.4.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 aaf4f0400ecc1597cf5b9edcb85049ff9f1678427cc454fcebfc545fc9bdba6a
MD5 ced639050d2dcce33556115c1457379d
BLAKE2b-256 81afe69a4e708c7af0217cc060c6efd00cd43aef60a9277cd1d7d3e0c4012ead

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rxml-2.4.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 200.2 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.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 5e187ef57490157c43beb385f83b33336245b8106e78add5d48c1e7d593bcc20
MD5 42f3add09e225e064d5ef66cf997080c
BLAKE2b-256 150c1ce962e7b9bf46bce5c26250d49123c51be208bde6084a6467add6ca5c04

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.0-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.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rxml-2.4.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ab76cdc7b2c1673b36b27d67017a7fea1191c4676d950bf383a772dbd0712693
MD5 006c5caff80cbf46cc44341a34b5393f
BLAKE2b-256 9d09fa174633dcae2f56fe80a1fa1b03b1cf40db2a576aa82cbfcabd9d834d18

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.0-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.0-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

  • Download URL: rxml-2.4.0-cp310-cp310-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 582.2 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.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ddf81f64081c3b6a7d255a4a0f5647157ce45a5f199bc811f61ad1a77ae64e26
MD5 426ca4e12b74f0e337904326c730ecd2
BLAKE2b-256 913cd21f9da531e6c91d1cd806d6846027786faad12863e719266b56b6eaee6a

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.0-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.0-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for rxml-2.4.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 558b5681207042f2d2e1886e692fd01cf572622ca0722fcded97f8f980bfdf0d
MD5 573fdd562d5fe7b12b8812268ef33bbd
BLAKE2b-256 8ff536bd884032f12e76ec3d93db47ffdeb52e116069f35129405a61ef76ba47

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.0-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.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rxml-2.4.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c1c44cc5b59a5b3c227229e156a9ecebe9cd91069f37f530a494d31baa3b3c5b
MD5 d062dab8173dcc11ba6dc362be4c0646
BLAKE2b-256 6f6e6475240da2718a3d5dc1d7c6745de2f33da3001e5b5e0935c676c5c04c6f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rxml-2.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9d4d9f57f35a416c468921518e302bda28902f983fde563ef91c65a6b9001b7f
MD5 7a57f1c3410695a48ae84fed8993f697
BLAKE2b-256 50bc237810953f8ec727986e06de7ce75cac0d75fd33f0c1cc011d7a96ca00d7

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.0-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.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rxml-2.4.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 39572c7c960f163c7dc398988389b43c24b003898a2abcdf08e795afbbf25553
MD5 4777f7bac13dae92e766afe727d394b1
BLAKE2b-256 d1b0633c6056252fddba33485ed89a5608493277d2da8952983001e48da81d62

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.0-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.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rxml-2.4.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7cd9290510105087320007d688724240b49fb300f5f338d47cc6f043d5305d9e
MD5 f35d7fdb7f6b2ebef7770bbfad64e6a8
BLAKE2b-256 7f7a7399d292c7c5c19043d656db44e723412bf1ed4a78839e8325578f4de400

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.0-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.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rxml-2.4.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5c0ee2de7cfa21500990c96e74d11f8ecb3f17703db4b1e6b8cdc76c576b218b
MD5 ea0a0ef5ee432186d64e9f9ce296cf4a
BLAKE2b-256 e11d6601b87a347612cb0497dc0f7ecbfd8d478dc4951384ae0c42b60a66009c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rxml-2.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1b31f68660632d7f10b72eff2e602612c1cc9cb12a24c5db06732e0bf5fcffc8
MD5 75bf77957c4e6313217413e86f01962c
BLAKE2b-256 cb464870d0cf67092c42443d79fe3b08cae0022a247fd850595ed60ab3f10461

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.0-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.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rxml-2.4.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 79b4c7c4826cdbea4d3aa812f214b1196465c402ad36756bff1c266a7293681b
MD5 c8ecab61594010522fa9a009e9654c12
BLAKE2b-256 45f3b509af543d6178e182db1a0264f56788710bd648a71331ea82bdbab24747

See more details on using hashes here.

Provenance

The following attestation bundles were made for rxml-2.4.0-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