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

Uploaded Source

Built Distributions

rpds_py-0.16.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

rpds_py-0.16.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

rpds_py-0.16.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (1.4 MB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

rpds_py-0.16.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

rpds_py-0.16.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.16.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

rpds_py-0.16.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

rpds_py-0.16.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

rpds_py-0.16.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

rpds_py-0.16.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl (331.7 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

rpds_py-0.16.1-pp310-pypy310_pp73-macosx_10_12_x86_64.whl (334.0 kB view details)

Uploaded PyPy macOS 10.12+ x86-64

rpds_py-0.16.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

rpds_py-0.16.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

rpds_py-0.16.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (1.4 MB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

rpds_py-0.16.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

rpds_py-0.16.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.16.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

rpds_py-0.16.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

rpds_py-0.16.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

rpds_py-0.16.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

rpds_py-0.16.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl (331.6 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

rpds_py-0.16.1-pp39-pypy39_pp73-macosx_10_12_x86_64.whl (334.1 kB view details)

Uploaded PyPy macOS 10.12+ x86-64

rpds_py-0.16.1-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

rpds_py-0.16.1-pp38-pypy38_pp73-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

rpds_py-0.16.1-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl (1.4 MB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

rpds_py-0.16.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

rpds_py-0.16.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.16.1-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

rpds_py-0.16.1-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

rpds_py-0.16.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

rpds_py-0.16.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

rpds_py-0.16.1-pp38-pypy38_pp73-macosx_11_0_arm64.whl (331.8 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

rpds_py-0.16.1-pp38-pypy38_pp73-macosx_10_12_x86_64.whl (334.0 kB view details)

Uploaded PyPy macOS 10.12+ x86-64

rpds_py-0.16.1-cp312-none-win_amd64.whl (195.1 kB view details)

Uploaded CPython 3.12 Windows x86-64

rpds_py-0.16.1-cp312-none-win32.whl (186.1 kB view details)

Uploaded CPython 3.12 Windows x86

rpds_py-0.16.1-cp312-cp312-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

rpds_py-0.16.1-cp312-cp312-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

rpds_py-0.16.1-cp312-cp312-musllinux_1_2_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

rpds_py-0.16.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

rpds_py-0.16.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.16.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

rpds_py-0.16.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

rpds_py-0.16.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

rpds_py-0.16.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.5+ i686

rpds_py-0.16.1-cp312-cp312-macosx_11_0_arm64.whl (331.6 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

rpds_py-0.16.1-cp312-cp312-macosx_10_12_x86_64.whl (332.6 kB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

rpds_py-0.16.1-cp311-none-win_amd64.whl (195.6 kB view details)

Uploaded CPython 3.11 Windows x86-64

rpds_py-0.16.1-cp311-none-win32.whl (185.8 kB view details)

Uploaded CPython 3.11 Windows x86

rpds_py-0.16.1-cp311-cp311-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

rpds_py-0.16.1-cp311-cp311-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

rpds_py-0.16.1-cp311-cp311-musllinux_1_2_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

rpds_py-0.16.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

rpds_py-0.16.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.16.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

rpds_py-0.16.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

rpds_py-0.16.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

rpds_py-0.16.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.5+ i686

rpds_py-0.16.1-cp311-cp311-macosx_11_0_arm64.whl (332.1 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

rpds_py-0.16.1-cp311-cp311-macosx_10_12_x86_64.whl (334.3 kB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

rpds_py-0.16.1-cp310-none-win_amd64.whl (195.6 kB view details)

Uploaded CPython 3.10 Windows x86-64

rpds_py-0.16.1-cp310-none-win32.whl (185.8 kB view details)

Uploaded CPython 3.10 Windows x86

rpds_py-0.16.1-cp310-cp310-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

rpds_py-0.16.1-cp310-cp310-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

rpds_py-0.16.1-cp310-cp310-musllinux_1_2_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

rpds_py-0.16.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

rpds_py-0.16.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.16.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

rpds_py-0.16.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

rpds_py-0.16.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

rpds_py-0.16.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.5+ i686

rpds_py-0.16.1-cp310-cp310-macosx_11_0_arm64.whl (331.9 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

rpds_py-0.16.1-cp310-cp310-macosx_10_12_x86_64.whl (334.2 kB view details)

Uploaded CPython 3.10 macOS 10.12+ x86-64

rpds_py-0.16.1-cp39-none-win_amd64.whl (195.6 kB view details)

Uploaded CPython 3.9 Windows x86-64

rpds_py-0.16.1-cp39-none-win32.whl (186.5 kB view details)

Uploaded CPython 3.9 Windows x86

rpds_py-0.16.1-cp39-cp39-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

rpds_py-0.16.1-cp39-cp39-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

rpds_py-0.16.1-cp39-cp39-musllinux_1_2_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

rpds_py-0.16.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

rpds_py-0.16.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.16.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

rpds_py-0.16.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

rpds_py-0.16.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

rpds_py-0.16.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

rpds_py-0.16.1-cp39-cp39-macosx_11_0_arm64.whl (332.3 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

rpds_py-0.16.1-cp39-cp39-macosx_10_12_x86_64.whl (334.1 kB view details)

Uploaded CPython 3.9 macOS 10.12+ x86-64

rpds_py-0.16.1-cp38-none-win_amd64.whl (195.7 kB view details)

Uploaded CPython 3.8 Windows x86-64

rpds_py-0.16.1-cp38-none-win32.whl (185.8 kB view details)

Uploaded CPython 3.8 Windows x86

rpds_py-0.16.1-cp38-cp38-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

rpds_py-0.16.1-cp38-cp38-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

rpds_py-0.16.1-cp38-cp38-musllinux_1_2_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

rpds_py-0.16.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

rpds_py-0.16.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.16.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

rpds_py-0.16.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

rpds_py-0.16.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

rpds_py-0.16.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ i686

rpds_py-0.16.1-cp38-cp38-macosx_11_0_arm64.whl (332.6 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

rpds_py-0.16.1-cp38-cp38-macosx_10_12_x86_64.whl (333.9 kB view details)

Uploaded CPython 3.8 macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for rpds_py-0.16.1.tar.gz
Algorithm Hash digest
SHA256 bc77ba15c1c9a3ec3fdba044a1135b0669ca9a6c4c8ca262a74dc263343eb159
MD5 154028d8208a1548a8fbe27968f7c612
BLAKE2b-256 86ea81924781467f95aa7b21a048a4f3232fc939c3ac028cab421b54c5a003cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.16.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4e976091322592e20a34fd4bc5daf0d0a9fb7a691fd631b988af56893ce4d9bb
MD5 68658095f67e8ca7bed78a7355ab2d00
BLAKE2b-256 a2c394a7a3d27dae50e494a2cba895a764055dd6ae7dcc90ab34e011058ec586

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.16.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 be46dc8b799490b34ac27bab16530bd977a90c3b5b32c470fa5deef987859a93
MD5 3ac39679a9c424393d3333fcf599ecbd
BLAKE2b-256 d16c77529ad2cc18e050781db6d719cd3ec62cee58b9e4aa2d65fbeaedbc01ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.16.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2b69aa0587d2e4c0e0dc7a1d7e355d9433250e71c163d52543aedeb6788288dc
MD5 b8bb393d631fdacb2d072522fe372f15
BLAKE2b-256 48fc0345308ccbd0a64e3188c55ce8ccc42e6a968d45cf6343e37d558f8310c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.16.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8f9fc0875092ac51be790b665cfc4d296d893119b267e9c17863bc01a447e8e8
MD5 b33ae22b2846832019b08d2e3dc654c4
BLAKE2b-256 34a45f21fc3a9e9be9d7de27d940ac0d0022af17e7549e533f44b9c16fe0c9dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.16.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8ffbd6258184445bb6cdfff8da5c004186e6dce1c06d9dce16a1a69b3c47e718
MD5 9d427b0010b935d96106254c55f26ec8
BLAKE2b-256 ec96f2713749af40673cd4c1a5b2d199d451ae016b81eec8e36acd735649d010

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.16.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5c6c0f15faef597236a774cc321bbf520d86a7350f2a598a47f8bd61265c2aca
MD5 550a23fd5c1244603a1e1e07348454eb
BLAKE2b-256 77b88d82dbe288c6bf3ff876a0295dfb9ab177ae69432ac9d16042224432c9cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.16.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 150322f3ccb4e1a8140cfd0cc7e6c1588ddeac040afd655e84d0a225cbf86a39
MD5 e4f024cf5f712fccb2a66d5204530399
BLAKE2b-256 02e595b979562352f74e31c9cfd58a417ad503edbd735b65917a8c2676ce1c3b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.16.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 13e370110e57d261b7ddc2a89223f4d06e6a0cdc67db4c93708c2a114577058b
MD5 e6b73ea4ac6f5f7f43fc839fbd737ae5
BLAKE2b-256 79a313bba01c826149aa15d8d520c4ed0d85ea155efdcc4e5bf528b0d4e12cde

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.16.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5c748805634d3aa3e211ab5c1fa789d2812c7a673e19e9bbf010d8f4952ca520
MD5 effd60d037e855e080fe774561e9da87
BLAKE2b-256 c9dbbc0107d16cb1602ce96b466fe05cb45fa9a2c6baa2384e7e6b29baa38bec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.16.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b979a45800a341aa29e443988b7c68c1c3b0992b4a723e802bf24e82dfa4e83d
MD5 b089d02c41e377330b75ee7ee6fc1d63
BLAKE2b-256 0d61f8beb9fa1533b19dca243b94277bbbfa3edea132e94ad08bb0755d06b68d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.16.1-pp310-pypy310_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 afd57d572fb85aba549f9f257afe3edfbda60d5d30370ca6e832d4595c1ce56d
MD5 960ff588b32ee8126ca8225472ae718c
BLAKE2b-256 a0f5112b9b113c95cf8204e368d5b5596c2c059bf148054af8ec7d9f48bad248

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.16.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 de310a7189f02d75b4a363e2b9d027fad7d2e620ddf742407d4aa679165f0382
MD5 309e775056e6c097bb36bf7fa751c448
BLAKE2b-256 28479cf668fd5ba658e303c1c12c2fa20229ca8c6f6324b5ded07f7ec9f8b6c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.16.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b0227f3426bd5497ce718d6b0a63a36fd35ab2adf77491118061ef43d785babd
MD5 8970a1b9e1e0f5f99dc849886dab8096
BLAKE2b-256 38a663de4079538076848d4ac92dd61f25b6756061c6772430f8f877d7e264c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.16.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6fbe5327fc74c339f2adbee634508396ed6fecc53255f37c98c989f796015e33
MD5 e6cc1e647d618e0ba8a194a3dc4f1967
BLAKE2b-256 0bcae54ed9f5dadf86e9c09ca6e18de9db5078d453cbbfef43b96c4086ff4f6f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.16.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 452dd2187bd49825f2676caa9cef74b6dd2ee0d47aa927bb1f1102318ac49223
MD5 f3229d1015ae31437b44d5f5c7685e90
BLAKE2b-256 abb73976e00cd2581b6751399f9b1e03c5934265f354c30c6b227e4cb0739a2d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.16.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1c8ee023ba89b3de03031a5acfe85050dc6861ddc9ef1ec30c9b5cbdf8118475
MD5 d86d982ea213f84f89b63147eae470ef
BLAKE2b-256 7d800d1feadfab1e3309192c52cb74a538f70a36bcdcf2a4d49c026ca6a17677

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.16.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 97818e1b51cc503680983d4b5a0952c827e21e7193220608bfc3a74928787407
MD5 098d4b9a960be3a2618b0398e6591516
BLAKE2b-256 e58766d612587e0600d9896705c1eea823917b6e4b5cfad4a0c8eeaad5917451

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.16.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c274f1602b4ef6359f478bfaf26d0d4e981e5830d2b96312fc8a008d56ef92d5
MD5 d0660fd7c78f028d998a8c9c19f4655d
BLAKE2b-256 c1b4fc4eaf1bd16d4cbe9c2fb3dc0461b32f9d2b751b962afda307efe9b8006d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.16.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a34328fe4cb588ddbcebe173ec8fe10cbfb937c3eee6202d57bd2c4bfe19d80f
MD5 ebdc5041bc839b8ec66c98e7a2dc596c
BLAKE2b-256 91b412bfc01f3b2f758e4fcaafc093f9daa02f739eed85efa37dfc2865810020

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.16.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 948ee3a5dc00404c79595c35b3f8226546899b1e8fec6f10cf97014872c672bb
MD5 e2b348feab386f0706f2c03243fbfa66
BLAKE2b-256 3c9ba05eab79c55788eb254edc1740616b806c27d3cc0d6d5afe07aa245b7ef9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.16.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e75e433e02db93c20e6d19a7a68e0b46406ffc563025f12144b2f9222283af57
MD5 bafaa90ab61df3852e79319231a86ea2
BLAKE2b-256 fa0bf19dd09b8c661d5e26d1a162b45957a95d90d9e88e007f71da0eb49a11c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.16.1-pp39-pypy39_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6942dc9f157fdb83e3903e7879250767089650b455d01ba22e1eecfd0f56ebb6
MD5 1f1a0fea87e927ee2e05fcd9d671035c
BLAKE2b-256 2eedf3ba21e2004c8d2b4c9c55ce49e2c46705d4776bab84784236a112b03c58

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.16.1-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b271bcdbcb4a8aae1ffc972df3c848c71f0b1e7f1c664c23cdd51daae95b4c6d
MD5 ef8a79602b3e8f87edf5be413d2771f2
BLAKE2b-256 74d2149dea31a7d051616f75d4460b47b87915c2e3b2f01f7a1a0a529d11f1bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.16.1-pp38-pypy38_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6f26307b0b200aa71418eb13f02d7f9e511bc76d0236aaba1635b8f22bc9081d
MD5 b9b390834256dc06fccf4aa0db8c9636
BLAKE2b-256 ee883021a84afccd9786a8d091265135f7125ffcd74467b2d378e89c24bb26dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.16.1-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e268f0113a08765b28f87a317ae7b99b5adbccd332da0e034bfe9f7bd8e0df0f
MD5 8890486060ed8db8b2f2d767a882b7d7
BLAKE2b-256 5bbcdbeb90b5e3795377e18a166f7192289c45a3563eeb2c6139129c8be1e4a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.16.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 83bd274ec1334c24fdb4b4529ba730e31970e572e2ce58e7e710567c7d7f2945
MD5 1f66e27ae2ae50c9da74ea5da9d9b05e
BLAKE2b-256 ddf4861774be68349f4b4ac5edbbceeec840006963b07afe24eee3d78306ed9a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.16.1-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 55fcf49525de3a03516af823aa97214bbbf9fa015b27b4f50470e60da6a0c904
MD5 6c62e8ee9cd58e6d59c2d9518a61aca9
BLAKE2b-256 a007bf7483142cb5259171fbc1548b9e10f2ba594cadcdb25b13e4c825e3f51f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.16.1-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6ddcc05a8e7127860e3b6a9f09214c6284812cb120707af22abbac67b7487981
MD5 a42e038cde2aea7ff3c6f66f86dbbefe
BLAKE2b-256 81c9fb96bfa194d7b5e6e0738c4f60793301bbe61f703b65bcd4c328d174eb6f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.16.1-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 215949e29dd068e5b221593b2a93d55136d10ebce3ac24b7ec11fbe035092102
MD5 ca279aedd5ee47bc53d968b5712fd680
BLAKE2b-256 73b1462374389ef47796325373c2ba86722d679d3765d138c234d9a47b831dd3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.16.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ebcf6cdd51f7b0d0f67c4a001bc52c11c87027b8c5c02747a1c9420a75636cbe
MD5 79e6efc920b2c914f917a0c7771cbd24
BLAKE2b-256 8e2433b03ff1b934f51d65ff3d63d091252fd5e16a369475b59532fb8043a76f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.16.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4c7cf4f3d84e1c88d817566c4af086208cebcd80f1cfad5d2623c097b01a07fd
MD5 f94b759e27e22e79cda456f269fc6146
BLAKE2b-256 f3a50b22210e61481ffa65b3db1f0095db7638849b429ee636f9584a59788a2c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.16.1-pp38-pypy38_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0f4967dc38ba502ae6268c5dced87b931cb6362e4d259fa2aeb7fcd280e340de
MD5 20fd1d3093a1f0d2bc29f38fdcbd915f
BLAKE2b-256 a9fbbf089af2180c8ee977d839d4497bef6216caa2cb05588114d9eb4d454738

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.16.1-pp38-pypy38_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 dafd8b1d4f2de983c740b746d4dfb207bc0802918b83ad847c94ebfd714fc81f
MD5 96e8f912a1f641aa38cbfe1c9f5279bc
BLAKE2b-256 8a7e4876dc454f328980b9524c942080e5c7cf956c6855539973faaf1b6c7b2b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.16.1-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 e00f9da9b0887002460e1cd39e44b6abc6828cc29a29b08d1459e31c3afad02a
MD5 3278ac54d0157b60ef0a4cc67f18b798
BLAKE2b-256 26aa03e056f5204e5f475ee514452592f55a37534bed8b2b94e1892c5e97cae5

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rpds_py-0.16.1-cp312-none-win32.whl
Algorithm Hash digest
SHA256 c0220dad4238cb78252faea9146691d545e25fd3aedca59ace138cd1275ff6b0
MD5 913b3f917d996a42f8b3ca1819026b6d
BLAKE2b-256 62df9fa8fc13468f2aade6318257619ddc2ee1f41a788541ed6162f18dd442b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.16.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4248aa22af2de482eeee762e2e51a470a72472a96facb4a59c286443f2696b06
MD5 4dec5acda5b2bec055574f40492c28ae
BLAKE2b-256 672a43ed1b9ea108016dc6596a6ff4412dae6591654cb419594b61f4d3f0ca3b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.16.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e99077a6639ca9cd9326806da2db109b1fee1fed8a11715fdb5a21820eb8f122
MD5 e1f66f5bfaf2f940c9e353a0b5de614e
BLAKE2b-256 b8b3eb7cc2a11e094cb5081f2e9e422cad3a01d87afa2aadca0f93a044b5d46b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.16.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 24a97715c25169724398bf8b9cd6717cf8d0f7a56c0da9033c31728ab3c05cb3
MD5 8e7473942e9651acf5684fe06cd02b4e
BLAKE2b-256 e7f60d8303b31a5719733b402ba7088ae7274fa941e22d13eee697dfdf844786

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.16.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1ce8994443b937460cee239f75bbae7caa5b74bbfcc55d8201307b538683411e
MD5 905aa5ea28de4fb97ba78f27b27b1665
BLAKE2b-256 5869a1c7c6da0ad818f65c283627c8d52db1d7d96fd245fd2e89247681e15108

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.16.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 435044c335d5031115a397c6640b7bb43b7410d8be6112706a9bf091f428a783
MD5 f1ceb7f2bca844d97103c3d2d304354f
BLAKE2b-256 dd6f337e04dc5c1c1d5658c2d7a658db9a546d07c1f090dabc578f1e132ad981

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.16.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 62918097d5b35786286ba097cc69fede032317440fa4aad2bef5f3c45184401b
MD5 6bb21a202de38935600ad13bb75209bb
BLAKE2b-256 c0dc7c147d5089f74aaa64afa8b21eef1171efa3f25747efb2a3e9d8b0444a5d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.16.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a2ae2f423ca5f17f48d1eb31668ff76985eb6d856abb85356ce30bbf5b94359c
MD5 7a27e299b25aa37ecf0cc2217d328c9a
BLAKE2b-256 3f68ab0871c9a7ea418faa88309d98d4415323f03acb296b4edf53d88275fb55

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.16.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 12355871f989ff4f203cfe4e29f5ab9e39963209f0d9d0d532f8c857183c796f
MD5 9c1c923677005ff813f5bc7b55c6c4e4
BLAKE2b-256 940b6f7b33afda04db8f44eda7cd926a92934fcd7f1ee9c67f4a7a2fd2bba631

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.16.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e209d3c700953e97dff23edee1d12f5f2e13e1110d5746413f83dfe58a342fd1
MD5 2bd142f762fdfc6be56183bdf19aa4f2
BLAKE2b-256 09b73651c568511afab013143708f8d51f3af7072130422d5c74de5c4c0fdb17

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.16.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 69ec027b386866d8f4cd7d376215cb4b0b20651936ee896609b5f70e8f1253a1
MD5 79a7690aec78f3be8504421b67f80c1c
BLAKE2b-256 c7b9cf3141db27906eb3454ae2172de6d0b37fc8f00d6c5fc91c7cd7e3221599

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.16.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8bd5512a13b5453d32654ac2526de57b6eb49a9448f671f1a641b8fb96de8c55
MD5 dee5e2a26baea964dad9f6825309b692
BLAKE2b-256 cdea892863ab9bdaac43b3a5c047b07e6fd37699e7bceaea9c674cf5b094b9bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.16.1-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 b5708db83ab76562222ae370378e7015215f119065e80b6340221545abd5cd55
MD5 d4917b565e70d76aced773a517bde19e
BLAKE2b-256 6f1f36103e83237a5b307ca71edf87d5c7ea2698505f0bd3bf000290561c81f3

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rpds_py-0.16.1-cp311-none-win32.whl
Algorithm Hash digest
SHA256 23e2bbcb2a0476082816d8fb772f6a9543ff56838289ca2c35887f458cb1ee72
MD5 6a0c37dd822ab9c9c89f46617ff2bba2
BLAKE2b-256 82c69ee306453609761f004c9f736175eeec8d560d4741ce015096ec38608ef3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.16.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 40b946e611bc58d6bcf669c7a53584d00419bdd2c7686e7eed358c6baddd6e37
MD5 2e8b398a3aa8c3fab20370c40a5a80c5
BLAKE2b-256 d35f389827ad9344da4154ba881c29621b49241255104eba88082eea32981d2c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.16.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e99e67dede119b93ef15baf8ecdd6823709fd7be137db9e9367c90dff0f33cdf
MD5 996a15a4ade53df753911a82390a324e
BLAKE2b-256 e71a6002732361b61a001563b75c29597aa4bc9bf9bf3dbb19052ecf3b971cbc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.16.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cf0b7e52a8f63001d590d4409bc5707f04666fb560932e83fc42cf17f27dce3e
MD5 58971bd35772c8383a91a1215553cd54
BLAKE2b-256 39f577e5290ded4d92416008bd20f07c16df1f160729ca9e96f2d0f443d7522b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.16.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9cc14b9271fef5ddddd6cd040661cfbd962b2468eafd3228c1886b231d54e88d
MD5 26ba2cabbddf6787b58a8c07ab025c18
BLAKE2b-256 b5e6f8cc82b6790073636132d77c69a1f1ec5fef600364da223517ef8c31fb7d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.16.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 eec4c366f8b425ab4c0991547dfb828f4b18c5bff8a83d27e145accbb5e566db
MD5 958e0dac14479fc1b236fe6385b2faab
BLAKE2b-256 a8b69709af3485006a6bbacf2a493d869f99d1e074d960a1d0fe722370f4ea97

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.16.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1ee6551d46516188e532a6eb3323065ee49d518dbe4701b68d7c78d33f9de340
MD5 8920e52de574b50286c2077146ee9eb4
BLAKE2b-256 145b3734d8d784ae1fe256ef823603dfc0f8a269aad6fbe74740f4c9a4d4be7d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.16.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 98a6a3e55b7815d518ca997fd0e2df16d558eadc4211de26644639b9bfe9380a
MD5 d2eab228e8a3f644835978f9416f7df4
BLAKE2b-256 1e318bae466b1b94ebec309698757624c703560ccdd5de2182d8f5cca6ef7198

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.16.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7c1a305ee915be646ae5fe0cf0c775c2c286b52bbd32e8ddc7830741d8956715
MD5 dbb80d0d47e5f27d2027efdf2b7db35c
BLAKE2b-256 d27eed55bf4f1190137ee26b2abcc98d8531e4204a67a196f57784c57bab402c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.16.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 6b6500b49ef4945b8e3e8da18cc8de10b92a8e7ce0b04eeaa42e0c471181bfae
MD5 880eec4c1a79ea5049f20a012e606177
BLAKE2b-256 0cbc046a5f83499ed0359d69996a10a9659ca647685875809554d73ec881cd44

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.16.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 20d83968639bda065ca2fb7e815c90751a782d31a4c1eac028746a2ea23efa29
MD5 10eb18043117d4c2f41f16c452cb2896
BLAKE2b-256 92a794e6813849b0fe3ab206fbabcc970b91f0ac909197b6df892610aad8d833

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.16.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 30aa74da7b76d93ca7a1c9eff42b4c650ee98ceb88fd8160fa83e6af430f0ecd
MD5 efd6b7102ae987a62bf67276bfec0bb0
BLAKE2b-256 fb4a8fc1b6b6fcc61d81aa4944be61f813683fcde08b45ba247e24871a0d6e59

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.16.1-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 510d6cc8a5784688e658998510396bf18fd1d85fdacbdcea969144b9750fca94
MD5 7e06f832229bb6bd6e8769c260c1285f
BLAKE2b-256 df8ee2cd69ff99e190b3aea7684e6699ba63135bf37262a5d097bc995b313d8f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rpds_py-0.16.1-cp310-none-win32.whl
Algorithm Hash digest
SHA256 63cc52aa1ded5c886fc5d479069081ad3586dae59b39d2dfb724a66e8e08bef5
MD5 c57956771b56f133cd99d1c9599e31d5
BLAKE2b-256 1c1681be94296cbed429c96e6898e4b1c0436f0ee990203b60e826e7456ef510

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.16.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bda6636c95cf5c39c7dd8b68e61fd9c528e95230945f426bce8e1c7a43875969
MD5 e7e280240fafdf5ab50aed8f4efdd337
BLAKE2b-256 9ad798d48e47bd8723da2c89a7631c97183367bd474fc4cffc266bee86c3912c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.16.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 820cec9605fe49c2fa5f5f4a4373ea0c841e08372553135b71b84b18ea10e770
MD5 6566e8a83b8416302b68531aae3f74cf
BLAKE2b-256 e943ba0ac8ad2d0ba5a91596408b01dd6d9dea1d961ef5918fa1cd75e0a62679

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.16.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ae090b430d3acc1f6e1779144ec6350d14ad8425fd5dee6caf4d062294be523a
MD5 0f1818c881acf485678b609170150a95
BLAKE2b-256 601c196449dac36edf961a5c6ad75b4b8dab83c20933b52bb75722ad56bc0422

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.16.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 201493fac02b039fab728dd2e3f5b37b96d52c5d329fd2d4a8c5225cd7e5072b
MD5 6ce4b4597c8e8ca5cd2ff68a0841dc93
BLAKE2b-256 8dc9649ebbf4ba1e3f4f52b70c20a47d9d2aa6758bd11c1dbbdeb5cdf87347b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.16.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3516725341fe27785907e52c9c37fbe4f3b64ad9a31be6007f4148d3657e4257
MD5 9c667e3b29eef185bf99138dca9aa75a
BLAKE2b-256 d2f815e3b76af86ceea9d3c554de2a2ddfef69b0fe5c89443fc6b027ebcc47e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.16.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fdd2add869c6db24e1fff50979c05621f03947862d4c7acf7a59cd2a44027db5
MD5 e79f6dc6029c57d7a8b636ec4480669f
BLAKE2b-256 b6cc939d657260c8e2fde9a4456d6b084348ad6147e188520a2ffdfee61ea7d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.16.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5babe9d51d7b4fccd6c010e73dff0aa4e390cf7fe9c20d58f537c5095871917e
MD5 7773bf632632218465e5f287e6baba08
BLAKE2b-256 2919626dea1dcc4a7a5855d514ea068f66f024b371b3bfa3ce1802b62e16e764

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.16.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0a2b7de57a1722b1cd1e9929e951b5e40c678fd46512e8f2be819c102611b845
MD5 7bafe3c29b48a3c8fb3d92c268ba53e4
BLAKE2b-256 7895a92e5e140af37af38505d6a077a149838437a70b2baab0a3b98db2027100

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.16.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 df12cbf2e54700069993240a2b4d6a1c18124ec385cde7d8001114c4690e7728
MD5 092a1648231e9a1b554a622387cf9a29
BLAKE2b-256 4dc975f65603474a0267cb522051dc68b29fe739d0c8b9e451a33d0dbe6590d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.16.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fdeee48341011c17f06584b175e36536944eb45131068677d0195da16567a15b
MD5 2c7d389d4b062f08788b012d5b1c4815
BLAKE2b-256 c077e1c8e194cf86d55c363b06fd2c5d84876c04d1d782bb00fd2a456999ef64

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.16.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 792f138f63483f99ef7c19b3df64e53e4554f6240baa2d8c64ce98ee3b9e4e82
MD5 e30ddd27f56d1fd235e6025f0c8e5f08
BLAKE2b-256 32b23310d8f7a5cb7125a61b2e3b272efd677d0f260d519f071b3ce1e9d9601e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.16.1-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 0b6ad2b11596e1086cd2c7769fd2929d6ec304cfbcfb5be9abf20df3e0ccc8e1
MD5 f3d96c7cdb7570522750be110682edbd
BLAKE2b-256 39ba15acb88355aa43f9db29a29566d08d53fe9ca0280bacdc386a3f108d0c5e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rpds_py-0.16.1-cp39-none-win32.whl
Algorithm Hash digest
SHA256 fa33a96e2063a79e579fff90addcc45e74f86df76700fd2986550e9b6535cb71
MD5 2d6615bc3f3918723b75a89f4c0433e8
BLAKE2b-256 54178d9eaacb9e8088df02f6773b31a0781a9a3add2a5ac2317a9035d65be959

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.16.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9f439574a55efe129022320a40e53a5001fe589c0ce21659e46079c4cc1b23e9
MD5 7793a1761bf26fc7d5450cb4d08adedd
BLAKE2b-256 cb414aa798342f0fb234d75e9f94613f8f680cbf6b2191a02a5e4ebb3a57516f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.16.1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4ea9dc952180bc4bba4f7f9963ea921548b1c0a254bf7566e8433fec78ed086b
MD5 a61eaf1d11668be99a772073e685b28e
BLAKE2b-256 52696d26403ab0555398a7c38a91cb189060059b193b0866b51fa871f92c2909

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.16.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f780d89470faf8bfb632ce0ec6d042784717c688487b70929ee61fc1badca158
MD5 1fbcd63971860838d84121f6d2d86763
BLAKE2b-256 1390ea218b849dd404d0aad120cb2dfa7809cb687a1545008a5f220474d3731d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.16.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6956bbda072ca7d591a048b86cce8c59be8a5da5b782aa12b72d189c3a007a5e
MD5 789bb9fbb3f0a4f1c5c4dbc82018bfb8
BLAKE2b-256 9f766f1cd53e84c97f2f218fa4c1a69985bc55a969f8544f46d1c20b70391f38

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.16.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bca0e3439a004e4d9b2cc8d46d4a57b299ceceb8c18730129f539e27f54a1fe3
MD5 9c8f908b74af96f423a01d3fe2b73933
BLAKE2b-256 20c9d80e9beb017566030da12a0b6eabde80f4ad297532bdb73592dfc36a4f33

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.16.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 da803b01bbf7c2d1632d198f80086da152ff30b07dc8c2073a527c056852a8f2
MD5 ccdb7a7bc20e7f37e392f8ab428edac1
BLAKE2b-256 c997273b87c5898886b9b3eecdbcf0fc141278f94462eb5945181ee515c44dd4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.16.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5ba7eac8523cc81452c5cfa6b141ad15df848245d94faaf8c8fb6b95256d3af6
MD5 1af2bb26db509e48c22a96a49cfe436b
BLAKE2b-256 d25a36b5e5c27dd1d4c7acc79629186fb4b84fe9c450d61b6626a82d7102819a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.16.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f7efbe86bffbfcbde93a4e22a71670d8bd35973c851390a94e7c28ade561b4aa
MD5 e9d27d7448012a3e9a25080e008b9bb7
BLAKE2b-256 2deffcd5ec0b7b44af8cd4f2b3a769183766b181db88333dc745667eece215e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.16.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 309f9817ecea8e7ef02339cfd74a31ec630f6fb53f3559990c85120b3c7832c8
MD5 e889d445eb37a0779805bf3933a1844a
BLAKE2b-256 8fe7034f259537330b4195486b8093aa3ac480d2161fe0e9e6bf8e8f9f9e5f10

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.16.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 acdc3510ba49681bbf7a33fbed59fa14a6e328bb25d0f37e3256683c8b6dbd34
MD5 d510f58818f85663e97fc0568e1ef81d
BLAKE2b-256 03392a04946a62104b493e10092eabb682bcafe6a7432730bbcea6a4c3965bd4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.16.1-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c6abe54b71f38e9d2f7c2c233741576adec3e48449ebc4dcce8c5957e7758439
MD5 c6facd59edcca84c9eb500ea8a4f500a
BLAKE2b-256 5e11e6480a8a4a5681d033ef1534d09f79776a05616456740b28d04958436e67

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.16.1-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 7b0b6509f654f84db53063e2e3691b4f2d1411f2f1014309022431321e3e2ce0
MD5 0738fc4ca079a7eb8812952706f79dc0
BLAKE2b-256 28af0847e57bf6abe7ae0e700d655dc1a3917bacba42086d86e9d9222ff61559

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rpds_py-0.16.1-cp38-none-win32.whl
Algorithm Hash digest
SHA256 774ade8a1c29d9f999c130896a67e6b290a86909e42ebed5ff0191a19efee3d8
MD5 04bfe73db8aa43e6e547e51207b41523
BLAKE2b-256 278c0458141d0bad6e52774ab38bae5b892dc55066c8a3c511b1db2dc4079520

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.16.1-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 50a269dbf1922d28826f87cd04721c8fa8f4ef40879ada27a1902a06cffb6b06
MD5 ce659690dfb62c37d437abf5fac7dc9b
BLAKE2b-256 f70a4a711a63af9b16c840ea82437008c2825ced5c56a5bc835acbea70124399

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.16.1-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 82ced65af53435b1d2f435e7b079f1066137cb98dc0729ef7f86bb464e95481f
MD5 0cb4654bf30a770e9a246ff8d03f8dd5
BLAKE2b-256 27bfb279f702a52ae9b69225a28020343451cd67594ecd0cce469042add36c94

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.16.1-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3c4c9a0ad3deb59f60bdb221f2fad30843799f98b03a89c3887eb016365241df
MD5 640379546cc717ebdc027fe77f770cd6
BLAKE2b-256 66e794939d89caec7bd8ed34fb9a77bbd39b7e1550d0c50704353141c0ccb448

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.16.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 587205e703db5751cb632e7132c31cf3216dc5f376be6ad93c393056e8b991ee
MD5 e890b48cf8b06734f1b4fbf564d28747
BLAKE2b-256 c654b0220a7c110962fa4f9af251fa30946acbf439a1a2a59ab166c5c67a9a72

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.16.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 727144c480ad38372e4761130d144e362b999e934c698d22cd51fa0c33f6f2f7
MD5 4032863d18ecac16afcd264aeee2ea4e
BLAKE2b-256 cfa837d855a3f3ab93ae22b73cb492aee84a69103a47624ba12bb2cfe1dcca77

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.16.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 dffeeb88610a5fb56a7e2d68ae3c14fc5cb585c0552825f20119a6c6879bb08b
MD5 f3851bdb2a3e256ebf75a54d4ebb4166
BLAKE2b-256 ef63822c08b0a2fad9472a65129563d0708032e70eb5418fc8ac14e4ac2481ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.16.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d90e9be6b7cc84219c8bbd64d6ab4c3cc17b9ca1c7152fb1a4f50dc51f1dffef
MD5 509b530a012dbf2dc4e2c901ad7b200d
BLAKE2b-256 a83193e1b7d7e800796331244d037bdd11ce1a26d3d55a7e578cdc67ad69b8b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.16.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b5278f126efc81860a62d861a7b08ce36eef57d0a97684e2e4c8929cfda1f566
MD5 8c64e7b183fd6c388b4877b7919577d7
BLAKE2b-256 a3c0968a0070ce51e3aab15c64356d44ccf4fcb31a4431c947fa51e80bf2c3dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.16.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 448e6df9772885e9f57116d3d5f7ea8521ec6145cd39c3dbeab7aad4836b05d4
MD5 b6b63d9056c01fc346aadab8ebc0f79b
BLAKE2b-256 57a458470859c97d44a0083b32ca61786033e3a7b6776626ff51d2e9cb4b8293

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.16.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bb59a4bf53133ce6b2d918dc9b2f7a5547386d3de75432e712aa331504af9ffe
MD5 907a3c9706e74397334b34e8a07281b7
BLAKE2b-256 0522fe4890442eb6060e91b59ce628e55baac61f1e88634f69118f32da67dae5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.16.1-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4e3598aad6539a7c31c69e9d93117bdf7e6946c39487c0a0d0c86c63a12112d8
MD5 7fcd327fa3d4ab69eb5ecc1e7cd2e399
BLAKE2b-256 f61aa4ebf05397d9c2acbea15c63cfdafddb52d88bec73110851db4f170aadd6

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