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

Uploaded Source

Built Distributions

rpds_py-0.20.1-pp310-pypy310_pp73-win_amd64.whl (219.7 kB view details)

Uploaded PyPy Windows x86-64

rpds_py-0.20.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (529.1 kB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

rpds_py-0.20.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl (550.1 kB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

rpds_py-0.20.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (546.6 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

rpds_py-0.20.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (361.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

rpds_py-0.20.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (430.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

rpds_py-0.20.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (404.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

rpds_py-0.20.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (370.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

rpds_py-0.20.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (361.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

rpds_py-0.20.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (384.1 kB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

rpds_py-0.20.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl (319.5 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

rpds_py-0.20.1-pp310-pypy310_pp73-macosx_10_12_x86_64.whl (328.2 kB view details)

Uploaded PyPy macOS 10.12+ x86-64

rpds_py-0.20.1-pp39-pypy39_pp73-win_amd64.whl (220.0 kB view details)

Uploaded PyPy Windows x86-64

rpds_py-0.20.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (528.6 kB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

rpds_py-0.20.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl (549.9 kB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

rpds_py-0.20.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (546.2 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

rpds_py-0.20.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (361.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

rpds_py-0.20.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (430.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

rpds_py-0.20.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (404.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

rpds_py-0.20.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (370.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

rpds_py-0.20.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (362.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

rpds_py-0.20.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl (383.7 kB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

rpds_py-0.20.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl (319.3 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

rpds_py-0.20.1-pp39-pypy39_pp73-macosx_10_12_x86_64.whl (328.0 kB view details)

Uploaded PyPy macOS 10.12+ x86-64

rpds_py-0.20.1-cp313-none-win_amd64.whl (220.5 kB view details)

Uploaded CPython 3.13 Windows x86-64

rpds_py-0.20.1-cp313-none-win32.whl (202.8 kB view details)

Uploaded CPython 3.13 Windows x86

rpds_py-0.20.1-cp313-cp313-musllinux_1_2_x86_64.whl (531.1 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ x86-64

rpds_py-0.20.1-cp313-cp313-musllinux_1_2_i686.whl (553.8 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ i686

rpds_py-0.20.1-cp313-cp313-musllinux_1_2_aarch64.whl (549.0 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ ARM64

rpds_py-0.20.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (363.6 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

rpds_py-0.20.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (422.3 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ s390x

rpds_py-0.20.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (405.0 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ppc64le

rpds_py-0.20.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (372.0 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARMv7l

rpds_py-0.20.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (363.1 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

rpds_py-0.20.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (385.9 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.5+ i686

rpds_py-0.20.1-cp313-cp313-macosx_11_0_arm64.whl (320.5 kB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

rpds_py-0.20.1-cp313-cp313-macosx_10_12_x86_64.whl (329.4 kB view details)

Uploaded CPython 3.13 macOS 10.12+ x86-64

rpds_py-0.20.1-cp312-none-win_amd64.whl (220.8 kB view details)

Uploaded CPython 3.12 Windows x86-64

rpds_py-0.20.1-cp312-none-win32.whl (203.2 kB view details)

Uploaded CPython 3.12 Windows x86

rpds_py-0.20.1-cp312-cp312-musllinux_1_2_x86_64.whl (530.9 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

rpds_py-0.20.1-cp312-cp312-musllinux_1_2_i686.whl (554.4 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

rpds_py-0.20.1-cp312-cp312-musllinux_1_2_aarch64.whl (549.5 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

rpds_py-0.20.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (364.9 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

rpds_py-0.20.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (423.0 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

rpds_py-0.20.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (406.3 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

rpds_py-0.20.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (373.3 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

rpds_py-0.20.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (363.9 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

rpds_py-0.20.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (386.3 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.5+ i686

rpds_py-0.20.1-cp312-cp312-macosx_11_0_arm64.whl (321.0 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

rpds_py-0.20.1-cp312-cp312-macosx_10_12_x86_64.whl (329.7 kB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

rpds_py-0.20.1-cp311-none-win_amd64.whl (218.5 kB view details)

Uploaded CPython 3.11 Windows x86-64

rpds_py-0.20.1-cp311-none-win32.whl (200.5 kB view details)

Uploaded CPython 3.11 Windows x86

rpds_py-0.20.1-cp311-cp311-musllinux_1_2_x86_64.whl (527.6 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

rpds_py-0.20.1-cp311-cp311-musllinux_1_2_i686.whl (549.3 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

rpds_py-0.20.1-cp311-cp311-musllinux_1_2_aarch64.whl (546.7 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

rpds_py-0.20.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (360.5 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

rpds_py-0.20.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (429.9 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

rpds_py-0.20.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (403.7 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

rpds_py-0.20.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (369.5 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

rpds_py-0.20.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (361.1 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

rpds_py-0.20.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (382.5 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.5+ i686

rpds_py-0.20.1-cp311-cp311-macosx_11_0_arm64.whl (318.1 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

rpds_py-0.20.1-cp311-cp311-macosx_10_12_x86_64.whl (327.2 kB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

rpds_py-0.20.1-cp310-none-win_amd64.whl (218.6 kB view details)

Uploaded CPython 3.10 Windows x86-64

rpds_py-0.20.1-cp310-none-win32.whl (200.4 kB view details)

Uploaded CPython 3.10 Windows x86

rpds_py-0.20.1-cp310-cp310-musllinux_1_2_x86_64.whl (527.6 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

rpds_py-0.20.1-cp310-cp310-musllinux_1_2_i686.whl (549.4 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

rpds_py-0.20.1-cp310-cp310-musllinux_1_2_aarch64.whl (546.6 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

rpds_py-0.20.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (360.6 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

rpds_py-0.20.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (430.3 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

rpds_py-0.20.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (403.7 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

rpds_py-0.20.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (369.9 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

rpds_py-0.20.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (361.2 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

rpds_py-0.20.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (382.6 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.5+ i686

rpds_py-0.20.1-cp310-cp310-macosx_11_0_arm64.whl (318.2 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

rpds_py-0.20.1-cp310-cp310-macosx_10_12_x86_64.whl (327.3 kB view details)

Uploaded CPython 3.10 macOS 10.12+ x86-64

rpds_py-0.20.1-cp39-none-win_amd64.whl (218.9 kB view details)

Uploaded CPython 3.9 Windows x86-64

rpds_py-0.20.1-cp39-none-win32.whl (200.7 kB view details)

Uploaded CPython 3.9 Windows x86

rpds_py-0.20.1-cp39-cp39-musllinux_1_2_x86_64.whl (528.3 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

rpds_py-0.20.1-cp39-cp39-musllinux_1_2_i686.whl (550.1 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

rpds_py-0.20.1-cp39-cp39-musllinux_1_2_aarch64.whl (546.9 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

rpds_py-0.20.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (360.9 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

rpds_py-0.20.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (430.8 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

rpds_py-0.20.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (403.9 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

rpds_py-0.20.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (369.8 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

rpds_py-0.20.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (361.7 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

rpds_py-0.20.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (382.7 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

rpds_py-0.20.1-cp39-cp39-macosx_11_0_arm64.whl (318.9 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

rpds_py-0.20.1-cp39-cp39-macosx_10_12_x86_64.whl (327.9 kB view details)

Uploaded CPython 3.9 macOS 10.12+ x86-64

rpds_py-0.20.1-cp38-none-win_amd64.whl (218.6 kB view details)

Uploaded CPython 3.8 Windows x86-64

rpds_py-0.20.1-cp38-none-win32.whl (200.5 kB view details)

Uploaded CPython 3.8 Windows x86

rpds_py-0.20.1-cp38-cp38-musllinux_1_2_x86_64.whl (528.5 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

rpds_py-0.20.1-cp38-cp38-musllinux_1_2_i686.whl (549.8 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

rpds_py-0.20.1-cp38-cp38-musllinux_1_2_aarch64.whl (546.4 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

rpds_py-0.20.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (360.8 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

rpds_py-0.20.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (430.2 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

rpds_py-0.20.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (403.9 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

rpds_py-0.20.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (370.2 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

rpds_py-0.20.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (361.5 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

rpds_py-0.20.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (383.0 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ i686

rpds_py-0.20.1-cp38-cp38-macosx_11_0_arm64.whl (318.8 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

rpds_py-0.20.1-cp38-cp38-macosx_10_12_x86_64.whl (327.8 kB view details)

Uploaded CPython 3.8 macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for rpds_py-0.20.1.tar.gz
Algorithm Hash digest
SHA256 e1791c4aabd117653530dccd24108fa03cc6baf21f58b950d0a73c3b3b29a350
MD5 2203e8b3993620b7fc1313702258f74b
BLAKE2b-256 25cb8e919951f55d109d658f81c9b49d0cc3b48637c50792c5d2e77032b8c5da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.1-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 754bbed1a4ca48479e9d4182a561d001bbf81543876cdded6f695ec3d465846b
MD5 db6d13dbc925420a28b8b746a9405cb4
BLAKE2b-256 a33295364440560ec476b19c6a2704259e710c223bf767632ebaa72cc2a1760f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 93da1d3db08a827eda74356f9f58884adb254e59b6664f64cc04cdff2cc19b0d
MD5 2c0c273f4579782365d17a86a650a117
BLAKE2b-256 672900a9e986df36721b5def82fff60995c1ee8827a7d909a6ec8929fb4cc668

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 92b68b79c0da2a980b1c4197e56ac3dd0c8a149b4603747c4378914a68706979
MD5 72a7619832870fff04f2f94d2d420cc9
BLAKE2b-256 8f8fe1c2db4fcca3947d9a28ec9553700b4dc8038f0eff575f579e75885b0661

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a94e52537a0e0a85429eda9e49f272ada715506d3b2431f64b8a3e34eb5f3e75
MD5 ad469093a836ec41de3ffc0f5b421481
BLAKE2b-256 5fd589d44504d0bc7a1135062cb520a17903ff002f458371b8d9160af3b71e52

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7f5179583d7a6cdb981151dd349786cbc318bab54963a192692d945dd3f6435d
MD5 acdab37310dfebd80a1f052e0a5367ee
BLAKE2b-256 670e6f069feaff5c298375cd8c55e00ecd9bd79c792ce0893d39448dc0097857

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5d4eea0761e37485c9b81400437adb11c40e13ef513375bbd6973e34100aeb06
MD5 45d76320e8d2d1307f36bb9331ebb97b
BLAKE2b-256 94305189518bfb80a41f664daf32b46645c7fbdcc89028a0f1bfa82e806e0fbb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2cc3712a4b0b76a1d45a9302dd2f53ff339614b1c29603a911318f2357b04dd2
MD5 26b8c16747657914a4348647d124871d
BLAKE2b-256 8afcfe3c83c77f82b8059eeec4e998064913d66212b69b3653df48f58ad33d3d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 95f3b65d2392e1c5cec27cff08fdc0080270d5a1a4b2ea1d51d5f4a2620ff08d
MD5 f0039600d1fe112a940cea282d3281fe
BLAKE2b-256 89de0e13dd43c785c60e63933e96fbddda0b019df6862f4d3019bb49c3861131

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fa3060d885657abc549b2a0f8e1b79699290e5d83845141717c6c90c2df38311
MD5 926e29b35fc7bcbc2633a956f06cd2a0
BLAKE2b-256 7c98cf2608722400f5f9bb4c82aa5ac09026f3ac2ebea9d4059d3533589ed0b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2fbb0ffc754490aff6dabbf28064be47f0f9ca0b9755976f945214965b3ace7e
MD5 231644ee700680c44bba2c58b672ee1a
BLAKE2b-256 279fce3e2ae36f392c3ef1988c06e9e0b4c74f64267dad7c223003c34da11adb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 68cb0a499f2c4a088fd2f521453e22ed3527154136a855c62e148b7883b99f9a
MD5 f9347639372cb1647a0f4045f073d4c0
BLAKE2b-256 25975dfdb091c30267ff404d2fd9e70c7a6d6ffc65ca77fffe9456e13b719066

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.1-pp310-pypy310_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7a07ced2b22f0cf0b55a6a510078174c31b6d8544f3bc00c2bcee52b3d613f74
MD5 5cc696c85f74bfc38fed7a418f777007
BLAKE2b-256 b6fa7959429e69569d0f6e7d27f80451402da0409349dd2b07f6bcbdd5fad2d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.1-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 83cba698cfb3c2c5a7c3c6bac12fe6c6a51aae69513726be6411076185a8b24a
MD5 7df9dc6e35682906583767fc2e8bb752
BLAKE2b-256 05c310c68a08849f1fa45d205e54141fa75d316013e3d701ef01770ee1220bb8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 59240685e7da61fb78f65a9f07f8108e36a83317c53f7b276b4175dc44151684
MD5 5941e206d3947a274a51f51b5f943f72
BLAKE2b-256 b38799648693d3c1bbce088119bc61ecaab62e5f9c713894edc604ffeca5ae88

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 07f59760ef99f31422c49038964b31c4dfcfeb5d2384ebfc71058a7c9adae2d2
MD5 7e6ef9ed0b41c0eef9155cf523aeb213
BLAKE2b-256 1ba881fc9cbc01e7ef6d10652aedc1de4e8473934773e2808ba49094e03575df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e13de156137b7095442b288e72f33503a469aa1980ed856b43c353ac86390519
MD5 340e8b6cdf294b58cace0fc80452e803
BLAKE2b-256 175ce0cdd6b0a8373fdef3667af2778dd9ff3abf1bbb9c7bd92c603c91440eb0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0ad56edabcdb428c2e33bbf24f255fe2b43253b7d13a2cdbf05de955217313e6
MD5 001a8f87ff92ee040648b804fcf2fa23
BLAKE2b-256 0df2e9b90fd8416d59941b6a12f2c2e1d898b63fd092f5a7a6f98236cb865764

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0fc212779bf8411667234b3cdd34d53de6c2b8b8b958e1e12cb473a5f367c338
MD5 438788d8500a89597c820316a52f9003
BLAKE2b-256 480f9d04d0939682f0c97be827fc51ff986555ffb573e6781bd5132441f0ce25

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0f8f741b6292c86059ed175d80eefa80997125b7c478fb8769fd9ac8943a16c0
MD5 f84c44ea93fb84a2e74fca7282583c5b
BLAKE2b-256 6ceef4bab2b9e51ced30351cfd210647885391463ae682028c79760e7db28e4e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 55cd1fa4ecfa6d9f14fbd97ac24803e6f73e897c738f771a9fe038f2f11ff07c
MD5 5464416d9d6c4b0ecb9db74e4842641d
BLAKE2b-256 9d651c2bb10afd4bd32800227a658ae9097bc1d08a4e5048a57a9bd2efdf6306

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bb63804105143c7e24cee7db89e37cb3f3941f8e80c4379a0b355c52a52b6780
MD5 415971da922d77f6cef2dc598fd85570
BLAKE2b-256 6c8aabcd5119a0573f9588ad71a3fde3c07ddd1d1393cfee15a6ba7495c256f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0a3a1e9ee9728b2c1734f65d6a1d376c6f2f6fdcc13bb007a08cc4b1ff576dc5
MD5 22fc36d78a00a21fbf87f6e1f70445c1
BLAKE2b-256 0b831cc776dce7bedb17d6f4ea62eafccee8a57a4678f4fac414ab69fb9b6b0b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9c4cb04a16b0f199a8c9bf807269b2f63b7b5b11425e4a6bd44bd6961d28282c
MD5 4e51939b8f5eb2a7966e7e9f2b0626b8
BLAKE2b-256 75fd84f42386165d6d555acb76c6d39c90b10c9dcf25116daf4f48a0a9d6867a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.1-pp39-pypy39_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ca449520e7484534a2a44faf629362cae62b660601432d04c482283c47eaebab
MD5 7802dd98004b2ea6f3c09ae9ecc60c95
BLAKE2b-256 edbfad8492e972c90a3d48a38e2b5095c51a8399d5b57e83f2d5d1649490f72b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.1-cp313-none-win_amd64.whl
Algorithm Hash digest
SHA256 b71b8666eeea69d6363248822078c075bac6ed135faa9216aa85f295ff009b1e
MD5 2d9e917586faa492a841e5b03f138527
BLAKE2b-256 d930a3391e76d0b3313f33bdedd394a519decae3a953d2943e3dabf80ae32447

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rpds_py-0.20.1-cp313-none-win32.whl
Algorithm Hash digest
SHA256 a624cc00ef2158e04188df5e3016385b9353638139a06fb77057b3498f794782
MD5 b765792572536adfbad5885c745677c3
BLAKE2b-256 5080fb62ab48f3b5cfe704ead6ad372da1922ddaa76397055e02eb507054c979

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 37fe0f12aebb6a0e3e17bb4cd356b1286d2d18d2e93b2d39fe647138458b4bcb
MD5 41b7ce704e8a5c3b9bfa12ac11008e4b
BLAKE2b-256 8781dc30bc449ccba63ad23a0f6633486d4e0e6955f45f3715a130dacabd6ad0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 483b29f6f7ffa6af845107d4efe2e3fa8fb2693de8657bc1849f674296ff6a5a
MD5 58579071a459249ccfbb08ce9f7c45a9
BLAKE2b-256 f7d4a7d70a7cc71df772eeadf4bce05e32e780a9fe44a511a5b091c7a85cb767

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6aa97af1558a9bef4025f8f5d8c60d712e0a3b13a2fe875511defc6ee77a1ab7
MD5 765df51dc9cae3a8f85352332104012f
BLAKE2b-256 bfac2d1f50374eb8e41030fad4e87f81751e1c39e3b5d4bee8c5618830d8a6ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 49fe9b04b6fa685bd39237d45fad89ba19e9163a1ccaa16611a812e682913496
MD5 f36a09e5c7e401a9ac75826aa9ab7d0b
BLAKE2b-256 c407bf8a949d2ec4626c285579c9d6b356c692325f1a4126e947736b416e1fc4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fe00a9057d100e69b4ae4a094203a708d65b0f345ed546fdef86498bf5390982
MD5 e760e0afa3b8304f6974e7b8ebbdde58
BLAKE2b-256 e1aacca639f6d17caf00bab51bdc70fcc0bdda3063e5662665c4fdf60443c474

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 32b922e13d4c0080d03e7b62991ad7f5007d9cd74e239c4b16bc85ae8b70252d
MD5 220638ed8a5728c04cf162b4bc1d157b
BLAKE2b-256 d1b888675399d2038580743c570a809c43a900e7090edc6553f8ffb66b23c965

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6740a3e8d43a32629bb9b009017ea5b9e713b7210ba48ac8d4cb6d99d86c8ee8
MD5 c924b089b00ed1db2e463f9c32c30d4b
BLAKE2b-256 efde7df88dea9c3eeb832196d23b41f0f6fc5f9a2ee9b2080bbb1db8731ead9c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f009c69bc8c53db5dfab72ac760895dc1f2bc1b62ab7408b253c8d1ec52459fc
MD5 ae9aee7ce7a7db3064021f6a0f19eaa6
BLAKE2b-256 176985cf3429e9ccda684ba63ff36b5866d5f9451e921cc99819341e19880334

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 aa7ac11e294304e615b43f8c441fee5d40094275ed7311f3420d805fde9b07b4
MD5 e7426c5b303d31aba838da7576caaf2e
BLAKE2b-256 11f006675c6a58d6ce34547879138810eb9aab0c10e5607ea6c2e4dc56b703c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b9c2fe36d1f758b28121bef29ed1dee9b7a2453e997528e7d1ac99b94892527c
MD5 34dd2b01f3e7605e7ff94ad3dd6b09c0
BLAKE2b-256 b0cf4aeffb02b7090029d7aeecbffb9a10e1c80f6f56d7e9a30e15481dc4099c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6ca91093a4a8da4afae7fe6a222c3b53ee4eef433ebfee4d54978a103435159e
MD5 e97cf3e1c8b2ffb39b4804a767110187
BLAKE2b-256 b501fee2e1d1274c92fff04aa47d805a28d62c2aa971d1f49f5baea1c6e670d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.1-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 8bbe951244a838a51289ee53a6bae3a07f26d4e179b96fc7ddd3301caf0518eb
MD5 0a410e909e738f71031ed14bcf2c32b1
BLAKE2b-256 1fba9cbb57423c4bfbd81c473913bebaed151ad4158ee2590a4e4b3e70238b48

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rpds_py-0.20.1-cp312-none-win32.whl
Algorithm Hash digest
SHA256 dc73505153798c6f74854aba69cc75953888cf9866465196889c7cdd351e720c
MD5 1c6c06cefb8905ce490adcb61b7cba1a
BLAKE2b-256 aed3ffe907084299484fab60a7955f7c0e8a295c04249090218c59437010f9f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3c6afcf2338e7f374e8edc765c79fbcb4061d02b15dd5f8f314a4af2bdc7feb5
MD5 36098834242fc49e31a4c0297630364d
BLAKE2b-256 5e0eb1bdc7ea0db0946d640ab8965146099093391bb5d265832994c47461e3c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 19b73643c802f4eaf13d97f7855d0fb527fbc92ab7013c4ad0e13a6ae0ed23bd
MD5 47b810af618c3220660c127709424012
BLAKE2b-256 07dd9f6520712a5108cd7d407c9db44a3d59011b385c58e320d58ebf67757a9e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6889469bfdc1eddf489729b471303739bf04555bb151fe8875931f8564309afc
MD5 a0f69efccf1aba3c9aa169a688ff8700
BLAKE2b-256 20af2ae192797bffd0d6d558145b5a36e7245346ff3e44f6ddcb82f0eb8512d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ecd27a66740ffd621d20b9a2f2b5ee4129a56e27bfb9458a3bcc2e45794c96cb
MD5 c79285c19be092d1ac8da1a0e0dbf7f6
BLAKE2b-256 c81bf23015cb293927c93bdb4b94a48bfe77ad9d57359c75db51f0ff0cf482ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 dbcf360c9e3399b056a238523146ea77eeb2a596ce263b8814c900263e46031a
MD5 9a6342248b4715945af9172df1d03cdd
BLAKE2b-256 af8d2da52aef8ae5494a382b0c0025ba5b68f2952db0f2a4c7534580e8ca83cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 be5ef2f1fc586a7372bfc355986226484e06d1dc4f9402539872c8bb99e34b01
MD5 2b038c78613ce20d8f49afc6c88f6d12
BLAKE2b-256 4315112b7c553066cb91264691ba7fb119579c440a0ae889da222fa6fc0d411a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 15a842bb369e00295392e7ce192de9dcbf136954614124a667f9f9f17d6a216f
MD5 c96ae2aca4436a8e3038638e7c214a47
BLAKE2b-256 acbdbce2dddb518b13a7e77eed4be234c9af0c9c6d403d01c5e6ae8eb447ab62

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dbddc10776ca7ebf2a299c41a4dde8ea0d8e3547bfd731cb87af2e8f5bf8962d
MD5 1465aae611e1d629217fcc08532656d0
BLAKE2b-256 fae099205aabbf3be29ef6c58ef9b08feed51ba6532fdd47461245cb58dd9897

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d0b937b2a1988f184a3e9e577adaa8aede21ec0b38320d6009e02bd026db04fa
MD5 1b4c1f51f8908b45d4bb18a913695e98
BLAKE2b-256 7b8b6da8636b2ea2e2f709e56656e663b6a71ecd9a9f9d9dc21488aade122026

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 142c0a5124d9bd0e2976089484af5c74f47bd3298f2ed651ef54ea728d2ea42c
MD5 4823618da558d5c92453e56319311dfd
BLAKE2b-256 d2e461144f3790e12fd89e6153d77f7915ad26779735fef8ee9c099cba6dfb4a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 36785be22066966a27348444b40389f8444671630063edfb1a2eb04318721e17
MD5 6a1e5143224305262bf650a551ce0ef5
BLAKE2b-256 e7104e8dcc08b58a548098dbcee67a4888751a25be7a6dde0a83d4300df48bfa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.1-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 7e21b7031e17c6b0e445f42ccc77f79a97e2687023c5746bfb7a9e45e0921b84
MD5 fc63d1457dd74eeb26aa1955158c6e15
BLAKE2b-256 85f6c751c1adfa31610055acfa1cc667cf2c2d7011a73070679c448cf5856905

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rpds_py-0.20.1-cp311-none-win32.whl
Algorithm Hash digest
SHA256 cd945871335a639275eee904caef90041568ce3b42f402c6959b460d25ae8732
MD5 3a8e6da496f68b7e1f9243e3ded29858
BLAKE2b-256 02f11b47b9e5b941c2659c9b7e4ef41b6f07385a6500c638fa10c066e4616ecb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d8761c3c891cc51e90bc9926d6d2f59b27beaf86c74622c8979380a29cc23ac3
MD5 d1b884b34083e069940ab5f994760e81
BLAKE2b-256 f1e8ad5da336cd42adbdafe0ecd40dcecdae01fd3d703c621c7637615a008d3a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6b73c67850ca7cae0f6c56f71e356d7e9fa25958d3e18a64927c2d930859b8e4
MD5 f83898437b4af60e43f894e19969435f
BLAKE2b-256 de4c7ab3669e02bb06fedebcfd64d361b7168ba39dfdf385e4109440f2e7927b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 58b1d5dd591973d426cbb2da5e27ba0339209832b2f3315928c9790e13f159e8
MD5 c7c77bb50e33e783389c03c2ede1b8cb
BLAKE2b-256 d09b95073fe3e0f130e6d561e106818b6568ef1f2df3352e7f162ab912da837c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4a916087371afd9648e1962e67403c53f9c49ca47b9680adbeef79da3a7811b0
MD5 469f9f83c048b69102c025ac8ee5947f
BLAKE2b-256 1951a3cc1a5238acfc2582033e8934d034301f9d4931b9bf7c7ccfabc4ca0880

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8ba6f89cac95c0900d932c9efb7f0fb6ca47f6687feec41abcb1bd5e2bd45535
MD5 b9f2888a13ac9373e1b1f2e23f6a7cdd
BLAKE2b-256 10e18dde6174e7ac5b9acd3269afca2e17719bc7e5088c68f44874d2ad9e4560

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6c8e9340ce5a52f95fa7d3b552b35c7e8f3874d74a03a8a69279fd5fca5dc751
MD5 e79127b5c6a2c4ee0c086d4952ae7650
BLAKE2b-256 20223eeb0385f33251b4fd0f728e6a3801dc8acc05e714eb7867cefe635bf4ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 42cbde7789f5c0bcd6816cb29808e36c01b960fb5d29f11e052215aa85497c93
MD5 7c1b4360703e3c989cd145e806151367
BLAKE2b-256 06313bd721575671f22a37476c2d7b9e34bfa5185bdcee09f7fedde3b29f3adb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 842c19a6ce894493563c3bd00d81d5100e8e57d70209e84d5491940fdb8b9e3a
MD5 2662d68c66072110e0f99b94657f412e
BLAKE2b-256 18c013f1bce9c901511e5e4c0b77a99dbb946bb9a177ca88c6b480e9cb53e304

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 200a23239781f46149e6a415f1e870c5ef1e712939fe8fa63035cd053ac2638e
MD5 2a91c371c5c3fc0df601d64e639b7490
BLAKE2b-256 cd8c3c87471a44bd4114e2b0aec90f298f6caaac4e8db6af904d5dd2279f5c61

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0b581f47257a9fce535c4567782a8976002d6b8afa2c39ff616edf87cbeff712
MD5 f35b02ef291e4e094d1c554384c1e890
BLAKE2b-256 6811d3f84c69de2b2086be3d6bd5e9d172825c096b13842ab7e5f8f39f06035b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 762703bdd2b30983c1d9e62b4c88664df4a8a4d5ec0e9253b0231171f18f6d75
MD5 76a0bfaa21bc2d1c2ce3df8324204a64
BLAKE2b-256 a02ea6ded84019a05b8f23e0fe6a632f62ae438a8c5e5932d3dfc90c73418414

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.1-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 d9ecb51120de61e4604650666d1f2b68444d46ae18fd492245a08f53ad2b7711
MD5 60dd907e70d5959aa889dc13523446d3
BLAKE2b-256 f4339d0529d74099e090ec9ab15eb0a049c56cca599eaaca71bfedbdbca656a9

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rpds_py-0.20.1-cp310-none-win32.whl
Algorithm Hash digest
SHA256 648386ddd1e19b4a6abab69139b002bc49ebf065b596119f8f37c38e9ecee8ff
MD5 3038e6071c80c0c883adf6a73ccf6db4
BLAKE2b-256 4f714c44643bffbcb37311fc7fe221bcf139c8d660bc78f746dd3a05741372c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4f676e21db2f8c72ff0936f895271e7a700aa1f8d31b40e4e43442ba94973899
MD5 0ebe175e4574fa8bd313a2d23cc486bc
BLAKE2b-256 d24c445eb597a39a883368ea2f341dd6e48a9d9681b12ebf32f38a827b30529b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3dd645e2b0dcb0fd05bf58e2e54c13875847687d0b71941ad2e757e5d89d4356
MD5 a21ca3243b03d4a074a95b14e3e91790
BLAKE2b-256 15c719fb4f1247a3c90a99eca62909bf76ee988f9b663e47878a673d9854ec5c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 78f0b6877bfce7a3d1ff150391354a410c55d3cdce386f862926a4958ad5ab7e
MD5 abd1b10564f1baefa5a2b198538b419f
BLAKE2b-256 64967a7f938d3796a6a3ec08ed0e8a5ecd436fbd516a3684ab1fa22d46d6f6cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 13c56de6518e14b9bf6edde23c4c39dac5b48dcf04160ea7bce8fca8397cdf86
MD5 c00650c91dffd44c9f123b511502e9d6
BLAKE2b-256 258e41d7e3e6d3a4a6c94375020477705a3fbb6515717901ab8f94821cf0a0d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f19169781dddae7478a32301b499b2858bc52fc45a112955e798ee307e294977
MD5 e761f52767a8537c2fd2be814bb62eb8
BLAKE2b-256 86981ef4028e9d5b76470bf7f8f2459be07ac5c9621270a2a5e093f8d8a8cc2c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c142b88039b92e7e0cb2552e8967077e3179b22359e945574f5e2764c3953dcf
MD5 5a99885518c8077e8a2e1416cbf1ef3f
BLAKE2b-256 951b463b11e7039e18f9e778568dbf7338c29bbc1f8996381115201c668eb8c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3ccb8ac2d3c71cda472b75af42818981bdacf48d2e21c36331b50b4f16930163
MD5 5b4918cb6ce36bb8f9f2d2d9707396b1
BLAKE2b-256 e780cb9a4b4cad31bcaa37f38dae7a8be861f767eb2ca4f07a146b5ffcfbee09

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 14511a539afee6f9ab492b543060c7491c99924314977a55c98bfa2ee29ce78c
MD5 9082f21d57f9ae9a699b0a2afceb7c9e
BLAKE2b-256 2be7b4eb3e6ff541c83d3b46f45f855547e412ab60c45bef64520fafb00b9b42

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 925d176a549f4832c6f69fa6026071294ab5910e82a0fe6c6228fce17b0706bd
MD5 95957fb825e75b6c6317d8e1b697d8f2
BLAKE2b-256 4f6a8839340464d4e1bbfaf0482e9d9165a2309c2c17427e4dcb72ce3e5cc5d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f16bc1334853e91ddaaa1217045dd7be166170beec337576818461268a3de67f
MD5 ae497bd93193d98511ef033c7e28e091
BLAKE2b-256 4c72027185f213d53ae66765c575229829b202fbacf3d55fe2bd9ff4e29bb157

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a649dfd735fff086e8a9d0503a9f0c7d01b7912a333c7ae77e1515c08c146dad
MD5 e9d2290a90e779ddea296d035a9e96e7
BLAKE2b-256 ae0ed7e7e9280988a7bc56fd326042baca27f4f55fad27dc8aa64e5e0e894e5d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.1-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 fa41a64ac5b08b292906e248549ab48b69c5428f3987b09689ab2441f267d04d
MD5 2335fb2eef67431a07c8cbb07d0f4e9a
BLAKE2b-256 0501e64bb8889f2dcc951e53de33d8b8070456397ae4e10edc35e6cb9908f5c8

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rpds_py-0.20.1-cp39-none-win32.whl
Algorithm Hash digest
SHA256 653647b8838cf83b2e7e6a0364f49af96deec64d2a6578324db58380cff82aca
MD5 83c8ac0d11ec3553cbce45a2827e98b3
BLAKE2b-256 d66241b0020f4b00af042b008e679dbe25a2f5bce655139a81f8b812f9068e52

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3d089d0b88996df627693639d123c8158cff41c0651f646cd8fd292c7da90eaf
MD5 1fe4e318fb57cf9ac53a61f0753a25bf
BLAKE2b-256 70f18fe7d04c194218171220a412057429defa9e2da785de0777c4d39309337e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c14937af98c4cc362a1d4374806204dd51b1e12dded1ae30645c298e5a5c4cb1
MD5 bc6eaceb8a199769c6feab60d60f76c5
BLAKE2b-256 b9753c9bda11b9c15d680b315f898af23825159314d4b56568f24b53ace8afcd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d126b52e4a473d40232ec2052a8b232270ed1f8c9571aaf33f73a14cc298c24f
MD5 363b568eabf0a11b5b23e59efea012e6
BLAKE2b-256 4c280630719c18456238bb07d59c4302fed50a13aa8035ec23dbfa80d116f9bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e75ba609dba23f2c95b776efb9dd3f0b78a76a151e96f96cc5b6b1b0004de66f
MD5 252cc6e2e950de74f99743d63218c35c
BLAKE2b-256 d462c9bd294c4b5f84d9cc2c387b548ae53096ad7e71ac5b02b6310e9dc85aa4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5265505b3d61a0f56618c9b941dc54dc334dc6e660f1592d112cd103d914a6db
MD5 a627a13d18030ea82d1b380e10cbd064
BLAKE2b-256 317cf6d909cb57761293308dbef14f1663d84376f2e231892a10aafc57b42037

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4888e117dd41b9d34194d9e31631af70d3d526efc363085e3089ab1a62c32ed1
MD5 95d3cb058b37fa57698f3434081f9cd3
BLAKE2b-256 87d2480b36c69cdc373853401b6aab6a281cf60f6d72b1545d82c0d23d9dd77c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 84b8382a90539910b53a6307f7c35697bc7e6ffb25d9c1d4e998a13e842a5e83
MD5 53d7da82dcc906cb0bfce7994141cb98
BLAKE2b-256 1649d9938603731745c7b6babff97ca61ff3eb4619e7128b5ab0111ad4e91d6d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 16d4477bcb9fbbd7b5b0e4a5d9b493e42026c0bf1f06f723a9353f5153e75d30
MD5 97d87f2434238ca5397015d7b78c9253
BLAKE2b-256 dc03deb81d8ea3a8b974e7b03cfe8c8c26616ef8f4980dd430d8dd0a2f1b4d8e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 1791ff70bc975b098fe6ecf04356a10e9e2bd7dc21fa7351c1742fdeb9b4966f
MD5 ae96c923f0617862e6043310efdc756a
BLAKE2b-256 c1a715d927d83a44da8307a432b1cac06284b6657706d099a98cc99fec34ad51

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0a90c373ea2975519b58dece25853dbcb9779b05cc46b4819cb1917e3b3215b6
MD5 4ddc507dd4241e5549e0416c45a7823e
BLAKE2b-256 93a017836b7961fc82586e9b818abdee2a27e2e605a602bb8c0d43f02092f8c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.1-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b41b6321805c472f66990c2849e152aff7bc359eb92f781e3f606609eac877ad
MD5 c0f2631f80d455216df4d5dac3dfc67a
BLAKE2b-256 d687e7e0fcbfdc0d0e261534bcc885f6ae6253095b972e32f8b8b1278c78a2a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.1-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 7dca7081e9a0c3b6490a145593f6fe3173a94197f2cb9891183ef75e9d64c425
MD5 c428bc343d179c6951ef476e57ed26eb
BLAKE2b-256 5fc3222e25124283afc76c473fcd2c547e82ec57683fa31cb4d6c6eb44e5d57a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rpds_py-0.20.1-cp38-none-win32.whl
Algorithm Hash digest
SHA256 3aea7eed3e55119635a74bbeb80b35e776bafccb70d97e8ff838816c124539f1
MD5 e70e92d3b35d463fb9d73577d98b1e69
BLAKE2b-256 e0eda0b58a9ecef79918169eacdabd14eb4c5c86ce71184ed56b80c6eb425828

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.1-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 518d2ca43c358929bf08f9079b617f1c2ca6e8848f83c1225c88caeac46e6cbc
MD5 02c40e085278a039d6a9b6ee65b9d079
BLAKE2b-256 57aca716b4729ff23ec034b7d2ff76a86e6f0753c4098401bdfdf55b2efe90e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.1-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4a5a844f68776a7715ecb30843b453f07ac89bad393431efbf7accca3ef599c1
MD5 6abfc8c7529dc4b45dbff6af54d48645
BLAKE2b-256 e45e1d4dd08ec0352cfe516ea93ea1993c2f656f893c87dafcd9312bd07f65f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.1-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 07924c1b938798797d60c6308fa8ad3b3f0201802f82e4a2c41bb3fafb44cc28
MD5 2d7e12cf85b4965ff4505fd1a9adea92
BLAKE2b-256 96b0e4077f7f1b9622112ae83254aedfb691490278793299bc06dcf54ec8c8e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 02a0629ec053fc013808a85178524e3cb63a61dbc35b22499870194a63578fb9
MD5 0bbc4ce50dc7382f456037f9ba6c276c
BLAKE2b-256 c4ceaf016c81fda833bf125b20d1677d816f230cad2ab189f46bcbfea3c7a375

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 da584ff96ec95e97925174eb8237e32f626e7a1a97888cdd27ee2f1f24dd0ad8
MD5 a0883bdd6e2b676f8f37679b65c7f164
BLAKE2b-256 cd8f702b52287949314b498a311f92b5ee0ba30c702a27e0e6b560e2da43b8d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2b431c777c9653e569986ecf69ff4a5dba281cded16043d348bf9ba505486f36
MD5 75609b4e23184e6016a358d6d8fdc432
BLAKE2b-256 f1b696a4a9977a8a06c2c49d90aa571346aff1642abf15066a39a0b4817bf049

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e79059d67bea28b53d255c1437b25391653263f0e69cd7dec170d778fdbca95e
MD5 546295a5e226dae80377e85c292402e8
BLAKE2b-256 abd3c40e4d9ecd571f0f50fe69bc53fe608d7b2c49b30738b480044990260838

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2249280b870e6a42c0d972339e9cc22ee98730a99cd7f2f727549af80dd5a963
MD5 a9b3e321e7f666dbcbdd34bba1a3724c
BLAKE2b-256 f7e1d6323be4afbe3013f28725553b7bfa80b3f013f91678af258f579f8ea8f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 fbf15aff64a163db29a91ed0868af181d6f68ec1a3a7d5afcfe4501252840bad
MD5 cabe40d69005217938304b1d2717eb70
BLAKE2b-256 08a7988e179c9bef55821abe41762228d65077e0570ca75c9efbcd1bc6e263b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3e310838a5801795207c66c73ea903deda321e6146d6f282e85fa7e3e4854804
MD5 71fd1c4c115a29984621b7de74485470
BLAKE2b-256 546347d34dc4ddb3da73e78e10c9009dcf8edc42d355a221351c05c822c2a50b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.20.1-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5b48e790e0355865197ad0aca8cde3d8ede347831e1959e158369eb3493d2191
MD5 54b0e8349dd84139c5433b64b0528d42
BLAKE2b-256 53efb1883734ea0cd9996de793cdc38c32a28143b04911d1e570090acd8a9162

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