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.

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.

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

Uploaded Source

Built Distributions

rpds_py-0.8.7-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.8.7-pp39-pypy39_pp73-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

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

Uploaded PyPy musllinux: musl 1.2+ ARM64

rpds_py-0.8.7-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.8.7-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.8.7-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.8.7-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.8.7-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.8.7-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.8.7-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.8.7-pp38-pypy38_pp73-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

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

Uploaded PyPy musllinux: musl 1.2+ ARM64

rpds_py-0.8.7-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.8.7-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.8.7-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.8.7-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.8.7-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.8.7-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.8.7-cp311-none-win_amd64.whl (180.0 kB view details)

Uploaded CPython 3.11 Windows x86-64

rpds_py-0.8.7-cp311-none-win32.whl (174.0 kB view details)

Uploaded CPython 3.11 Windows x86

rpds_py-0.8.7-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.8.7-cp311-cp311-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

rpds_py-0.8.7-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.8.7-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.8.7-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.8.7-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.8.7-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.8.7-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.8.7-cp311-cp311-macosx_11_0_arm64.whl (306.1 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

rpds_py-0.8.7-cp311-cp311-macosx_10_7_x86_64.whl (311.4 kB view details)

Uploaded CPython 3.11 macOS 10.7+ x86-64

rpds_py-0.8.7-cp310-none-win_amd64.whl (180.0 kB view details)

Uploaded CPython 3.10 Windows x86-64

rpds_py-0.8.7-cp310-none-win32.whl (174.0 kB view details)

Uploaded CPython 3.10 Windows x86

rpds_py-0.8.7-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.8.7-cp310-cp310-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

rpds_py-0.8.7-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.8.7-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.8.7-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.8.7-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.8.7-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.8.7-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.8.7-cp310-cp310-macosx_11_0_arm64.whl (306.0 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

rpds_py-0.8.7-cp310-cp310-macosx_10_7_x86_64.whl (311.4 kB view details)

Uploaded CPython 3.10 macOS 10.7+ x86-64

rpds_py-0.8.7-cp39-none-win_amd64.whl (180.2 kB view details)

Uploaded CPython 3.9 Windows x86-64

rpds_py-0.8.7-cp39-none-win32.whl (174.2 kB view details)

Uploaded CPython 3.9 Windows x86

rpds_py-0.8.7-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.8.7-cp39-cp39-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

rpds_py-0.8.7-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.8.7-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.8.7-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.8.7-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.8.7-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.8.7-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.8.7-cp38-none-win_amd64.whl (180.1 kB view details)

Uploaded CPython 3.8 Windows x86-64

rpds_py-0.8.7-cp38-none-win32.whl (172.5 kB view details)

Uploaded CPython 3.8 Windows x86

rpds_py-0.8.7-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.8.7-cp38-cp38-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

rpds_py-0.8.7-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.8.7-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.8.7-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.8.7-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.8.7-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.8.7-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ i686

File details

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

File metadata

  • Download URL: rpds_py-0.8.7.tar.gz
  • Upload date:
  • Size: 15.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.1.0

File hashes

Hashes for rpds_py-0.8.7.tar.gz
Algorithm Hash digest
SHA256 544fdd79db1d6b2235e95f248458b9a70091b2c84da9c9c592320320099cf311
MD5 63944721c97ce6399b6e0879e1a4bf29
BLAKE2b-256 d7a9098d872b222e0e38a5cd181668a582a445b7ccd380c0c55cf87cf6e6d82c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.7-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ba729055919324b77222fb4898da94943d6b5670f1a146e49f8369e92a282c24
MD5 81f46755f24d3282e32d6eabdfa746a8
BLAKE2b-256 155ed4f45ddd17e85f70664fc017c5f54b9fe7a199c02a254a9828bb213a7a6e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.7-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8a39255070c515655e0569f1f5c280af1c584e995a91bb52c6bcb9220cac35dd
MD5 f38f0bc9c1f3a09eb535951c4d229fc0
BLAKE2b-256 e01f88e928060c751d576c288113059914b038034c67bdc2d821e61afdb670e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.7-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8f80fb9fa5ba7f42cd080e4cc20417695f8a5558b808075aad6267d14157f529
MD5 09d18482cf77719aee4f01732b4d3c21
BLAKE2b-256 03076d68cb07e229d44823dfeb19c06181cb8540bbd1fd61307bc8ceb022074d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.7-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e2be808142550a98f11c02c0e658fb4e88fed3b54f28c0e3f7fdb08601a69912
MD5 dcf0b2b163d3cdc783ac98d3c9b50b2d
BLAKE2b-256 f50adad5ff935158c9a89cba18204c028087c4dc07b358aa895f8daaaf36d6da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.7-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 87aee6ef1fd08774ce72e87aaa86e0717cf89b22ef014ffb3b590cfe15b4bf67
MD5 c4342bf319a0382a50ac11ab954a027b
BLAKE2b-256 b4f18a3573213de4987f2788a6d1b5c74099a15ac96db5a863406218a1d47fab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.7-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 68dd1627fb752fc5e044796d360da86e330687e246c15a8e0fa8414848d2e4b1
MD5 966a1ff14712cc0ae41db1a78188c47c
BLAKE2b-256 c5a4a9fe66ae76aa967bb55f0948d7f65e60ef68e6b7fd7fbc2e0535db5f0436

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.7-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e498835e6e365fbfa591e6b2ac8765f4cbdf3f69e3e80aafadde696f525e4fda
MD5 0611b75719ba2ca458ec38f5449f8f25
BLAKE2b-256 b7ca9837d26c1cab129dd6dd7d20218086da45cc317018d4d888bd1c38b86233

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.7-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d48801b86ef7030337e341f208aca733041fa843c002e5029fd315c90baeef9a
MD5 c01366b95c0a4e3bf03b5b2b6323934b
BLAKE2b-256 892c48e780e79dfd5e1a3f1df1a447a757a2a291be29ee6f039427cd4578aa32

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.7-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b26381b68e4a6076204b1bc59e0ca0d6a4499d24c6e2b92023dd01f131002ae5
MD5 24b75c9c398a27535302ab74e7e54ab6
BLAKE2b-256 d3ef8903be93a2988639fdc7a4ef1ab723a7c19a795d4ef448863b6af3a29c20

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.7-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 945ce525d3c38a55ac3826fc303d254b5074abc172d53fd4f61e23be52963ee9
MD5 1fd899eec74f274c5d9b2dc89e556ead
BLAKE2b-256 b58bd1b69c66d17cf2bce20594941ad02313c2073d461b9be7fbadbeeb9fc60d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.7-pp38-pypy38_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0c6f3173d8d1a8239b29da4921e52316d7b3d04566fb49d6a3d57cd4da0ebbda
MD5 47279831c00ffcf448556afdcd20afb9
BLAKE2b-256 64dee93b59f194f31aeeca741608c8db8afe1d6e2c0037b16cdfb8cb990ab166

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.7-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 430d828338f0a34551db7510bbdd2b8f704cf3d3be819608730538be8179e9da
MD5 ac0e5c1e5312da654e200af9e4da3e82
BLAKE2b-256 e7ac412aad4198f1fa7e7c0f9d5aee54c38443cad83335b2893605baf9fcc2f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.7-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 32cb48bbf620447d84c5de9acad442289fd147068224ce0e9265e5146f71dfa6
MD5 f22bfb4e86c75a312addd7ce01131366
BLAKE2b-256 ba31bcd00d4933eeeba4840ae57ad88c325f6c642be3248ab092b1536deb855b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.7-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9065a24d770e03b70585587dccee637a622ecf06774dc09c5ea68681b4460c02
MD5 3b73d2d71895fbf6152a1004d313caae
BLAKE2b-256 d80b9adb50ef1c66823d4e8fa37e87a2767a4ab66b17c183ac417142f8df4b76

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.7-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b72efbfc27f4c9c80ced542b2ba90c38482d939683defa8ca62ce28f36e054a7
MD5 7cd6e139a5a38ccfac39294cc9f9e1a7
BLAKE2b-256 3604b5f8f2007b815dae1d189ed3f4f0e8ab2f0fc8b1e0f9d716d62f71ce91d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.7-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5dbff7777d3b08235b45e3e0bf073270a4a3b2dd9ca9e2d4d20284bcdb968063
MD5 549d0e3cd30e9ae6193764f137f9f1d8
BLAKE2b-256 0812d2caf5fa737f977f8ae7559356b7a74258c07a4c7420c803fbc8a1c0b600

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.7-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9e7b63fcde56ca39b4a42d7c899a4ec819b13509e3063aaec3e343a8a83678a4
MD5 c31152b58ba7b25e83c6adf094b04697
BLAKE2b-256 c5fa4ea6d7cf90f450ee7cb794973a72430c629b22eb2b5c482819fe05d2e4d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.7-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 fe28d4073658fe452989b52aca4b58d2d06741f525354a8f6c61068ca636a2f9
MD5 897e8afbe57a7ea975dfce7c3404ede7
BLAKE2b-256 565f39454cdfd485fff9ec9ae9f40faa72637fa6b33f0f2bbb4250fbe82beb77

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.7-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 9098aa7997ea1bbd81575b33de98bbbd8ac7116b07fcfb6df51c3472b6648a04
MD5 d88c05d8c856a5b908ee4bdf284aa4d5
BLAKE2b-256 44f08562b894097ffdf5bc3b649a45c608f53a0b00f31a61579fda0f410fcfef

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rpds_py-0.8.7-cp311-none-win32.whl
  • Upload date:
  • Size: 174.0 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.1.0

File hashes

Hashes for rpds_py-0.8.7-cp311-none-win32.whl
Algorithm Hash digest
SHA256 2573a4ffdc1c8af06dd2a95732506ab4b0be360903c16278ccaf3c2d6ca48c92
MD5 0b6e890f8e2223cbc4c00979558613fa
BLAKE2b-256 b32e6936d977c6b37a0276a68f6413f760f9a6af53b4927ad27c4032292bfac4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.7-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f55eae6824e8f063da6c0e6b9167257bf6d1e5ce1d89d91817e4cc2f9d096363
MD5 be253244d3d1d43a053276f282da5638
BLAKE2b-256 64de15fc08b1da87527d300b85167ef3b2c90a1a88c1607906a7a3362c62ae0b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.7-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a310b3c078a5a53a662b4acd2aa74042ba490b1a169d8a968bf73275139da521
MD5 187eb7b6e4fcd0f1e80be1ff5cc54dfa
BLAKE2b-256 7f33f17b08531a01ab7f2f0cc80326974b2fbf91a26d0573aceeca86d48d28b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.7-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0a3aaa3b3301d5ba7a11146dc9c80d45ee93a34960e50b52e567537c13415824
MD5 317841954ecb1cf1114ff369ac016892
BLAKE2b-256 36ddbc8affcd47a67117927e2df511e43656f2b6f11115674297994b532f916a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f846b0333b351b81b01228d318485709ab6d96d440a4573c344bde8992ff2121
MD5 4a1bdde249cb3a03d667a2ee0510a6cc
BLAKE2b-256 b5e1080adc3e50e02b54dd5643399dde9f73565c7187759e4a471b495800cd38

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.7-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 66878953d11ec048e8e400ee34f0f4c74181d6e35b171a4494df9e7ff5e0e95b
MD5 ecde54e714cfc2d0349410d002643425
BLAKE2b-256 afa2de14ceacb6ffb06884b61b92cb8d1592eb088042a22dfc150c0065333321

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.7-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 52368f8e61c42ea0a319a716393bbb79cb809bb26f7ae145da3bf26520ea4c9b
MD5 a8be5676bc607f0a043b83c312b60bb1
BLAKE2b-256 85626ff32d518a66afa4b55715e3ef160331bc97ad8941882791fb3cebc5f556

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.7-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ee5c9f513c49ff2540bb1763c98a0b32c5005f610646829451b1ad2baa4d68f9
MD5 0d2ab1fd4fa4c0e77987282323a7cc6b
BLAKE2b-256 2100e5f9d8df90b8996ac3d69cc2027df6187c58a492fdce85d180264793fd6a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 403486bb4c68de153d4cae3e88f22fd7e65c0eeee4a909d6410a5cb3fe92f0d8
MD5 c2047971e6a162c9ef943ca2fc07b4de
BLAKE2b-256 f92cce7ea7ebfa1d961a10ec4cf7902e95baea2a68b89e6d0c5e6e987098e367

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.7-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 6431840e4f01c803985b393f3cc1c2f563a8c2f35aa396377466ebbd0cabf259
MD5 890aafe5b06e18bfd45cdfaff55d4e8f
BLAKE2b-256 3f2fa03aa9bd63cbb041c72b623af00a6cc137073f8a95b9fa051ac70d3d3341

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.7-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e7291d3a2728447eb978004eca1a1903630069e717f05000ff3d95a8ed1c2724
MD5 034f3e668346b7d739902092a60cb12e
BLAKE2b-256 cc8bd67119c98d84102c0e2913f28aab3fdf697ba92af9aa3cddc469c913eaa1

See more details on using hashes here.

File details

Details for the file rpds_py-0.8.7-cp311-cp311-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-0.8.7-cp311-cp311-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 090a1c33e615e1ac83d9407689e6145ba84193d2bf8eb876fef10b559f1c69d2
MD5 2ee553fb4c77ab032e1599b3d6d0d094
BLAKE2b-256 be391446b11e28d8a89747b56e01a9233ab9c005da068b50235fe94dae7879c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.7-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 e29ad268168a3fe000ef97b98a05566bfc057677358b519fcff3bdedfb8d4fc5
MD5 76f959deb9877c1589f491cca3d701aa
BLAKE2b-256 414ab82549322bc8a0c171e4e16a32dfce7614e051b89c75bc409e67bb9c51b5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rpds_py-0.8.7-cp310-none-win32.whl
  • Upload date:
  • Size: 174.0 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.1.0

File hashes

Hashes for rpds_py-0.8.7-cp310-none-win32.whl
Algorithm Hash digest
SHA256 0238e4b33dacd178a9905d2bd151611562ac3926abfaa448275ea1236275f4aa
MD5 c1859b85d7d5e30293c99d1839b6bbd8
BLAKE2b-256 4ab4cea1deddd700ed8c1e94f7520dd8119f3a31ab48d654a54c011133624f60

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.7-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 db5116b7d69729cf386a160cd42d40b4d7ded30d9f67b6a32a97bbb0c43886aa
MD5 900f0a71f8be9396127c32c7560d7d8f
BLAKE2b-256 7526254e75805660af0bc462d0c361feab3ff3216eb6f4b5c7a8983edc4cd14a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.7-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b2f5ecfb6b4acb99400f45a7f700c143b25b1fb048265cc489e04d2fdbf6f51b
MD5 8aabe7dac5e9f0d4721bc45e2f4023ab
BLAKE2b-256 19c75f514040e89bff5009b14f4c2d2fa70385b561d859315ccbe937887ea9f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.7-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 065bdad634356a9370611e3ea492c17956c1d73999725e8dbc5516a7abf3135b
MD5 98f6e1aee679fc543db6b592876efcfe
BLAKE2b-256 690cf722308c4a4f0b649f5a4c1346b993782598469d3b795d8f4dcff434e28e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 306537d34f0c45b33bf8dc69a872e07a2324d33573df4ce6774afba2080be8f5
MD5 6ef6491a407cb5cdc8d8a0b778d9c3d5
BLAKE2b-256 95fbb3600aa4b7e46b70d2c8243751131a62c010b28990d277eeb9f83cfb645c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.7-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 11a27d87e35fb733cabd04ecc8d8b892c9df3feb78785c61f50d972099936a2c
MD5 a8b748701f9142b2c9c097343c3751a3
BLAKE2b-256 152c5419deeeebe3cc57206489f83532058295d4041c73586e437326037c8d34

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.7-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e0ddb773481d52d7bf071d90739c7a44018a99306a8503e5c76d1be2477d7ca4
MD5 45755ff3524b39d0564b1ca54c20dcc6
BLAKE2b-256 140884ae721907d56e660d77168ab917168a847a355e0868c2150ee1686746da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.7-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5664b98cc3a115b3918a36ace3b026d2c4d6df6f47607a90a8e5cbe55b32da43
MD5 0a8964636247504c525bdebbb93e7ab9
BLAKE2b-256 6c79eaafd126798ae741d43beead018692ec326518c6374bfa131e1800ec58e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 93dc9c2ffb098c144472e383a223cab6ea54714df6dab7dce427bde40d188e2c
MD5 f82fa1d73ae7bc6e667895e87821a61f
BLAKE2b-256 6875e4a93146fe78293b068e0e72bf81288d983d4f0f34001307d6adb5ebc2f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.7-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4675e732c0761872d9e6791ec4e22af0190a4d36c13868a2774b0930407e0fd5
MD5 e657083f4332087ed54b3d90f142acd3
BLAKE2b-256 81f103c4a2cecf37252756433497961cf5e1c4081e19349910ebfdbf59c25776

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.7-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 28424142349974fc06107bb265489985a5bc0fb961ff826636795cae47ea350f
MD5 e4aa4779f2a858e2c70c7cf0ac02916b
BLAKE2b-256 5000394e576f87f9d4dc957550913aee113b919fea010faec485df4c2af8d4e0

See more details on using hashes here.

File details

Details for the file rpds_py-0.8.7-cp310-cp310-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-0.8.7-cp310-cp310-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 796c88ed41e13a37eae7b6a7c0c03501d587a39fb2902e5bd29e09cc08469138
MD5 2fce6be07a1ccaf754a74dfae1d5f337
BLAKE2b-256 730f6e4abc5435c5982b06b165401c8f5f6eb5bbbc4b55e6a4b1ec96eb27a82c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.7-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 c485bd8af790b3115fc0bd219fb77ba5a103db7adc5143a85fb3344c32477e9d
MD5 c042d540fd0643142ea384b5dbd757fd
BLAKE2b-256 9c76654469a07e3f1ee5b0b60bb5277a5d70b759e1e6b583c2f5ec95987b5ad6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rpds_py-0.8.7-cp39-none-win32.whl
  • Upload date:
  • Size: 174.2 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.1.0

File hashes

Hashes for rpds_py-0.8.7-cp39-none-win32.whl
Algorithm Hash digest
SHA256 e3e59d853a824ae83587e13e3f1599550c891c6061ab4f5aaa524dd4a38b9e07
MD5 9bf07695b317273aeabb0d7809e7d82e
BLAKE2b-256 c198ba8347ffa7a9a0acd6349ef9f26997ddfe69133ac47162b64c7936efdb4b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.7-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3bb74ac87cc910898a326e3d24c48fb8c24c5cea51c829eb121bf6f9eabfd846
MD5 3ed49773b6fc71119853a7636a5c2ea0
BLAKE2b-256 d38fdeff00166e5c7471d22ec7ffd2944e8bec2587001e06e764687921618b07

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.7-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e637ba9b10e8f1aae0a4f2cac84529731571e640cffe9b26e67ca1c877963e27
MD5 260c0bcea2a521e49af3eac94d229240
BLAKE2b-256 0f1ef8af8686147b8f26af10368a81e1b7e749697204c6ef027dffb2279119ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.7-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 faa70390e259877f5dc6916144df46cdedcaed3f49fb9d66ab1e26811cd97cf3
MD5 21e3f9553985ba0ed4b7dc0aac58780f
BLAKE2b-256 a5529a5748c463fb730e10127d2bf4f46cbe4a0f3e63fdb9835a5cc36e243716

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b01f9f7335e634d1cddebc74d70d207273e16fb10f8357d635729d3d3cee93b0
MD5 2bfb1786cb4c1d59e747b3b27d7d6c3a
BLAKE2b-256 80621ed3cbc1383d5e9edf8dd1090bc02c12335b91a77486ad9609cb316532bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.7-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cde2ef9c7585b34238b65ec15b14f67e5d301ff4a51f8f94f3508f001ab2e859
MD5 97f5323f7085e5ffe074d97131514540
BLAKE2b-256 4571e1397693d99216ca56a5a9bd778169036c061c8c2a8e844587aac7483f46

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.7-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e14606153e3aae670acec12001a314412490d323c1771819c5acbb861f0be0c9
MD5 f42852e518ab22cebded256e689446a9
BLAKE2b-256 71208f3f31e7f97f74e62ca9dd69ac538db267a1fbb5f2dfee4d437eb47721a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.7-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 089551d389e9e3c610384dc60d637de676486256c1a090963ddfc27dc02dd1f3
MD5 771bb8d4f04d63f59ca236d13687cb34
BLAKE2b-256 acb212048c38fed76d41f1082bf6f94669fdee43c3a4ff7c110fbb3ae21e021e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2cecea776226382fe2081c4deb77473af64e90cd51f49adaa3ad044f58a394bb
MD5 1e8e39ffcb56868b1dd4256911fc6770
BLAKE2b-256 3ec99898737c10d3200c9bcc13984dbd69d3b3e20443e1e203419d5257383cda

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.7-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 04a38ad79744c5424f7cd0aa0693cc0801e792229b681694edda5143119bcfb2
MD5 f94f7a5bea8cbc04b4e5263ef437758c
BLAKE2b-256 7c3b91125af11fec44bb3f5a5a239aa618605aa919692669649b3c9ea0fde404

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.7-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 64aa0eb52ba1a7273013b94917f3562951943b3b60cec1d1bb5b8cb43a8989da
MD5 3f40dc4f1916172aebd4127744d40b75
BLAKE2b-256 94a28660b032d78cf9b1b6546f60a28007431f420f447bb11ee9a7eba8b0b39a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rpds_py-0.8.7-cp38-none-win32.whl
  • Upload date:
  • Size: 172.5 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.1.0

File hashes

Hashes for rpds_py-0.8.7-cp38-none-win32.whl
Algorithm Hash digest
SHA256 2854b3b84c9c37027f7e79d1bff702c42e267fa9406bf944661176d1ad765e5c
MD5 c281e78249e0a830a1c6e048aa7088a1
BLAKE2b-256 89c38d53a1cdfd04613cdf8a8e463634e1f3bf17e89519e227077608dae03d31

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.7-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0b6f9d67493a118e0ef3888ece6582926c179197b344b8c2fdfdc5d194f6f70f
MD5 e6365e0039ee8ed7cb4310d30d977d63
BLAKE2b-256 2b703a5c2e6021785255abc54c34368024568cacb435a872c865a62bb6318bf8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.7-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 57818c706fd7fd39abddaa47ff303044208558eef468d3713b20bae796c3dac1
MD5 3d89bdc3f87d33f240a9350ee12b2e7b
BLAKE2b-256 ddae90f6e9f0aed502670774c566e92cdc688e3865622ad1d03376b852bc999b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.7-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9cb9aad0ad235944c21891ed3f797239d779488fd5b435f5aa0ce922f10d8175
MD5 4ad0928a0e7947c91f52da8b1e585dbd
BLAKE2b-256 1fd2c317febd4468765362f321d22c765d37dc345310be15fbc03863296a1d5a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a3b7e23444597aa023839f6dd91a9b2ffb12a50132a55b6202c720156a949723
MD5 c3c0a1472e74f4414c99a638220f866f
BLAKE2b-256 bb2539af3559b1f2b0bc979534108f980d7f293ce810059072bf3f147e249b89

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.7-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bc1bfc3fb1e9ca85e352dc3cf3282e19d8270a305338da8bbfea6c459fd39437
MD5 6b56af04b4255f5ad1aec805bbb85eed
BLAKE2b-256 f5bbb3173c2e9db4d779d53e0210fe5425907ad6d592a8c71012459ba7271e88

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.7-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 156d69785bc63772c9eef84fe29792d8ef94a9eb1f82623eee2dfceba8c3a150
MD5 d2dd17d991ddbf58fc3418e3df5f9b25
BLAKE2b-256 4bf8ab9ff60f3642cc9f713fdf45d3e364fb50a3a7c133ec2fd5496d48978f3a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.7-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 69ecf7695ae5d37732b77f4a1fa1450b5c241ef9ef1fd985be85fc791c6be5ea
MD5 9104d895e90a368375dae46d9b229b32
BLAKE2b-256 3180e0ed8721e9fd09094d2370e1727c5253d5cc2e5e62de55729f20b821e568

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.7-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3687439da283b1b33e7abb82c87caf6e13180ecc60358150586fefd02d2be76d
MD5 1dc0c7adcdfe432697168a4db41aa85a
BLAKE2b-256 dc0d7be67f099dd3eafa1335062dffa125be03085c7234a6b5ceceadce39be8d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rpds_py-0.8.7-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0320c6d292f2e7d3b64d3c997970e1e3f0ef32501fd8dd1e151e66002b70d629
MD5 0eae648813cf7a0cc29d2b059ce4aed8
BLAKE2b-256 52a97c1cb9d32976ce69dcd51cb1715d60986986dd82780be9e9b94569e867e4

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