Skip to main content

Python bindings to Rust's persistent data structures (rpds)

Reason this release was yanked:

https://github.com/PyO3/pyo3/issues/4757

Project description

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

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

rpds_py-0.22.1.tar.gz (26.8 kB view details)

Uploaded Source

Built Distributions

rpds_py-0.22.1-pp310-pypy310_pp73-win_amd64.whl (232.7 kB view details)

Uploaded PyPy Windows x86-64

rpds_py-0.22.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (551.7 kB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

rpds_py-0.22.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl (583.1 kB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

rpds_py-0.22.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (556.2 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

rpds_py-0.22.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (383.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

rpds_py-0.22.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (448.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

rpds_py-0.22.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (423.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

rpds_py-0.22.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (387.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

rpds_py-0.22.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (382.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

rpds_py-0.22.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (409.9 kB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

rpds_py-0.22.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl (350.5 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

rpds_py-0.22.1-pp310-pypy310_pp73-macosx_10_12_x86_64.whl (360.9 kB view details)

Uploaded PyPy macOS 10.12+ x86-64

rpds_py-0.22.1-pp39-pypy39_pp73-win_amd64.whl (232.6 kB view details)

Uploaded PyPy Windows x86-64

rpds_py-0.22.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (551.7 kB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

rpds_py-0.22.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl (583.1 kB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

rpds_py-0.22.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (556.2 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

rpds_py-0.22.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (383.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

rpds_py-0.22.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (448.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

rpds_py-0.22.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (423.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

rpds_py-0.22.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (387.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

rpds_py-0.22.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (382.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

rpds_py-0.22.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl (410.9 kB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

rpds_py-0.22.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl (349.4 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

rpds_py-0.22.1-pp39-pypy39_pp73-macosx_10_12_x86_64.whl (360.7 kB view details)

Uploaded PyPy macOS 10.12+ x86-64

rpds_py-0.22.1-cp313-cp313t-win_amd64.whl (234.0 kB view details)

Uploaded CPython 3.13t Windows x86-64

rpds_py-0.22.1-cp313-cp313t-win32.whl (218.7 kB view details)

Uploaded CPython 3.13t Windows x86

rpds_py-0.22.1-cp313-cp313t-musllinux_1_2_x86_64.whl (550.9 kB view details)

Uploaded CPython 3.13t musllinux: musl 1.2+ x86-64

rpds_py-0.22.1-cp313-cp313t-musllinux_1_2_i686.whl (582.6 kB view details)

Uploaded CPython 3.13t musllinux: musl 1.2+ i686

rpds_py-0.22.1-cp313-cp313t-musllinux_1_2_aarch64.whl (556.0 kB view details)

Uploaded CPython 3.13t musllinux: musl 1.2+ ARM64

rpds_py-0.22.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (382.8 kB view details)

Uploaded CPython 3.13t manylinux: glibc 2.17+ x86-64

rpds_py-0.22.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (447.2 kB view details)

Uploaded CPython 3.13t manylinux: glibc 2.17+ s390x

rpds_py-0.22.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (423.8 kB view details)

Uploaded CPython 3.13t manylinux: glibc 2.17+ ppc64le

rpds_py-0.22.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (386.8 kB view details)

Uploaded CPython 3.13t manylinux: glibc 2.17+ ARMv7l

rpds_py-0.22.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (382.8 kB view details)

Uploaded CPython 3.13t manylinux: glibc 2.17+ ARM64

rpds_py-0.22.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl (410.4 kB view details)

Uploaded CPython 3.13t manylinux: glibc 2.5+ i686

rpds_py-0.22.1-cp313-cp313t-macosx_11_0_arm64.whl (348.8 kB view details)

Uploaded CPython 3.13t macOS 11.0+ ARM64

rpds_py-0.22.1-cp313-cp313t-macosx_10_12_x86_64.whl (359.8 kB view details)

Uploaded CPython 3.13t macOS 10.12+ x86-64

rpds_py-0.22.1-cp313-cp313-win_amd64.whl (235.3 kB view details)

Uploaded CPython 3.13 Windows x86-64

rpds_py-0.22.1-cp313-cp313-win32.whl (220.6 kB view details)

Uploaded CPython 3.13 Windows x86

rpds_py-0.22.1-cp313-cp313-musllinux_1_2_x86_64.whl (550.9 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ x86-64

rpds_py-0.22.1-cp313-cp313-musllinux_1_2_i686.whl (582.6 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ i686

rpds_py-0.22.1-cp313-cp313-musllinux_1_2_aarch64.whl (556.0 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ ARM64

rpds_py-0.22.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (382.8 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

rpds_py-0.22.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (447.2 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ s390x

rpds_py-0.22.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (423.8 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ppc64le

rpds_py-0.22.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (386.8 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARMv7l

rpds_py-0.22.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (382.8 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

rpds_py-0.22.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (410.4 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.5+ i686

rpds_py-0.22.1-cp313-cp313-macosx_11_0_arm64.whl (348.8 kB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

rpds_py-0.22.1-cp313-cp313-macosx_10_12_x86_64.whl (359.8 kB view details)

Uploaded CPython 3.13 macOS 10.12+ x86-64

rpds_py-0.22.1-cp312-cp312-win_amd64.whl (235.6 kB view details)

Uploaded CPython 3.12 Windows x86-64

rpds_py-0.22.1-cp312-cp312-win32.whl (221.8 kB view details)

Uploaded CPython 3.12 Windows x86

rpds_py-0.22.1-cp312-cp312-musllinux_1_2_x86_64.whl (550.9 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

rpds_py-0.22.1-cp312-cp312-musllinux_1_2_i686.whl (582.6 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

rpds_py-0.22.1-cp312-cp312-musllinux_1_2_aarch64.whl (556.0 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

rpds_py-0.22.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (382.8 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

rpds_py-0.22.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (447.2 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

rpds_py-0.22.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (423.8 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

rpds_py-0.22.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (386.8 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

rpds_py-0.22.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (382.8 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

rpds_py-0.22.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (410.4 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.5+ i686

rpds_py-0.22.1-cp312-cp312-macosx_11_0_arm64.whl (348.8 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

rpds_py-0.22.1-cp312-cp312-macosx_10_12_x86_64.whl (359.8 kB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

rpds_py-0.22.1-cp311-cp311-win_amd64.whl (230.8 kB view details)

Uploaded CPython 3.11 Windows x86-64

rpds_py-0.22.1-cp311-cp311-win32.whl (220.3 kB view details)

Uploaded CPython 3.11 Windows x86

rpds_py-0.22.1-cp311-cp311-musllinux_1_2_x86_64.whl (550.9 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

rpds_py-0.22.1-cp311-cp311-musllinux_1_2_i686.whl (582.6 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

rpds_py-0.22.1-cp311-cp311-musllinux_1_2_aarch64.whl (556.0 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

rpds_py-0.22.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (382.8 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

rpds_py-0.22.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (447.2 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

rpds_py-0.22.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (423.8 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

rpds_py-0.22.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (386.8 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

rpds_py-0.22.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (382.8 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

rpds_py-0.22.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (410.4 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.5+ i686

rpds_py-0.22.1-cp311-cp311-macosx_11_0_arm64.whl (348.8 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

rpds_py-0.22.1-cp311-cp311-macosx_10_12_x86_64.whl (359.8 kB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

rpds_py-0.22.1-cp310-cp310-win_amd64.whl (230.7 kB view details)

Uploaded CPython 3.10 Windows x86-64

rpds_py-0.22.1-cp310-cp310-win32.whl (219.6 kB view details)

Uploaded CPython 3.10 Windows x86

rpds_py-0.22.1-cp310-cp310-musllinux_1_2_x86_64.whl (550.9 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

rpds_py-0.22.1-cp310-cp310-musllinux_1_2_i686.whl (582.6 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

rpds_py-0.22.1-cp310-cp310-musllinux_1_2_aarch64.whl (556.0 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

rpds_py-0.22.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (382.8 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

rpds_py-0.22.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (447.2 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

rpds_py-0.22.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (423.8 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

rpds_py-0.22.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (386.8 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

rpds_py-0.22.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (382.8 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

rpds_py-0.22.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (410.4 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.5+ i686

rpds_py-0.22.1-cp310-cp310-macosx_11_0_arm64.whl (348.8 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

rpds_py-0.22.1-cp310-cp310-macosx_10_12_x86_64.whl (359.8 kB view details)

Uploaded CPython 3.10 macOS 10.12+ x86-64

rpds_py-0.22.1-cp39-cp39-win_amd64.whl (231.5 kB view details)

Uploaded CPython 3.9 Windows x86-64

rpds_py-0.22.1-cp39-cp39-win32.whl (220.1 kB view details)

Uploaded CPython 3.9 Windows x86

rpds_py-0.22.1-cp39-cp39-musllinux_1_2_x86_64.whl (550.9 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

rpds_py-0.22.1-cp39-cp39-musllinux_1_2_i686.whl (582.6 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

rpds_py-0.22.1-cp39-cp39-musllinux_1_2_aarch64.whl (555.9 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

rpds_py-0.22.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (382.8 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

rpds_py-0.22.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (447.2 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

rpds_py-0.22.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (423.8 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

rpds_py-0.22.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (386.8 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

rpds_py-0.22.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (382.8 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

rpds_py-0.22.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (410.4 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

rpds_py-0.22.1-cp39-cp39-macosx_11_0_arm64.whl (348.8 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

rpds_py-0.22.1-cp39-cp39-macosx_10_12_x86_64.whl (359.8 kB view details)

Uploaded CPython 3.9 macOS 10.12+ x86-64

File details

Details for the file rpds_py-0.22.1.tar.gz.

File metadata

  • Download URL: rpds_py-0.22.1.tar.gz
  • Upload date:
  • Size: 26.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.7.7

File hashes

Hashes for rpds_py-0.22.1.tar.gz
Algorithm Hash digest
SHA256 157a023bded0618a1eea54979fe2e0f9309e9ddc818ef4b8fc3b884ff38fedd5
MD5 338ea32d2ba12d9d6f401bff1d69ef7c
BLAKE2b-256 11e89316e3d6edd0530ac284cee5c7ab1cd00acf020b68e08c051c91580d893e

See more details on using hashes here.

File details

Details for the file rpds_py-0.22.1-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for rpds_py-0.22.1-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 f2d1b58a0c3a73f0361759642e80260a6d28eee6501b40fe25b82af33ef83f21
MD5 027a7fa64f7f970e131524f1398522cd
BLAKE2b-256 89ffbff106f96299a37bf73bc2afcb8a11c457247486204183b2530d39906680

See more details on using hashes here.

File details

Details for the file rpds_py-0.22.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-0.22.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c6f3fd617db422c9d4e12cb8d84c984fe07d6d9cb0950cbf117f3bccc6268d05
MD5 62e4b04d0be28d05a12d8624e128104d
BLAKE2b-256 60be632c1e80e10fe7cb41acfd7058da88ed8b7482696664b206f981253385d0

See more details on using hashes here.

File details

Details for the file rpds_py-0.22.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rpds_py-0.22.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 85060e96953647871957d41707adb8d7bff4e977042fd0deb4fc1881b98dd2fe
MD5 af6c7295b4f70487017a35f9ea9a83e8
BLAKE2b-256 950e04713793c644ea1ae7a89b16044f04b1eafdb2588b2ceff5b6afc4f6e786

See more details on using hashes here.

File details

Details for the file rpds_py-0.22.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rpds_py-0.22.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c2a214bf5b79bd39a9de1c991353aaaacafda83ba1374178309e92be8e67d411
MD5 8e4377a9b261dfa5bb8824726522c665
BLAKE2b-256 2b40eca7e4af7d7a0e00ca13addf69d8a5d988f9a1586e3613004941e5baa310

See more details on using hashes here.

File details

Details for the file rpds_py-0.22.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-0.22.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 36ce951800ed2acc6772fd9f42150f29d567f0423989748052fdb39d9e2b5795
MD5 0e31f4ca481653af60c6f68bf09a199a
BLAKE2b-256 daa3b4ee9cec0a5da29f342c616212b8892dcb9a85193bda59168fc5122a9b77

See more details on using hashes here.

File details

Details for the file rpds_py-0.22.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rpds_py-0.22.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fdaee3947eaaa52dae3ceb9d9f66329e13d8bae35682b1e5dd54612938693934
MD5 454681603cc1ba22df01222260a34648
BLAKE2b-256 1b24a6e39c419dc2223ff261ad33d36631710bd91dcd06b4f4b976bf12b5bddc

See more details on using hashes here.

File details

Details for the file rpds_py-0.22.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rpds_py-0.22.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 149b4d875ef9b12a8f5e303e86a32a58f8ef627e57ec97a7d0e4be819069d141
MD5 52a12c0b8b7acb2042d0ec67c0e4f707
BLAKE2b-256 92eef4235ac9d312e9ffaa578af7df1e7dc186f0cd5fbda6172b0adf6bfea7fa

See more details on using hashes here.

File details

Details for the file rpds_py-0.22.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rpds_py-0.22.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a18aedc032d6468b73ebbe4437129cb30d54fe543cde2f23671ecad76c3aea24
MD5 6e13244c25ba88f57dc3b61d0214bb0f
BLAKE2b-256 77c88e105a04d11bfb8c385083b92cc62b781b4fb3e17a1c840db20836bbd130

See more details on using hashes here.

File details

Details for the file rpds_py-0.22.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rpds_py-0.22.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4659b2e4a5008715099e216050f5c6976e5a4329482664411789968b82e3f17d
MD5 38da31cdb3d67e700daf0b3516697bc9
BLAKE2b-256 843fddcd73395fc61e0c14a4dabfa191a86055b1049fcae4e4ebac0b9a5ec535

See more details on using hashes here.

File details

Details for the file rpds_py-0.22.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rpds_py-0.22.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ab784621d3e2a41916e21f13a483602cc989fd45fff637634b9231ba43d4383b
MD5 5a5f76385a6fc4b78db92393824728fb
BLAKE2b-256 4f7e76b2ca97fab7d83316bb2886d60648d06af117e547ef74eefd0fbd960994

See more details on using hashes here.

File details

Details for the file rpds_py-0.22.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rpds_py-0.22.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 05fdeae9010533e47715c37df83264df0122584e40d691d50cf3607c060952a3
MD5 d3b17b47f137541b047cefa294755e5f
BLAKE2b-256 1f789ee651ced420a565767f5e6b955faa5d6625f001322a5902cd6ce984eab4

See more details on using hashes here.

File details

Details for the file rpds_py-0.22.1-pp310-pypy310_pp73-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-0.22.1-pp310-pypy310_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a0ed14a4162c2c2b21a162c9fcf90057e3e7da18cd171ab344c1e1664f75090e
MD5 91814ce061efc61b46c78b9b76af6076
BLAKE2b-256 34103396614fc6c261850b94f485f390ae1d8d3adaa251ac47d616516280902d

See more details on using hashes here.

File details

Details for the file rpds_py-0.22.1-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for rpds_py-0.22.1-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 e4f91d702b9ce1388660b3d4a28aa552614a1399e93f718ed0dacd68f23b3d32
MD5 52b621eefafaaf5df890da223c23fa85
BLAKE2b-256 3f0c793f8a9d1cdbaf03533ccd561c3740586d7606a532cf592641667ceef5bb

See more details on using hashes here.

File details

Details for the file rpds_py-0.22.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-0.22.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 776a06cb5720556a549829896a49acebb5bdd96c7bba100191a994053546975a
MD5 4cb1ff751794b4079dcbd9f24f0619b4
BLAKE2b-256 42f6d49b8d01becb740578903f37f7ff8cbadca279b723e423b2f70d27e3af46

See more details on using hashes here.

File details

Details for the file rpds_py-0.22.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rpds_py-0.22.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4c8dc7331e8cbb1c0ea2bcb550adb1777365944ffd125c69aa1117fdef4887f5
MD5 9d1863654d5080f294cd70b21f05591c
BLAKE2b-256 19889b5a3e251ca93486eaa4c853e139070350a4b9d84914268d8cc1ce08518c

See more details on using hashes here.

File details

Details for the file rpds_py-0.22.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rpds_py-0.22.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d8306f27418361b788e3fca9f47dec125457f80122e7e31ba7ff5cdba98343f8
MD5 60e8bc554bcc60783cb8f1320878b9df
BLAKE2b-256 c70964d5572c633f34aa1c6f640692f62d10b606a7f8e1b9d7c0ed6fe7e99920

See more details on using hashes here.

File details

Details for the file rpds_py-0.22.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-0.22.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fe3f245c2f39a5692d9123c174bc48f6f9fe3e96407e67c6d04541a767d99e72
MD5 1eb739a561831cb5318afe1fb1ae6b7c
BLAKE2b-256 68573de6250e287f0452021af372aeb3a9376cb7e33dde9e5c08114aa3c5b2bc

See more details on using hashes here.

File details

Details for the file rpds_py-0.22.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rpds_py-0.22.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ef7282d8a14b60dd515e47060638687710b1d518f4b5e961caad43fb3a3606f9
MD5 7aa6201b2ce5664b2a6584b8c2e90dab
BLAKE2b-256 8d582c2a57cb7a5baeab61b0ff8d1ac576ab8e824f3eb1973df7b6b412c42d9a

See more details on using hashes here.

File details

Details for the file rpds_py-0.22.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rpds_py-0.22.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0545928bdf53dfdfcab284468212efefb8a6608ca3b6910c7fb2e5ed8bdc2dc0
MD5 0715e27246eef43a8255c5fd7ebdb5fa
BLAKE2b-256 a881df107b6d1da7cf4d6c85921b2f294799328ec7983824ab42bb3471e10ac6

See more details on using hashes here.

File details

Details for the file rpds_py-0.22.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rpds_py-0.22.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3e7e99e2af59c56c59b6c964d612511b8203480d39d1ef83edc56f2cb42a3f5d
MD5 659a4e62b79f82ab320b96e405eca2bf
BLAKE2b-256 b1beac77cb6382593378e1459ed2cb2a97aeecc07f9dc2e23c77d3fc72f04995

See more details on using hashes here.

File details

Details for the file rpds_py-0.22.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rpds_py-0.22.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 198067aa6f3d942ff5d0d655bb1e91b59ae85279d47590682cba2834ac1b97d2
MD5 8f23b2465cdb1e63eb4b33d77af9a5f1
BLAKE2b-256 2da1aca84f63d52c98fd5ddf318d52bed4ec000a431da0152003094224464f88

See more details on using hashes here.

File details

Details for the file rpds_py-0.22.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rpds_py-0.22.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 efb2ad60ca8637d5f9f653f9a9a8d73964059972b6b95036be77e028bffc68a3
MD5 01c7d4cd33517112cd652d7ce49b8aca
BLAKE2b-256 57acec3a91ff96b9041a6a87596e3bcca1d7696cc6a404181bbdd9384add8a7b

See more details on using hashes here.

File details

Details for the file rpds_py-0.22.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rpds_py-0.22.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 959ae04ed30cde606f3a0320f0a1f4167a107e685ef5209cce28c5080590bd31
MD5 321090801850cd0e745541bfbd330c69
BLAKE2b-256 e01abbdc85f8a2ae2e2f6372ee828a36767861106b4e21caa181365a8f5a5183

See more details on using hashes here.

File details

Details for the file rpds_py-0.22.1-pp39-pypy39_pp73-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-0.22.1-pp39-pypy39_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 76eaa4c087a061a2c8a0a92536405069878a8f530c00e84a9eaf332e70f5561f
MD5 605f307c2d386cee44fa40e2aaf4c165
BLAKE2b-256 389956844293536a59264a854ce445ac32444e2dbb355addbece67ccf51f5bd6

See more details on using hashes here.

File details

Details for the file rpds_py-0.22.1-cp313-cp313t-win_amd64.whl.

File metadata

File hashes

Hashes for rpds_py-0.22.1-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 c783e4ed68200f4e03c125690d23158b1c49c4b186d458a18debc109bbdc3c2e
MD5 7fa230b82fbab37a45320f14cc53bdcd
BLAKE2b-256 8d117b85f62e320e57f81c57a07050e50775ff737eb9031a496cd46c5c99bf7c

See more details on using hashes here.

File details

Details for the file rpds_py-0.22.1-cp313-cp313t-win32.whl.

File metadata

File hashes

Hashes for rpds_py-0.22.1-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 e69acdbc132c9592c8dc393af85e38e206ca847c7019a953ff625191c3a12312
MD5 5ea8417e576cc8969d3c534ad9738479
BLAKE2b-256 ca9bb192511c43b93974187dc76a0358c97cd95bc3dda6cd25bb2b2618c38651

See more details on using hashes here.

File details

Details for the file rpds_py-0.22.1-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-0.22.1-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 babec324e8654a59122aaa66936a9a483faa03276db9792f51332475c2dddc4a
MD5 485964ea6aea6697a3bd87e7ff1b51bd
BLAKE2b-256 02fa440a7fbf267bc2d6c00ba435aeab5443012d639b989368ee5cdc5514bb30

See more details on using hashes here.

File details

Details for the file rpds_py-0.22.1-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rpds_py-0.22.1-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 48ee97c7c6027fd423058675b5a39d0b5f7a1648250b671563d5c9f74ff13ff0
MD5 eccb307e27e0ec0336b5ba58dc36903d
BLAKE2b-256 28ebf1948391c3d6aca72cb5db451ff6c5de5ef45a73b420d32057c56655c557

See more details on using hashes here.

File details

Details for the file rpds_py-0.22.1-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rpds_py-0.22.1-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0f057a0c546c42964836b209d8de9ea1a4f4b0432006c6343cbe633d8ca14571
MD5 bcf35104adbed4bbc0149aa0f44cd79b
BLAKE2b-256 e89ab9025fbdfef063d0235ffad0ad212c3eaeeadb5ba25fa6791936debae4a7

See more details on using hashes here.

File details

Details for the file rpds_py-0.22.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-0.22.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ffae97d28ea4f2c613a751d087b75a97fb78311b38cc2e9a2f4587e473ace167
MD5 0176a5306f67f8a8a79c35dc84a1cb32
BLAKE2b-256 4ea6568f9f5723623d820104b6207e941ade51534c4c2998164d492b2f048f9f

See more details on using hashes here.

File details

Details for the file rpds_py-0.22.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rpds_py-0.22.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 542eb246d5be31b5e0a9c8ddb9539416f9b31f58f75bd4ee328bff2b5c58d6fd
MD5 1c5bf1dd21d3a18874cbff53570f23d7
BLAKE2b-256 b304da357292b3243fd36b2c6eb2cd447bdec131cca9eec46a88d926a25edd17

See more details on using hashes here.

File details

Details for the file rpds_py-0.22.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rpds_py-0.22.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a083221b6a4ecdef38a60c95d8d3223d99449cb4da2544e9644958dc16664eb9
MD5 f2ce4aee46286db811c947bbe626b3e4
BLAKE2b-256 e1f75f8704d552afee8abc33dfc42a34e9de4c1ad9793d292b229442b1988b11

See more details on using hashes here.

File details

Details for the file rpds_py-0.22.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rpds_py-0.22.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c8502a02ae3ae67084f5a0bf5a8253b19fa7a887f824e41e016cdb0ac532a06f
MD5 1dfc7231f9a85f424ade1142a0f84829
BLAKE2b-256 1f77239898255b6c83854ccf46f3c2c00aa001ba55158009623e6879070c9dd3

See more details on using hashes here.

File details

Details for the file rpds_py-0.22.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rpds_py-0.22.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8954b9ffe60f479a0c0ba40987db2546c735ab02a725ea7fd89342152d4d821d
MD5 b8c321c2e0d69054c620d285be209afb
BLAKE2b-256 6ea6d63e36f306e96a73a70e7cd3fec3e7c8a2f20d08e2937072f3c03ea49ad9

See more details on using hashes here.

File details

Details for the file rpds_py-0.22.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rpds_py-0.22.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d0ff8d5b13ce2357fa8b33a0a2e3775aa71df5bf7c8ba060634c9d15ab12f357
MD5 519cfedb06274d144dc104a249e1cc12
BLAKE2b-256 1387defecb38c9194163e50c84576622c7a3818b0948e203133f47a4e96e7280

See more details on using hashes here.

File details

Details for the file rpds_py-0.22.1-cp313-cp313t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rpds_py-0.22.1-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3aaa22487477de9618ce3b37f99fbe81219ba96f3c2ca84f576f0ab451b83aba
MD5 4de69f344a0cd8757ecec8c5720d637a
BLAKE2b-256 2e42ae03ca24b8fe5c8c43e41693b3e34cc61e548df37f3fd82366fe6b3f33f1

See more details on using hashes here.

File details

Details for the file rpds_py-0.22.1-cp313-cp313t-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-0.22.1-cp313-cp313t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2ea23f1525d4f64286dbe0947c929d45c3ffe963b2dbed1d3844a2e4938bda42
MD5 cd06ed70189f3fd67f4dd0146846457e
BLAKE2b-256 d96a5dbe7d23c6bd11ba69a0d9a45c36e2a8e42e852f3203f1fb839b2de781f6

See more details on using hashes here.

File details

Details for the file rpds_py-0.22.1-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for rpds_py-0.22.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 a451dba533be77454ebcffc85189108fc05f279100835ac76e7989edacb89156
MD5 2b96ea67fa6dba716b92317d4363176c
BLAKE2b-256 428656c04f20cab42d7b0fa709fb3995a40f01b159913b2024334a5af21edf59

See more details on using hashes here.

File details

Details for the file rpds_py-0.22.1-cp313-cp313-win32.whl.

File metadata

  • Download URL: rpds_py-0.22.1-cp313-cp313-win32.whl
  • Upload date:
  • Size: 220.6 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.7.7

File hashes

Hashes for rpds_py-0.22.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 e8056adcefa2dcb67e8bc91ea5eee26df66e8b297a8cd6ff0903f85c70908fa0
MD5 dfce0a965b3d6d47ca4224186a34efa3
BLAKE2b-256 de7e8062ed108f9110c5a838fca2098d6a0a390cd852f96d64016b29005e8b1c

See more details on using hashes here.

File details

Details for the file rpds_py-0.22.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-0.22.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0a53592cdf98cec3dfcdb24ffec8a4797e7656b65700099af43ec7df023b6de4
MD5 a4eda63ab27ed2ab21a6a7f7fe7ec4de
BLAKE2b-256 eba27c64acf84e161e767ec6779b0d8c604ca9ab0d07548fb1ce386053936d22

See more details on using hashes here.

File details

Details for the file rpds_py-0.22.1-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rpds_py-0.22.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 153248f48d6f90a295a502f53ec544a3ffbd21b0bb32f5dca39c4b93a764d6a2
MD5 2ab5b6dc6c7d863b74769c5bd9bf0fcd
BLAKE2b-256 e4548fe2b6f0bf6929e22fb00b3be14d2d04638d65c51c5d115922320f965399

See more details on using hashes here.

File details

Details for the file rpds_py-0.22.1-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rpds_py-0.22.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0f9eb37d3a60b262a98ab51ee899cac039de9ca0ce68dcf1a6518a09719020b0
MD5 aea34084d0c880cd450917e828559c1b
BLAKE2b-256 e5208dfcb8695e697e8806eff9fd3d3f64c90c923ea1d5171e424c4ac845cdd2

See more details on using hashes here.

File details

Details for the file rpds_py-0.22.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-0.22.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8ce729f1dc8a4a190c34b69f75377bddc004079b2963ab722ab91fafe040be6d
MD5 20b9b773c8881bf03dc11d6be57a19ed
BLAKE2b-256 56c0b1597ea93740acf94cd0abb15dea15e250f7be295c2d902d1186e34223b7

See more details on using hashes here.

File details

Details for the file rpds_py-0.22.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rpds_py-0.22.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d962e2e89b3a95e3597a34b8c93ced1e98958502c5b8096c9fd69deff279f561
MD5 3da3256f32846f6a3c7e54f853ed8688
BLAKE2b-256 6a9d3d7543a66af3fd25c215eb3f15cb98eb4c4b57119a8778c2ca710dee1427

See more details on using hashes here.

File details

Details for the file rpds_py-0.22.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rpds_py-0.22.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c0467838c90435b80793cde486a318fc916ee57f2af54e4b10c72b20cbdcbaa9
MD5 924b76768824d35b70b4067734ebc260
BLAKE2b-256 694b2ea74ac5819229dc2d1d996898aaa333e636541558ddbe19cf88d073827a

See more details on using hashes here.

File details

Details for the file rpds_py-0.22.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rpds_py-0.22.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d7833ef6f5d6cb634f296abfd93452fb3eb44c4e9a6ae95c1021eab704c1cee2
MD5 75e8e2f3fa286cc8ebc9a1225e1a50db
BLAKE2b-256 298915ece22c00f8d6dc80fba275d343e99f473bc737472ac52ebccbcf6e9591

See more details on using hashes here.

File details

Details for the file rpds_py-0.22.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rpds_py-0.22.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 15fa4ca658f8ad22645d3531682b17e5580832efbfa87304c3e62214c79c1e8a
MD5 b0130e99dc1d99388065cab156ef0e88
BLAKE2b-256 497720d83f9ed2da4f6aefb3a01858fabd1bd4ae89fc92649b9bb1c69d0ebc5f

See more details on using hashes here.

File details

Details for the file rpds_py-0.22.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rpds_py-0.22.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8080467df22feca0fc9c46567001777c6fbc2b4a2683a7137420896051874ca1
MD5 e16f425e52ac369fbe2a35cd8ccd9870
BLAKE2b-256 82ca389c65448c2a02a8a4152e109efe82f86ed41f2e6aaea38bb80b4b0c4897

See more details on using hashes here.

File details

Details for the file rpds_py-0.22.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rpds_py-0.22.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4ba6c66fbc6015b2f99e7176fec41793cecb00c4cc357cad038dff85e6ac42ab
MD5 54474db573b1b6b8366d6d671005cf33
BLAKE2b-256 cb3154b3dc47736c01bd3159cbaf760708c88680871cd2154a7324ea057a0823

See more details on using hashes here.

File details

Details for the file rpds_py-0.22.1-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-0.22.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 aa2ba0176037c915d8660a4e46581d645e2c22b5373e466bc8640a794d45861a
MD5 e626683e6210231dc9e2b551b06fe144
BLAKE2b-256 93284766ad8c4143d5eed0df4875ba9f94bcfa4f70855abf6705900112148c0b

See more details on using hashes here.

File details

Details for the file rpds_py-0.22.1-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for rpds_py-0.22.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 413a30a99d8683dace3765885920ed27ab662efbb6c98d81db76c397ad1ffd71
MD5 5bba376aa23d71b77bf41f3d5faa5fc8
BLAKE2b-256 7e2772a81a0c7a49574695f454cbfdeb2de15229cf8393cb8107f706e575ca6a

See more details on using hashes here.

File details

Details for the file rpds_py-0.22.1-cp312-cp312-win32.whl.

File metadata

  • Download URL: rpds_py-0.22.1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 221.8 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.7.7

File hashes

Hashes for rpds_py-0.22.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 55d371b9d8b0c2a68a50413a8cb01c3c3ce1ea4f768bf77b66669a9a486e101e
MD5 7920b2fdaf5cfee67281a62c9a255196
BLAKE2b-256 6087b56533af76a9d2f9377de867e9b3b4ffa0134fd10116a9234eae8ae4448b

See more details on using hashes here.

File details

Details for the file rpds_py-0.22.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-0.22.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 447ae1104fb32197b9262f772d565d38e834cc2e9edd89350b37b88fed636e70
MD5 c8de55b85b19d3b8e6156129a1778340
BLAKE2b-256 2defec5e00bdbebfc8ba6fbf2665f5156e762142cfe0c66c8f0c3be4c564b8b7

See more details on using hashes here.

File details

Details for the file rpds_py-0.22.1-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rpds_py-0.22.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d3777c446bb1c5fcd82dc3f8776e1a146cd91e80cc1892f8634575ace438d22f
MD5 d48527e84b416c2c831201f22ce04d11
BLAKE2b-256 b51bf938d0c5ca75cb4069d7e77718617bdd6481d2c00f2e103a543527b70997

See more details on using hashes here.

File details

Details for the file rpds_py-0.22.1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rpds_py-0.22.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 50e4b5d291105f7063259fe0125b1af902fb34499444d7c5c521dd8328b00939
MD5 ec40b0695ca82dc1ba65c06b61d98a6a
BLAKE2b-256 ac1bc28ba06707bfccdde83319e73e3415c0617367ef6794ec1e51a3bbff45e6

See more details on using hashes here.

File details

Details for the file rpds_py-0.22.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-0.22.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d280b4bf09f719b89fd9aab3b71067acc0d0449b7d1eba99a2ade4939cef8296
MD5 f8e13aed7ffdd85ecc3126bf09279e4d
BLAKE2b-256 1f14213b5e9b4b5b47bbb57ed38ff9b0d91238209ab344ace83d549ef84e2a5b

See more details on using hashes here.

File details

Details for the file rpds_py-0.22.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rpds_py-0.22.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c3029f481b31f329b1fdb4ec4b56935d82210ddd9c6f86ea5a87c06f1e97b161
MD5 eb8c6ed24ea47e6d748de20dded21bce
BLAKE2b-256 0f578d7063ff6d19ae3689346b8b651854b710ec797864b63d53a680fad8a175

See more details on using hashes here.

File details

Details for the file rpds_py-0.22.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rpds_py-0.22.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 96b3759d8ab2323324e0a92b2f44834f9d88089b8d1ab6f533b61f4be3411cef
MD5 620b5e3922069923c16058f4e8f5256a
BLAKE2b-256 13c2b7b196bd059c366b3a7dfba3fc0c07cf4de68bbedb178647fad0936fde67

See more details on using hashes here.

File details

Details for the file rpds_py-0.22.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rpds_py-0.22.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5dbff9402c2bdf00bf0df9905694b3c292a3847c725651938a72f554351a5fcb
MD5 903ff1f731d483adbabc591ef08641bc
BLAKE2b-256 b71a59a257f9800c4558e2efee39355f6c2a1f0459bdcb587e2b3ca641ef6a79

See more details on using hashes here.

File details

Details for the file rpds_py-0.22.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rpds_py-0.22.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8a603155db408f773637f9e3a712c6e3cbc521aaa8fa2b99f9ba6106c59a2496
MD5 164e273d098e30c4883bcebd0a30a425
BLAKE2b-256 a9d890850372daad6f8720a20386742d8c04fdd193c4b73683f2bdb68c7f2728

See more details on using hashes here.

File details

Details for the file rpds_py-0.22.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rpds_py-0.22.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 6c8e97e19aa7b0b0d801a159f932ce4435f1049c8c38e2bb372bb5bee559ce50
MD5 50c61c6a8a8d240449f0af5ac0ff0728
BLAKE2b-256 fa3ce2275fa7aff2f820d8f7c580449dd7a28e3231ae89db216b04f352d15b15

See more details on using hashes here.

File details

Details for the file rpds_py-0.22.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rpds_py-0.22.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 102be79c4cc47a4aeb5912401185c404cd2601c15a7163bbecff7f1bfe20b669
MD5 67a6f59e428f160f7a4d2f66f3c1d68b
BLAKE2b-256 2b916ebbb093aef5e27cd1ec3b08899c5fe4fb0614e526209929924ead903d41

See more details on using hashes here.

File details

Details for the file rpds_py-0.22.1-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-0.22.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8ec41049c90d204a6561238a9ad6c7263ebb7009d9759c98b58078d9d2fec9ba
MD5 1c0262b459a445374a66576512fc34be
BLAKE2b-256 fa964259b1aecb57c501d84df1fd39aec62730a1714ee30798a0225d66b6e8a4

See more details on using hashes here.

File details

Details for the file rpds_py-0.22.1-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for rpds_py-0.22.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 8bd9ec1db79a664f4cbb12878693b73416f4d2cb425d3e27eccc1bdfbdc826ef
MD5 b680c9baebbc2ba2e78bd9369099cc4c
BLAKE2b-256 7f0159413b416513d678649deb32a37b539143703e0bf5da13d43b8332383fb5

See more details on using hashes here.

File details

Details for the file rpds_py-0.22.1-cp311-cp311-win32.whl.

File metadata

  • Download URL: rpds_py-0.22.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 220.3 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.7.7

File hashes

Hashes for rpds_py-0.22.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 eb013aa01b404219f28dc973d9e6310fd4db216d7299253dd355629952e0564e
MD5 b867928de3530a5fa9921c42cab20667
BLAKE2b-256 fcc6196c2f45de72ca39919d08c126b25c70490871a44d6b97311f35e9831110

See more details on using hashes here.

File details

Details for the file rpds_py-0.22.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-0.22.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 72407065ad459db9f3d052ea8c51e02534f02533fc61e51cbab3bd94166f086c
MD5 dc6244b752bee15cd9b0e2ea4d9f1ac5
BLAKE2b-256 51dca9c5f660cc918b2fa7242d3a8cb7a8191d9bdd7dddb9945a5e5ea0b118c2

See more details on using hashes here.

File details

Details for the file rpds_py-0.22.1-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rpds_py-0.22.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1ded65691a1d3fd7d2aa89d2c91aa51f941601bb2ce099739909034d957fef4b
MD5 0a2e20aa17b40641b64cd190832e7cb6
BLAKE2b-256 051169facebe6fb839612a5215986f874b7c78be91f4bd0c86d6addad4a0a620

See more details on using hashes here.

File details

Details for the file rpds_py-0.22.1-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rpds_py-0.22.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bca4428c4a957b78ded3e6e62884ab03f029dce8fa8d34818da0f80f61332b49
MD5 8d4be6e10295f7e6a5d8bd22cad79c86
BLAKE2b-256 0b76f05b9aeedbffc358735e829fc7336ec1e84eb1ecf0fe49556815b26c40f3

See more details on using hashes here.

File details

Details for the file rpds_py-0.22.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-0.22.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 734783dd7da58f76222f458346ddebdb3621686a1a2a667db5049caf0c9956b9
MD5 5b40f630709d15b3dab8cbb3d48003be
BLAKE2b-256 494289a2d8ae8fbcd755b3d0de2fa6d5fb40936a95b582df48551ec8aabc549c

See more details on using hashes here.

File details

Details for the file rpds_py-0.22.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rpds_py-0.22.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 128cbaed7ba26116820bcb992405d6a13ea18c8fca1b8c4f59906d858e91e979
MD5 3cf8dd3d8db5cb8b90cf2154b35eae0e
BLAKE2b-256 3df10f92ae0f47a1d9cbe58f8a47c7dd50168f9bbaf26ed66fcfc930309d2a29

See more details on using hashes here.

File details

Details for the file rpds_py-0.22.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rpds_py-0.22.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 96559e05bdf938b2048353e10a7920b98f853cefe4482c2064a718d7d0a50bd7
MD5 ea6ecffd2aa2c8afa3baa6be34c1fc77
BLAKE2b-256 2030c8475ac9e6dce0bb5767ad3d2d4d48fb0a20539227f669e3a5675643a85e

See more details on using hashes here.

File details

Details for the file rpds_py-0.22.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rpds_py-0.22.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 580ccbf11f02f948add4cb641843030a89f1463d7c0740cbfc9aca91e9dc34b3
MD5 24db2f93de853205ea86d81292330ff7
BLAKE2b-256 185d83a8a1354956672e173d045bd31132cb13182a1f178cac5a3852dca1a0f4

See more details on using hashes here.

File details

Details for the file rpds_py-0.22.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rpds_py-0.22.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 09a1f000c5f6e08b298275bae00921e9fbbf2a35dae0a86db2821c058c2201a9
MD5 4cb7a83ec4907ac4bb9146241437b2d5
BLAKE2b-256 dc3db445fd2805aa70235a78dc7e1d384b677decee464b0b7ada9ababb7c9488

See more details on using hashes here.

File details

Details for the file rpds_py-0.22.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rpds_py-0.22.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c9ce6b83597d45bec44a2690857ede62fc98223772135f8a7fa90884eb726501
MD5 dcad922786d36c367857ca9129c73747
BLAKE2b-256 56344386f41a18fca3861c6a8fc70e80caac6a3490c6533553ce76e6dc63ca77

See more details on using hashes here.

File details

Details for the file rpds_py-0.22.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rpds_py-0.22.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9dae4eb9b5534e09ba6c6ab496a757e5e394b7e7b08767d25ca37e8d36491114
MD5 e3b9b2534238f54df4184d5aca95cc80
BLAKE2b-256 3fa844dd239c670303a48a202e46f9652089e8df4a9f4fabd035e1c4ac14ae25

See more details on using hashes here.

File details

Details for the file rpds_py-0.22.1-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-0.22.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 608c84699b2db09c6a8743845b1a3dad36fae53eaaecb241d45b13dff74405fb
MD5 32f1a8c59e31cbfcbd26f77065b7ddb1
BLAKE2b-256 34dab2d57b9c0a9adcc5231a9e30e502b64e97925c664bf0e1821100c8bb639f

See more details on using hashes here.

File details

Details for the file rpds_py-0.22.1-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for rpds_py-0.22.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 ca4657e9fd0b1b5376942d403d634ce188f79064f0873aa853ab05b10185ceec
MD5 b1475f7f54ab13375814b6f3cc0a3a63
BLAKE2b-256 3539bca2385071b5d72b4f2200ce2bff975b83d9d1e8c5746d4d5e021c2dfcd1

See more details on using hashes here.

File details

Details for the file rpds_py-0.22.1-cp310-cp310-win32.whl.

File metadata

  • Download URL: rpds_py-0.22.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 219.6 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.7.7

File hashes

Hashes for rpds_py-0.22.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 b07fa9e634234e84096adfa4be3828c8f26e238679c122824b2b3d7131bec578
MD5 88e7b1d6d88312620b84cfc924a0c479
BLAKE2b-256 75fc721f5c5e26d8ac05fad4d4214dd146b5d44af90ab15a27daded76a4c0062

See more details on using hashes here.

File details

Details for the file rpds_py-0.22.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-0.22.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 66f4f48a89cdd30ab3a47335df81c76e9a63799d0d84b29c0618371c66fa37b0
MD5 6376506a2ef5331877e9acf93c0393db
BLAKE2b-256 111ec4e50bb19c3295b1d3bd757b38a1016746af9dd1c8e5094322ec95a9f848

See more details on using hashes here.

File details

Details for the file rpds_py-0.22.1-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rpds_py-0.22.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2177e59c033bf0d1bf7de1ced561205963583caf3242c6c700a723034bfb5f8e
MD5 6eec495ccc1028255b924f1cd6d197bf
BLAKE2b-256 61a7246c1a49c94792b760cab7f39c8a114fd69b734ab6a593d788fe52c04060

See more details on using hashes here.

File details

Details for the file rpds_py-0.22.1-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rpds_py-0.22.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 effcae2152afe7937a28376dbabb25c770ef99ed4e16a4ffeb8e6a4f7c4f06aa
MD5 16fdaf99c5a6a8fc943c65e32851421b
BLAKE2b-256 d18b78e31f3f2c461238bfa4a8e68b48b6628aa111335b3a1a57b4ffd8559af2

See more details on using hashes here.

File details

Details for the file rpds_py-0.22.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-0.22.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5f941fb86195f97be7f6efe04a21b223f05dfe4d1dfb159999e2f8d101e44cc4
MD5 7b7edc8c2ed0dc99c179b8bdc4fdb29b
BLAKE2b-256 add3126ad47d2fe0f133b9bab8d98a5a0d756cc1be7c3270ac0102128f753513

See more details on using hashes here.

File details

Details for the file rpds_py-0.22.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rpds_py-0.22.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e9ac7280bd045f472b50306d7efeee051b69e3a2dd1b90f46bd7e86e63b1efa2
MD5 cf2163e0063dac2d49cba80353232e3a
BLAKE2b-256 a95d18a586e9510128e80331245bbe9bd5110f0cee5db46b42309172f621801f

See more details on using hashes here.

File details

Details for the file rpds_py-0.22.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rpds_py-0.22.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 97c5ffe47ccf92d8b17e10f8a5ce28d015aa1196edc3359684cf31504eae6a14
MD5 7963eec4137a6c86f86bbd1a75aa2f0e
BLAKE2b-256 3b4af8d2e515dcb3321aed6e61f17be118184a7c8d3a38b80ac146580fa2c1c8

See more details on using hashes here.

File details

Details for the file rpds_py-0.22.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rpds_py-0.22.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 31264187fc934ff1024a4f56775f33c9252d3f4f3e27ec07d1995a26b52702c3
MD5 459a7d8e6f0a323d56b911315e6b4896
BLAKE2b-256 9cf954d2929967611d6819dfd81b37fa47bc040b60ee7d626c2d30d539335c7b

See more details on using hashes here.

File details

Details for the file rpds_py-0.22.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rpds_py-0.22.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 201650b309c419143775c15209c620627de3c09a27c7fb58375325aec5cce260
MD5 cd78f949784542671d1965d278ef063f
BLAKE2b-256 cbc01e8684c31f9081ce1366177191f747b1afaf7273fa5a6cdac7add4ee6c23

See more details on using hashes here.

File details

Details for the file rpds_py-0.22.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rpds_py-0.22.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f91bfc39f7a64168e08ab831fa497ec5438c1d6c6e2f9e12848d95ad11ac8523
MD5 03b9eecd5e150e0b8f81c03b7db41183
BLAKE2b-256 65d282b284f4362e9bfd8459a0123284ddb5345da9b5586514696a9121161f09

See more details on using hashes here.

File details

Details for the file rpds_py-0.22.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rpds_py-0.22.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9d5b925156a746dc1f5f52376fdd1fbdd3f6ffe1fcd6f5e06f77ca79abb940a3
MD5 43da04dc1d032f6b02fefe7fa6cfab4c
BLAKE2b-256 0eab1328fecfe4203f45fae6e526d5e0add2917ac3a73c497f966b58970c8593

See more details on using hashes here.

File details

Details for the file rpds_py-0.22.1-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-0.22.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ab27dd4edd84b13309f268ffcdfc07aef8339135ffab7b6d43f16884307a2a48
MD5 43ae80d0f52ec416df161ab0f7d8ddf8
BLAKE2b-256 b6ef245cf8ba2be0d7bd2262f7bdf50e65503c19c9fef5c6cfb9826687f38ced

See more details on using hashes here.

File details

Details for the file rpds_py-0.22.1-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for rpds_py-0.22.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 7839b7528faa4d134c183b1f2dd1ee4dc2ca2f899f4f0cfdf00fc04c255262a7
MD5 73b6b1d6976bdc1475ab619ea8673de2
BLAKE2b-256 c2ff04728466708617c6fb9537814175f09d0db1c3cf6c74e6227f6694e05e29

See more details on using hashes here.

File details

Details for the file rpds_py-0.22.1-cp39-cp39-win32.whl.

File metadata

  • Download URL: rpds_py-0.22.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 220.1 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.7.7

File hashes

Hashes for rpds_py-0.22.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 c88535f83f7391cf3a45af990237e3939a6fdfbedaed2571633bfdd0bceb36b0
MD5 e35b0708b67cbe484a5ff7ee92f323cd
BLAKE2b-256 324b1ae883d0f98f1e4a33e41d17c6293d2881db9e17c9fb5db30de7b0fc17ec

See more details on using hashes here.

File details

Details for the file rpds_py-0.22.1-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-0.22.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ef92b1fbe6aa2e7885eb90853cc016b1fc95439a8cc8da6d526880e9e2148695
MD5 d9552bf18a262af23834eee673362106
BLAKE2b-256 0848abcbf51c5d74482a4bb3d9b27c77589b46860f422fddd5565f8126feface

See more details on using hashes here.

File details

Details for the file rpds_py-0.22.1-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rpds_py-0.22.1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ec1ccc2a9f764cd632fb8ab28fdde166250df54fc8d97315a4a6948dc5367639
MD5 8ad266fa94bcdf68e5f79ceb4f8256d1
BLAKE2b-256 8bd0c0152c1106c4296d8974814504762924d26966e6a4ff0681c054aca9e82c

See more details on using hashes here.

File details

Details for the file rpds_py-0.22.1-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rpds_py-0.22.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 626b9feb01bff049a5aec4804f0c58db12585778b4902e5376a95b01f80a7a16
MD5 14f480521b183ee6f079d7cf1fcdb2dc
BLAKE2b-256 e989ef452a91c6b868c57c8c417ae727a090774a5d1d7cbffc7744aed0b5b165

See more details on using hashes here.

File details

Details for the file rpds_py-0.22.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-0.22.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b09209cdfcacf5eba9cf80367130532e6c02e695252e1f64d3cfcc2356e6e19f
MD5 7cb5e91516d673e21fd9a7019114a378
BLAKE2b-256 2e16fcf13729d2dd9d149ac04454bf10c6bc07515b4805726c3b36a63180c1fd

See more details on using hashes here.

File details

Details for the file rpds_py-0.22.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rpds_py-0.22.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f5cae9b415ea8a6a563566dbf46650222eccc5971c7daa16fbee63aef92ae543
MD5 c4f1aa0d5628f46d3aa40d1d64d0fc12
BLAKE2b-256 13f521b521410d93b9010836363bddeac4d2a187860ecb30029a3eebc3a6a913

See more details on using hashes here.

File details

Details for the file rpds_py-0.22.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rpds_py-0.22.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f76c6f319e57007ad52e671ec741d801324760a377e3d4992c9bb8200333ebac
MD5 c45edce8a1e35d2928c21da4da08ffee
BLAKE2b-256 8f760b6988d478ca0cc94dde81de0b750f0a354207ec0c5a75e7730bb1fc7a6c

See more details on using hashes here.

File details

Details for the file rpds_py-0.22.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rpds_py-0.22.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1c40e02cc4f3e18fd39344edb10eebe04bd11cfd13119606b5771e5ea51630d3
MD5 a246df52e27072ff4bff2e569304d08c
BLAKE2b-256 5eac52377501acc09060fa7efb10b23d7e7c90981dd7de164791c02a47333790

See more details on using hashes here.

File details

Details for the file rpds_py-0.22.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rpds_py-0.22.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8c0c324879d483504b07f7b18eb1b50567c434263bbe4866ecce33056162668a
MD5 c88f292ec2a3dd65db16017c17250eb8
BLAKE2b-256 a15b050a463bcae19c225b809569cecd56be93efc8f3bf30aac91070eb84a2a8

See more details on using hashes here.

File details

Details for the file rpds_py-0.22.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rpds_py-0.22.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 dbe428d0ac6eacaf05402adbaf137f59ad6063848182d1ff294f95ce0f24005b
MD5 f6e54d17b1d63367db4ae976b42c2b3a
BLAKE2b-256 6be77450733e71aca670e0c0ae61098a8e706275400a9d201a6dc2c0725194e8

See more details on using hashes here.

File details

Details for the file rpds_py-0.22.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rpds_py-0.22.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f57e2d0f8022783426121b586d7c842ea40ea832a29e28ca36c881b54c74fb28
MD5 d38a55e4035f9c0aee47b6734ef169e4
BLAKE2b-256 d4bf79867f486550eb64425afa60c5faae70239a8adf2eb8ffb79ea0fc5c1085

See more details on using hashes here.

File details

Details for the file rpds_py-0.22.1-cp39-cp39-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-0.22.1-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2143c3aed85992604d758bbe67da839fb4aab3dd2e1c6dddab5b3ca7162b34a2
MD5 3d68a4f8823cf9c859cc97a46fffbcd0
BLAKE2b-256 3efd56af3157bf9d126461ab908e6e7e6604b0740a3c1f00d45c37c7feefbda6

See more details on using hashes here.

Supported by

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