Skip to main content
Yanked

This release has been yanked by its maintainers, and will be ignored by installers, except when explicitly specified.
Consider using release 2026.6.3 instead.
Reason given by maintainers: https://github.com/PyO3/pyo3/issues/4757

PyPI version Supported Python versions Build status

Python bindings to the Rust rpds crate for persistent data structures.

What’s here is quite minimal (in transparency, it was written initially to support replacing pyrsistent in the referencing library). If you see something missing (which is very likely), a PR is definitely welcome to add it.

Installation

The distribution on PyPI is named rpds.py (equivalently rpds-py), and thus can be installed via e.g.:

$ pip install rpds-py

Note that if you install rpds-py from source, you will need a Rust toolchain installed, as it is a build-time dependency. An example of how to do so in a Dockerfile can be found here.

If you believe you are on a common platform which should have wheels built (i.e. and not need to compile from source), feel free to file an issue or pull request modifying the GitHub action used here to build wheels via maturin.

Usage

Methods in general are named similarly to their rpds counterparts (rather than pyrsistent‘s conventions, though probably a full drop-in pyrsistent-compatible wrapper module is a good addition at some point).

>>> from rpds import HashTrieMap, HashTrieSet, List

>>> m = HashTrieMap({"foo": "bar", "baz": "quux"})
>>> m.insert("spam", 37) == HashTrieMap({"foo": "bar", "baz": "quux", "spam": 37})
True
>>> m.remove("foo") == HashTrieMap({"baz": "quux"})
True

>>> s = HashTrieSet({"foo", "bar", "baz", "quux"})
>>> s.insert("spam") == HashTrieSet({"foo", "bar", "baz", "quux", "spam"})
True
>>> s.remove("foo") == HashTrieSet({"bar", "baz", "quux"})
True

>>> L = List([1, 3, 5])
>>> L.push_front(-1) == List([-1, 1, 3, 5])
True
>>> L.rest == List([3, 5])
True

Release files for rpds-py 0.22.0

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for rpds-py 0.22.0
File Size Uploaded
rpds_py-0.22.0.tar.gz 26.7 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for rpds-py 0.22.0
File
rpds_py-0.22.0-pp310-pypy310_pp73-win_amd64.whl PyPy 3.10 PyPy 3.10 7.3 Windows x86-64 Details
rpds_py-0.22.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl PyPy 3.10 PyPy 3.10 7.3 Linux musl 1.2+ x86-64 Details
rpds_py-0.22.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl PyPy 3.10 PyPy 3.10 7.3 Linux musl 1.2+ x86-32 Details
rpds_py-0.22.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl PyPy 3.10 PyPy 3.10 7.3 Linux musl 1.2+ ARM64 Details
rpds_py-0.22.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl PyPy 3.10 PyPy 3.10 7.3 Linux glibc 2.17+ x86-64 Details
rpds_py-0.22.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl PyPy 3.10 PyPy 3.10 7.3 Linux glibc 2.17+ IBM System/390x Details
rpds_py-0.22.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl PyPy 3.10 PyPy 3.10 7.3 Linux glibc 2.17+ PowerPC 64-le Details
rpds_py-0.22.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl PyPy 3.10 PyPy 3.10 7.3 Linux glibc 2.17+ ARMv7l Details
rpds_py-0.22.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl PyPy 3.10 PyPy 3.10 7.3 Linux glibc 2.17+ ARM64 Details
rpds_py-0.22.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl PyPy 3.10 PyPy 3.10 7.3 Linux glibc 2.5+ x86-32 Details
rpds_py-0.22.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl PyPy 3.10 PyPy 3.10 7.3 macOS 11.0+ ARM64 Details
rpds_py-0.22.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl PyPy 3.10 PyPy 3.10 7.3 macOS 10.12+ x86-64 Details
rpds_py-0.22.0-pp39-pypy39_pp73-win_amd64.whl PyPy 3.9 PyPy 3.9 7.3 Windows x86-64 Details
rpds_py-0.22.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl PyPy 3.9 PyPy 3.9 7.3 Linux musl 1.2+ x86-64 Details
rpds_py-0.22.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl PyPy 3.9 PyPy 3.9 7.3 Linux musl 1.2+ x86-32 Details
rpds_py-0.22.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl PyPy 3.9 PyPy 3.9 7.3 Linux musl 1.2+ ARM64 Details
rpds_py-0.22.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl PyPy 3.9 PyPy 3.9 7.3 Linux glibc 2.17+ x86-64 Details
rpds_py-0.22.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl PyPy 3.9 PyPy 3.9 7.3 Linux glibc 2.17+ IBM System/390x Details
rpds_py-0.22.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl PyPy 3.9 PyPy 3.9 7.3 Linux glibc 2.17+ PowerPC 64-le Details
rpds_py-0.22.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl PyPy 3.9 PyPy 3.9 7.3 Linux glibc 2.17+ ARMv7l Details
rpds_py-0.22.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl PyPy 3.9 PyPy 3.9 7.3 Linux glibc 2.17+ ARM64 Details
rpds_py-0.22.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl PyPy 3.9 PyPy 3.9 7.3 Linux glibc 2.5+ x86-32 Details
rpds_py-0.22.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl PyPy 3.9 PyPy 3.9 7.3 macOS 11.0+ ARM64 Details
rpds_py-0.22.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl PyPy 3.9 PyPy 3.9 7.3 macOS 10.12+ x86-64 Details
rpds_py-0.22.0-cp313-cp313t-win_amd64.whl CPython 3.13 CPython 3.13 free-threading Windows x86-64 Details
rpds_py-0.22.0-cp313-cp313t-win32.whl CPython 3.13 CPython 3.13 free-threading Windows x86-32 Details
rpds_py-0.22.0-cp313-cp313t-musllinux_1_2_x86_64.whl CPython 3.13 CPython 3.13 free-threading Linux musl 1.2+ x86-64 Details
rpds_py-0.22.0-cp313-cp313t-musllinux_1_2_i686.whl CPython 3.13 CPython 3.13 free-threading Linux musl 1.2+ x86-32 Details
rpds_py-0.22.0-cp313-cp313t-musllinux_1_2_aarch64.whl CPython 3.13 CPython 3.13 free-threading Linux musl 1.2+ ARM64 Details
rpds_py-0.22.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.13 CPython 3.13 free-threading Linux glibc 2.17+ x86-64 Details
rpds_py-0.22.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.13 CPython 3.13 free-threading Linux glibc 2.17+ IBM System/390x Details
rpds_py-0.22.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.13 CPython 3.13 free-threading Linux glibc 2.17+ PowerPC 64-le Details
rpds_py-0.22.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.13 CPython 3.13 free-threading Linux glibc 2.17+ ARMv7l Details
rpds_py-0.22.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.13 CPython 3.13 free-threading Linux glibc 2.17+ ARM64 Details
rpds_py-0.22.0-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl CPython 3.13 CPython 3.13 free-threading Linux glibc 2.5+ x86-32 Details
rpds_py-0.22.0-cp313-cp313t-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 free-threading macOS 11.0+ ARM64 Details
rpds_py-0.22.0-cp313-cp313t-macosx_10_12_x86_64.whl CPython 3.13 CPython 3.13 free-threading macOS 10.12+ x86-64 Details
rpds_py-0.22.0-cp313-cp313-musllinux_1_2_x86_64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ x86-64 Details
rpds_py-0.22.0-cp313-cp313-musllinux_1_2_i686.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ x86-32 Details
rpds_py-0.22.0-cp313-cp313-musllinux_1_2_aarch64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ ARM64 Details
rpds_py-0.22.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ x86-64 Details
rpds_py-0.22.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ IBM System/390x Details
rpds_py-0.22.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ PowerPC 64-le Details
rpds_py-0.22.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ ARMv7l Details
rpds_py-0.22.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ ARM64 Details
rpds_py-0.22.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl CPython 3.13 CPython 3.13 Linux glibc 2.5+ x86-32 Details
rpds_py-0.22.0-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
rpds_py-0.22.0-cp313-cp313-macosx_10_12_x86_64.whl CPython 3.13 CPython 3.13 macOS 10.12+ x86-64 Details
rpds_py-0.22.0-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
rpds_py-0.22.0-cp312-cp312-win32.whl CPython 3.12 CPython 3.12 Windows x86-32 Details
rpds_py-0.22.0-cp312-cp312-musllinux_1_2_x86_64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-64 Details
rpds_py-0.22.0-cp312-cp312-musllinux_1_2_i686.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-32 Details
rpds_py-0.22.0-cp312-cp312-musllinux_1_2_aarch64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ ARM64 Details
rpds_py-0.22.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ x86-64 Details
rpds_py-0.22.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ IBM System/390x Details
rpds_py-0.22.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ PowerPC 64-le Details
rpds_py-0.22.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ ARMv7l Details
rpds_py-0.22.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ ARM64 Details
rpds_py-0.22.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl CPython 3.12 CPython 3.12 Linux glibc 2.5+ x86-32 Details
rpds_py-0.22.0-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
rpds_py-0.22.0-cp312-cp312-macosx_10_12_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.12+ x86-64 Details
rpds_py-0.22.0-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
rpds_py-0.22.0-cp311-cp311-win32.whl CPython 3.11 CPython 3.11 Windows x86-32 Details
rpds_py-0.22.0-cp311-cp311-musllinux_1_2_x86_64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ x86-64 Details
rpds_py-0.22.0-cp311-cp311-musllinux_1_2_i686.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ x86-32 Details
rpds_py-0.22.0-cp311-cp311-musllinux_1_2_aarch64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ ARM64 Details
rpds_py-0.22.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-64 Details
rpds_py-0.22.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ IBM System/390x Details
rpds_py-0.22.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ PowerPC 64-le Details
rpds_py-0.22.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ ARMv7l Details
rpds_py-0.22.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ ARM64 Details
rpds_py-0.22.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl CPython 3.11 CPython 3.11 Linux glibc 2.5+ x86-32 Details
rpds_py-0.22.0-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
rpds_py-0.22.0-cp311-cp311-macosx_10_12_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.12+ x86-64 Details
rpds_py-0.22.0-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
rpds_py-0.22.0-cp310-cp310-win32.whl CPython 3.10 CPython 3.10 Windows x86-32 Details
rpds_py-0.22.0-cp310-cp310-musllinux_1_2_x86_64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ x86-64 Details
rpds_py-0.22.0-cp310-cp310-musllinux_1_2_i686.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ x86-32 Details
rpds_py-0.22.0-cp310-cp310-musllinux_1_2_aarch64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ ARM64 Details
rpds_py-0.22.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-64 Details
rpds_py-0.22.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ IBM System/390x Details
rpds_py-0.22.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ PowerPC 64-le Details
rpds_py-0.22.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ ARMv7l Details
rpds_py-0.22.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ ARM64 Details
rpds_py-0.22.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl CPython 3.10 CPython 3.10 Linux glibc 2.5+ x86-32 Details
rpds_py-0.22.0-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
rpds_py-0.22.0-cp310-cp310-macosx_10_12_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.12+ x86-64 Details
rpds_py-0.22.0-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
rpds_py-0.22.0-cp39-cp39-win32.whl CPython 3.9 CPython 3.9 Windows x86-32 Details
rpds_py-0.22.0-cp39-cp39-musllinux_1_2_x86_64.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ x86-64 Details
rpds_py-0.22.0-cp39-cp39-musllinux_1_2_i686.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ x86-32 Details
rpds_py-0.22.0-cp39-cp39-musllinux_1_2_aarch64.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ ARM64 Details
rpds_py-0.22.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ x86-64 Details
rpds_py-0.22.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ IBM System/390x Details
rpds_py-0.22.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ PowerPC 64-le Details
rpds_py-0.22.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ ARMv7l Details
rpds_py-0.22.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ ARM64 Details
rpds_py-0.22.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl CPython 3.9 CPython 3.9 Linux glibc 2.5+ x86-32 Details
rpds_py-0.22.0-cp39-cp39-macosx_11_0_arm64.whl CPython 3.9 CPython 3.9 macOS 11.0+ ARM64 Details
rpds_py-0.22.0-cp39-cp39-macosx_10_12_x86_64.whl CPython 3.9 CPython 3.9 macOS 10.12+ x86-64 Details

Total release size: 41.4 MB

Release files / rpds_py-0.22.0.tar.gz

Download URL rpds_py-0.22.0.tar.gz
Size 26.7 kB
Tags Source
SHA-256 checksum
How to use checksums
32de71c393f126d8203e9815557c7ff4d72ed1ad3aa3f52f6c7938413176750a
BLAKE2b-256 checksum
How to use checksums
52bb4a7bd48830ae7366467c09923a2ffab45bf76102a87d97ff24cdcebcda5c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.7.7

Release files / rpds_py-0.22.0-pp310-pypy310_pp73-win_amd64.whl

Download URL rpds_py-0.22.0-pp310-pypy310_pp73-win_amd64.whl
Size 233.2 kB
Tags PyPy 3.10 PyPy 3.10 7.3 Windows x86-64
SHA-256 checksum
How to use checksums
c1c21030ed494deb10226f90e2dbd84a012d59810c409832714a3dd576527be2
BLAKE2b-256 checksum
How to use checksums
8d7274c8693b5f07f4537a90d29e0e3179ec366388cbed1bddd8a12f79337c69
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.7.7

Release files / rpds_py-0.22.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl

Download URL rpds_py-0.22.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Size 553.3 kB
Tags Linux musl 1.2+ x86-64 PyPy 3.10 PyPy 3.10 7.3
SHA-256 checksum
How to use checksums
bb11809b0de643a292a82f728c494a2bbef0e30a7c42d37464abbd6bef7ca7b1
BLAKE2b-256 checksum
How to use checksums
feb8cc6b9724a57dd41e71c4022e5aedb7f84168440ed0fee6e164892ea9d3a2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.7.7

Release files / rpds_py-0.22.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl

Download URL rpds_py-0.22.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Size 584.6 kB
Tags Linux musl 1.2+ x86-32 PyPy 3.10 PyPy 3.10 7.3
SHA-256 checksum
How to use checksums
d4f2af3107fe4dc40c0d1a2409863f5249c6796398a1d83c1d99a0b3fa6cfb8d
BLAKE2b-256 checksum
How to use checksums
bd8e47a18442681aea64855bcce1e33b9508edb9d5dd9c6efae5b2f0d0be1688
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.7.7

Release files / rpds_py-0.22.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl

Download URL rpds_py-0.22.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Size 558.0 kB
Tags Linux musl 1.2+ ARM64 PyPy 3.10 PyPy 3.10 7.3
SHA-256 checksum
How to use checksums
3b94b074dcce39976db22ea75c7aea8b22d95e6d3b62f76e20e1179a278521d8
BLAKE2b-256 checksum
How to use checksums
e75115ebd8be0a740a4108f66e4ac4cf81f7e772ed5838b867b21ed4c12fc26c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.7.7

Release files / rpds_py-0.22.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL rpds_py-0.22.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 385.0 kB
Tags Linux glibc 2.17+ x86-64 PyPy 3.10 PyPy 3.10 7.3
SHA-256 checksum
How to use checksums
8338db3c76833d02dc21c3e2c42534091341d26e4f7ba32c6032bb558a02e07b
BLAKE2b-256 checksum
How to use checksums
4d2cb02a82824342f0348f480df3046fe1b4c2a3b1e8529fa730ad8edfbfc4bd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.7.7

Release files / rpds_py-0.22.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL rpds_py-0.22.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 448.4 kB
Tags Linux glibc 2.17+ IBM System/390x PyPy 3.10 PyPy 3.10 7.3
SHA-256 checksum
How to use checksums
dfdabdf8519c93908b2bf0f87c3f86f9e88bab279fb4acfd0907519ca5a1739f
BLAKE2b-256 checksum
How to use checksums
60790a3209454afd3f7c9e1a283f143a4609e068e5d827857ad83a2f9abc3899
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.7.7

Release files / rpds_py-0.22.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL rpds_py-0.22.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 426.5 kB
Tags Linux glibc 2.17+ PowerPC 64-le PyPy 3.10 PyPy 3.10 7.3
SHA-256 checksum
How to use checksums
dc2c00acdf68f1f69a476b770af311a7dc3955b7de228b04a40bcc51ac4d743b
BLAKE2b-256 checksum
How to use checksums
de9ae1ffc8a79f4b5d48bfae079740ac80404a349975e8acffa2e8b23e06d203
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.7.7

Release files / rpds_py-0.22.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL rpds_py-0.22.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 389.7 kB
Tags Linux glibc 2.17+ ARMv7l PyPy 3.10 PyPy 3.10 7.3
SHA-256 checksum
How to use checksums
f9dc2113e0cf0dd637751ca736186fca63664939ceb9f9f67e93ade88c69c0c9
BLAKE2b-256 checksum
How to use checksums
95b81c8343107a03b08aa168105251c3d4112a68694cbb22e254f7de10429672
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.7.7

Release files / rpds_py-0.22.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL rpds_py-0.22.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 383.4 kB
Tags Linux glibc 2.17+ ARM64 PyPy 3.10 PyPy 3.10 7.3
SHA-256 checksum
How to use checksums
eadd2417e83a77ce3ae4a0efd08cb0ebdfd317b6406d11020354a53ad458ec84
BLAKE2b-256 checksum
How to use checksums
f2432513f6697f7ca76886b3230810879172affeaa391d51a9b9b4bd1073430f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.7.7

Release files / rpds_py-0.22.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl

Download URL rpds_py-0.22.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Size 412.9 kB
Tags Linux glibc 2.5+ x86-32 PyPy 3.10 PyPy 3.10 7.3
SHA-256 checksum
How to use checksums
8ad4dfda52e64af3202ceb2143a62deba97894b71c64a4405ee80f6b3ea77285
BLAKE2b-256 checksum
How to use checksums
05b750b7b0288fd0f1d8a79b896aa6fe11b5b423ab56c174074a5d0f1d3e33e8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.7.7

Release files / rpds_py-0.22.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl

Download URL rpds_py-0.22.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Size 346.8 kB
Tags PyPy 3.10 PyPy 3.10 7.3 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
6b6e4bcfc32f831bfe3d6d8a5acedfbfd5e252a03c83fa24813b277a3a8a13ca
BLAKE2b-256 checksum
How to use checksums
48415c579c53fa4c724fb663af7cf0da2d80cc16f314f558f13deece6e791161
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.7.7

Release files / rpds_py-0.22.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl

Download URL rpds_py-0.22.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl
Size 362.1 kB
Tags PyPy 3.10 PyPy 3.10 7.3 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
c8fd7a16f7a047e06c747cfcf2acef3ac316132df1c6077445b29ee6f3f3a70b
BLAKE2b-256 checksum
How to use checksums
2181a42878c1d48198eb07a27e81320562aa16466a25e56552bd09b27c6a5636
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.7.7

Release files / rpds_py-0.22.0-pp39-pypy39_pp73-win_amd64.whl

Download URL rpds_py-0.22.0-pp39-pypy39_pp73-win_amd64.whl
Size 233.2 kB
Tags PyPy 3.9 PyPy 3.9 7.3 Windows x86-64
SHA-256 checksum
How to use checksums
ed0102146574e5e9f079b2e1a06e6b5b12a691f9c74a65b93b7f3d4feda566c6
BLAKE2b-256 checksum
How to use checksums
322818a7eb7bddea0475210cc34041c668658974f42ea41bda7a0f8318e05c31
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.7.7

Release files / rpds_py-0.22.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl

Download URL rpds_py-0.22.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Size 553.3 kB
Tags Linux musl 1.2+ x86-64 PyPy 3.9 PyPy 3.9 7.3
SHA-256 checksum
How to use checksums
762206ba3bf1d6c8c9e0055871d3c0d5b074b7c3120193e6c067e7866f106ab1
BLAKE2b-256 checksum
How to use checksums
a090adac10227b1095a4bb1f758d576329ff2135d6e7093e4f4584cb98245989
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.7.7

Release files / rpds_py-0.22.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl

Download URL rpds_py-0.22.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Size 584.6 kB
Tags Linux musl 1.2+ x86-32 PyPy 3.9 PyPy 3.9 7.3
SHA-256 checksum
How to use checksums
62ab12fe03ffc49978d29de9c31bbb216610157f7e5ca8e172fed6642aead3be
BLAKE2b-256 checksum
How to use checksums
4e6c13b958760a135b4c0d38dd2a240fcf3a2cdbabe3b496729a05d91d1f97bd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.7.7

Release files / rpds_py-0.22.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl

Download URL rpds_py-0.22.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Size 557.9 kB
Tags Linux musl 1.2+ ARM64 PyPy 3.9 PyPy 3.9 7.3
SHA-256 checksum
How to use checksums
b8906f537978da3f7f0bd1ba37b69f6a877bb43312023b086582707d2835bf2f
BLAKE2b-256 checksum
How to use checksums
4e8aea07c8df501e05ebae3172febf1bff6bb923bd86c6cfb9d068dfc9458292
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.7.7

Release files / rpds_py-0.22.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL rpds_py-0.22.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 384.6 kB
Tags Linux glibc 2.17+ x86-64 PyPy 3.9 PyPy 3.9 7.3
SHA-256 checksum
How to use checksums
d33622dc63c295788eed09dbb1d11bed178909d3267b02d873116ee6be368244
BLAKE2b-256 checksum
How to use checksums
345c888c14d8048206ebace56ff8bec8ea423363ba90b790af744a0e6db4f3da
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.7.7

Release files / rpds_py-0.22.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL rpds_py-0.22.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 448.4 kB
Tags Linux glibc 2.17+ IBM System/390x PyPy 3.9 PyPy 3.9 7.3
SHA-256 checksum
How to use checksums
24c28df05bd284879d0fac850ba697077d2a33b7ebcaea6318d6b6cdfdc86ddc
BLAKE2b-256 checksum
How to use checksums
70d2ec22213179aee4e4f555e0c4a6094f4b46765a6c50dc99f37f863e888feb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.7.7

Release files / rpds_py-0.22.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL rpds_py-0.22.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 426.5 kB
Tags Linux glibc 2.17+ PowerPC 64-le PyPy 3.9 PyPy 3.9 7.3
SHA-256 checksum
How to use checksums
e04919ffa9a728c446b27b6b625fa1d00ece221bdb9d633e978a7e0353a12c0e
BLAKE2b-256 checksum
How to use checksums
b42f5be8077dcd9b8af39b34ee1768f81f63d11f36745d9b1014beade07bfcea
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.7.7

Release files / rpds_py-0.22.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL rpds_py-0.22.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 389.7 kB
Tags Linux glibc 2.17+ ARMv7l PyPy 3.9 PyPy 3.9 7.3
SHA-256 checksum
How to use checksums
e1c04fb380bc8efaae2fdf17ed6cd5d223da78a8b0b18a610f53d4c5d6e31dfd
BLAKE2b-256 checksum
How to use checksums
60b234319e6d66e9b750bcee70ad47d9c1c331c18fe3c99b45fbbec385d64271
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.7.7

Release files / rpds_py-0.22.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL rpds_py-0.22.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 383.4 kB
Tags Linux glibc 2.17+ ARM64 PyPy 3.9 PyPy 3.9 7.3
SHA-256 checksum
How to use checksums
59e63da174ff287db05ef7c21d75974a5bac727ed60452aeb3a14278477842a8
BLAKE2b-256 checksum
How to use checksums
31f2bd4a1eb35e57ff8c7254e74f5df2a8dea05f1d24486201d700c94f689a85
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.7.7

Release files / rpds_py-0.22.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl

Download URL rpds_py-0.22.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Size 413.1 kB
Tags Linux glibc 2.5+ x86-32 PyPy 3.9 PyPy 3.9 7.3
SHA-256 checksum
How to use checksums
7539dbb8f705e13629ba6f23388976aad809e387f32a6e5c0712e4e8d9bfcce7
BLAKE2b-256 checksum
How to use checksums
0dc8042dc0e879d0a70d6e1d07add445cb0d82da03c048c9d45d408fcf3c3e4a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.7.7

Release files / rpds_py-0.22.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl

Download URL rpds_py-0.22.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Size 346.8 kB
Tags PyPy 3.9 PyPy 3.9 7.3 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
2498ff422823be087b48bc82710deb87ac34f6b7c8034ee39920647647de1e60
BLAKE2b-256 checksum
How to use checksums
e33e0020b09e7e7496880b7b83854f081dc22a9c77c018f67aa19078e43e0550
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.7.7

Release files / rpds_py-0.22.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl

Download URL rpds_py-0.22.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl
Size 362.0 kB
Tags PyPy 3.9 PyPy 3.9 7.3 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
64a0c965a1e299c9b280006bdb15c276c427c45360aed676305dc36bcaa4d13c
BLAKE2b-256 checksum
How to use checksums
536776bdeb849c9a200e4894b20b7698a92e25cf0ef02d58c6c6072cdb8ef605
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.7.7

Release files / rpds_py-0.22.0-cp313-cp313t-win_amd64.whl

Download URL rpds_py-0.22.0-cp313-cp313t-win_amd64.whl
Size 234.1 kB
Tags CPython 3.13 CPython 3.13 free-threading Windows x86-64
SHA-256 checksum
How to use checksums
e6da2e0500742e0f157f005924a0589f2e2dcbfdd6cd0cc0abce367433e989be
BLAKE2b-256 checksum
How to use checksums
0aa5d7b020fb13eae9a544c99f7a8f4d502169c456b07dda0bdefbe36611680d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.7.7

Release files / rpds_py-0.22.0-cp313-cp313t-win32.whl

Download URL rpds_py-0.22.0-cp313-cp313t-win32.whl
Size 219.4 kB
Tags CPython 3.13 CPython 3.13 free-threading Windows x86-32
SHA-256 checksum
How to use checksums
208ce1d8e3af138d1d9b21d7206356b7f29b96675e0113aea652cf024e4ddfdc
BLAKE2b-256 checksum
How to use checksums
15c12a7eae4ca2b433783e9875f0b30cbc5a2c710279904463e651dd69cd98af
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.7.7

Release files / rpds_py-0.22.0-cp313-cp313t-musllinux_1_2_x86_64.whl

Download URL rpds_py-0.22.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Size 550.8 kB
Tags CPython 3.13 CPython 3.13 free-threading Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
b4660943030406aaa40ec9f51960dd88049903d9536bc3c8ebb5cc4e1f119bbe
BLAKE2b-256 checksum
How to use checksums
a2a1bf4aaaa8e386cd032764b3e5af61525ea6ddc3ec406558fe8850a0774719
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.7.7

Release files / rpds_py-0.22.0-cp313-cp313t-musllinux_1_2_i686.whl

Download URL rpds_py-0.22.0-cp313-cp313t-musllinux_1_2_i686.whl
Size 582.7 kB
Tags CPython 3.13 CPython 3.13 free-threading Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
d9bb9242b38a664f307b3b897f093896f7ed51ef4fe25a0502e5a368de9151ea
BLAKE2b-256 checksum
How to use checksums
c773b3cc5cb061e0dec73f77e7f58e3ad99f1320935f2ee6d94d1886110c2c90
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.7.7

Release files / rpds_py-0.22.0-cp313-cp313t-musllinux_1_2_aarch64.whl

Download URL rpds_py-0.22.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Size 555.9 kB
Tags CPython 3.13 CPython 3.13 free-threading Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
a810a57ce5e8ecf8eac6ec4dab534ff80c34e5a2c31db60e992009cd20f58e0f
BLAKE2b-256 checksum
How to use checksums
f9b610a4a443c214c642ff07c05ece7d81120f8265244c83ea3e491eaccd434f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.7.7

Release files / rpds_py-0.22.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL rpds_py-0.22.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 382.8 kB
Tags CPython 3.13 CPython 3.13 free-threading Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
fe23687924b25a2dee52fab15976fd6577ed8518072bcda9ff2e2b88ab1f168b
BLAKE2b-256 checksum
How to use checksums
ef37916eee3304840d34c95028a5fe03976ea0c772291f7806182618685eca93
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.7.7

Release files / rpds_py-0.22.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL rpds_py-0.22.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 449.4 kB
Tags CPython 3.13 CPython 3.13 free-threading Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
f0fb8efc9e579acf1e556fd86277fecec320c21ca9b5d39db96433ad8c45bc4a
BLAKE2b-256 checksum
How to use checksums
4efada1cfb351a646a52fb60b2ee3e0f1da5c630294fc35b56e2d6bba6eb45ce
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.7.7

Release files / rpds_py-0.22.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL rpds_py-0.22.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 424.9 kB
Tags CPython 3.13 CPython 3.13 free-threading Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
e23dcdd4b2ff9c6b3317ea7921b210d39592f8ca1cdea58ada25b202c65c0a69
BLAKE2b-256 checksum
How to use checksums
caa68204781fa53ad198e2125e7e81045b81bc025b0c02f5f7597fdfae67b2e9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.7.7

Release files / rpds_py-0.22.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL rpds_py-0.22.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 387.1 kB
Tags CPython 3.13 CPython 3.13 free-threading Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
875fe8dffb43c20f68379ee098b035a7038d7903c795d46715f66575a7050b19
BLAKE2b-256 checksum
How to use checksums
33d27d913ae37e25d108d553a5299f842bb93a438f36d51d7af47c3362757395
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.7.7

Release files / rpds_py-0.22.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL rpds_py-0.22.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 381.6 kB
Tags CPython 3.13 CPython 3.13 free-threading Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
5f21e1278c9456cd601832375c778ca44614d3433996488221a56572c223f04a
BLAKE2b-256 checksum
How to use checksums
004bd867fe4e5df58d0ba00918772a7b403369ee71a8482ec3a9ff09b960ac7e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.7.7

Release files / rpds_py-0.22.0-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl

Download URL rpds_py-0.22.0-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl
Size 410.3 kB
Tags CPython 3.13 CPython 3.13 free-threading Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
d5469b347445d1c31105f33e7bfc9a8ba213d48e42641a610dda65bf9e3c83f5
BLAKE2b-256 checksum
How to use checksums
d755461de3655e2962412a17100c9dfcad976a1ace0242fc9f1c679a4ba06446
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.7.7

Release files / rpds_py-0.22.0-cp313-cp313t-macosx_11_0_arm64.whl

Download URL rpds_py-0.22.0-cp313-cp313t-macosx_11_0_arm64.whl
Size 345.1 kB
Tags CPython 3.13 CPython 3.13 free-threading macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
1212cb231f2002934cd8d71a0d718fdd9d9a2dd671e0feef8501038df3508026
BLAKE2b-256 checksum
How to use checksums
0832472010d08e8948d86f97dfaa2b70b10b93828aca535e019bf25e3499e481
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.7.7

Release files / rpds_py-0.22.0-cp313-cp313t-macosx_10_12_x86_64.whl

Download URL rpds_py-0.22.0-cp313-cp313t-macosx_10_12_x86_64.whl
Size 359.7 kB
Tags CPython 3.13 CPython 3.13 free-threading macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
3dc7c64b56b82428894f056e9ff6e8ee917ff74fc26b65211a33602c2372e928
BLAKE2b-256 checksum
How to use checksums
68f42dd0766e0499f3c61030e4eb05ca6a838a6a6dea3bb3286d455522af1c5e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.7.7

Release files / rpds_py-0.22.0-cp313-cp313-musllinux_1_2_x86_64.whl

Download URL rpds_py-0.22.0-cp313-cp313-musllinux_1_2_x86_64.whl
Size 550.8 kB
Tags CPython 3.13 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
034964ea0ea09645bdde13038b38abb14be0aa747f20fcfab6181207dd9e0483
BLAKE2b-256 checksum
How to use checksums
f1b3fabc952d693eb30f67f3b94f99ab0c924c954debb23329099f27cb5e517a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.7.7

Release files / rpds_py-0.22.0-cp313-cp313-musllinux_1_2_i686.whl

Download URL rpds_py-0.22.0-cp313-cp313-musllinux_1_2_i686.whl
Size 582.7 kB
Tags CPython 3.13 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
8426f97117b914b9bfb2a7bd46edc148e8defda728a55a5df3a564abe70cd7a4
BLAKE2b-256 checksum
How to use checksums
fccabf918ae37bbae9f47d68357a2935654c38f438e72a13bc495a57c680d64a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.7.7

Release files / rpds_py-0.22.0-cp313-cp313-musllinux_1_2_aarch64.whl

Download URL rpds_py-0.22.0-cp313-cp313-musllinux_1_2_aarch64.whl
Size 555.9 kB
Tags CPython 3.13 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
e9aa4af6b879bb75a3c7766fbf49d77f4097dd12b548ecbbd8b3f85caa833281
BLAKE2b-256 checksum
How to use checksums
384931c2bdb3c503d6b0190f15244ff515c317f5deacd3c5e6e17bb0daec452a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.7.7

Release files / rpds_py-0.22.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL rpds_py-0.22.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 382.8 kB
Tags CPython 3.13 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
c17b43fe9c6da16885e3fe28922bcd1a029e61631fb771c7d501019b40bcc904
BLAKE2b-256 checksum
How to use checksums
af07d0af9564ad7f680a7239baa3856fe511f18212b9884bff82c1f276c0f7b0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.7.7

Release files / rpds_py-0.22.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL rpds_py-0.22.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 449.4 kB
Tags CPython 3.13 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
d276280649305c1da6cdd84585d48ae1f0efa67434d8b10d2df95228e59a05bb
BLAKE2b-256 checksum
How to use checksums
4f109599960a61773be49b498e22bff3444511e0f90f2b03d2a0ffaea97de717
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.7.7

Release files / rpds_py-0.22.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL rpds_py-0.22.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 424.9 kB
Tags CPython 3.13 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
4c0321bc03a1c513eca1837e3bba948b975bcf3a172aebc197ab3573207f137a
BLAKE2b-256 checksum
How to use checksums
804452b222a8e54703a36a2ba0e55e1fce14a0f4fc78488a89a4db609cfc9fb8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.7.7

Release files / rpds_py-0.22.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL rpds_py-0.22.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 387.1 kB
Tags CPython 3.13 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
574c5c94213bc9990805bfd7e4ba3826d3c098516cbc19f0d0ef0433ad93fa06
BLAKE2b-256 checksum
How to use checksums
225bacbd75ad88e5dd519d4ff60fe56bc0743ae7c03a7329f7feb93e30274f21
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.7.7

Release files / rpds_py-0.22.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL rpds_py-0.22.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 381.6 kB
Tags CPython 3.13 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
1a6cc4eb1e86364331928acafb2bb41d8ab735ca3caf2d6019b9f6dac3f4f65d
BLAKE2b-256 checksum
How to use checksums
3f00baa9715d61a6ea9d24acda39fe444aa5d45d73a3eff84620ca9c96f5a0bc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.7.7

Release files / rpds_py-0.22.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl

Download URL rpds_py-0.22.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Size 410.3 kB
Tags CPython 3.13 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
48c95997af9314f4034fe5ba2d837399e786586e220835a578d28fe8161e6ae5
BLAKE2b-256 checksum
How to use checksums
f492e2126a0c0addf26e600ec397e33ffc69770a1fdf86c6f48f3a2190a2c163
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.7.7

Release files / rpds_py-0.22.0-cp313-cp313-macosx_11_0_arm64.whl

Download URL rpds_py-0.22.0-cp313-cp313-macosx_11_0_arm64.whl
Size 345.1 kB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
c398a5a8e258dfdc5ea2aa4e5aa2ca3207f654a8eb268693dd1a76939074a588
BLAKE2b-256 checksum
How to use checksums
1affcabcafe1ae172377d8fc2a4f1941c0d8be8307e9f37c77d469486a15bbe0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.7.7

Release files / rpds_py-0.22.0-cp313-cp313-macosx_10_12_x86_64.whl

Download URL rpds_py-0.22.0-cp313-cp313-macosx_10_12_x86_64.whl
Size 359.7 kB
Tags CPython 3.13 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
2a57300cc8b034c5707085249efd09f19116bb80278d0ec925d7f3710165c510
BLAKE2b-256 checksum
How to use checksums
ce05efe5daa8d9989bcd2594996fa57aa28637b12d55d965e14e8477fca2ba79
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.7.7

Release files / rpds_py-0.22.0-cp312-cp312-win_amd64.whl

Download URL rpds_py-0.22.0-cp312-cp312-win_amd64.whl
Size 236.4 kB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
931bf3d0705b2834fed29354f35170fa022fe22a95542b61b7c66aca5f8a224f
BLAKE2b-256 checksum
How to use checksums
73d90a838834b00fe42005cf071012206629c88125e6515d044c06df083d7448
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.7.7

Release files / rpds_py-0.22.0-cp312-cp312-win32.whl

Download URL rpds_py-0.22.0-cp312-cp312-win32.whl
Size 221.6 kB
Tags CPython 3.12 Windows x86-32
SHA-256 checksum
How to use checksums
54d8f94dec5765a9edc19610fecf0fdf9cab36cbb9def1213188215f735a6f98
BLAKE2b-256 checksum
How to use checksums
10bab9c061b245172c61c57148439b067276b500264b2a041433026d65044e96
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.7.7

Release files / rpds_py-0.22.0-cp312-cp312-musllinux_1_2_x86_64.whl

Download URL rpds_py-0.22.0-cp312-cp312-musllinux_1_2_x86_64.whl
Size 550.8 kB
Tags CPython 3.12 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
93bbd66f46dddc41e8c656130c97c0fb515e0fa44e1eebb2592769dbbd41b2f5
BLAKE2b-256 checksum
How to use checksums
56da7878f3e37cea93934400ae7798c4b714d6dab7f63c0a1505ebdf1138a197
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.7.7

Release files / rpds_py-0.22.0-cp312-cp312-musllinux_1_2_i686.whl

Download URL rpds_py-0.22.0-cp312-cp312-musllinux_1_2_i686.whl
Size 582.7 kB
Tags CPython 3.12 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
c637188b930175c256f13adbfc427b83ec7e64476d1ec9d6608f312bb84e06c3
BLAKE2b-256 checksum
How to use checksums
bfbfc0732d81c4f36ba785e93b516065cd71fbe6b8ac9febb34c64d0f5dd0470
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.7.7

Release files / rpds_py-0.22.0-cp312-cp312-musllinux_1_2_aarch64.whl

Download URL rpds_py-0.22.0-cp312-cp312-musllinux_1_2_aarch64.whl
Size 555.9 kB
Tags CPython 3.12 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
92d28a608127b357da47c99e0d0e0655ca2060286540fe9f2a25a2e8ac666e05
BLAKE2b-256 checksum
How to use checksums
492b9c54d4316c983428fefc94aacbf1eb8d024e899d95efce515fc484b9cbee
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.7.7

Release files / rpds_py-0.22.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL rpds_py-0.22.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 382.8 kB
Tags CPython 3.12 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
b91bfef5daa2a5a4fe62f8d317fc91a626073639f951f851bd2cb252d01bc6c5
BLAKE2b-256 checksum
How to use checksums
2bba02b4705425eb53fbf2f00d48b582d6b42c4e8807d2f29ef389ad724e659c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.7.7

Release files / rpds_py-0.22.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL rpds_py-0.22.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 449.4 kB
Tags CPython 3.12 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
5ae7927cd2b869ca4dc645169d8af5494a29c99afd0ea0f24dd00c811ab1d8b8
BLAKE2b-256 checksum
How to use checksums
374b6fcfa9d14715202824e7fadb1c3c2933b061b1c72b2e031c587414924449
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.7.7

Release files / rpds_py-0.22.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL rpds_py-0.22.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 424.9 kB
Tags CPython 3.12 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
842855bbb113a19c393c6de5aa6ed9a26c6b13c2fead5e49114d39f0d08b94d8
BLAKE2b-256 checksum
How to use checksums
49f11ef6897de79c8883bba0da121e2e809097ff2ce1fbe9eb5a85878b588853
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.7.7

Release files / rpds_py-0.22.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL rpds_py-0.22.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 387.1 kB
Tags CPython 3.12 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
1357c3092702078b7782b6ebd5ba9b22c1a291c34fbf9d8f1a48237466ac7758
BLAKE2b-256 checksum
How to use checksums
c1a4b3bd40b0444948e599286a0338b170021bfec6370aeb1c14b5b39f0bdad4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.7.7

Release files / rpds_py-0.22.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL rpds_py-0.22.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 381.6 kB
Tags CPython 3.12 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
6b639a19e1791b646d27f15d17530a51722cc728d43b2dff3aeb904f92d91bac
BLAKE2b-256 checksum
How to use checksums
c95811cfd543d2468ce9279919c3bc41013b40f456cc446f5a74005e7d4140c5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.7.7

Release files / rpds_py-0.22.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl

Download URL rpds_py-0.22.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Size 410.3 kB
Tags CPython 3.12 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
4fc4824e38c1e91a73bc820e7caacaf19d0acd557465aceef0420ca59489b390
BLAKE2b-256 checksum
How to use checksums
023dfa071272855af01977d0e2f889b80d4ba9a4b326684f64de3ac98243c246
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.7.7

Release files / rpds_py-0.22.0-cp312-cp312-macosx_11_0_arm64.whl

Download URL rpds_py-0.22.0-cp312-cp312-macosx_11_0_arm64.whl
Size 345.1 kB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
67e013a17a3db4d98cc228fd5aeb36a51b0f5cf7330b9102a552060f1fe4e560
BLAKE2b-256 checksum
How to use checksums
ca0956813556213377d5712f5448ebef689576e7874217edea43c1a35c6dfeda
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.7.7

Release files / rpds_py-0.22.0-cp312-cp312-macosx_10_12_x86_64.whl

Download URL rpds_py-0.22.0-cp312-cp312-macosx_10_12_x86_64.whl
Size 359.7 kB
Tags CPython 3.12 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
e9d4293b21c69ee4f9e1a99ac4f772951d345611c614a0cfae2ec6b565279bc9
BLAKE2b-256 checksum
How to use checksums
71c444b95b3063feff43d01752f60ccbe84cbfb4b486997d27878cc4bb6c9975
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.7.7

Release files / rpds_py-0.22.0-cp311-cp311-win_amd64.whl

Download URL rpds_py-0.22.0-cp311-cp311-win_amd64.whl
Size 231.9 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
87453d491369cd8018016d2714a13e8461975161703c18ee31eecf087a8ae5d4
BLAKE2b-256 checksum
How to use checksums
b11dc9fa30123c042bdf88abb545fb6f5f03f344e83fa6aa88026964b5b29833
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.7.7

Release files / rpds_py-0.22.0-cp311-cp311-win32.whl

Download URL rpds_py-0.22.0-cp311-cp311-win32.whl
Size 219.8 kB
Tags CPython 3.11 Windows x86-32
SHA-256 checksum
How to use checksums
2d2fc3ab021be3e0b5aec6d4164f2689d231b8bfc5185cc454314746aa4aee72
BLAKE2b-256 checksum
How to use checksums
1934276481caf0932a230937e2a6e733d2c4e77360aba1e5c477283f8504dfd3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.7.7

Release files / rpds_py-0.22.0-cp311-cp311-musllinux_1_2_x86_64.whl

Download URL rpds_py-0.22.0-cp311-cp311-musllinux_1_2_x86_64.whl
Size 550.8 kB
Tags CPython 3.11 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
4e7c9aa2353eb0b0d845323857197daa036c2ff8624df990b0d886d22a8f665e
BLAKE2b-256 checksum
How to use checksums
4c3d81046c546c87b057d9f86a09d6ac99babc70384c0b3bc3919f0b637eec0a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.7.7

Release files / rpds_py-0.22.0-cp311-cp311-musllinux_1_2_i686.whl

Download URL rpds_py-0.22.0-cp311-cp311-musllinux_1_2_i686.whl
Size 582.7 kB
Tags CPython 3.11 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
0686f2c16eafdc2c6b4ce6e86e5b3092e87db09ae64be2787616444eb35b9756
BLAKE2b-256 checksum
How to use checksums
4f45712417d09a40ca13014518a1f7cfc49483d55df0b428ba2ac09511cbac87
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.7.7

Release files / rpds_py-0.22.0-cp311-cp311-musllinux_1_2_aarch64.whl

Download URL rpds_py-0.22.0-cp311-cp311-musllinux_1_2_aarch64.whl
Size 555.9 kB
Tags CPython 3.11 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
41f65a97bf2c4b161c9f8f89bc37058346bec9b36e373c8ad00a16c957bff625
BLAKE2b-256 checksum
How to use checksums
bdfabcdd7fad8e3ec1bf84f7d5eb546f79cb12b0c6567b6027dc3909b35ca73a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.7.7

Release files / rpds_py-0.22.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL rpds_py-0.22.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 382.8 kB
Tags CPython 3.11 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
326e42f2b49462e05f8527a1311ce98f9f97c484b3e443ec0ea4638bed3aebcf
BLAKE2b-256 checksum
How to use checksums
15ed480c29a5256e9911a77e02700323040ecc4f14ca2cebc75d4a1ff5bd036e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.7.7

Release files / rpds_py-0.22.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL rpds_py-0.22.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 449.4 kB
Tags CPython 3.11 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
632d2fdddd9fbe3ac8896a119fd18a71fc95ca9c4cbe5223096c142d8c4a2b1d
BLAKE2b-256 checksum
How to use checksums
0a3c431951e7ad739e540ced11b3bc0b4e9b90c0f22483a422d411b6f97a8e31
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.7.7

Release files / rpds_py-0.22.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL rpds_py-0.22.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 424.9 kB
Tags CPython 3.11 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
ba1fc34d0b2f6fd53377a4c954116251eba6d076bf64f903311f4a7d27d10acd
BLAKE2b-256 checksum
How to use checksums
7859840bf524b1d8d132c8af73b3b9a915518275d34041b9f648ddaade53d099
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.7.7

Release files / rpds_py-0.22.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL rpds_py-0.22.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 387.1 kB
Tags CPython 3.11 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
2f513758e7cda8bc262e80299a8e3395d7ef7f4ae705be62632f229bc6c33208
BLAKE2b-256 checksum
How to use checksums
e9db86ecc9348091170ba2b17735e9902d6d25b94d0bb0ac9ab3afda9ca3f63c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.7.7

Release files / rpds_py-0.22.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL rpds_py-0.22.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 381.6 kB
Tags CPython 3.11 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
f7649c8b8e4bd1ccc5fcbd51a855d57a617deeba19c66e3d04b1abecc61036b2
BLAKE2b-256 checksum
How to use checksums
53af7a69bf76cefca6a8974d4b39e87038e7349078e90f9e7690b44cf31fc54b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.7.7

Release files / rpds_py-0.22.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl

Download URL rpds_py-0.22.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Size 410.3 kB
Tags CPython 3.11 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
e9bbdba9e75b1a9ee1dd1335034dad998ef1acc08492226c6fd50aa773bdfa7d
BLAKE2b-256 checksum
How to use checksums
ede79c20bb024875818600b5278fdbf57ddf7eb8b794cab2fabbd1744d831b6f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.7.7

Release files / rpds_py-0.22.0-cp311-cp311-macosx_11_0_arm64.whl

Download URL rpds_py-0.22.0-cp311-cp311-macosx_11_0_arm64.whl
Size 345.1 kB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
341a07a4b55126bfae68c9bf24220a73d456111e5eb3dcbdab9fd16de2341224
BLAKE2b-256 checksum
How to use checksums
4c51d1376782e6b301dbe9704fa785abad356e92cd85161bbea1177f6a99ea09
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.7.7

Release files / rpds_py-0.22.0-cp311-cp311-macosx_10_12_x86_64.whl

Download URL rpds_py-0.22.0-cp311-cp311-macosx_10_12_x86_64.whl
Size 359.7 kB
Tags CPython 3.11 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
771c9a3851beaa617d8c8115d65f834a2b52490f42ee2b88b13f1fc5529e9e0c
BLAKE2b-256 checksum
How to use checksums
80c5bccb4210cec5482b762e859ab804c7fe9149f2eeffca20742636ebf1af68
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.7.7

Release files / rpds_py-0.22.0-cp310-cp310-win_amd64.whl

Download URL rpds_py-0.22.0-cp310-cp310-win_amd64.whl
Size 231.8 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
d9ceca96df54cb1675a0b7f52f1c6d5d1df62c5b40741ba211780f1b05a282a2
BLAKE2b-256 checksum
How to use checksums
44b7ccbedb57b71b2455e6381f75b1f34716d4085eff811408876770f33db9f7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.7.7

Release files / rpds_py-0.22.0-cp310-cp310-win32.whl

Download URL rpds_py-0.22.0-cp310-cp310-win32.whl
Size 219.7 kB
Tags CPython 3.10 Windows x86-32
SHA-256 checksum
How to use checksums
49e084d47a66027ac72844f9f52f13d347a9a1f05d4f84381b420e47f836a7fd
BLAKE2b-256 checksum
How to use checksums
2a75f152b48bbe1cbacbab44229f200bf084ce4d46cb34d14250d06102f97879
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.7.7

Release files / rpds_py-0.22.0-cp310-cp310-musllinux_1_2_x86_64.whl

Download URL rpds_py-0.22.0-cp310-cp310-musllinux_1_2_x86_64.whl
Size 550.8 kB
Tags CPython 3.10 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
d1522025cda9e57329aade769f56e5793b2a5da7759a21914ee10e67e17e601e
BLAKE2b-256 checksum
How to use checksums
5f9d56da89e4ac2063bdc60a0e920964b1649a9012e5721111a96412f3fe68b9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.7.7

Release files / rpds_py-0.22.0-cp310-cp310-musllinux_1_2_i686.whl

Download URL rpds_py-0.22.0-cp310-cp310-musllinux_1_2_i686.whl
Size 582.7 kB
Tags CPython 3.10 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
0903ffdb5b9007e503203b6285e4ff0faf96d875c19f1d103b475acf7d9f7311
BLAKE2b-256 checksum
How to use checksums
fdf145ed49715ad07c305c8617b04747dc7e3da095d032bc210dff1e75a7732f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.7.7

Release files / rpds_py-0.22.0-cp310-cp310-musllinux_1_2_aarch64.whl

Download URL rpds_py-0.22.0-cp310-cp310-musllinux_1_2_aarch64.whl
Size 555.9 kB
Tags CPython 3.10 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
c7b4450093c0c909299770226fb0285be47b0a57545bae25b5c4e51566b0e587
BLAKE2b-256 checksum
How to use checksums
31c6ebe2fe8d8cae096a76f60d0ca8b146d58d43ab8306f7bae407d5eb3aee93
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.7.7

Release files / rpds_py-0.22.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL rpds_py-0.22.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 382.8 kB
Tags CPython 3.10 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
3f7a048ec1ebc991331d709be4884dc318c9eaafa66dcde8be0933ac0e702149
BLAKE2b-256 checksum
How to use checksums
9f2275c94dfaae0c5c220fc08b4f98a40a9411ffc09669cadaf921e2980a04aa
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.7.7

Release files / rpds_py-0.22.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL rpds_py-0.22.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 449.4 kB
Tags CPython 3.10 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
4b5d17d8f5b885ce50e0cda85f99c0719e365e98b587338535fa566a48375afb
BLAKE2b-256 checksum
How to use checksums
eb4553bbd9a197aca067f8c66af9e1f5ba6ec0c9eb18c93f9200d6a2763799d4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.7.7

Release files / rpds_py-0.22.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL rpds_py-0.22.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 424.9 kB
Tags CPython 3.10 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
d80fd710b3307a3c63809048b72c536689b9b0b31a2518339c3f1a4d29c73d7a
BLAKE2b-256 checksum
How to use checksums
13115ec3997ad9724074f316ef776c7298a5e66953ae03409b97beba670ccd82
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.7.7

Release files / rpds_py-0.22.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL rpds_py-0.22.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 387.1 kB
Tags CPython 3.10 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
8cbb040fec8eddd5a6a75e737fd73c9ce37e51f94bacdd0b178d0174a4758395
BLAKE2b-256 checksum
How to use checksums
26e7df4752bcd589e4fbde24b5c397e05ddcd69691463a6d5f6c1394c7e83f27
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.7.7

Release files / rpds_py-0.22.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL rpds_py-0.22.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 381.6 kB
Tags CPython 3.10 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
38cacf1f378571450576f2c8ce87da6f3fddc59d744de5c12b37acc23285b1e1
BLAKE2b-256 checksum
How to use checksums
3c6e30ff85d14be99d3439094c115e16f8cd6fcafbf5560a60b9b181fa01ddff
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.7.7

Release files / rpds_py-0.22.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl

Download URL rpds_py-0.22.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Size 410.3 kB
Tags CPython 3.10 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
306da3dfa174b489a3fc63b0872e2226a5ddf94c59875a770d72aff945d5ed96
BLAKE2b-256 checksum
How to use checksums
ac60aa6474e90cd2cb80eaaaa0ed7ae4685fc1c30d6fc87bd59622a4009e4119
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.7.7

Release files / rpds_py-0.22.0-cp310-cp310-macosx_11_0_arm64.whl

Download URL rpds_py-0.22.0-cp310-cp310-macosx_11_0_arm64.whl
Size 345.1 kB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
e34a3e665d38d0749072e6565400c8ce9abae976e338919a0dfbfb0e1ba43068
BLAKE2b-256 checksum
How to use checksums
4530505b23dadaebf4bb70985fb424e06e2a193c3cad3045b3ad92e1504297dc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.7.7

Release files / rpds_py-0.22.0-cp310-cp310-macosx_10_12_x86_64.whl

Download URL rpds_py-0.22.0-cp310-cp310-macosx_10_12_x86_64.whl
Size 359.7 kB
Tags CPython 3.10 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
a4366f264fa60d3c109f0b27af0cd9eb8d46746bd70bd3d9d425f035b6c7e286
BLAKE2b-256 checksum
How to use checksums
5bd1341e74685b2452f2fee50859bb9abd89334eaa4ecfb36f37839e955066c5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.7.7

Release files / rpds_py-0.22.0-cp39-cp39-win_amd64.whl

Download URL rpds_py-0.22.0-cp39-cp39-win_amd64.whl
Size 231.8 kB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
5fdf91a7c07f40e47b193f2acae0ed9da35d09325d7c3c3279f722b7cbf3d264
BLAKE2b-256 checksum
How to use checksums
62198cff1f152015d5ea608a909f3bd8eb188e8453d09313bea8141ad18fa6d7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.7.7

Release files / rpds_py-0.22.0-cp39-cp39-win32.whl

Download URL rpds_py-0.22.0-cp39-cp39-win32.whl
Size 220.2 kB
Tags CPython 3.9 Windows x86-32
SHA-256 checksum
How to use checksums
fde778947304e55fc732bc8ea5c6063e74244ac1808471cb498983a210aaf62c
BLAKE2b-256 checksum
How to use checksums
6565700bd1064740e55e5a70f0d34d80ca281527ff23b5d9cea72a87027a3786
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.7.7

Release files / rpds_py-0.22.0-cp39-cp39-musllinux_1_2_x86_64.whl

Download URL rpds_py-0.22.0-cp39-cp39-musllinux_1_2_x86_64.whl
Size 550.8 kB
Tags CPython 3.9 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
8c48fc7458fe3a74dcdf56ba3534ff41bd421f69436df09ff3497fdaac18b431
BLAKE2b-256 checksum
How to use checksums
b89a39fe8c88e866ad4c53da9e9f7966947335307cded2d6bf967a1de9e63037
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.7.7

Release files / rpds_py-0.22.0-cp39-cp39-musllinux_1_2_i686.whl

Download URL rpds_py-0.22.0-cp39-cp39-musllinux_1_2_i686.whl
Size 582.7 kB
Tags CPython 3.9 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
9ad4640a409bc2b7d22b7921e7660f0db96c5c8c69fbb2e8f3261d4f71d33983
BLAKE2b-256 checksum
How to use checksums
b2fdcc03f5407ec81fd5fa4a95b8dd99aae8f3ab6c4f5cbfbdcb87f600a6b7a9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.7.7

Release files / rpds_py-0.22.0-cp39-cp39-musllinux_1_2_aarch64.whl

Download URL rpds_py-0.22.0-cp39-cp39-musllinux_1_2_aarch64.whl
Size 555.9 kB
Tags CPython 3.9 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
758098b38c344d9a7f279baf0689261777e601f620078ef5afdc9bd3339965c3
BLAKE2b-256 checksum
How to use checksums
f417293474ad2e51f3951e16790433e0011cd53ccec6ebde9cb5996aae49fb3b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.7.7

Release files / rpds_py-0.22.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL rpds_py-0.22.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 382.8 kB
Tags CPython 3.9 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
e0abcce5e874474d3eab5ad53be03dae2abe651d248bdeaabe83708e82969e78
BLAKE2b-256 checksum
How to use checksums
3f7efbf8a0a4beeca1adccf79b7e26e752c643cf32e9303f523d77d14ce0ba56
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.7.7

Release files / rpds_py-0.22.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL rpds_py-0.22.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 449.4 kB
Tags CPython 3.9 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
a73ed43d64209e853bba567a543170267a5cd64f359540b0ca2d597e329ba172
BLAKE2b-256 checksum
How to use checksums
b066dd85263427a2f09d9ea188b96fb45cc5e9caa0a1b2d1697c674e7c91099a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.7.7

Release files / rpds_py-0.22.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL rpds_py-0.22.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 424.9 kB
Tags CPython 3.9 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
32a0e24cab2daae0503b06666d516e90a080c1a95aff0406b9f03c6489177c4b
BLAKE2b-256 checksum
How to use checksums
e966336fe38f41659f8e93f0abb10a66a00d64316b8e3130942aa00a90a12dfc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.7.7

Release files / rpds_py-0.22.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL rpds_py-0.22.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 387.1 kB
Tags CPython 3.9 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
81e7a27365b02fe70a77f1365376879917235b3fec551d19b4c91b51d0bc1d07
BLAKE2b-256 checksum
How to use checksums
e6c285c0a32d546aa0ed08071138c71ac4c04681fff91ea0b404fdb95caf8413
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.7.7

Release files / rpds_py-0.22.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL rpds_py-0.22.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 381.6 kB
Tags CPython 3.9 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
ba235e00e0878ba1080b0f2a761f143b2a2d1c354f3d8e507fbf2f3de401bf18
BLAKE2b-256 checksum
How to use checksums
85d7d8da4351eaab4c054cff6e4b44ad291d0bfa55223d5e1740d19df07df700
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.7.7

Release files / rpds_py-0.22.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl

Download URL rpds_py-0.22.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Size 410.2 kB
Tags CPython 3.9 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
f4e9946c8c7def17e4fcb5eddb14c4eb6ebc7f6f309075e6c8d23b133c104607
BLAKE2b-256 checksum
How to use checksums
04451f68828db71b1e6f4efdbb4ae81561d62eaa2295f794cc8343cdf6287618
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.7.7

Release files / rpds_py-0.22.0-cp39-cp39-macosx_11_0_arm64.whl

Download URL rpds_py-0.22.0-cp39-cp39-macosx_11_0_arm64.whl
Size 345.1 kB
Tags CPython 3.9 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
ca505fd3767a09a139737f3278bc8a485cb64043062da89bcba27e2f2ea78d33
BLAKE2b-256 checksum
How to use checksums
4b1258c7a127ad9b3a3d70eda9fb633a0445fd7a3b22016535567bb8df943cf2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.7.7

Release files / rpds_py-0.22.0-cp39-cp39-macosx_10_12_x86_64.whl

Download URL rpds_py-0.22.0-cp39-cp39-macosx_10_12_x86_64.whl
Size 359.7 kB
Tags CPython 3.9 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
f980a0640599a74f27fd9d50c84c293f1cb7afc2046c5c6d3efaf8ec7cdbc326
BLAKE2b-256 checksum
How to use checksums
5a55a54716e46ac93a41d1539758c963451df36d75f2427869dac9fb5639de93
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.7.7

Release history Release notifications | RSS feed

This release

0.22.0 This release

101 release files

0.9.2

97 release files

0.7.1

59 release files

0.7.0

23 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page