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

Uploaded Source

Built Distributions

rpds_py-0.18.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

rpds_py-0.18.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

rpds_py-0.18.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

rpds_py-0.18.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

rpds_py-0.18.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

rpds_py-0.18.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

rpds_py-0.18.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

rpds_py-0.18.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

rpds_py-0.18.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.1 MB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

rpds_py-0.18.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl (321.1 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

rpds_py-0.18.1-pp310-pypy310_pp73-macosx_10_12_x86_64.whl (326.7 kB view details)

Uploaded PyPy macOS 10.12+ x86-64

rpds_py-0.18.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

rpds_py-0.18.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

rpds_py-0.18.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

rpds_py-0.18.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

rpds_py-0.18.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

rpds_py-0.18.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

rpds_py-0.18.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

rpds_py-0.18.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

rpds_py-0.18.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.1 MB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

rpds_py-0.18.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl (320.9 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

rpds_py-0.18.1-pp39-pypy39_pp73-macosx_10_12_x86_64.whl (326.6 kB view details)

Uploaded PyPy macOS 10.12+ x86-64

rpds_py-0.18.1-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

rpds_py-0.18.1-pp38-pypy38_pp73-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

rpds_py-0.18.1-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

rpds_py-0.18.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

rpds_py-0.18.1-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

rpds_py-0.18.1-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

rpds_py-0.18.1-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

rpds_py-0.18.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

rpds_py-0.18.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.1 MB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

rpds_py-0.18.1-pp38-pypy38_pp73-macosx_11_0_arm64.whl (320.7 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

rpds_py-0.18.1-pp38-pypy38_pp73-macosx_10_12_x86_64.whl (326.4 kB view details)

Uploaded PyPy macOS 10.12+ x86-64

rpds_py-0.18.1-cp312-none-win_amd64.whl (209.3 kB view details)

Uploaded CPython 3.12 Windows x86-64

rpds_py-0.18.1-cp312-none-win32.whl (197.8 kB view details)

Uploaded CPython 3.12 Windows x86

rpds_py-0.18.1-cp312-cp312-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

rpds_py-0.18.1-cp312-cp312-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

rpds_py-0.18.1-cp312-cp312-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

rpds_py-0.18.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

rpds_py-0.18.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

rpds_py-0.18.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.1 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

rpds_py-0.18.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

rpds_py-0.18.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

rpds_py-0.18.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (1.1 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.5+ i686

rpds_py-0.18.1-cp312-cp312-macosx_11_0_arm64.whl (323.6 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

rpds_py-0.18.1-cp312-cp312-macosx_10_12_x86_64.whl (329.4 kB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

rpds_py-0.18.1-cp311-none-win_amd64.whl (209.0 kB view details)

Uploaded CPython 3.11 Windows x86-64

rpds_py-0.18.1-cp311-none-win32.whl (196.6 kB view details)

Uploaded CPython 3.11 Windows x86

rpds_py-0.18.1-cp311-cp311-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

rpds_py-0.18.1-cp311-cp311-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

rpds_py-0.18.1-cp311-cp311-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

rpds_py-0.18.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

rpds_py-0.18.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

rpds_py-0.18.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.1 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

rpds_py-0.18.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

rpds_py-0.18.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

rpds_py-0.18.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (1.1 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.5+ i686

rpds_py-0.18.1-cp311-cp311-macosx_11_0_arm64.whl (322.3 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

rpds_py-0.18.1-cp311-cp311-macosx_10_12_x86_64.whl (327.8 kB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

rpds_py-0.18.1-cp310-none-win_amd64.whl (209.0 kB view details)

Uploaded CPython 3.10 Windows x86-64

rpds_py-0.18.1-cp310-none-win32.whl (196.6 kB view details)

Uploaded CPython 3.10 Windows x86

rpds_py-0.18.1-cp310-cp310-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

rpds_py-0.18.1-cp310-cp310-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

rpds_py-0.18.1-cp310-cp310-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

rpds_py-0.18.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

rpds_py-0.18.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

rpds_py-0.18.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.1 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

rpds_py-0.18.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

rpds_py-0.18.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

rpds_py-0.18.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (1.1 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.5+ i686

rpds_py-0.18.1-cp310-cp310-macosx_11_0_arm64.whl (322.3 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

rpds_py-0.18.1-cp310-cp310-macosx_10_12_x86_64.whl (327.7 kB view details)

Uploaded CPython 3.10 macOS 10.12+ x86-64

rpds_py-0.18.1-cp39-none-win_amd64.whl (208.8 kB view details)

Uploaded CPython 3.9 Windows x86-64

rpds_py-0.18.1-cp39-none-win32.whl (196.8 kB view details)

Uploaded CPython 3.9 Windows x86

rpds_py-0.18.1-cp39-cp39-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

rpds_py-0.18.1-cp39-cp39-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

rpds_py-0.18.1-cp39-cp39-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

rpds_py-0.18.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

rpds_py-0.18.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

rpds_py-0.18.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.1 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

rpds_py-0.18.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

rpds_py-0.18.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

rpds_py-0.18.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (1.1 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

rpds_py-0.18.1-cp39-cp39-macosx_11_0_arm64.whl (322.5 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

rpds_py-0.18.1-cp39-cp39-macosx_10_12_x86_64.whl (327.4 kB view details)

Uploaded CPython 3.9 macOS 10.12+ x86-64

rpds_py-0.18.1-cp38-none-win_amd64.whl (209.2 kB view details)

Uploaded CPython 3.8 Windows x86-64

rpds_py-0.18.1-cp38-none-win32.whl (197.7 kB view details)

Uploaded CPython 3.8 Windows x86

rpds_py-0.18.1-cp38-cp38-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

rpds_py-0.18.1-cp38-cp38-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

rpds_py-0.18.1-cp38-cp38-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

rpds_py-0.18.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

rpds_py-0.18.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

rpds_py-0.18.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.1 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

rpds_py-0.18.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

rpds_py-0.18.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

rpds_py-0.18.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (1.1 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ i686

rpds_py-0.18.1-cp38-cp38-macosx_11_0_arm64.whl (323.3 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

rpds_py-0.18.1-cp38-cp38-macosx_10_12_x86_64.whl (327.4 kB view details)

Uploaded CPython 3.8 macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for rpds_py-0.18.1.tar.gz
Algorithm Hash digest
SHA256 dc48b479d540770c811fbd1eb9ba2bb66951863e448efec2e2c102625328e92f
MD5 84e96b61634b622243e7b01c96908e0d
BLAKE2b-256 2daae7c404bdee1db7be09860dff423d022ffdce9269ec8e6532cce09ee7beea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.18.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 17c6d2155e2423f7e79e3bb18151c686d40db42d8645e7977442170c360194d4
MD5 539ed4ab4ef1890c281ed4ce941fa61b
BLAKE2b-256 07e989e1f70ee6e32fd2c7f0829d9264b28683bcb4ddb54bcfff0fa4506bf629

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.18.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 618916f5535784960f3ecf8111581f4ad31d347c3de66d02e728de460a46303c
MD5 6e7e57b883dca97de2226b5a9f9df64e
BLAKE2b-256 9200426001ad8c36f1a9a76cc414489f3eab6750f34cf1fee5ec054dba8af07f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.18.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bd1105b50ede37461c1d51b9698c4f4be6e13e69a908ab7751e3807985fc0346
MD5 26ae5c4165740f4563b689deb07aff46
BLAKE2b-256 a960cc3d345d125998ecbccb9ab394193243c66903d53b02beade693810563fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.18.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f6f8e3fecca256fefc91bb6765a693d96692459d7d4c644660a9fff32e517843
MD5 5cf8d96bf719b62a063db3c146af3d15
BLAKE2b-256 79f4e91e3d9c462387c08b833687c7095967461b785ac52e95eaa4d928a459d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.18.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b906b5f58892813e5ba5c6056d6a5ad08f358ba49f046d910ad992196ea61397
MD5 ba9f20a2f4e0b9f528820f50d4c295a8
BLAKE2b-256 cb6190bb60a78c7c5da7155fed66b6cc875b9b402108565a00057f45391f3dcc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.18.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 942695a206a58d2575033ff1e42b12b2aece98d6003c6bc739fbf33d1773b12f
MD5 2636738ff8274345ccd28288109c58c9
BLAKE2b-256 a671f4e8ac7a833ff6f70e18f6d2496b1a1d3a08272c777624359d2aa785de45

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.18.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 51584acc5916212e1bf45edd17f3a6b05fe0cbb40482d25e619f824dccb679de
MD5 8809fcb74d5e72f1da0ae5b6f9b5ad37
BLAKE2b-256 0548b578893a32290c9011e93e340264fdefa0df0f074d793a8c419e707fe346

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.18.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7700936ef9d006b7ef605dc53aa364da2de5a3aa65516a1f3ce73bf82ecfc7ae
MD5 2eb35c608f2bc0c687956b17cda29123
BLAKE2b-256 c096edfe0d2cb019aab199344d19a2c0e2e3514ffeb67a04236933630c8a4090

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.18.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7732770412bab81c5a9f6d20aeb60ae943a9b36dcd990d876a773526468e7163
MD5 9197e9431d8614b9381d81aeb705978b
BLAKE2b-256 47c2c711866156543ada46d5977383235d4c7821bb27db108014f4895d18fc9c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.18.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a3d456ff2a6a4d2adcdf3c1c960a36f4fd2fec6e3b4902a42a384d17cf4e7a65
MD5 9682bbb9be84e8580204a7db83cb8617
BLAKE2b-256 75e63a04f482d8c6d602d6d848ce18e6195510504fed6ff32928052321fcca72

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.18.1-pp310-pypy310_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 cbfbea39ba64f5e53ae2915de36f130588bba71245b418060ec3330ebf85678e
MD5 c3a82bfa35c883a4df5861d24b97046f
BLAKE2b-256 9704966a1b2286d6af7ab00bf66ccd18cac38c59b0c2973be18975edb19c639f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.18.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 636a15acc588f70fda1661234761f9ed9ad79ebed3f2125d44be0862708b666e
MD5 706d4c4ee56dd0b741350d6f95e9939e
BLAKE2b-256 bda4b22a925754f53ea26abe2edd1e4dbb2f43973e6aeade84aa1d39d61be426

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.18.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8d2e182c9ee01135e11e9676e9a62dfad791a7a467738f06726872374a83db49
MD5 eb3a7b1926181a899a1c6e8963cb52fc
BLAKE2b-256 c479029d75bfdc65d9c127b513e68ad555ab5d0150ade6b7e405448d56db220c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.18.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1d54f74f40b1f7aaa595a02ff42ef38ca654b1469bef7d52867da474243cc633
MD5 20c0e5dd10fc9613e6140e5c3639a9a2
BLAKE2b-256 f49e2b5f3e1123ce9bd055ec4003274ce2955040679958936d98a5c2a360ffa4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.18.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 910e71711d1055b2768181efa0a17537b2622afeb0424116619817007f8a2b10
MD5 5750f1fb88879b7043c985d59bc6027c
BLAKE2b-256 b29509863640d095960a76ea753fcb551a1bcf1e5159162fb855695261f7110e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.18.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5c45a639e93a0c5d4b788b2613bd637468edd62f8f95ebc6fcc303d58ab3f0a8
MD5 80dff2af6872def267393ef2e21c82d6
BLAKE2b-256 71d303f88ed04220c5228eee01568b7dc8da23fd0727e5a24a7fba926627e466

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.18.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d21be4770ff4e08698e1e8e0bce06edb6ea0626e7c8f560bc08222880aca6a6f
MD5 f9a081d37a30444a82159d2a3bb76d18
BLAKE2b-256 30ad665552fe1f461c0fff496859c98d9404cea3da64bf7bfcbabe1f6c7659a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.18.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 fa242ac1ff583e4ec7771141606aafc92b361cd90a05c30d93e343a0c2d82a89
MD5 a8790e2d8e5b03be5cdd476b272e6aa0
BLAKE2b-256 ad2a061a5755e11f41e69e80dfa89bfcf6692305aa8d404bc4122aa432c8e134

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.18.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6afd80f6c79893cfc0574956f78a0add8c76e3696f2d6a15bca2c66c415cf2d4
MD5 bab77c4a388e139994d80cfc137db485
BLAKE2b-256 2fd804b736aede0317b08c4cc08a8d32b6ff9487e0e00758c02b93d3caa1a7f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.18.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b9bb1f182a97880f6078283b3505a707057c42bf55d8fca604f70dedfdc0772a
MD5 d8797cab74a08c0d8dbf58f3cda4b906
BLAKE2b-256 42b3b0f4a8860d5786fcea4c591432841d9d89b7b1d96d3b22b3db20b47b7c03

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.18.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d85164315bd68c0806768dc6bb0429c6f95c354f87485ee3593c4f6b14def2bd
MD5 7428b915e042fbb9dd7577689ffa47cb
BLAKE2b-256 114b7897191652162ae0082258e04edd672bdf7258652c81192bfc360c7c74e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.18.1-pp39-pypy39_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 48c2faaa8adfacefcbfdb5f2e2e7bdad081e5ace8d182e5f4ade971f128e6bb3
MD5 654b8b33263fb5f9a57cfefceace21b3
BLAKE2b-256 c6d8d801361ec7c726f44016b57624a2193d09f25ab06fc25553ed58fbb4fee2

See more details on using hashes here.

File details

Details for the file rpds_py-0.18.1-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-0.18.1-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6031b25fb1b06327b43d841f33842b383beba399884f8228a6bb3df3088485ff
MD5 1de8f43a0577c93371c033905c24e5ab
BLAKE2b-256 a7372fb6028fb5a31912d1f407a161b79a833ff2d9870c8f65553b4c1afc81cb

See more details on using hashes here.

File details

Details for the file rpds_py-0.18.1-pp38-pypy38_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rpds_py-0.18.1-pp38-pypy38_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a888e8bdb45916234b99da2d859566f1e8a1d2275a801bb8e4a9644e3c7e7909
MD5 c1caceca7887991a5e44c609ebc5d1a5
BLAKE2b-256 e1a932827105924c7d0982b2d3d41e36e03e48dedc5c5b835a9f6c1d363d3011

See more details on using hashes here.

File details

Details for the file rpds_py-0.18.1-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rpds_py-0.18.1-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 27bba383e8c5231cd559affe169ca0b96ec78d39909ffd817f28b166d7ddd4d8
MD5 17109ffa6c3feb59653301901fab888b
BLAKE2b-256 c0a4b212a9e6944398b9e3630e908df80ab576aeda65c449e6489445fb0fb781

See more details on using hashes here.

File details

Details for the file rpds_py-0.18.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-0.18.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d0cee71bc618cd93716f3c1bf56653740d2d13ddbd47673efa8bf41435a60daa
MD5 abfa89ff757167e8c98b28be3999a901
BLAKE2b-256 c92db09e882bb7aba2b46db986a1969e4baed131fb6463b1e74993582731559f

See more details on using hashes here.

File details

Details for the file rpds_py-0.18.1-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rpds_py-0.18.1-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e2be6e9dd4111d5b31ba3b74d17da54a8319d8168890fbaea4b9e5c3de630ae5
MD5 1ad09ef5e3805e27b1804ef01edc245c
BLAKE2b-256 75eab1fa07df655cc906ce90a575c4294a59e5b3441e713b4b2bcbf4600a02cc

See more details on using hashes here.

File details

Details for the file rpds_py-0.18.1-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rpds_py-0.18.1-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 998125738de0158f088aef3cb264a34251908dd2e5d9966774fdab7402edfab7
MD5 62b59381bad75389c594a24a811ca12e
BLAKE2b-256 e1dd3beaa8ee9254e8ac03fb1237d614ec7c6976766013ab9803831e93182967

See more details on using hashes here.

File details

Details for the file rpds_py-0.18.1-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rpds_py-0.18.1-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 740884bc62a5e2bbb31e584f5d23b32320fd75d79f916f15a788d527a5e83644
MD5 b93a69b2c598a125149aa46c46f7b39c
BLAKE2b-256 3e5de3ac575c5d46ecb5defe5fd64ccf44fb3969bb916a87905e7eee2d34e215

See more details on using hashes here.

File details

Details for the file rpds_py-0.18.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rpds_py-0.18.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 531796fb842b53f2695e94dc338929e9f9dbf473b64710c28af5a160b2a8927d
MD5 a4de1e78ce76cf2f43d1011bf6251b37
BLAKE2b-256 109e57141c5fadc242f5766e92d3b068cc1a7823a41f07c8da2b3fd112c3da4b

See more details on using hashes here.

File details

Details for the file rpds_py-0.18.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rpds_py-0.18.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2c3caec4ec5cd1d18e5dd6ae5194d24ed12785212a90b37f5f7f06b8bedd7139
MD5 7c9958e28e68a266911a930e5fb5a80e
BLAKE2b-256 1b947cff0e0c4e0e25650ba45f6c6741dcf9d6f7e3ff90da51bc8a3f41deb8f9

See more details on using hashes here.

File details

Details for the file rpds_py-0.18.1-pp38-pypy38_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rpds_py-0.18.1-pp38-pypy38_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fab6ce90574645a0d6c58890e9bcaac8d94dff54fb51c69e5522a7358b80ab64
MD5 861349d18f88ac17552315506ca95d0e
BLAKE2b-256 c0c35ce5bfcd2f2c0306b5ed68a5b237e51d62f8285378a392edfc0ee003afc3

See more details on using hashes here.

File details

Details for the file rpds_py-0.18.1-pp38-pypy38_pp73-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-0.18.1-pp38-pypy38_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6c4c4c3f878df21faf5fac86eda32671c27889e13570645a9eea0a1abdd50922
MD5 da6824576c35478fa1c0713a2b5f65ab
BLAKE2b-256 629aa0dbf17f197d7d754ad694952691ca8f386c5f8b56c76c68c44848eb65eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.18.1-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 720edcb916df872d80f80a1cc5ea9058300b97721efda8651efcd938a9c70a72
MD5 675103244a3f6e296f6070660902af51
BLAKE2b-256 017d8552e329973a198e5e150cc6be068f5cbae797a89e64c02bbd47bd397dee

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rpds_py-0.18.1-cp312-none-win32.whl
Algorithm Hash digest
SHA256 1805d5901779662d599d0e2e4159d8a82c0b05faa86ef9222bf974572286b2b6
MD5 1544bf81771f85f2b9d071bc7afcb4b0
BLAKE2b-256 fdc6947a657bc116c985517e7a7efe01a043f263ee2dd2c9875cedc8ebf26373

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.18.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2fc24a329a717f9e2448f8cd1f960f9dac4e45b6224d60734edeb67499bab03a
MD5 98b96b9abba71d8604a00966e80c5945
BLAKE2b-256 635e20602b2cfdf0cafa8b1668cf64ccdb32d43dcb996d3ba456fcc02e791a88

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.18.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f5bab211605d91db0e2995a17b5c6ee5edec1270e46223e513eaa20da20076ac
MD5 d421c7abb3b361062e3f3e5fa605f211
BLAKE2b-256 d128e63095852b338b4c476f34fca47d87befb19f219a326fd3f3e3749e1a49b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.18.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e1735502458621921cee039c47318cb90b51d532c2766593be6207eec53e5c4c
MD5 1d344f5f345a94f469f56f81106ebe62
BLAKE2b-256 6bb85da92178ecd95f6193cb4144f5c2a21bd6d743200c0739c9290c6240bfc1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.18.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6e30ac5e329098903262dc5bdd7e2086e0256aa762cc8b744f9e7bf2a427d3f8
MD5 fa39d8c21d088cb288f61ccfe604175f
BLAKE2b-256 281c2e208636275eab9636981fee10cb5cdaf3d5a202c3c16bf31fdd52ee08d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.18.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 19ba472b9606c36716062c023afa2484d1e4220548751bda14f725a7de17b4f6
MD5 b85aa6bcc5beef436e02be1990c7f798
BLAKE2b-256 0330067d42b83d2b4e0c918a3e130236423cb3c7da0920cc162c5fce8f944205

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.18.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b646bf655b135ccf4522ed43d6902af37d3f5dbcf0da66c769a2b3938b9d8184
MD5 bdca91f81688e77026516efaca429191
BLAKE2b-256 3cb1af0a13cdcd9183ec6f4ea9f2ae8cb48a697db0961a3f80e11a937af91f28

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.18.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ee17cd26b97d537af8f33635ef38be873073d516fd425e80559f4585a7b90c43
MD5 b3ae16d42f2cb76e3ffe5ade5094d800
BLAKE2b-256 206a571d8b2afa73bf750f86eeaad7e132c7cce1b0a22cc0ab2c53545bbac6e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.18.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 35b2b771b13eee8729a5049c976197ff58a27a3829c018a04341bcf1ae409b2b
MD5 74f58f7f2cc35531e21a51b3d70cf804
BLAKE2b-256 1938eb7ae2b3ca5001b74536a67555e65202bedd1302f3d5d5000f7b0dc67ba6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.18.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d58ad6317d188c43750cb76e9deacf6051d0f884d87dc6518e0280438648a9ac
MD5 7e2068a7a7849ad568c5880d1facc4e3
BLAKE2b-256 45048fd5e166e8bb6d386491f41da51ae07118deb5461114f9eb160a7c10cedc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.18.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 05f3d615099bd9b13ecf2fc9cf2d839ad3f20239c678f461c753e93755d629ee
MD5 a05aee2f3e39de6c76735055bdaffdb3
BLAKE2b-256 972ae96015e3e6c0b1d5c06a009ab058f30776a4a6e1b14773ad7beefac82b99

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.18.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3dd3cd86e1db5aadd334e011eba4e29d37a104b403e8ca24dcd6703c68ca55b3
MD5 1066eb29230c4b36ab6a7ebaf7e86379
BLAKE2b-256 0304a39fc930b1ab45943b7f3a8d990a3c731b37541d9eb58c5664374c2ce007

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.18.1-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 70a838f7754483bcdc830444952fd89645569e7452e3226de4a613a4c1793fb2
MD5 4c34cc143b816326a9ea9113d336c9ea
BLAKE2b-256 ff260778cc18815f20e37eb492bfed622d01722db38b2f3f86790753b01b2a73

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rpds_py-0.18.1-cp311-none-win32.whl
Algorithm Hash digest
SHA256 c69882964516dc143083d3795cb508e806b09fc3800fd0d4cddc1df6c36e76bb
MD5 eace5e55a8824d9c96dce9a17d54fceb
BLAKE2b-256 74e0f9dc97509b3048ddc3ab7b0cd48bd25f78dff45bec463c62b0171c57398c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.18.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9e6934d70dc50f9f8ea47081ceafdec09245fd9f6032669c3b45705dea096b88
MD5 d459c9741fd213c1483e22007948e72a
BLAKE2b-256 a93f0b8e2ac89076fede032aae3fc9cf9390c6fd99a470b238fb62bbc64f4cbf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.18.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f7afbfee1157e0f9376c00bb232e80a60e59ed716e3211a80cb8506550671e6e
MD5 559b0bf2ec7c4365d49b6fc2fb045be8
BLAKE2b-256 52fc1eb8dcf82ec8d1252c060644fa44478660e94637ddd91dc8d452b467f359

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.18.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2cc7c1a47f3a63282ab0f422d90ddac4aa3034e39fc66a559ab93041e6505da7
MD5 5a4a5b132f14c94508e9d775a7825192
BLAKE2b-256 f4baadb81247a2fe211ff74cd4c2790454bbf37eb7430ee898e4aa7ce5cb6507

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.18.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3c20f05e8e3d4fc76875fc9cb8cf24b90a63f5a1b4c5b9273f0e8225e169b100
MD5 2cb0c2175552ec6235ab143947a59304
BLAKE2b-256 1ba0a3702128743ae5bf14175a7333a4741db167f62d42f70e0edc15d9cd45c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.18.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 489bdfe1abd0406eba6b3bb4fdc87c7fa40f1031de073d0cfb744634cc8fa261
MD5 b100ea2587d1e0abe5d9eba6a8ca22c9
BLAKE2b-256 9133b680feac0159b5b66ebb9e6d635d78e94486b0b7ed58bea273be2cc80817

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.18.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8c7672e9fba7425f79019db9945b16e308ed8bc89348c23d955c8c0540da0a07
MD5 ce3cafe059a6f79cde7b3faf756c4f54
BLAKE2b-256 4e6cc658183fc2d2a6ed97b0816ab4fef59d609e596bf6f5f0898ae955c14885

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.18.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 07f2139741e5deb2c5154a7b9629bc5aa48c766b643c1a6750d16f865a82c5fc
MD5 cb36a470836a7a1241e9c5fd582d2bd6
BLAKE2b-256 7766905aa687ea072d8980f7b14eb9e3c3023f5f3892eb8b88be024094956014

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.18.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 154bf5c93d79558b44e5b50cc354aa0459e518e83677791e6adb0b039b7aa6a7
MD5 67e76c6a002e353e42f8de7684302b37
BLAKE2b-256 924832bed868dd4e7d16e26457cc0b8634d6b16cb0e082a93f044ef5f7c77361

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.18.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 967342e045564cef76dfcf1edb700b1e20838d83b1aa02ab313e6a497cf923b8
MD5 83d22a29ec212eb657fe02b96c2329e6
BLAKE2b-256 c13ba4ed8b067a8f55df92dc1bc4d20858f02ddfdba3057f96759f4dd1bff7af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.18.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8927638a4d4137a289e41d0fd631551e89fa346d6dbcfc31ad627557d03ceb6d
MD5 478d3cb9d3abdc40f9cb6cb93e09fa95
BLAKE2b-256 58e3b5eb611e2d51688726533bb97b420d36a55d4560c53d016e977ff6d48116

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.18.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6b5ff7e1d63a8281654b5e2896d7f08799378e594f09cf3674e832ecaf396ce8
MD5 eed749f1f34e7c0c58eb7c497a513f76
BLAKE2b-256 0cf3454ef9c66219ea511991e024f3a379fca618acd4cbe12e369b2d02f9d0b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.18.1-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 8352f48d511de5f973e4f2f9412736d7dea76c69faa6d36bcf885b50c758ab9a
MD5 8efa15bce28b4de8f88965277fd5250b
BLAKE2b-256 1bbfc8f8b5d1da7f0673998c63d2246987773c3422e1c2482bbf511b7fffe184

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rpds_py-0.18.1-cp310-none-win32.whl
Algorithm Hash digest
SHA256 c273e795e7a0f1fddd46e1e3cb8be15634c29ae8ff31c196debb620e1edb9333
MD5 2c6749113eb25d6b9b87b337e28b6cc6
BLAKE2b-256 d213495eea6921b280ac04602fc3cc4b385ab985a2eb3e450281d02ce98872bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.18.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d44607f98caa2961bab4fa3c4309724b185b464cdc3ba6f3d7340bac3ec97cc1
MD5 b31459f9a94d8ff8569fd8f441d3a9b5
BLAKE2b-256 4f3c2807bb396f1d940813d1ec39efb8984ec01e84e2064db9a06bf314f3658d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.18.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f3027be483868c99b4985fda802a57a67fdf30c5d9a50338d9db646d590198da
MD5 ce88ea96edb881426720d7b14476b35b
BLAKE2b-256 555cf59ed857a85d6713d936d70e3235a7c9bc51bc83ab7c1b4e9b4f9371abbc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.18.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 81c5196a790032e0fc2464c0b4ab95f8610f96f1f2fa3d4deacce6a79852da60
MD5 6263015dc16da7eae945906ba8e78470
BLAKE2b-256 c2b9dcb20646cda07b4e9db3b346c19a4685623c9a9aa8ad8a566776def0da33

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.18.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d70129cef4a8d979caa37e7fe957202e7eee8ea02c5e16455bc9808a59c6b2f0
MD5 07501bb4f92331c0af56fcfd07f60eff
BLAKE2b-256 e52010c12b1acb102c4981a7e1dc86b60e36c1d5c940a7bda48643542f80dbff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.18.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 08d74b184f9ab6289b87b19fe6a6d1a97fbfea84b8a3e745e87a5de3029bf944
MD5 29ef24ec0f4bcec9e619fc909adb221a
BLAKE2b-256 5765b9769f891d0f2f915151f6d172f82ce182cedf950bcc65af4e853d794421

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.18.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 38e14fb4e370885c4ecd734f093a2225ee52dc384b86fa55fe3f74638b2cfb09
MD5 67e581bd5d3616cde2a6bf7481ad8c58
BLAKE2b-256 d7a9b25013071a61f008a8266a208e701cf8ec2c2946feb6005b3ec454f63a66

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.18.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7f1944ce16401aad1e3f7d312247b3d5de7981f634dc9dfe90da72b87d37887d
MD5 a47c9c1e45a54002f426d6d2bf591bcc
BLAKE2b-256 fd6ae67b83791863db607a297b822fe95813c6cbff979608496f47d81ad45fea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.18.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4a98a1f0552b5f227a3d6422dbd61bc6f30db170939bd87ed14f3c339aa6c7c9
MD5 34fca4cd3862c68ef9dd2322d96dd15f
BLAKE2b-256 f3167ddc46210ec4b52614c5d5ed72ca0afd12b6c6af1d7cb3859b2e7faa8ffe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.18.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ce0bb20e3a11bd04461324a6a798af34d503f8d6f1aa3d2aa8901ceaf039176d
MD5 6fdd0480c5cb8d24add29e6d998dc2ce
BLAKE2b-256 735bbf77d1fe5025eeec85d62e389edacf073b93553b4837f8221093acc3ed7e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.18.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 732672fbc449bab754e0b15356c077cc31566df874964d4801ab14f71951ea80
MD5 60504addd26eb51ba3eb7b002a15ba06
BLAKE2b-256 b99af1cce2481968d0ff1301d6da02bb977d7c7dc2ad9d218281ead38cc7f1ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.18.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d31dea506d718693b6b2cffc0648a8929bdc51c70a311b2770f09611caa10d53
MD5 02c014b806495b76919681e39fe18414
BLAKE2b-256 a1eb5b7591bb8d9f710df243a3b6304a2b70db5a426a2bd478c2912f8b81b806

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.18.1-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 bf18932d0003c8c4d51a39f244231986ab23ee057d235a12b2684ea26a353590
MD5 0854451e3eefc9db6ac6981003c8eb47
BLAKE2b-256 e64913a9adc8f2e7dae30ab76f3d6a750807a297fc4c897178a19e33f9eac10e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rpds_py-0.18.1-cp39-none-win32.whl
Algorithm Hash digest
SHA256 2625f03b105328729f9450c8badda34d5243231eef6535f80064d57035738360
MD5 faf8aa44498478128e919087dec3d45e
BLAKE2b-256 81281f37f2c547aadc74100569d271644a7becd1ab75b067897800049cad4364

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.18.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 32b7daaa3e9389db3695964ce8e566e3413b0c43e3394c05e4b243a4cd7bef26
MD5 40ff673635dd9da087ed5b3f9a4851cb
BLAKE2b-256 9657bb354853ee6d867c900d4149b277ad027df7ad530084caa7e3b29c2ee6d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.18.1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4adec039b8e2928983f885c53b7cc4cda8965b62b6596501a0308d2703f8af1b
MD5 44baa66808bb4d95fd8b4e899e55d3aa
BLAKE2b-256 7442d05e5e023aa3b410408881960664e7e3a526d2e6e9c8620a3fa926574451

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.18.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6cd8098517c64a85e790657e7b1e509b9fe07487fd358e19431cb120f7d96338
MD5 c37b726934697018ddd3ced9d6ab6553
BLAKE2b-256 2457599c6a77ceec52607fc2db134c583cad9b89268573ffd1fbcb15b9576f5f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.18.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e4c39ad2f512b4041343ea3c7894339e4ca7839ac38ca83d68a832fc8b3748ab
MD5 4e31d9357322d5167665ae5103ecb590
BLAKE2b-256 97b112238bd8cdf3cef71e85188af133399bfde1bddf319007361cc869d6f6a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.18.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4e0ee01ad8260184db21468a6e1c37afa0529acc12c3a697ee498d3c2c4dcaf3
MD5 d91cc9986ae6fe6ca4a6bf55364e25b0
BLAKE2b-256 c83bcc231994f64baaff05ac2a6f847f9760d362263765b904c98782e377a317

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.18.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 352a88dc7892f1da66b6027af06a2e7e5d53fe05924cc2cfc56495b586a10b72
MD5 f40fc5aed42bc398111baf500c82ba66
BLAKE2b-256 8c14fa947a9cf31b7d08b26feea4fcc3d57de96924fd1a6c87b46b430fbb11b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.18.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d960de62227635d2e61068f42a6cb6aae91a7fe00fca0e3aeed17667c8a34611
MD5 240f9ef9c7a26efd7c19223971ade8fa
BLAKE2b-256 6acb86f59a827bdd446759cffeb10242814da0652b28e57362c41dfabab71ca0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.18.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 673fdbbf668dd958eff750e500495ef3f611e2ecc209464f661bc82e9838991e
MD5 3c03138bb9d879cbb8926265f1f5e663
BLAKE2b-256 894b633f22dcfc96b33e0bba801d3022359d0cec6f02f0001790cea84df636ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.18.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 aaa71ee43a703c321906813bb252f69524f02aa05bf4eec85f0c41d5d62d0f4c
MD5 183eda31e8bd23d2aa2af06ac0f75e33
BLAKE2b-256 d9d6cb9edd4910b6f253b4f64b0d8871ddcdc9ff02241307f33cccdb61f903cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.18.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a7b28c5b066bca9a4eb4e2f2663012debe680f097979d880657f00e1c30875a0
MD5 e35a48c008cca1a78af31478397a686f
BLAKE2b-256 7ef689c0302279feb2c7dcce7064326cb588299470f0c172979ef26888b6aa53

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.18.1-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 19e515b78c3fc1039dd7da0a33c28c3154458f947f4dc198d3c72db2b6b5dc93
MD5 f7d70dccb111217cef3e2e5fb67a758e
BLAKE2b-256 d7a015114fa1e4427b966e686f10fbad8c23a464d226d34a6712dcaa366707d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.18.1-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 9437ca26784120a279f3137ee080b0e717012c42921eb07861b412340f85bae2
MD5 53f913e0b3af63e28da230f173ced336
BLAKE2b-256 d1dbbabfc21d701ab9a7192b634803881e450bb73b9e8894b7f10d1015fedec1

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rpds_py-0.18.1-cp38-none-win32.whl
Algorithm Hash digest
SHA256 312fe69b4fe1ffbe76520a7676b1e5ac06ddf7826d764cc10265c3b53f96dbe9
MD5 4bf72135e635a904025fe756fb9b6306
BLAKE2b-256 85d1af79ddf8087c350c4534a0fabc340befd4b066e0db4548669e57ab1a2b2b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.18.1-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 06d218939e1bf2ca50e6b0ec700ffe755e5216a8230ab3e87c059ebb4ea06afc
MD5 2f0ff739211940e22bb1d13381c8474e
BLAKE2b-256 194ee72c314d3a5933aa37cdd045ec21e1b0ad9cf3b38166b61732481d3a4a00

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.18.1-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5463c47c08630007dc0fe99fb480ea4f34a89712410592380425a9b4e1611d8e
MD5 8a9b528da2342686232c680f97a22978
BLAKE2b-256 6f3eefa774354adc00b3d3dbae80daf3fbd0155d68c246d0b41f626d53f329d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.18.1-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6d1e42d2735d437e7e80bab4d78eb2e459af48c0a46e686ea35f690b93db792d
MD5 c88d24a63e66c58aac527cd01cd048e2
BLAKE2b-256 e55a2e0ac1c38021da0055f08a0f49be29f64df6dcffcdd63b2d38c402e94489

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.18.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 607345bd5912aacc0c5a63d45a1f73fef29e697884f7e861094e443187c02be5
MD5 3792ea9bb9ae3e48c1667aa50b28fe3b
BLAKE2b-256 6b2d7ce6b2fe57d288b0c3e735e79612e79cddb52b6042b68e9c329e25c42ff5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.18.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7750569d9526199c5b97e5a9f8d96a13300950d910cf04a861d96f4273d5b104
MD5 85b897c206c428f1e55f59902fe6a92b
BLAKE2b-256 ba477995225572d53b14bafb9d406f52145b6a082009cf10143646d3f22913f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.18.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 338dee44b0cef8b70fd2ef54b4e09bb1b97fc6c3a58fea5db6cc083fd9fc2724
MD5 a25a7631c7f7381ab10d47521288ea0c
BLAKE2b-256 e881d47f29b80a9cd9ea81bd03561c7e0515f2bbe823767864f91745a3906cb0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.18.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ed402d6153c5d519a0faf1bb69898e97fb31613b49da27a84a13935ea9164dfc
MD5 530fc89794ce388ad0cb6852e003c3bf
BLAKE2b-256 1112866549e2af13cc70f23ec297d9bbdb9cf97745392bfdf61cbd946a7d7ca6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.18.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0abeee75434e2ee2d142d650d1e54ac1f8b01e6e6abdde8ffd6eeac6e9c38e20
MD5 3180764cfa9356a2b71ca9a0f5aff39a
BLAKE2b-256 592126b0b40d3945e2a83d3626dff45ca65d4d719f914bbcbc23e43162b5cd8d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.18.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 207c82978115baa1fd8d706d720b4a4d2b0913df1c78c85ba73fe6c5804505f0
MD5 13cf292535f2fcb633b0c210da12aa3d
BLAKE2b-256 a52d2447c5a8872097a7b6bb7d28305fc85d27d797bf9715d5ea44f36eacabc7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.18.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 aa3679e751408d75a0b4d8d26d6647b6d9326f5e35c00a7ccd82b78ef64f65f8
MD5 917ce91d911376572a5af37becaa1c75
BLAKE2b-256 6542e8ea20e5ecbd3ed2228500db56024fc09f130a75bf9d530c88aca4f57aa6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.18.1-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c827576e2fa017a081346dce87d532a5310241648eb3700af9a571a6e9fc7e74
MD5 019032804e86fdd4637f10dd4a4ab592
BLAKE2b-256 db89c0e8e04be0d4ebb390d9b0941288a0268b5d1a98a6eec22723e009c9334f

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