Skip to main content

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

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.20.0.tar.gz (25.8 kB view details)

Uploaded Source

Built Distributions

rpds_py-0.20.0-pp310-pypy310_pp73-win_amd64.whl (213.5 kB view details)

Uploaded PyPy Windows x86-64

rpds_py-0.20.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (525.8 kB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

rpds_py-0.20.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl (548.6 kB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

rpds_py-0.20.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (543.6 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

rpds_py-0.20.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (355.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

rpds_py-0.20.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (432.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

rpds_py-0.20.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (395.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

rpds_py-0.20.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (369.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

rpds_py-0.20.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (367.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

rpds_py-0.20.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (374.5 kB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

rpds_py-0.20.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl (311.7 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

rpds_py-0.20.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl (319.4 kB view details)

Uploaded PyPy macOS 10.12+ x86-64

rpds_py-0.20.0-pp39-pypy39_pp73-win_amd64.whl (214.4 kB view details)

Uploaded PyPy Windows x86-64

rpds_py-0.20.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (526.7 kB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

rpds_py-0.20.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl (549.2 kB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

rpds_py-0.20.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (544.5 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

rpds_py-0.20.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (356.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

rpds_py-0.20.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (433.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

rpds_py-0.20.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (396.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

rpds_py-0.20.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (369.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

rpds_py-0.20.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (369.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

rpds_py-0.20.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl (374.8 kB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

rpds_py-0.20.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl (312.0 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

rpds_py-0.20.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl (320.8 kB view details)

Uploaded PyPy macOS 10.12+ x86-64

rpds_py-0.20.0-cp313-none-win_amd64.whl (214.1 kB view details)

Uploaded CPython 3.13 Windows x86-64

rpds_py-0.20.0-cp313-none-win32.whl (200.5 kB view details)

Uploaded CPython 3.13 Windows x86

rpds_py-0.20.0-cp313-cp313-musllinux_1_2_x86_64.whl (528.4 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ x86-64

rpds_py-0.20.0-cp313-cp313-musllinux_1_2_i686.whl (552.4 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ i686

rpds_py-0.20.0-cp313-cp313-musllinux_1_2_aarch64.whl (545.8 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ ARM64

rpds_py-0.20.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (357.7 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

rpds_py-0.20.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (426.4 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ s390x

rpds_py-0.20.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (397.2 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ppc64le

rpds_py-0.20.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (370.9 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARMv7l

rpds_py-0.20.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (371.0 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

rpds_py-0.20.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (378.5 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.5+ i686

rpds_py-0.20.0-cp313-cp313-macosx_11_0_arm64.whl (312.9 kB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

rpds_py-0.20.0-cp313-cp313-macosx_10_12_x86_64.whl (321.5 kB view details)

Uploaded CPython 3.13 macOS 10.12+ x86-64

rpds_py-0.20.0-cp312-none-win_amd64.whl (214.5 kB view details)

Uploaded CPython 3.12 Windows x86-64

rpds_py-0.20.0-cp312-none-win32.whl (201.0 kB view details)

Uploaded CPython 3.12 Windows x86

rpds_py-0.20.0-cp312-cp312-musllinux_1_2_x86_64.whl (528.8 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

rpds_py-0.20.0-cp312-cp312-musllinux_1_2_i686.whl (553.2 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

rpds_py-0.20.0-cp312-cp312-musllinux_1_2_aarch64.whl (546.3 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

rpds_py-0.20.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (358.0 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

rpds_py-0.20.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (426.8 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

rpds_py-0.20.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (397.2 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

rpds_py-0.20.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (371.4 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

rpds_py-0.20.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (370.2 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

rpds_py-0.20.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (378.9 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.5+ i686

rpds_py-0.20.0-cp312-cp312-macosx_11_0_arm64.whl (313.1 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

rpds_py-0.20.0-cp312-cp312-macosx_10_12_x86_64.whl (321.5 kB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

rpds_py-0.20.0-cp311-none-win_amd64.whl (213.6 kB view details)

Uploaded CPython 3.11 Windows x86-64

rpds_py-0.20.0-cp311-none-win32.whl (199.3 kB view details)

Uploaded CPython 3.11 Windows x86

rpds_py-0.20.0-cp311-cp311-musllinux_1_2_x86_64.whl (525.6 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

rpds_py-0.20.0-cp311-cp311-musllinux_1_2_i686.whl (547.6 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

rpds_py-0.20.0-cp311-cp311-musllinux_1_2_aarch64.whl (541.5 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

rpds_py-0.20.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (354.8 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

rpds_py-0.20.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (432.4 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

rpds_py-0.20.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (394.9 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

rpds_py-0.20.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (368.4 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

rpds_py-0.20.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (366.4 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

rpds_py-0.20.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (373.3 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.5+ i686

rpds_py-0.20.0-cp311-cp311-macosx_11_0_arm64.whl (311.3 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

rpds_py-0.20.0-cp311-cp311-macosx_10_12_x86_64.whl (318.4 kB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

rpds_py-0.20.0-cp310-none-win_amd64.whl (213.5 kB view details)

Uploaded CPython 3.10 Windows x86-64

rpds_py-0.20.0-cp310-none-win32.whl (199.2 kB view details)

Uploaded CPython 3.10 Windows x86

rpds_py-0.20.0-cp310-cp310-musllinux_1_2_x86_64.whl (525.8 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

rpds_py-0.20.0-cp310-cp310-musllinux_1_2_i686.whl (547.6 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

rpds_py-0.20.0-cp310-cp310-musllinux_1_2_aarch64.whl (541.9 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

rpds_py-0.20.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (354.8 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

rpds_py-0.20.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (433.2 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

rpds_py-0.20.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (395.4 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

rpds_py-0.20.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (368.4 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

rpds_py-0.20.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (366.7 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

rpds_py-0.20.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (373.2 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.5+ i686

rpds_py-0.20.0-cp310-cp310-macosx_11_0_arm64.whl (311.3 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

rpds_py-0.20.0-cp310-cp310-macosx_10_12_x86_64.whl (318.4 kB view details)

Uploaded CPython 3.10 macOS 10.12+ x86-64

rpds_py-0.20.0-cp39-none-win_amd64.whl (213.2 kB view details)

Uploaded CPython 3.9 Windows x86-64

rpds_py-0.20.0-cp39-none-win32.whl (199.4 kB view details)

Uploaded CPython 3.9 Windows x86

rpds_py-0.20.0-cp39-cp39-musllinux_1_2_x86_64.whl (526.1 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

rpds_py-0.20.0-cp39-cp39-musllinux_1_2_i686.whl (548.0 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

rpds_py-0.20.0-cp39-cp39-musllinux_1_2_aarch64.whl (543.1 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

rpds_py-0.20.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (355.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

rpds_py-0.20.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (433.7 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

rpds_py-0.20.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (395.6 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

rpds_py-0.20.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (368.3 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

rpds_py-0.20.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (367.8 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

rpds_py-0.20.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (373.6 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

rpds_py-0.20.0-cp39-cp39-macosx_11_0_arm64.whl (311.8 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

rpds_py-0.20.0-cp39-cp39-macosx_10_12_x86_64.whl (319.5 kB view details)

Uploaded CPython 3.9 macOS 10.12+ x86-64

rpds_py-0.20.0-cp38-none-win_amd64.whl (213.0 kB view details)

Uploaded CPython 3.8 Windows x86-64

rpds_py-0.20.0-cp38-none-win32.whl (199.3 kB view details)

Uploaded CPython 3.8 Windows x86

rpds_py-0.20.0-cp38-cp38-musllinux_1_2_x86_64.whl (525.8 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

rpds_py-0.20.0-cp38-cp38-musllinux_1_2_i686.whl (547.6 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

rpds_py-0.20.0-cp38-cp38-musllinux_1_2_aarch64.whl (542.7 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

rpds_py-0.20.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (355.1 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

rpds_py-0.20.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (431.7 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

rpds_py-0.20.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (395.2 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

rpds_py-0.20.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (367.9 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

rpds_py-0.20.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (367.6 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

rpds_py-0.20.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (373.3 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ i686

rpds_py-0.20.0-cp38-cp38-macosx_11_0_arm64.whl (311.7 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

rpds_py-0.20.0-cp38-cp38-macosx_10_12_x86_64.whl (319.4 kB view details)

Uploaded CPython 3.8 macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for rpds_py-0.20.0.tar.gz
Algorithm Hash digest
SHA256 d72a210824facfdaf8768cf2d7ca25a042c30320b3020de2fa04640920d4e121
MD5 92dc633657211843eef9bd495ec935f5
BLAKE2b-256 5564b693f262791b818880d17268f3f8181ef799b0d187f6f731b1772e05a29a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 bb273176be34a746bdac0b0d7e4e2c467323d13640b736c4c477881a3220a989
MD5 9abbf80209507f4b2abe62a3628236cf
BLAKE2b-256 d2ea6f121d1802f3adae1981aea4209ea66f9d3c7f2f6d6b85ef4f13a61d17ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 39ed0d010457a78f54090fafb5d108501b5aa5604cc22408fc1c0c77eac14344
MD5 1c0cb7afee0cf3970ec9af62b0838eef
BLAKE2b-256 bfd64b2fad4898154365f0f2bd72ffd190349274a4c1d6a6f94f02a83bb2b8f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 dcedf0b42bcb4cfff4101d7771a10532415a6106062f005ab97d1d0ab5681c60
MD5 78313ecb8acc9f608c8bc6e4e5dfc989
BLAKE2b-256 019ed68fba289625b5d3c9d1925825d7da716fbf812bda2133ac409021d5db13

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4f1ed4749a08379555cebf4650453f14452eaa9c43d0a95c49db50c18b7da075
MD5 97b859fed7fd935b2bfbfb41bcb769c9
BLAKE2b-256 c39293c5a530898d3a5d1ce087455071ba714b77806ed9ffee4070d0c7a53b7e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c3c20f0ddeb6e29126d45f89206b8291352b8c5b44384e78a6499d68b52ae511
MD5 79694de8009f0ef35cbe411554fb07db
BLAKE2b-256 b8c6e1b886f7277b3454e55e85332e165091c19114eecb5377b88d892fd36ccf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d807dc2051abe041b6649681dce568f8e10668e3c1c6543ebae58f2d7e617855
MD5 c796cfe722f2ac48a9987e1d7defabe4
BLAKE2b-256 6fd97ff03ff3642c600f27ff94512bb158a8d815fea5ed4162c75a7e850d6003

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d454b8749b4bd70dd0a79f428731ee263fa6995f83ccb8bada706e8d1d3ff89d
MD5 99d0fce9acd9b39d152b5730495f7978
BLAKE2b-256 a764df4966743aa4def8727dc13d06527c8b13eb7412c1429def2d4701bee520

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 fcaeb7b57f1a1e071ebd748984359fef83ecb026325b9d4ca847c95bc7311c92
MD5 3a541b858288086e39317dd9eb242e4f
BLAKE2b-256 04b602a54c47c178d180395b3c9a8bfb3b93906e08f9acf7b4a1067d27c3fae0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 deb62214c42a261cb3eb04d474f7155279c1a8a8c30ac89b7dcb1721d92c3c02
MD5 83f6ca13b25b7620133b4b7bbefb01c5
BLAKE2b-256 f7da8ccaeba6a3dda7467aebaf893de9eafd56275e2c90773c83bf15fb0b8374

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b7f19250ceef892adf27f0399b9e5afad019288e9be756d6919cb58892129f51
MD5 cba4f7d20992d88b348af01d84250d63
BLAKE2b-256 e262e26bd5b944e547c7bfd0b6ca7e306bfa430f8bd298ab72a1217976a7ca8d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9426133526f69fcaba6e42146b4e12d6bc6c839b8b555097020e2b78ce908dcc
MD5 0fb2dd70018da55616832dce1d90d649
BLAKE2b-256 c171876135d3cb90d62468540b84e8e83ff4dc92052ab309bfdea7ea0b9221ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 617c7357272c67696fd052811e352ac54ed1d9b49ab370261a80d3b6ce385045
MD5 4df83e0007edd21556a9a7f0d46f58c7
BLAKE2b-256 0639bf1f664c347c946ef56cecaa896e3693d91acc741afa78ebb3fdb7aba08b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 fdfc3a892927458d98f3d55428ae46b921d1f7543b89382fdb483f5640daaec8
MD5 8e0c9292b9528f9aaca738207e62e48b
BLAKE2b-256 ff4f280745d5180c9d78df6b53b6e8b65336f8b6adeb958a8fd19c749fded637

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5b4f105deeffa28bbcdff6c49b34e74903139afa690e35d2d9e3c2c2fba18cec
MD5 56b6411957dbb8cc2c1cb70cb4f550d9
BLAKE2b-256 594234601dc773be86a85a9ca47f68301a69fdb019aaae0c1426813f265f5ac0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 faefcc78f53a88f3076b7f8be0a8f8d35133a3ecf7f3770895c25f8813460f08
MD5 e260c937a9e02daa98e65984b24efc58
BLAKE2b-256 cdeef4af0a62d1ba912c4a3a7f5ec04350946ddd59017f3f3d1c227b20ddf558

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 65794e4048ee837494aea3c21a28ad5fc080994dfba5b036cf84de37f7ad5074
MD5 470e185bf249acfebed4ecdcba09c027
BLAKE2b-256 734e082c0c5eba463e29dff1c6b49557f6ad0d6faae4b46832fa9c1e5b69b7ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f90a4cd061914a60bd51c68bcb4357086991bd0bb93d8aa66a6da7701370708f
MD5 60a562cf6082bf44cfff620ec72abe7f
BLAKE2b-256 bd8b04031937ffa565021f934a9acf44bb6b1b60ea19fa9e58950b32357e85a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f0475242f447cc6cb8a9dd486d68b2ef7fbee84427124c232bff5f63b1fe11e5
MD5 6c095e1bc90c679175354fdbb47c7f1c
BLAKE2b-256 245fd865ae460e47e46fd2b489f2aceed34439bd8f18a1ff414c299142e0e22a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fa518bcd7600c584bf42e6617ee8132869e877db2f76bcdc281ec6a4113a53ab
MD5 b91923aa3a947f1e5f426efee68938c1
BLAKE2b-256 6b788896e08625d46ea5bfdd526ee688b91eeafecbc3cf7223612c82ed77905b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 614fdafe9f5f19c63ea02817fa4861c606a59a604a77c8cdef5aa01d28b97921
MD5 045de8680a30a3121151642ada19e363
BLAKE2b-256 6fac0c36e067681fa3fe4c60a9422b011ec0ccc80c1e124f5210951f7982e887

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3d2b1ad682a3dfda2a4e8ad8572f3100f95fad98cb99faf37ff0ddfe9cbf9d03
MD5 7216a27f3544a4ce1f0f933add1c3dfe
BLAKE2b-256 31449093c5dca95ee463c3669651e710af182eb6f9cd83626b15a2ebde2247b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 def7400461c3a3f26e49078302e1c1b38f6752342c77e3cf72ce91ca69fb1bc1
MD5 ef5d901e5073a1c3563ce8638795f693
BLAKE2b-256 3a641f0471b1e688704a716e07340b85f4145109359951feb08676a1f3b8cec4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f60012a73aa396be721558caa3a6fd49b3dd0033d1675c6d59c4502e870fcf0c
MD5 de97b7fb15d0b4884ddf588e42aaa887
BLAKE2b-256 cca1bef9e0ef30f89c7516559ca7acc40e8ae70397535a0b1a4535a4a01d9ed0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f918a1a130a6dfe1d7fe0f105064141342e7dd1611f2e6a21cd2f5c8cb1cfb3e
MD5 9462021f361ed810a4c3ea34ad18d0aa
BLAKE2b-256 0a6f7ab47005469f0d73dad89d29b733e3555d454a45146c30f5628242e56d33

See more details on using hashes here.

File details

Details for the file rpds_py-0.20.0-cp313-none-win_amd64.whl.

File metadata

File hashes

Hashes for rpds_py-0.20.0-cp313-none-win_amd64.whl
Algorithm Hash digest
SHA256 9bc2d153989e3216b0559251b0c260cfd168ec78b1fac33dd485750a228db5a2
MD5 58665d58156675d849b0d7a72be8e0e7
BLAKE2b-256 95cc109eb8b9863680411ae703664abacaa035820c7755acc9686d5dd02cdd2e

See more details on using hashes here.

File details

Details for the file rpds_py-0.20.0-cp313-none-win32.whl.

File metadata

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

File hashes

Hashes for rpds_py-0.20.0-cp313-none-win32.whl
Algorithm Hash digest
SHA256 fd2d84f40633bc475ef2d5490b9c19543fbf18596dcb1b291e3a12ea5d722f7a
MD5 155a5e4097410489496f5a76e4497281
BLAKE2b-256 d5bd04caf938895d2d78201e89c0c8a94dfd9990c34a19ff52fb01d0912343e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5a35df9f5548fd79cb2f52d27182108c3e6641a4feb0f39067911bf2adaa3e57
MD5 b7db7e731fabff9f5009eb2421d26b5d
BLAKE2b-256 a1edc074d248409b4432b1ccb2056974175fa0af2d1bc1f9c21121f80a358fa3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b2a5db5397d82fa847e4c624b0c98fe59d2d9b7cf0ce6de09e4d2e80f8f5b3f2
MD5 63053c92a064c0c3561eb179ae1808f3
BLAKE2b-256 b2a4a27683b519d5fc98e4390a3b130117d80fd475c67aeda8aac83c0e8e326a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 06db23d43f26478303e954c34c75182356ca9aa7797d22c5345b16871ab9c45c
MD5 b8d2dd7ae33faa36adfe39f60d96177b
BLAKE2b-256 e3e3ac72f858957f52a109c588589b73bd2fad4a0fc82387fb55fb34aeb0f9cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e1940dae14e715e2e02dfd5b0f64a52e8374a517a1e531ad9412319dc3ac7879
MD5 2ec1a725b3d1558bdd5f0ec08af8b8c3
BLAKE2b-256 8cd16c9e65260a819a1714510a7d69ac1d68aa23ee9ce8a2d9da12187263c8fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 57eb94a8c16ab08fef6404301c38318e2c5a32216bf5de453e2714c964c125c8
MD5 0d5cb89e2eaf71dd40cd38dcc4fdac48
BLAKE2b-256 007d6e06807f6305ea2408b364efb0eef83a6e21b5e7b5267ad6b473b9a7e416

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b74b25f024b421d5859d156750ea9a65651793d51b76a2e9238c05c9d5f203a9
MD5 0541b980fc173dcd6c9ed84acd0abac6
BLAKE2b-256 51ca2458a771f16b0931de4d384decbe43016710bc948036c8f4562d6e063437

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6c8ef2ebf76df43f5750b46851ed1cdf8f109d7787ca40035fe19fbdc1acc5a7
MD5 d507ad13b80810987f2efde72eae5a62
BLAKE2b-256 fcc1523f2a03f853fc0d4c1acbef161747e9ab7df0a8abf6236106e333540921

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8a86a9b96070674fc88b6f9f71a97d2c1d3e5165574615d1f9168ecba4cecb24
MD5 f7347b2618e4408d8167b95d7ae6bd5a
BLAKE2b-256 8f909e51670575b5dfaa8c823369ef7d943087bfb73d4f124a99ad6ef19a2b26

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d20277fd62e1b992a50c43f13fbe13277a31f8c9f70d59759c88f644d66c619f
MD5 5c451c3b0e373ac032aa1530d8c65fc1
BLAKE2b-256 5dfbecea8b5286d2f03eec922be7173a03ed17278944f7c124348f535116db15

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4a1f1d51eccb7e6c32ae89243cb352389228ea62f89cd80823ea7dd1b98e0b91
MD5 37a5f368ae2e3b82c7c58aaf8cb7c5cb
BLAKE2b-256 58a9c4d899cb28e9e47b0ff12462e8f827381f243176036f17bef9c1604667f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 aa9a0521aeca7d4941499a73ad7d4f8ffa3d1affc50b9ea11d992cd7eff18a29
MD5 a428790f699879b695373cb033f3735e
BLAKE2b-256 993243b919a0a423c270a838ac2726b1c7168b946f2563fd99a51aaa9692d00f

See more details on using hashes here.

File details

Details for the file rpds_py-0.20.0-cp312-none-win_amd64.whl.

File metadata

File hashes

Hashes for rpds_py-0.20.0-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 0e13e6952ef264c40587d510ad676a988df19adea20444c2b295e536457bc585
MD5 65f1a30c6576f9449ba79eafaa1d9da6
BLAKE2b-256 ec2fb938864d66b86a6e4acadefdc56de75ef56f7cafdfd568a6464605457bd5

See more details on using hashes here.

File details

Details for the file rpds_py-0.20.0-cp312-none-win32.whl.

File metadata

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

File hashes

Hashes for rpds_py-0.20.0-cp312-none-win32.whl
Algorithm Hash digest
SHA256 8bc7690f7caee50b04a79bf017a8d020c1f48c2a1077ffe172abec59870f1139
MD5 83fe08cbbca2dd0c6ea7fed14666cee9
BLAKE2b-256 e3627ebe6ec0d3dd6130921f8cffb7e34afb7f71b3819aa0446a24c5e81245ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2cf126d33a91ee6eedc7f3197b53e87a2acdac63602c0f03a02dd69e4b138174
MD5 69f629ee67abc5af4ef0d9021a24c075
BLAKE2b-256 702d5536d28c507a4679179ab15aa0049440e4d3dd6752050fa0843ed11e9354

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e4df1e3b3bec320790f699890d41c59d250f6beda159ea3c44c3f5bac1976940
MD5 e17de6cfd39d19acb74630e51eb53bdf
BLAKE2b-256 ae15d33c021de5cb793101df9961c3c746dfc476953dbbf5db337d8010dffd4e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d4c7d1a051eeb39f5c9547e82ea27cbcc28338482242e3e0b7768033cb083821
MD5 ae52f920f1f7ce55b390b513edb69320
BLAKE2b-256 08316d0df9356b4edb0a3a077f1ef714e25ad21f9f5382fc490c2383691885ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ea438162a9fcbee3ecf36c23e6c68237479f89f962f82dae83dc15feeceb37e4
MD5 2e66fd173a967ab75313ab2b743a888d
BLAKE2b-256 0ff7a59a673594e6c2ff2dbc44b00fd4ecdec2fc399bb6a7bd82d612699a0121

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 49a8063ea4296b3a7e81a5dfb8f7b2d73f0b1c20c2af401fb0cdf22e14711a96
MD5 5713782995d7e224b5f10fee45576452
BLAKE2b-256 e4daa47d931eb688ccfd77a7389e45935c79c41e8098d984d87335004baccb1d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 50eccbf054e62a7b2209b28dc7a22d6254860209d6753e6b78cfaeb0075d7bee
MD5 ed5c3e1040887c4ddaf8831b1be952ee
BLAKE2b-256 7bdd0e0dbeb70d8a5357d2814764d467ded98d81d90d3570de4fb05ec7224f6b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b80d4a7900cf6b66bb9cee5c352b2d708e29e5a37fe9bf784fa97fc11504bf6c
MD5 09e9e92e89c6d6b70734ecd0d0a1559f
BLAKE2b-256 dcc95b9aa35acfb58946b4b785bc8e700ac313669e02fb100f3efa6176a83e81

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2580b0c34583b85efec8c5c5ec9edf2dfe817330cc882ee972ae650e7b5ef739
MD5 148da43d7b7afa8f1232c955a99cd143
BLAKE2b-256 0e1c6039e80b13a08569a304dc13476dc986352dca4598e909384db043b4e2bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 18d7585c463087bddcfa74c2ba267339f14f2515158ac4db30b1f9cbdb62c8ef
MD5 59e6b1a4ba3699c911c7e91d7bc5b62e
BLAKE2b-256 5f613ba1905396b2cb7088f9503a460b87da33452da54d478cb9241f6ad16d00

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 56e27147a5a4c2c21633ff8475d185734c0e4befd1c989b5b95a5d0db699b21b
MD5 74d1626ca7ada777900bc5d6880e213a
BLAKE2b-256 b8adfc82be4eaceb8d444cb6fc1956ce972b3a0795104279de05e0e4131d0a47

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a84ab91cbe7aab97f7446652d0ed37d35b68a465aeef8fc41932a9d7eee2c1a6
MD5 a09f589fd3cd4861a66f9587ee803e4e
BLAKE2b-256 89b7f9682c5cc37fcc035f4a0fc33c1fe92ec9cbfdee0cdfd071cf948f53e0df

See more details on using hashes here.

File details

Details for the file rpds_py-0.20.0-cp311-none-win_amd64.whl.

File metadata

File hashes

Hashes for rpds_py-0.20.0-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 c638144ce971df84650d3ed0096e2ae7af8e62ecbbb7b201c8935c370df00a2c
MD5 9c821a0fdc3f8387e6e5b093826c54ac
BLAKE2b-256 ccec77d0674f9af4872919f3738018558dd9d37ad3f7ad792d062eadd4af7cba

See more details on using hashes here.

File details

Details for the file rpds_py-0.20.0-cp311-none-win32.whl.

File metadata

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

File hashes

Hashes for rpds_py-0.20.0-cp311-none-win32.whl
Algorithm Hash digest
SHA256 89c19a494bf3ad08c1da49445cc5d13d8fefc265f48ee7e7556839acdacf69d0
MD5 5427ee5934c36dfb5c6c866fbd51daa5
BLAKE2b-256 35f2a862d81eacb21f340d584cd1c749c289979f9a60e9229f78bffc0418a199

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d0a26ffe9d4dd35e4dfdd1e71f46401cff0181c75ac174711ccff0459135fa58
MD5 bf24b365f940689fd6fabf55aebcbfec
BLAKE2b-256 ab444f61d64dfed98cc71623f3a7fcb612df636a208b4b2c6611eaa985e130a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 514b3293b64187172bc77c8fb0cdae26981618021053b30d8371c3a902d4d5ad
MD5 f0f86829358ed6075387e590a63764fe
BLAKE2b-256 90d74112d7655ec8aff168ecc91d4ceb51c557336edde7e6ccf6463691a2f253

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dbe982f38565bb50cb7fb061ebf762c2f254ca3d8c20d4006878766e84266272
MD5 125044f0bf6b2ce01d503adda0f9f5b0
BLAKE2b-256 e4cecb316f7970189e217b998191c7cf0da2ede3d5437932c86a7210dc1e9994

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5c1dc0f53856b9cc9a0ccca0a7cc61d3d20a7088201c0937f3f4048c1718a209
MD5 3876aa313b4686c554e7fb4a3a09413f
BLAKE2b-256 a7e885835077b782555d6b3416874b702ea6ebd7db1f145283c9252968670dd5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1259c7b3705ac0a0bd38197565a5d603218591d3f6cee6e614e380b6ba61c6f6
MD5 353c64fff476d151a47f01106bb7fa16
BLAKE2b-256 a265640fb1a89080a8fb6f4bebd3dafb65a2edba82e2e44c33e6eb0f3e7956f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3d61339e9f84a3f0767b1995adfb171a0d00a1185192718a17af6e124728e0f5
MD5 ca482a57ec4f4da1d60db4cb6de63713
BLAKE2b-256 5228356f6a39c1adeb02cf3e5dd526f5e8e54e17899bef045397abcfbf50dffa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 758406267907b3781beee0f0edfe4a179fbd97c0be2e9b1154d7f0a1279cf8e5
MD5 f37ea8da429b45b7f83fdde0f16b170f
BLAKE2b-256 7a8c668195ab9226d01b7cf7cd9e59c1c0be1df05d602df7ec0cf46f857dcf59

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8d7919548df3f25374a1f5d01fbcd38dacab338ef5f33e044744b5c36729c8db
MD5 a50ec151cea7c14281b6d2a2911d4678
BLAKE2b-256 d2b2725487d29633f64ef8f9cbf4729111a0b61702c8f8e94db1653930f52cce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7e60cb630f674a31f0368ed32b2a6b4331b8350d67de53c0359992444b116dd3
MD5 feed175865b4a424f7ad22dcb4bd2fdc
BLAKE2b-256 4f871ac631e923d65cbf36fbcfc6eaa702a169496de1311e54be142f178e53ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 220002c1b846db9afd83371d08d239fdc865e8f8c5795bbaec20916a76db3318
MD5 7ad5dabc978aef91bfdf84411fda7e89
BLAKE2b-256 0e6a2c9fdcc6d235ac0d61ec4fd9981184689c3e682abd05e3caa49bccb9c298

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ac2f4f7a98934c2ed6505aead07b979e6f999389f16b714448fb39bbaa86a489
MD5 c335e93be0ee32841e9dbf0b137f11a0
BLAKE2b-256 ab2a191374c52d7be0b056cc2a04d718d2244c152f915d4a8d2db2aacc526189

See more details on using hashes here.

File details

Details for the file rpds_py-0.20.0-cp310-none-win_amd64.whl.

File metadata

File hashes

Hashes for rpds_py-0.20.0-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 238a2d5b1cad28cdc6ed15faf93a998336eb041c4e440dd7f902528b8891b399
MD5 5e34e409eb191f7e2a8eda92a33c8767
BLAKE2b-256 ecba5762c0aee2403dfea14ed74b0f8a2415cfdbb21cf745d600d9a8ac952c5b

See more details on using hashes here.

File details

Details for the file rpds_py-0.20.0-cp310-none-win32.whl.

File metadata

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

File hashes

Hashes for rpds_py-0.20.0-cp310-none-win32.whl
Algorithm Hash digest
SHA256 28527c685f237c05445efec62426d285e47a58fb05ba0090a4340b73ecda6dee
MD5 ae3e29a76da21d42c2a65d7615c6d74a
BLAKE2b-256 943c1ff1ed6ae323b3e16fdfcdae0f0a67f373a6c3d991229dc32b499edeffb7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ae94bd0b2f02c28e199e9bc51485d0c5601f58780636185660f86bf80c89af94
MD5 0ba175c14b102ac52fefc962bbc2216f
BLAKE2b-256 72f8d5625ee05c4e5c478954a16d9359069c66fe8ac8cd5ddf28f80d3b321837

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 55fea87029cded5df854ca7e192ec7bdb7ecd1d9a3f63d5c4eb09148acf4a7ce
MD5 a2b1db9ae3b394ab652164d5ff5c9085
BLAKE2b-256 c6a56ef91e4425dc8b3445ff77d292fc4c5e37046462434a0423c4e0a596a8bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cf258ede5bc22a45c8e726b29835b9303c285ab46fc7c3a4cc770736b5304c9f
MD5 b823b5a307dbe3faaa3fa2201a516066
BLAKE2b-256 3bd3822a28152a1e7e2ba0dc5d06cf8736f4cd64b191bb6ec47fb51d1c3c5ccf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f8e604fe73ba048c06085beaf51147eaec7df856824bfe7b98657cf436623daf
MD5 1e28d3dcca5f3f8726e0c6e03475f30c
BLAKE2b-256 4a6d1166a157b227f2333f8e8ae320b6b7ea2a6a38fbe7a3563ad76dffc8608d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5a8c94dad2e45324fc74dce25e1645d4d14df9a4e54a30fa0ae8bad9a63928e3
MD5 c4ab74b45b5e2eb0bcb2af011dbd826f
BLAKE2b-256 7cb5ff18c093c9e72630f6d6242e5ccb0728ef8265ba0a154b5972f89d23790a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1e0f80b739e5a8f54837be5d5c924483996b603d5502bfff79bf33da06164ee2
MD5 445d0f886bf2874e1a49b7ea6287c78a
BLAKE2b-256 605e642a44fda6dda90b5237af7a0ef1d088159c30a504852b94b0396eb62125

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 eb851b7df9dda52dc1415ebee12362047ce771fc36914586b2e9fcbd7d293b3e
MD5 08a8d2ce4efa42ac48675d6004fc0540
BLAKE2b-256 f5c8cd6ab31b4424c7fab3b17e153b6ea7d1bb0d7cabea5c1ef683cc8adb8bc2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c6377e647bbfd0a0b159fe557f2c6c602c159fc752fa316572f012fc0bf67150
MD5 f3beb5b7ea36412432c6318f03ea8654
BLAKE2b-256 36103f4e490fe6eb069c07c22357d0b4804cd94cb9f8d01345ef9b1d93482b9d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 df3de6b7726b52966edf29663e57306b23ef775faf0ac01a3e9f4012a24a4140
MD5 419e960a55bab0bd4ab98f4a109ba873
BLAKE2b-256 70a470ea49863ea09ae4c2971f2eef58e80b757e3c0f2f618c5815bb751f7847

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9bb4a0d90fdb03437c109a17eade42dfbf6190408f29b2744114d11586611d6f
MD5 25bc2b3d6992ad233ffc1ac353b73484
BLAKE2b-256 b5b4f15b0c55a6d880ce74170e7e28c3ed6c5acdbbd118df50b91d1dabf86008

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3ad0fda1635f8439cde85c700f964b23ed5fc2d28016b32b9ee5fe30da5c84e2
MD5 5d600ab2373df1c74287da7b7aa714d6
BLAKE2b-256 712da7e60483b72b91909e18f29a5c5ae847bac4e2ae95b77bb77e1f41819a58

See more details on using hashes here.

File details

Details for the file rpds_py-0.20.0-cp39-none-win_amd64.whl.

File metadata

File hashes

Hashes for rpds_py-0.20.0-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 e6900ecdd50ce0facf703f7a00df12374b74bbc8ad9fe0f6559947fb20f82364
MD5 86df8a41ee47de3245e563b8321967a2
BLAKE2b-256 0c7dfd42a27fe392a69faf4a5e635870fc425edcb998485ee73afbc734ecef16

See more details on using hashes here.

File details

Details for the file rpds_py-0.20.0-cp39-none-win32.whl.

File metadata

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

File hashes

Hashes for rpds_py-0.20.0-cp39-none-win32.whl
Algorithm Hash digest
SHA256 569b3ea770c2717b730b61998b6c54996adee3cef69fc28d444f3e7920313cf7
MD5 c0901348553af25a60bed18aa97eb5b4
BLAKE2b-256 7899a52e5b460f2311fc8ee75ff769e8d67e76208947180eacb4f153af2d9967

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 22e6c9976e38f4d8c4a63bd8a8edac5307dffd3ee7e6026d97f3cc3a2dc02a0b
MD5 5d952ad19c0374da3a0f9456925bb357
BLAKE2b-256 5358ad03eb6718e814fa045198c72d45d2ae60180eb48338f22c9fa34bd89964

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ec31a99ca63bf3cd7f1a5ac9fe95c5e2d060d3c768a09bc1d16e235840861420
MD5 f29073150bfd7155a193ffeadf474795
BLAKE2b-256 4171799c6b6f6031ed535f22fcf6802601cc7f981842bd28007bb7bb4bd10b2f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d0b67d87bb45ed1cd020e8fbf2307d449b68abc45402fe1a4ac9e46c3c8b192b
MD5 f2fbff6b3ac8c4c727a49d19e786de5b
BLAKE2b-256 7f003e16cb08c0cc6a233f0f61e4d009e3098cbe280ec975d14f28935bd15316

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b4c29cbbba378759ac5786730d1c3cb4ec6f8ababf5c42a9ce303dc4b3d08cda
MD5 0d09b685f8103debfcbe391bbe6e54db
BLAKE2b-256 04d8e73d56b1908a6c0e3e5982365eb293170cd458cc25a19363f69c76e00fd2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d72278a30111e5b5525c1dd96120d9e958464316f55adb030433ea905866f4de
MD5 4c9ed2ceb7c83aac3bb97b249de2d247
BLAKE2b-256 af6e77c65ccb0d7cdc39ec2be19b918a4d4fe9e2d2a1c5cab36745b36f2c1e59

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9d35cef91e59ebbeaa45214861874bc6f19eb35de96db73e467a8358d701a96c
MD5 c838983213b26f30e20393f25572ea88
BLAKE2b-256 67170255bb0e564517b53343ea672ebec9fb7ad40e9083ca09a4080fbc986bb9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c52d3f2f82b763a24ef52f5d24358553e8403ce05f893b5347098014f2d9eff2
MD5 2305f3b294fb4c00b1c408b245a17ccf
BLAKE2b-256 30254a9e7b89b6760ac032f375cb236e4f8e518ad1fad685c40b6a9752056d6f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 11ef6ce74616342888b69878d45e9f779b95d4bd48b382a229fe624a409b72c5
MD5 9294d333b69a097a9da77b009226a063
BLAKE2b-256 0367ed6c2fe076bf78296934d4356145fedf3c7c2f8d490e099bcf6f31794dc0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 6632f2d04f15d1bd6fe0eedd3b86d9061b836ddca4c03d5cf5c7e9e6b7c14580
MD5 fc4c22345f32ef185ee1cdaf088f63d1
BLAKE2b-256 47dfe72c79053b0c882b818bfd8f0ed1f1ace550bc9cdba27165cb73dddb9394

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9824fb430c9cf9af743cf7aaf6707bf14323fb51ee74425c380f4c846ea70789
MD5 c11e281ceda4ae7de0a541d5d5d54be1
BLAKE2b-256 6861074236253586feb550954f8b4359d38eefb45bafcbbb7d2e74062a82f386

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.0-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3fde368e9140312b6e8b6c09fb9f8c8c2f00999d1823403ae90cc00480221b22
MD5 5d143871c90abe49ec97f2d5f10ec8f3
BLAKE2b-256 a155228f6d9a8c6940c8d5e49db5e0434ffcbad669c33509ac39cb0af061b0fa

See more details on using hashes here.

File details

Details for the file rpds_py-0.20.0-cp38-none-win_amd64.whl.

File metadata

File hashes

Hashes for rpds_py-0.20.0-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 a1862d2d7ce1674cffa6d186d53ca95c6e17ed2b06b3f4c476173565c862d232
MD5 7f58264ca4e097fea6302eeb2f5f51ff
BLAKE2b-256 3dc7ae73dfcf417fa1bb087341b670083afc3228d6a496d0d2221afd5b20d95f

See more details on using hashes here.

File details

Details for the file rpds_py-0.20.0-cp38-none-win32.whl.

File metadata

  • Download URL: rpds_py-0.20.0-cp38-none-win32.whl
  • Upload date:
  • Size: 199.3 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.7.0

File hashes

Hashes for rpds_py-0.20.0-cp38-none-win32.whl
Algorithm Hash digest
SHA256 54b43a2b07db18314669092bb2de584524d1ef414588780261e31e85846c26a5
MD5 ade1a97d20b14264c5c9b7592ed20c44
BLAKE2b-256 0e7f446eb1f1ed22ca855e3966e1b97e10f68f3a40578d9596a4b83323456cef

See more details on using hashes here.

File details

Details for the file rpds_py-0.20.0-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-0.20.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 338ca4539aad4ce70a656e5187a3a31c5204f261aef9f6ab50e50bcdffaf050a
MD5 e97bbe68505806ec402868d057f982dc
BLAKE2b-256 1c0b918acbb2aa360822f18c6bc8672ee3c231d357f55d5e7f980d8207360742

See more details on using hashes here.

File details

Details for the file rpds_py-0.20.0-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rpds_py-0.20.0-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4fe84294c7019456e56d93e8ababdad5a329cd25975be749c3f5f558abb48253
MD5 4b9b0cb661c437ca9a56df310516c84f
BLAKE2b-256 9fc106d6c461c41e73c8187471595ce1c9a67c280d533fbd705889e6a0e9da2f

See more details on using hashes here.

File details

Details for the file rpds_py-0.20.0-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rpds_py-0.20.0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 40ce74fc86ee4645d0a225498d091d8bc61f39b709ebef8204cb8b5a464d3c0e
MD5 2ab630df81cab4d185301b4bc07d6199
BLAKE2b-256 9769ae242d3c59f04ca3f56d9dbd768e7cabfc093cfb9e030dfc8fbd7fadbc4d

See more details on using hashes here.

File details

Details for the file rpds_py-0.20.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-0.20.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 af0fc424a5842a11e28956e69395fbbeab2c97c42253169d87e90aac2886d751
MD5 4ff3c42b136d5541ba1e15bef9278c88
BLAKE2b-256 889d07fedb6afebe0fe6f1c2981223ffa82c3ff3cc09ffeab8c9859b4852d7e3

See more details on using hashes here.

File details

Details for the file rpds_py-0.20.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rpds_py-0.20.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 aa7f429242aae2947246587d2964fad750b79e8c233a2367f71b554e9447949c
MD5 a59a1a00b2819d48c10781e31c348afc
BLAKE2b-256 53219d405f690986f0215d655c2980de10f63c073e66c56bd5f4d039214d1624

See more details on using hashes here.

File details

Details for the file rpds_py-0.20.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rpds_py-0.20.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4b16aa0107ecb512b568244ef461f27697164d9a68d8b35090e9b0c1c8b27752
MD5 2a9b9bf9dc053777b566051df3188509
BLAKE2b-256 8d232b6acbc76fddb7f89ef2382f136a7a4cf10e078e6e149508a59d7448e2e1

See more details on using hashes here.

File details

Details for the file rpds_py-0.20.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rpds_py-0.20.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c3e130fd0ec56cb76eb49ef52faead8ff09d13f4527e9b0c400307ff72b408e1
MD5 80b7083dd0eb0b4809596a336b618144
BLAKE2b-256 7ae3dc75f3f118f3dc29be962f68729b2d203be9ad52ad34b1ae907c60271302

See more details on using hashes here.

File details

Details for the file rpds_py-0.20.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rpds_py-0.20.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ce9845054c13696f7af7f2b353e6b4f676dab1b4b215d7fe5e05c6f8bb06f965
MD5 6e7ab0ffe95bc17bee6fa48a615715ca
BLAKE2b-256 9e38d4a1f901068dfcb51183266a91bcef614f616d4d820a4dd288ccaff83cbb

See more details on using hashes here.

File details

Details for the file rpds_py-0.20.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rpds_py-0.20.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b8c00a3b1e70c1d3891f0db1b05292747f0dbcfb49c43f9244d04c70fbc40eb8
MD5 bfb2bdea47875bc9399ebf5fe324f40b
BLAKE2b-256 1680857ed7ca6dbb33805f2c8298868d029f9cf0a06f182d7058c8484b47941b

See more details on using hashes here.

File details

Details for the file rpds_py-0.20.0-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rpds_py-0.20.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1e5f3cd7397c8f86c8cc72d5a791071431c108edd79872cdd96e00abd8497d29
MD5 00a78ef4ae32dbf0a71f2920f11ac5f1
BLAKE2b-256 094eea988bb4fe0f39613dd2b868fc698c19fd970e33dfe4f1bd90658f94fed3

See more details on using hashes here.

File details

Details for the file rpds_py-0.20.0-cp38-cp38-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-0.20.0-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f2fbf7db2012d4876fb0d66b5b9ba6591197b0f165db8d99371d976546472a24
MD5 0b35c1c8101a15bcfa15121d13b3d315
BLAKE2b-256 37cf0081318cde7d7e89f802b4939ec8d079d7b59b0ee3fc168435bde31e861c

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 Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page