Name | rpds-py JSON |
Version |
0.27.1
JSON |
| download |
home_page | None |
Summary | Python bindings to Rust's persistent data structures (rpds) |
upload_time | 2025-08-27 12:16:36 |
maintainer | None |
docs_url | None |
author | None |
requires_python | >=3.9 |
license | None |
keywords |
data structures
rust
persistent
|
VCS |
 |
bugtrack_url |
|
requirements |
No requirements were recorded.
|
Travis-CI |
No Travis.
|
coveralls test coverage |
No coveralls.
|
===========
``rpds.py``
===========
|PyPI| |Pythons| |CI|
.. |PyPI| image:: https://img.shields.io/pypi/v/rpds-py.svg
:alt: PyPI version
:target: https://pypi.org/project/rpds-py/
.. |Pythons| image:: https://img.shields.io/pypi/pyversions/rpds-py.svg
:alt: Supported Python versions
:target: https://pypi.org/project/rpds-py/
.. |CI| image:: https://github.com/crate-py/rpds/workflows/CI/badge.svg
:alt: Build status
:target: https://github.com/crate-py/rpds/actions?query=workflow%3ACI
.. |ReadTheDocs| image:: https://readthedocs.org/projects/referencing/badge/?version=stable&style=flat
:alt: ReadTheDocs status
:target: https://referencing.readthedocs.io/en/stable/
Python bindings to the `Rust rpds crate <https://docs.rs/rpds/>`_ for persistent data structures.
What's here is quite minimal (in transparency, it was written initially to support replacing ``pyrsistent`` in the `referencing library <https://github.com/python-jsonschema/referencing>`_).
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.:
.. code:: sh
$ 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 <https://github.com/bowtie-json-schema/bowtie/blob/e77fd93598cb6e7dc1b8b1f53c00e5aa410c201a/implementations/python-jsonschema/Dockerfile#L1-L8>`_.
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).
.. code:: python
>>> 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
Raw data
{
"_id": null,
"home_page": null,
"name": "rpds-py",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.9",
"maintainer_email": null,
"keywords": "data structures, rust, persistent",
"author": null,
"author_email": "Julian Berman <Julian+rpds@GrayVines.com>",
"download_url": "https://files.pythonhosted.org/packages/e9/dd/2c0cbe774744272b0ae725f44032c77bdcab6e8bcf544bffa3b6e70c8dba/rpds_py-0.27.1.tar.gz",
"platform": null,
"description": "===========\n``rpds.py``\n===========\n\n|PyPI| |Pythons| |CI|\n\n.. |PyPI| image:: https://img.shields.io/pypi/v/rpds-py.svg\n :alt: PyPI version\n :target: https://pypi.org/project/rpds-py/\n\n.. |Pythons| image:: https://img.shields.io/pypi/pyversions/rpds-py.svg\n :alt: Supported Python versions\n :target: https://pypi.org/project/rpds-py/\n\n.. |CI| image:: https://github.com/crate-py/rpds/workflows/CI/badge.svg\n :alt: Build status\n :target: https://github.com/crate-py/rpds/actions?query=workflow%3ACI\n\n.. |ReadTheDocs| image:: https://readthedocs.org/projects/referencing/badge/?version=stable&style=flat\n :alt: ReadTheDocs status\n :target: https://referencing.readthedocs.io/en/stable/\n\n\nPython bindings to the `Rust rpds crate <https://docs.rs/rpds/>`_ for persistent data structures.\n\nWhat's here is quite minimal (in transparency, it was written initially to support replacing ``pyrsistent`` in the `referencing library <https://github.com/python-jsonschema/referencing>`_).\nIf you see something missing (which is very likely), a PR is definitely welcome to add it.\n\nInstallation\n------------\n\nThe distribution on PyPI is named ``rpds.py`` (equivalently ``rpds-py``), and thus can be installed via e.g.:\n\n.. code:: sh\n\n $ pip install rpds-py\n\nNote that if you install ``rpds-py`` from source, you will need a Rust toolchain installed, as it is a build-time dependency.\nAn example of how to do so in a ``Dockerfile`` can be found `here <https://github.com/bowtie-json-schema/bowtie/blob/e77fd93598cb6e7dc1b8b1f53c00e5aa410c201a/implementations/python-jsonschema/Dockerfile#L1-L8>`_.\n\nIf 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``.\n\nUsage\n-----\n\nMethods 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).\n\n.. code:: python\n\n >>> from rpds import HashTrieMap, HashTrieSet, List\n\n >>> m = HashTrieMap({\"foo\": \"bar\", \"baz\": \"quux\"})\n >>> m.insert(\"spam\", 37) == HashTrieMap({\"foo\": \"bar\", \"baz\": \"quux\", \"spam\": 37})\n True\n >>> m.remove(\"foo\") == HashTrieMap({\"baz\": \"quux\"})\n True\n\n >>> s = HashTrieSet({\"foo\", \"bar\", \"baz\", \"quux\"})\n >>> s.insert(\"spam\") == HashTrieSet({\"foo\", \"bar\", \"baz\", \"quux\", \"spam\"})\n True\n >>> s.remove(\"foo\") == HashTrieSet({\"bar\", \"baz\", \"quux\"})\n True\n\n >>> L = List([1, 3, 5])\n >>> L.push_front(-1) == List([-1, 1, 3, 5])\n True\n >>> L.rest == List([3, 5])\n True\n\n",
"bugtrack_url": null,
"license": null,
"summary": "Python bindings to Rust's persistent data structures (rpds)",
"version": "0.27.1",
"project_urls": {
"Documentation": "https://rpds.readthedocs.io/",
"Funding": "https://github.com/sponsors/Julian",
"Homepage": "https://github.com/crate-py/rpds",
"Issues": "https://github.com/crate-py/rpds/issues/",
"Source": "https://github.com/crate-py/rpds",
"Tidelift": "https://tidelift.com/subscription/pkg/pypi-rpds-py?utm_source=pypi-rpds-py&utm_medium=referral&utm_campaign=pypi-link",
"Upstream": "https://github.com/orium/rpds"
},
"split_keywords": [
"data structures",
" rust",
" persistent"
],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "a5ed3aef893e2dd30e77e35d20d4ddb45ca459db59cead748cad9796ad479411",
"md5": "b3e059f110d9aecf05685d6f2d619123",
"sha256": "68afeec26d42ab3b47e541b272166a0b4400313946871cba3ed3a4fc0cab1cef"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-cp310-cp310-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "b3e059f110d9aecf05685d6f2d619123",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 371606,
"upload_time": "2025-08-27T12:12:25",
"upload_time_iso_8601": "2025-08-27T12:12:25.189721Z",
"url": "https://files.pythonhosted.org/packages/a5/ed/3aef893e2dd30e77e35d20d4ddb45ca459db59cead748cad9796ad479411/rpds_py-0.27.1-cp310-cp310-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6d829818b443e5d3eb4c83c3994561387f116aae9833b35c484474769c4a8faf",
"md5": "242d6ffc1b17b9eb898649eb7aacabe7",
"sha256": "74e5b2f7bb6fa38b1b10546d27acbacf2a022a8b5543efb06cfebc72a59c85be"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "242d6ffc1b17b9eb898649eb7aacabe7",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 353452,
"upload_time": "2025-08-27T12:12:27",
"upload_time_iso_8601": "2025-08-27T12:12:27.433061Z",
"url": "https://files.pythonhosted.org/packages/6d/82/9818b443e5d3eb4c83c3994561387f116aae9833b35c484474769c4a8faf/rpds_py-0.27.1-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "99c7d2a110ffaaa397fc6793a83c7bd3545d9ab22658b7cdff05a24a4535cc45",
"md5": "d64d04bb9bfc0f2919b5d5a860ff70c5",
"sha256": "9024de74731df54546fab0bfbcdb49fae19159ecaecfc8f37c18d2c7e2c0bd61"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "d64d04bb9bfc0f2919b5d5a860ff70c5",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 381519,
"upload_time": "2025-08-27T12:12:28",
"upload_time_iso_8601": "2025-08-27T12:12:28.719526Z",
"url": "https://files.pythonhosted.org/packages/99/c7/d2a110ffaaa397fc6793a83c7bd3545d9ab22658b7cdff05a24a4535cc45/rpds_py-0.27.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5abce89581d1f9d1be7d0247eaef602566869fdc0d084008ba139e27e775366c",
"md5": "1c02fd9d9aa2fd0f969dbe1694f34253",
"sha256": "31d3ebadefcd73b73928ed0b2fd696f7fefda8629229f81929ac9c1854d0cffb"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "1c02fd9d9aa2fd0f969dbe1694f34253",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 394424,
"upload_time": "2025-08-27T12:12:30",
"upload_time_iso_8601": "2025-08-27T12:12:30.207556Z",
"url": "https://files.pythonhosted.org/packages/5a/bc/e89581d1f9d1be7d0247eaef602566869fdc0d084008ba139e27e775366c/rpds_py-0.27.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ac2e36a6861f797530e74bb6ed53495f8741f1ef95939eed01d761e73d559067",
"md5": "e4cbc1d1b6249c9d4d47a8a571e463a2",
"sha256": "b2e7f8f169d775dd9092a1743768d771f1d1300453ddfe6325ae3ab5332b4657"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "e4cbc1d1b6249c9d4d47a8a571e463a2",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 523467,
"upload_time": "2025-08-27T12:12:31",
"upload_time_iso_8601": "2025-08-27T12:12:31.808354Z",
"url": "https://files.pythonhosted.org/packages/ac/2e/36a6861f797530e74bb6ed53495f8741f1ef95939eed01d761e73d559067/rpds_py-0.27.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c459c1bc2be32564fa499f988f0a5c6505c2f4746ef96e58e4d7de5cf923d77e",
"md5": "c958fd523576fda6866298d819c3dc46",
"sha256": "3d905d16f77eb6ab2e324e09bfa277b4c8e5e6b8a78a3e7ff8f3cdf773b4c013"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "c958fd523576fda6866298d819c3dc46",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 402660,
"upload_time": "2025-08-27T12:12:33",
"upload_time_iso_8601": "2025-08-27T12:12:33.444033Z",
"url": "https://files.pythonhosted.org/packages/c4/59/c1bc2be32564fa499f988f0a5c6505c2f4746ef96e58e4d7de5cf923d77e/rpds_py-0.27.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0aecef8bf895f0628dd0a59e54d81caed6891663cb9c54a0f4bb7da918cb88cf",
"md5": "bff8c17f54538803a5f51c78be0794f4",
"sha256": "50c946f048209e6362e22576baea09193809f87687a95a8db24e5fbdb307b93a"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "bff8c17f54538803a5f51c78be0794f4",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 384062,
"upload_time": "2025-08-27T12:12:34",
"upload_time_iso_8601": "2025-08-27T12:12:34.857789Z",
"url": "https://files.pythonhosted.org/packages/0a/ec/ef8bf895f0628dd0a59e54d81caed6891663cb9c54a0f4bb7da918cb88cf/rpds_py-0.27.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "69f7f47ff154be8d9a5e691c083a920bba89cef88d5247c241c10b9898f595a1",
"md5": "b51ac0832d4e68b699960832c1572c37",
"sha256": "3deab27804d65cd8289eb814c2c0e807c4b9d9916c9225e363cb0cf875eb67c1"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-cp310-cp310-manylinux_2_31_riscv64.whl",
"has_sig": false,
"md5_digest": "b51ac0832d4e68b699960832c1572c37",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 401289,
"upload_time": "2025-08-27T12:12:36",
"upload_time_iso_8601": "2025-08-27T12:12:36.085326Z",
"url": "https://files.pythonhosted.org/packages/69/f7/f47ff154be8d9a5e691c083a920bba89cef88d5247c241c10b9898f595a1/rpds_py-0.27.1-cp310-cp310-manylinux_2_31_riscv64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3bd9ca410363efd0615814ae579f6829cafb39225cd63e5ea5ed1404cb345293",
"md5": "f2468da079c3c150fcc3d61cd1bcff5f",
"sha256": "8b61097f7488de4be8244c89915da8ed212832ccf1e7c7753a25a394bf9b1f10"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "f2468da079c3c150fcc3d61cd1bcff5f",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 417718,
"upload_time": "2025-08-27T12:12:37",
"upload_time_iso_8601": "2025-08-27T12:12:37.401957Z",
"url": "https://files.pythonhosted.org/packages/3b/d9/ca410363efd0615814ae579f6829cafb39225cd63e5ea5ed1404cb345293/rpds_py-0.27.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e3a08cb5c2ff38340f221cc067cc093d1270e10658ba4e8d263df923daa18e86",
"md5": "02c0d1aa5c68b20dbc102add6c6ac335",
"sha256": "8a3f29aba6e2d7d90528d3c792555a93497fe6538aa65eb675b44505be747808"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-cp310-cp310-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "02c0d1aa5c68b20dbc102add6c6ac335",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 558333,
"upload_time": "2025-08-27T12:12:38",
"upload_time_iso_8601": "2025-08-27T12:12:38.672933Z",
"url": "https://files.pythonhosted.org/packages/e3/a0/8cb5c2ff38340f221cc067cc093d1270e10658ba4e8d263df923daa18e86/rpds_py-0.27.1-cp310-cp310-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6f8c1b0de79177c5d5103843774ce12b84caa7164dfc6cd66378768d37db11bf",
"md5": "1d62fef41f64cf4dee556ed94ea0ace7",
"sha256": "dd6cd0485b7d347304067153a6dc1d73f7d4fd995a396ef32a24d24b8ac63ac8"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-cp310-cp310-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "1d62fef41f64cf4dee556ed94ea0ace7",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 589127,
"upload_time": "2025-08-27T12:12:41",
"upload_time_iso_8601": "2025-08-27T12:12:41.480774Z",
"url": "https://files.pythonhosted.org/packages/6f/8c/1b0de79177c5d5103843774ce12b84caa7164dfc6cd66378768d37db11bf/rpds_py-0.27.1-cp310-cp310-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c85e26abb098d5e01266b0f3a2488d299d19ccc26849735d9d2b95c39397e945",
"md5": "a040499af39e7ca2491b2dcfc13bd716",
"sha256": "6f4461bf931108c9fa226ffb0e257c1b18dc2d44cd72b125bec50ee0ab1248a9"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-cp310-cp310-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "a040499af39e7ca2491b2dcfc13bd716",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 554899,
"upload_time": "2025-08-27T12:12:42",
"upload_time_iso_8601": "2025-08-27T12:12:42.925893Z",
"url": "https://files.pythonhosted.org/packages/c8/5e/26abb098d5e01266b0f3a2488d299d19ccc26849735d9d2b95c39397e945/rpds_py-0.27.1-cp310-cp310-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "de41905cc90ced13550db017f8f20c6d8e8470066c5738ba480d7ba63e3d136b",
"md5": "0f8aa8c7b4bdeeff4ab821ff8d51d784",
"sha256": "ee5422d7fb21f6a00c1901bf6559c49fee13a5159d0288320737bbf6585bd3e4"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-cp310-cp310-win32.whl",
"has_sig": false,
"md5_digest": "0f8aa8c7b4bdeeff4ab821ff8d51d784",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 217450,
"upload_time": "2025-08-27T12:12:44",
"upload_time_iso_8601": "2025-08-27T12:12:44.813854Z",
"url": "https://files.pythonhosted.org/packages/de/41/905cc90ced13550db017f8f20c6d8e8470066c5738ba480d7ba63e3d136b/rpds_py-0.27.1-cp310-cp310-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "753d6bef47b0e253616ccdf67c283e25f2d16e18ccddd38f92af81d5a3420206",
"md5": "b41b032585e4676368d75bcff0e17fb2",
"sha256": "3e039aabf6d5f83c745d5f9a0a381d031e9ed871967c0a5c38d201aca41f3ba1"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "b41b032585e4676368d75bcff0e17fb2",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 228447,
"upload_time": "2025-08-27T12:12:46",
"upload_time_iso_8601": "2025-08-27T12:12:46.204460Z",
"url": "https://files.pythonhosted.org/packages/75/3d/6bef47b0e253616ccdf67c283e25f2d16e18ccddd38f92af81d5a3420206/rpds_py-0.27.1-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b5c17907329fbef97cbd49db6f7303893bd1dd5a4a3eae415839ffdfb0762cae",
"md5": "1265bb00b3ffe544744ed7b117a0f90b",
"sha256": "be898f271f851f68b318872ce6ebebbc62f303b654e43bf72683dbdc25b7c881"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-cp311-cp311-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "1265bb00b3ffe544744ed7b117a0f90b",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 371063,
"upload_time": "2025-08-27T12:12:47",
"upload_time_iso_8601": "2025-08-27T12:12:47.856053Z",
"url": "https://files.pythonhosted.org/packages/b5/c1/7907329fbef97cbd49db6f7303893bd1dd5a4a3eae415839ffdfb0762cae/rpds_py-0.27.1-cp311-cp311-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "11942aab4bc86228bcf7c48760990273653a4900de89c7537ffe1b0d6097ed39",
"md5": "91449caa872b0a310ef537fc18f946c4",
"sha256": "62ac3d4e3e07b58ee0ddecd71d6ce3b1637de2d373501412df395a0ec5f9beb5"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "91449caa872b0a310ef537fc18f946c4",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 353210,
"upload_time": "2025-08-27T12:12:49",
"upload_time_iso_8601": "2025-08-27T12:12:49.187596Z",
"url": "https://files.pythonhosted.org/packages/11/94/2aab4bc86228bcf7c48760990273653a4900de89c7537ffe1b0d6097ed39/rpds_py-0.27.1-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3a57f5eb3ecf434342f4f1a46009530e93fd201a0b5b83379034ebdb1d7c1a58",
"md5": "947c6fc20879599a1ca47c75c28c6c03",
"sha256": "4708c5c0ceb2d034f9991623631d3d23cb16e65c83736ea020cdbe28d57c0a0e"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "947c6fc20879599a1ca47c75c28c6c03",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 381636,
"upload_time": "2025-08-27T12:12:50",
"upload_time_iso_8601": "2025-08-27T12:12:50.492486Z",
"url": "https://files.pythonhosted.org/packages/3a/57/f5eb3ecf434342f4f1a46009530e93fd201a0b5b83379034ebdb1d7c1a58/rpds_py-0.27.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "aef4ef95c5945e2ceb5119571b184dd5a1cc4b8541bbdf67461998cfeac9cb1e",
"md5": "f3a1b5d11940c5de5e7dc7f54e6196d0",
"sha256": "abfa1171a9952d2e0002aba2ad3780820b00cc3d9c98c6630f2e93271501f66c"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "f3a1b5d11940c5de5e7dc7f54e6196d0",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 394341,
"upload_time": "2025-08-27T12:12:52",
"upload_time_iso_8601": "2025-08-27T12:12:52.024451Z",
"url": "https://files.pythonhosted.org/packages/ae/f4/ef95c5945e2ceb5119571b184dd5a1cc4b8541bbdf67461998cfeac9cb1e/rpds_py-0.27.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5a7e4bd610754bf492d398b61725eb9598ddd5eb86b07d7d9483dbcd810e20bc",
"md5": "4a1b4b194c6ebc32c267f9226e83b197",
"sha256": "4b507d19f817ebaca79574b16eb2ae412e5c0835542c93fe9983f1e432aca195"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "4a1b4b194c6ebc32c267f9226e83b197",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 523428,
"upload_time": "2025-08-27T12:12:53",
"upload_time_iso_8601": "2025-08-27T12:12:53.779302Z",
"url": "https://files.pythonhosted.org/packages/5a/7e/4bd610754bf492d398b61725eb9598ddd5eb86b07d7d9483dbcd810e20bc/rpds_py-0.27.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9fe5059b9f65a8c9149361a8b75094864ab83b94718344db511fd6117936ed2a",
"md5": "8fd1d581a0412e6b233aec47656ae8cc",
"sha256": "168b025f8fd8d8d10957405f3fdcef3dc20f5982d398f90851f4abc58c566c52"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "8fd1d581a0412e6b233aec47656ae8cc",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 402923,
"upload_time": "2025-08-27T12:12:55",
"upload_time_iso_8601": "2025-08-27T12:12:55.150536Z",
"url": "https://files.pythonhosted.org/packages/9f/e5/059b9f65a8c9149361a8b75094864ab83b94718344db511fd6117936ed2a/rpds_py-0.27.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f54864cabb7daced2968dd08e8a1b7988bf358d7bd5bcd5dc89a652f4668543c",
"md5": "c19c75bd5b5e0284211c1a3046e05e49",
"sha256": "cb56c6210ef77caa58e16e8c17d35c63fe3f5b60fd9ba9d424470c3400bcf9ed"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "c19c75bd5b5e0284211c1a3046e05e49",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 384094,
"upload_time": "2025-08-27T12:12:57",
"upload_time_iso_8601": "2025-08-27T12:12:57.194497Z",
"url": "https://files.pythonhosted.org/packages/f5/48/64cabb7daced2968dd08e8a1b7988bf358d7bd5bcd5dc89a652f4668543c/rpds_py-0.27.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "aee1dc9094d6ff566bff87add8a510c89b9e158ad2ecd97ee26e677da29a9e1b",
"md5": "3cb42bf0f31724e6eeb22cffe18bee91",
"sha256": "d252f2d8ca0195faa707f8eb9368955760880b2b42a8ee16d382bf5dd807f89a"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-cp311-cp311-manylinux_2_31_riscv64.whl",
"has_sig": false,
"md5_digest": "3cb42bf0f31724e6eeb22cffe18bee91",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 401093,
"upload_time": "2025-08-27T12:12:58",
"upload_time_iso_8601": "2025-08-27T12:12:58.985399Z",
"url": "https://files.pythonhosted.org/packages/ae/e1/dc9094d6ff566bff87add8a510c89b9e158ad2ecd97ee26e677da29a9e1b/rpds_py-0.27.1-cp311-cp311-manylinux_2_31_riscv64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "378eac8577e3ecdd5593e283d46907d7011618994e1d7ab992711ae0f78b9937",
"md5": "7aafab3b34144fb39b761a7ce23233b5",
"sha256": "6e5e54da1e74b91dbc7996b56640f79b195d5925c2b78efaa8c5d53e1d88edde"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "7aafab3b34144fb39b761a7ce23233b5",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 417969,
"upload_time": "2025-08-27T12:13:00",
"upload_time_iso_8601": "2025-08-27T12:13:00.367339Z",
"url": "https://files.pythonhosted.org/packages/37/8e/ac8577e3ecdd5593e283d46907d7011618994e1d7ab992711ae0f78b9937/rpds_py-0.27.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "666d87507430a8f74a93556fe55c6485ba9c259949a853ce407b1e23fea5ba31",
"md5": "359d2c6f3a28e19dd0582e3b2beb71de",
"sha256": "ffce0481cc6e95e5b3f0a47ee17ffbd234399e6d532f394c8dce320c3b089c21"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-cp311-cp311-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "359d2c6f3a28e19dd0582e3b2beb71de",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 558302,
"upload_time": "2025-08-27T12:13:01",
"upload_time_iso_8601": "2025-08-27T12:13:01.737222Z",
"url": "https://files.pythonhosted.org/packages/66/6d/87507430a8f74a93556fe55c6485ba9c259949a853ce407b1e23fea5ba31/rpds_py-0.27.1-cp311-cp311-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3abb1db4781ce1dda3eecc735e3152659a27b90a02ca62bfeea17aee45cc0fbc",
"md5": "f974fbff8449feed8cdbf39767874c58",
"sha256": "a205fdfe55c90c2cd8e540ca9ceba65cbe6629b443bc05db1f590a3db8189ff9"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-cp311-cp311-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "f974fbff8449feed8cdbf39767874c58",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 589259,
"upload_time": "2025-08-27T12:13:03",
"upload_time_iso_8601": "2025-08-27T12:13:03.127592Z",
"url": "https://files.pythonhosted.org/packages/3a/bb/1db4781ce1dda3eecc735e3152659a27b90a02ca62bfeea17aee45cc0fbc/rpds_py-0.27.1-cp311-cp311-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7b0eae1c8943d11a814d01b482e1f8da903f88047a962dff9bbdadf3bd6e6fd1",
"md5": "659d961a030f98664c7fc7879c8d6560",
"sha256": "689fb5200a749db0415b092972e8eba85847c23885c8543a8b0f5c009b1a5948"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-cp311-cp311-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "659d961a030f98664c7fc7879c8d6560",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 554983,
"upload_time": "2025-08-27T12:13:04",
"upload_time_iso_8601": "2025-08-27T12:13:04.516227Z",
"url": "https://files.pythonhosted.org/packages/7b/0e/ae1c8943d11a814d01b482e1f8da903f88047a962dff9bbdadf3bd6e6fd1/rpds_py-0.27.1-cp311-cp311-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b2d50b2a55415931db4f112bdab072443ff76131b5ac4f4dc98d10d2d357eb03",
"md5": "710afb794b6674e712efc0ab878b3a32",
"sha256": "3182af66048c00a075010bc7f4860f33913528a4b6fc09094a6e7598e462fe39"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-cp311-cp311-win32.whl",
"has_sig": false,
"md5_digest": "710afb794b6674e712efc0ab878b3a32",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 217154,
"upload_time": "2025-08-27T12:13:06",
"upload_time_iso_8601": "2025-08-27T12:13:06.278561Z",
"url": "https://files.pythonhosted.org/packages/b2/d5/0b2a55415931db4f112bdab072443ff76131b5ac4f4dc98d10d2d357eb03/rpds_py-0.27.1-cp311-cp311-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "24753b7ffe0d50dc86a6a964af0d1cc3a4a2cdf437cb7b099a4747bbb96d1819",
"md5": "ba3def0e7d57a0f1a00188ec21b19abe",
"sha256": "b4938466c6b257b2f5c4ff98acd8128ec36b5059e5c8f8372d79316b1c36bb15"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "ba3def0e7d57a0f1a00188ec21b19abe",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 228627,
"upload_time": "2025-08-27T12:13:07",
"upload_time_iso_8601": "2025-08-27T12:13:07.625826Z",
"url": "https://files.pythonhosted.org/packages/24/75/3b7ffe0d50dc86a6a964af0d1cc3a4a2cdf437cb7b099a4747bbb96d1819/rpds_py-0.27.1-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8d3f4fd04c32abc02c710f09a72a30c9a55ea3cc154ef8099078fd50a0596f8e",
"md5": "83f627f4dd09bd5cb371bde9fdea7c60",
"sha256": "2f57af9b4d0793e53266ee4325535a31ba48e2f875da81a9177c9926dfa60746"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-cp311-cp311-win_arm64.whl",
"has_sig": false,
"md5_digest": "83f627f4dd09bd5cb371bde9fdea7c60",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 220998,
"upload_time": "2025-08-27T12:13:08",
"upload_time_iso_8601": "2025-08-27T12:13:08.972239Z",
"url": "https://files.pythonhosted.org/packages/8d/3f/4fd04c32abc02c710f09a72a30c9a55ea3cc154ef8099078fd50a0596f8e/rpds_py-0.27.1-cp311-cp311-win_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "bdfe38de28dee5df58b8198c743fe2bea0c785c6d40941b9950bac4cdb71a014",
"md5": "e62e4163ef87a808a6965d22a3bc5bd0",
"sha256": "ae2775c1973e3c30316892737b91f9283f9908e3cc7625b9331271eaaed7dc90"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-cp312-cp312-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "e62e4163ef87a808a6965d22a3bc5bd0",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 361887,
"upload_time": "2025-08-27T12:13:10",
"upload_time_iso_8601": "2025-08-27T12:13:10.233576Z",
"url": "https://files.pythonhosted.org/packages/bd/fe/38de28dee5df58b8198c743fe2bea0c785c6d40941b9950bac4cdb71a014/rpds_py-0.27.1-cp312-cp312-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7c9a4b6c7eedc7dd90986bf0fab6ea2a091ec11c01b15f8ba0a14d3f80450468",
"md5": "130aad9cbf5a62899dad39552b659c78",
"sha256": "2643400120f55c8a96f7c9d858f7be0c88d383cd4653ae2cf0d0c88f668073e5"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "130aad9cbf5a62899dad39552b659c78",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 345795,
"upload_time": "2025-08-27T12:13:11",
"upload_time_iso_8601": "2025-08-27T12:13:11.650078Z",
"url": "https://files.pythonhosted.org/packages/7c/9a/4b6c7eedc7dd90986bf0fab6ea2a091ec11c01b15f8ba0a14d3f80450468/rpds_py-0.27.1-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6f0ee650e1b81922847a09cca820237b0edee69416a01268b7754d506ade11ad",
"md5": "2e5fb6e1b81cb3fed4f4366bfd20255d",
"sha256": "16323f674c089b0360674a4abd28d5042947d54ba620f72514d69be4ff64845e"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "2e5fb6e1b81cb3fed4f4366bfd20255d",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 385121,
"upload_time": "2025-08-27T12:13:13",
"upload_time_iso_8601": "2025-08-27T12:13:13.008343Z",
"url": "https://files.pythonhosted.org/packages/6f/0e/e650e1b81922847a09cca820237b0edee69416a01268b7754d506ade11ad/rpds_py-0.27.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1beab306067a712988e2bff00dcc7c8f31d26c29b6d5931b461aa4b60a013e33",
"md5": "7f80b35d40a6c1591d9ab5a788938e5a",
"sha256": "9a1f4814b65eacac94a00fc9a526e3fdafd78e439469644032032d0d63de4881"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "7f80b35d40a6c1591d9ab5a788938e5a",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 398976,
"upload_time": "2025-08-27T12:13:14",
"upload_time_iso_8601": "2025-08-27T12:13:14.368163Z",
"url": "https://files.pythonhosted.org/packages/1b/ea/b306067a712988e2bff00dcc7c8f31d26c29b6d5931b461aa4b60a013e33/rpds_py-0.27.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2c0a26dc43c8840cb8fe239fe12dbc8d8de40f2365e838f3d395835dde72f0e5",
"md5": "b08c67e9e7161f416c4a73d30d7cb7eb",
"sha256": "7ba32c16b064267b22f1850a34051121d423b6f7338a12b9459550eb2096e7ec"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "b08c67e9e7161f416c4a73d30d7cb7eb",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 525953,
"upload_time": "2025-08-27T12:13:15",
"upload_time_iso_8601": "2025-08-27T12:13:15.774331Z",
"url": "https://files.pythonhosted.org/packages/2c/0a/26dc43c8840cb8fe239fe12dbc8d8de40f2365e838f3d395835dde72f0e5/rpds_py-0.27.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2214c85e8127b573aaf3a0cbd7fbb8c9c99e735a4a02180c84da2a463b766e9e",
"md5": "ff880a3869331f4ae7183704f9e4fbd1",
"sha256": "e5c20f33fd10485b80f65e800bbe5f6785af510b9f4056c5a3c612ebc83ba6cb"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "ff880a3869331f4ae7183704f9e4fbd1",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 407915,
"upload_time": "2025-08-27T12:13:17",
"upload_time_iso_8601": "2025-08-27T12:13:17.379777Z",
"url": "https://files.pythonhosted.org/packages/22/14/c85e8127b573aaf3a0cbd7fbb8c9c99e735a4a02180c84da2a463b766e9e/rpds_py-0.27.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ed7b8f4fee9ba1fb5ec856eb22d725a4efa3deb47f769597c809e03578b0f9d9",
"md5": "ea9084c98c21588497c476abc5354e5d",
"sha256": "466bfe65bd932da36ff279ddd92de56b042f2266d752719beb97b08526268ec5"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "ea9084c98c21588497c476abc5354e5d",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 386883,
"upload_time": "2025-08-27T12:13:18",
"upload_time_iso_8601": "2025-08-27T12:13:18.704334Z",
"url": "https://files.pythonhosted.org/packages/ed/7b/8f4fee9ba1fb5ec856eb22d725a4efa3deb47f769597c809e03578b0f9d9/rpds_py-0.27.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "864728fa6d60f8b74fcdceba81b272f8d9836ac0340570f68f5df6b41838547b",
"md5": "0301d008fa7a7ee9d43491756a848a58",
"sha256": "41e532bbdcb57c92ba3be62c42e9f096431b4cf478da9bc3bc6ce5c38ab7ba7a"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-cp312-cp312-manylinux_2_31_riscv64.whl",
"has_sig": false,
"md5_digest": "0301d008fa7a7ee9d43491756a848a58",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 405699,
"upload_time": "2025-08-27T12:13:20",
"upload_time_iso_8601": "2025-08-27T12:13:20.089071Z",
"url": "https://files.pythonhosted.org/packages/86/47/28fa6d60f8b74fcdceba81b272f8d9836ac0340570f68f5df6b41838547b/rpds_py-0.27.1-cp312-cp312-manylinux_2_31_riscv64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d0fdc5987b5e054548df56953a21fe2ebed51fc1ec7c8f24fd41c067b68c4a0a",
"md5": "7e33f9c15cb3994acdd08b90ac7b96be",
"sha256": "f149826d742b406579466283769a8ea448eed82a789af0ed17b0cd5770433444"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "7e33f9c15cb3994acdd08b90ac7b96be",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 423713,
"upload_time": "2025-08-27T12:13:21",
"upload_time_iso_8601": "2025-08-27T12:13:21.436590Z",
"url": "https://files.pythonhosted.org/packages/d0/fd/c5987b5e054548df56953a21fe2ebed51fc1ec7c8f24fd41c067b68c4a0a/rpds_py-0.27.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "acba3c4978b54a73ed19a7d74531be37a8bcc542d917c770e14d372b8daea186",
"md5": "771aba2d252e60d5c0421a32c2f3b08e",
"sha256": "80c60cfb5310677bd67cb1e85a1e8eb52e12529545441b43e6f14d90b878775a"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-cp312-cp312-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "771aba2d252e60d5c0421a32c2f3b08e",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 562324,
"upload_time": "2025-08-27T12:13:22",
"upload_time_iso_8601": "2025-08-27T12:13:22.789463Z",
"url": "https://files.pythonhosted.org/packages/ac/ba/3c4978b54a73ed19a7d74531be37a8bcc542d917c770e14d372b8daea186/rpds_py-0.27.1-cp312-cp312-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b56c6943a91768fec16db09a42b08644b960cff540c66aab89b74be6d4a144ba",
"md5": "b1daa96ef1e96356a6a0883513180d22",
"sha256": "7ee6521b9baf06085f62ba9c7a3e5becffbc32480d2f1b351559c001c38ce4c1"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-cp312-cp312-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "b1daa96ef1e96356a6a0883513180d22",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 593646,
"upload_time": "2025-08-27T12:13:24",
"upload_time_iso_8601": "2025-08-27T12:13:24.122060Z",
"url": "https://files.pythonhosted.org/packages/b5/6c/6943a91768fec16db09a42b08644b960cff540c66aab89b74be6d4a144ba/rpds_py-0.27.1-cp312-cp312-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "11739d7a8f4be5f4396f011a6bb7a19fe26303a0dac9064462f5651ced2f572f",
"md5": "3e298e501f2f4bdc15fc4e5ed0ee5483",
"sha256": "a512c8263249a9d68cac08b05dd59d2b3f2061d99b322813cbcc14c3c7421998"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-cp312-cp312-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "3e298e501f2f4bdc15fc4e5ed0ee5483",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 558137,
"upload_time": "2025-08-27T12:13:25",
"upload_time_iso_8601": "2025-08-27T12:13:25.557465Z",
"url": "https://files.pythonhosted.org/packages/11/73/9d7a8f4be5f4396f011a6bb7a19fe26303a0dac9064462f5651ced2f572f/rpds_py-0.27.1-cp312-cp312-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6e966772cbfa0e2485bcceef8071de7821f81aeac8bb45fbfd5542a3e8108165",
"md5": "ddacec67d29a5cb12f4c2daa421b6df7",
"sha256": "819064fa048ba01b6dadc5116f3ac48610435ac9a0058bbde98e569f9e785c39"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-cp312-cp312-win32.whl",
"has_sig": false,
"md5_digest": "ddacec67d29a5cb12f4c2daa421b6df7",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 221343,
"upload_time": "2025-08-27T12:13:26",
"upload_time_iso_8601": "2025-08-27T12:13:26.967593Z",
"url": "https://files.pythonhosted.org/packages/6e/96/6772cbfa0e2485bcceef8071de7821f81aeac8bb45fbfd5542a3e8108165/rpds_py-0.27.1-cp312-cp312-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "67b6c82f0faa9af1c6a64669f73a17ee0eeef25aff30bb9a1c318509efe45d84",
"md5": "fef3c60f2f18447163c0c9eb70eb2176",
"sha256": "d9199717881f13c32c4046a15f024971a3b78ad4ea029e8da6b86e5aa9cf4594"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "fef3c60f2f18447163c0c9eb70eb2176",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 232497,
"upload_time": "2025-08-27T12:13:28",
"upload_time_iso_8601": "2025-08-27T12:13:28.326782Z",
"url": "https://files.pythonhosted.org/packages/67/b6/c82f0faa9af1c6a64669f73a17ee0eeef25aff30bb9a1c318509efe45d84/rpds_py-0.27.1-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e1962817b44bd2ed11aebacc9251da03689d56109b9aba5e311297b6902136e2",
"md5": "4a4c3373527c9f714e02c30920c6bffb",
"sha256": "33aa65b97826a0e885ef6e278fbd934e98cdcfed80b63946025f01e2f5b29502"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-cp312-cp312-win_arm64.whl",
"has_sig": false,
"md5_digest": "4a4c3373527c9f714e02c30920c6bffb",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 222790,
"upload_time": "2025-08-27T12:13:29",
"upload_time_iso_8601": "2025-08-27T12:13:29.710790Z",
"url": "https://files.pythonhosted.org/packages/e1/96/2817b44bd2ed11aebacc9251da03689d56109b9aba5e311297b6902136e2/rpds_py-0.27.1-cp312-cp312-win_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "cc77610aeee8d41e39080c7e14afa5387138e3c9fa9756ab893d09d99e7d8e98",
"md5": "421816e2134a68bca94c934687bbd58c",
"sha256": "e4b9fcfbc021633863a37e92571d6f91851fa656f0180246e84cbd8b3f6b329b"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-cp313-cp313-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "421816e2134a68bca94c934687bbd58c",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 361741,
"upload_time": "2025-08-27T12:13:31",
"upload_time_iso_8601": "2025-08-27T12:13:31.039206Z",
"url": "https://files.pythonhosted.org/packages/cc/77/610aeee8d41e39080c7e14afa5387138e3c9fa9756ab893d09d99e7d8e98/rpds_py-0.27.1-cp313-cp313-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3afcc43765f201c6a1c60be2043cbdb664013def52460a4c7adace89d6682bf4",
"md5": "d4b5336f2e431dc306de064aca174ff8",
"sha256": "1441811a96eadca93c517d08df75de45e5ffe68aa3089924f963c782c4b898cf"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-cp313-cp313-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "d4b5336f2e431dc306de064aca174ff8",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 345574,
"upload_time": "2025-08-27T12:13:32",
"upload_time_iso_8601": "2025-08-27T12:13:32.902627Z",
"url": "https://files.pythonhosted.org/packages/3a/fc/c43765f201c6a1c60be2043cbdb664013def52460a4c7adace89d6682bf4/rpds_py-0.27.1-cp313-cp313-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2042ee2b2ca114294cd9847d0ef9c26d2b0851b2e7e00bf14cc4c0b581df0fc3",
"md5": "17a621291089150b7f91286b98b48793",
"sha256": "55266dafa22e672f5a4f65019015f90336ed31c6383bd53f5e7826d21a0e0b83"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "17a621291089150b7f91286b98b48793",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 385051,
"upload_time": "2025-08-27T12:13:34",
"upload_time_iso_8601": "2025-08-27T12:13:34.228852Z",
"url": "https://files.pythonhosted.org/packages/20/42/ee2b2ca114294cd9847d0ef9c26d2b0851b2e7e00bf14cc4c0b581df0fc3/rpds_py-0.27.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "fde81e430fe311e4799e02e2d1af7c765f024e95e17d651612425b226705f910",
"md5": "b461ccf19f9b01e2594da03411b3a821",
"sha256": "d78827d7ac08627ea2c8e02c9e5b41180ea5ea1f747e9db0915e3adf36b62dcf"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "b461ccf19f9b01e2594da03411b3a821",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 398395,
"upload_time": "2025-08-27T12:13:36",
"upload_time_iso_8601": "2025-08-27T12:13:36.132574Z",
"url": "https://files.pythonhosted.org/packages/fd/e8/1e430fe311e4799e02e2d1af7c765f024e95e17d651612425b226705f910/rpds_py-0.27.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "82959dc227d441ff2670651c27a739acb2535ccaf8b351a88d78c088965e5996",
"md5": "eb3e7485d8d6b741c2546072f743ddf5",
"sha256": "ae92443798a40a92dc5f0b01d8a7c93adde0c4dc965310a29ae7c64d72b9fad2"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "eb3e7485d8d6b741c2546072f743ddf5",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 524334,
"upload_time": "2025-08-27T12:13:37",
"upload_time_iso_8601": "2025-08-27T12:13:37.562428Z",
"url": "https://files.pythonhosted.org/packages/82/95/9dc227d441ff2670651c27a739acb2535ccaf8b351a88d78c088965e5996/rpds_py-0.27.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8701a670c232f401d9ad461d9a332aa4080cd3cb1d1df18213dbd0d2a6a7ab51",
"md5": "bfec58f50fa1276ee197dff64566d728",
"sha256": "c46c9dd2403b66a2a3b9720ec4b74d4ab49d4fabf9f03dfdce2d42af913fe8d0"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "bfec58f50fa1276ee197dff64566d728",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 407691,
"upload_time": "2025-08-27T12:13:38",
"upload_time_iso_8601": "2025-08-27T12:13:38.940827Z",
"url": "https://files.pythonhosted.org/packages/87/01/a670c232f401d9ad461d9a332aa4080cd3cb1d1df18213dbd0d2a6a7ab51/rpds_py-0.27.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "03360a14aebbaa26fe7fab4780c76f2239e76cc95a0090bdb25e31d95c492fcd",
"md5": "ec3d8155b69a99c2f432b56e11b56d5f",
"sha256": "2efe4eb1d01b7f5f1939f4ef30ecea6c6b3521eec451fb93191bf84b2a522418"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "ec3d8155b69a99c2f432b56e11b56d5f",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 386868,
"upload_time": "2025-08-27T12:13:40",
"upload_time_iso_8601": "2025-08-27T12:13:40.192605Z",
"url": "https://files.pythonhosted.org/packages/03/36/0a14aebbaa26fe7fab4780c76f2239e76cc95a0090bdb25e31d95c492fcd/rpds_py-0.27.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3b038c897fb8b5347ff6c1cc31239b9611c5bf79d78c984430887a353e1409a1",
"md5": "f46c630165b4cdafcc9d460ccb74855a",
"sha256": "15d3b4d83582d10c601f481eca29c3f138d44c92187d197aff663a269197c02d"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-cp313-cp313-manylinux_2_31_riscv64.whl",
"has_sig": false,
"md5_digest": "f46c630165b4cdafcc9d460ccb74855a",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 405469,
"upload_time": "2025-08-27T12:13:41",
"upload_time_iso_8601": "2025-08-27T12:13:41.496313Z",
"url": "https://files.pythonhosted.org/packages/3b/03/8c897fb8b5347ff6c1cc31239b9611c5bf79d78c984430887a353e1409a1/rpds_py-0.27.1-cp313-cp313-manylinux_2_31_riscv64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "da0788c60edc2df74850d496d78a1fdcdc7b54360a7f610a4d50008309d41b94",
"md5": "1e9ecf9476b4ec353087f0de36c4e8bd",
"sha256": "4ed2e16abbc982a169d30d1a420274a709949e2cbdef119fe2ec9d870b42f274"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "1e9ecf9476b4ec353087f0de36c4e8bd",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 422125,
"upload_time": "2025-08-27T12:13:42",
"upload_time_iso_8601": "2025-08-27T12:13:42.802330Z",
"url": "https://files.pythonhosted.org/packages/da/07/88c60edc2df74850d496d78a1fdcdc7b54360a7f610a4d50008309d41b94/rpds_py-0.27.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6b865f4c707603e41b05f191a749984f390dabcbc467cf833769b47bf14ba04f",
"md5": "2f385a923a9bbbb4aac27bfaff22da78",
"sha256": "a75f305c9b013289121ec0f1181931975df78738cdf650093e6b86d74aa7d8dd"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-cp313-cp313-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "2f385a923a9bbbb4aac27bfaff22da78",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 562341,
"upload_time": "2025-08-27T12:13:44",
"upload_time_iso_8601": "2025-08-27T12:13:44.472744Z",
"url": "https://files.pythonhosted.org/packages/6b/86/5f4c707603e41b05f191a749984f390dabcbc467cf833769b47bf14ba04f/rpds_py-0.27.1-cp313-cp313-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b2923c0cb2492094e3cd9baf9e49bbb7befeceb584ea0c1a8b5939dca4da12e5",
"md5": "44caa14468530f67d522bd3c7d7b7462",
"sha256": "67ce7620704745881a3d4b0ada80ab4d99df390838839921f99e63c474f82cf2"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-cp313-cp313-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "44caa14468530f67d522bd3c7d7b7462",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 592511,
"upload_time": "2025-08-27T12:13:45",
"upload_time_iso_8601": "2025-08-27T12:13:45.898598Z",
"url": "https://files.pythonhosted.org/packages/b2/92/3c0cb2492094e3cd9baf9e49bbb7befeceb584ea0c1a8b5939dca4da12e5/rpds_py-0.27.1-cp313-cp313-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "10bb82e64fbb0047c46a168faa28d0d45a7851cd0582f850b966811d30f67ad8",
"md5": "cd9ed9b9ffbf0235dd28a2f1c273d1c8",
"sha256": "9d992ac10eb86d9b6f369647b6a3f412fc0075cfd5d799530e84d335e440a002"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-cp313-cp313-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "cd9ed9b9ffbf0235dd28a2f1c273d1c8",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 557736,
"upload_time": "2025-08-27T12:13:47",
"upload_time_iso_8601": "2025-08-27T12:13:47.408394Z",
"url": "https://files.pythonhosted.org/packages/10/bb/82e64fbb0047c46a168faa28d0d45a7851cd0582f850b966811d30f67ad8/rpds_py-0.27.1-cp313-cp313-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "01761cdf1f91aed5c3a7bf2eba1f1c4e4d6f57832d73003919a20118870ea659",
"md5": "dd2f9f9f2fb5fa5ee6d77007f118a42c",
"sha256": "92022bbbad0d4426e616815b16bc4127f83c9a74940e1ccf3cfe0b387aba0228"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-cp313-cp313t-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "dd2f9f9f2fb5fa5ee6d77007f118a42c",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 358355,
"upload_time": "2025-08-27T12:13:54",
"upload_time_iso_8601": "2025-08-27T12:13:54.012550Z",
"url": "https://files.pythonhosted.org/packages/01/76/1cdf1f91aed5c3a7bf2eba1f1c4e4d6f57832d73003919a20118870ea659/rpds_py-0.27.1-cp313-cp313t-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c36fbf142541229374287604caf3bb2a4ae17f0a580798fd72d3b009b532db4e",
"md5": "14089b6b2f1df5916db712ded72c2142",
"sha256": "47162fdab9407ec3f160805ac3e154df042e577dd53341745fc7fb3f625e6d92"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-cp313-cp313t-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "14089b6b2f1df5916db712ded72c2142",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 342138,
"upload_time": "2025-08-27T12:13:55",
"upload_time_iso_8601": "2025-08-27T12:13:55.791975Z",
"url": "https://files.pythonhosted.org/packages/c3/6f/bf142541229374287604caf3bb2a4ae17f0a580798fd72d3b009b532db4e/rpds_py-0.27.1-cp313-cp313t-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1a77355b1c041d6be40886c44ff5e798b4e2769e497b790f0f7fd1e78d17e9a8",
"md5": "4e03a87948831a2dd8b45cd7b204021a",
"sha256": "fb89bec23fddc489e5d78b550a7b773557c9ab58b7946154a10a6f7a214a48b2"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "4e03a87948831a2dd8b45cd7b204021a",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 380247,
"upload_time": "2025-08-27T12:13:57",
"upload_time_iso_8601": "2025-08-27T12:13:57.683428Z",
"url": "https://files.pythonhosted.org/packages/1a/77/355b1c041d6be40886c44ff5e798b4e2769e497b790f0f7fd1e78d17e9a8/rpds_py-0.27.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d6a4d9cef5c3946ea271ce2243c51481971cd6e34f21925af2783dd17b26e815",
"md5": "61b4342f2ef7aa8a558b79633ccaf8f4",
"sha256": "e48af21883ded2b3e9eb48cb7880ad8598b31ab752ff3be6457001d78f416723"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "61b4342f2ef7aa8a558b79633ccaf8f4",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 390699,
"upload_time": "2025-08-27T12:13:59",
"upload_time_iso_8601": "2025-08-27T12:13:59.137082Z",
"url": "https://files.pythonhosted.org/packages/d6/a4/d9cef5c3946ea271ce2243c51481971cd6e34f21925af2783dd17b26e815/rpds_py-0.27.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3a06005106a7b8c6c1a7e91b73169e49870f4af5256119d34a361ae5240a0c1d",
"md5": "08f091355e2724038d5ec233631a508a",
"sha256": "6f5b7bd8e219ed50299e58551a410b64daafb5017d54bbe822e003856f06a802"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "08f091355e2724038d5ec233631a508a",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 521852,
"upload_time": "2025-08-27T12:14:00",
"upload_time_iso_8601": "2025-08-27T12:14:00.583329Z",
"url": "https://files.pythonhosted.org/packages/3a/06/005106a7b8c6c1a7e91b73169e49870f4af5256119d34a361ae5240a0c1d/rpds_py-0.27.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e53e50fb1dac0948e17a02eb05c24510a8fe12d5ce8561c6b7b7d1339ab7ab9c",
"md5": "cf30d5409b5d1cbf1d7b3a1e631fae41",
"sha256": "08f1e20bccf73b08d12d804d6e1c22ca5530e71659e6673bce31a6bb71c1e73f"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "cf30d5409b5d1cbf1d7b3a1e631fae41",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 402582,
"upload_time": "2025-08-27T12:14:02",
"upload_time_iso_8601": "2025-08-27T12:14:02.034255Z",
"url": "https://files.pythonhosted.org/packages/e5/3e/50fb1dac0948e17a02eb05c24510a8fe12d5ce8561c6b7b7d1339ab7ab9c/rpds_py-0.27.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "cbb0f4e224090dc5b0ec15f31a02d746ab24101dd430847c4d99123798661bfc",
"md5": "a3c44ed6082b5e23f9e358a4f8960a23",
"sha256": "0dc5dceeaefcc96dc192e3a80bbe1d6c410c469e97bdd47494a7d930987f18b2"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "a3c44ed6082b5e23f9e358a4f8960a23",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 384126,
"upload_time": "2025-08-27T12:14:03",
"upload_time_iso_8601": "2025-08-27T12:14:03.437020Z",
"url": "https://files.pythonhosted.org/packages/cb/b0/f4e224090dc5b0ec15f31a02d746ab24101dd430847c4d99123798661bfc/rpds_py-0.27.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5477ac339d5f82b6afff1df8f0fe0d2145cc827992cb5f8eeb90fc9f31ef7a63",
"md5": "47f0c86c5af4a3850bf74ecbb68624f2",
"sha256": "d76f9cc8665acdc0c9177043746775aa7babbf479b5520b78ae4002d889f5c21"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-cp313-cp313t-manylinux_2_31_riscv64.whl",
"has_sig": false,
"md5_digest": "47f0c86c5af4a3850bf74ecbb68624f2",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 399486,
"upload_time": "2025-08-27T12:14:05",
"upload_time_iso_8601": "2025-08-27T12:14:05.443069Z",
"url": "https://files.pythonhosted.org/packages/54/77/ac339d5f82b6afff1df8f0fe0d2145cc827992cb5f8eeb90fc9f31ef7a63/rpds_py-0.27.1-cp313-cp313t-manylinux_2_31_riscv64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d6293e1c255eee6ac358c056a57d6d6869baa00a62fa32eea5ee0632039c50a3",
"md5": "1684a5e8bf67ea47836386d6c2d73076",
"sha256": "134fae0e36022edad8290a6661edf40c023562964efea0cc0ec7f5d392d2aaef"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "1684a5e8bf67ea47836386d6c2d73076",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 414832,
"upload_time": "2025-08-27T12:14:06",
"upload_time_iso_8601": "2025-08-27T12:14:06.902309Z",
"url": "https://files.pythonhosted.org/packages/d6/29/3e1c255eee6ac358c056a57d6d6869baa00a62fa32eea5ee0632039c50a3/rpds_py-0.27.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3fdb6d498b844342deb3fa1d030598db93937a9964fcf5cb4da4feb5f17be34b",
"md5": "42e3a396717174646d275e5c0522e035",
"sha256": "eb11a4f1b2b63337cfd3b4d110af778a59aae51c81d195768e353d8b52f88081"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-cp313-cp313t-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "42e3a396717174646d275e5c0522e035",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 557249,
"upload_time": "2025-08-27T12:14:08",
"upload_time_iso_8601": "2025-08-27T12:14:08.370091Z",
"url": "https://files.pythonhosted.org/packages/3f/db/6d498b844342deb3fa1d030598db93937a9964fcf5cb4da4feb5f17be34b/rpds_py-0.27.1-cp313-cp313t-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "60f3690dd38e2310b6f68858a331399b4d6dbb9132c3e8ef8b4333b96caf403d",
"md5": "66eb103c1efdf61877fd32dd316b7b71",
"sha256": "13e608ac9f50a0ed4faec0e90ece76ae33b34c0e8656e3dceb9a7db994c692cd"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-cp313-cp313t-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "66eb103c1efdf61877fd32dd316b7b71",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 587356,
"upload_time": "2025-08-27T12:14:10",
"upload_time_iso_8601": "2025-08-27T12:14:10.034352Z",
"url": "https://files.pythonhosted.org/packages/60/f3/690dd38e2310b6f68858a331399b4d6dbb9132c3e8ef8b4333b96caf403d/rpds_py-0.27.1-cp313-cp313t-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "86e384507781cccd0145f35b1dc32c72675200c5ce8d5b30f813e49424ef68fc",
"md5": "4642c63016038c46895d61633dd10100",
"sha256": "dd2135527aa40f061350c3f8f89da2644de26cd73e4de458e79606384f4f68e7"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-cp313-cp313t-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "4642c63016038c46895d61633dd10100",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 555300,
"upload_time": "2025-08-27T12:14:11",
"upload_time_iso_8601": "2025-08-27T12:14:11.783575Z",
"url": "https://files.pythonhosted.org/packages/86/e3/84507781cccd0145f35b1dc32c72675200c5ce8d5b30f813e49424ef68fc/rpds_py-0.27.1-cp313-cp313t-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e5ee375469849e6b429b3516206b4580a79e9ef3eb12920ddbd4492b56eaacbe",
"md5": "c1b8a10e50ca26d04b39aea0b33b739e",
"sha256": "3020724ade63fe320a972e2ffd93b5623227e684315adce194941167fee02688"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-cp313-cp313t-win32.whl",
"has_sig": false,
"md5_digest": "c1b8a10e50ca26d04b39aea0b33b739e",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 216714,
"upload_time": "2025-08-27T12:14:13",
"upload_time_iso_8601": "2025-08-27T12:14:13.629844Z",
"url": "https://files.pythonhosted.org/packages/e5/ee/375469849e6b429b3516206b4580a79e9ef3eb12920ddbd4492b56eaacbe/rpds_py-0.27.1-cp313-cp313t-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "21873fc94e47c9bd0742660e84706c311a860dcae4374cf4a03c477e23ce605a",
"md5": "bb4f2394e48b47cc8a5eca6648a620b2",
"sha256": "8ee50c3e41739886606388ba3ab3ee2aae9f35fb23f833091833255a31740797"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-cp313-cp313t-win_amd64.whl",
"has_sig": false,
"md5_digest": "bb4f2394e48b47cc8a5eca6648a620b2",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 228943,
"upload_time": "2025-08-27T12:14:14",
"upload_time_iso_8601": "2025-08-27T12:14:14.937960Z",
"url": "https://files.pythonhosted.org/packages/21/87/3fc94e47c9bd0742660e84706c311a860dcae4374cf4a03c477e23ce605a/rpds_py-0.27.1-cp313-cp313t-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "00953c863973d409210da7fb41958172c6b7dbe7fc34e04d3cc1f10bb85e979f",
"md5": "a2fc5f685ed8a3a858d4c0b1a1f7eb32",
"sha256": "4f75e4bd8ab8db624e02c8e2fc4063021b58becdbe6df793a8111d9343aec1e3"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-cp313-cp313-win32.whl",
"has_sig": false,
"md5_digest": "a2fc5f685ed8a3a858d4c0b1a1f7eb32",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 221462,
"upload_time": "2025-08-27T12:13:48",
"upload_time_iso_8601": "2025-08-27T12:13:48.742653Z",
"url": "https://files.pythonhosted.org/packages/00/95/3c863973d409210da7fb41958172c6b7dbe7fc34e04d3cc1f10bb85e979f/rpds_py-0.27.1-cp313-cp313-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ce2c5867b14a81dc217b56d95a9f2a40fdbc56a1ab0181b80132beeecbd4b2d6",
"md5": "210cab30ceb3e755393c4521e4b96c93",
"sha256": "f9025faafc62ed0b75a53e541895ca272815bec18abe2249ff6501c8f2e12b83"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-cp313-cp313-win_amd64.whl",
"has_sig": false,
"md5_digest": "210cab30ceb3e755393c4521e4b96c93",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 232034,
"upload_time": "2025-08-27T12:13:50",
"upload_time_iso_8601": "2025-08-27T12:13:50.110329Z",
"url": "https://files.pythonhosted.org/packages/ce/2c/5867b14a81dc217b56d95a9f2a40fdbc56a1ab0181b80132beeecbd4b2d6/rpds_py-0.27.1-cp313-cp313-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c7783958f3f018c01923823f1e47f1cc338e398814b92d83cd278364446fac66",
"md5": "99289a98efb6c1b0eff8cd7006b28ccf",
"sha256": "ed10dc32829e7d222b7d3b93136d25a406ba9788f6a7ebf6809092da1f4d279d"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-cp313-cp313-win_arm64.whl",
"has_sig": false,
"md5_digest": "99289a98efb6c1b0eff8cd7006b28ccf",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 222392,
"upload_time": "2025-08-27T12:13:52",
"upload_time_iso_8601": "2025-08-27T12:13:52.587430Z",
"url": "https://files.pythonhosted.org/packages/c7/78/3958f3f018c01923823f1e47f1cc338e398814b92d83cd278364446fac66/rpds_py-0.27.1-cp313-cp313-win_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7036b6e6066520a07cf029d385de869729a895917b411e777ab1cde878100a1d",
"md5": "11496dcebb9493b0e083ea10ffbafa8e",
"sha256": "acb9aafccaae278f449d9c713b64a9e68662e7799dbd5859e2c6b3c67b56d334"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-cp314-cp314-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "11496dcebb9493b0e083ea10ffbafa8e",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 362472,
"upload_time": "2025-08-27T12:14:16",
"upload_time_iso_8601": "2025-08-27T12:14:16.333580Z",
"url": "https://files.pythonhosted.org/packages/70/36/b6e6066520a07cf029d385de869729a895917b411e777ab1cde878100a1d/rpds_py-0.27.1-cp314-cp314-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "af07b4646032e0dcec0df9c73a3bd52f63bc6c5f9cda992f06bd0e73fe3fbebd",
"md5": "f3b78437646c1eebb19a6b5589266e8d",
"sha256": "b7fb801aa7f845ddf601c49630deeeccde7ce10065561d92729bfe81bd21fb33"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-cp314-cp314-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "f3b78437646c1eebb19a6b5589266e8d",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 345676,
"upload_time": "2025-08-27T12:14:17",
"upload_time_iso_8601": "2025-08-27T12:14:17.764490Z",
"url": "https://files.pythonhosted.org/packages/af/07/b4646032e0dcec0df9c73a3bd52f63bc6c5f9cda992f06bd0e73fe3fbebd/rpds_py-0.27.1-cp314-cp314-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b0162f1003ee5d0af4bcb13c0cf894957984c32a6751ed7206db2aee7379a55e",
"md5": "86b33daca33bc048a886cdbb9d349198",
"sha256": "fe0dd05afb46597b9a2e11c351e5e4283c741237e7f617ffb3252780cca9336a"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "86b33daca33bc048a886cdbb9d349198",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 385313,
"upload_time": "2025-08-27T12:14:19",
"upload_time_iso_8601": "2025-08-27T12:14:19.829271Z",
"url": "https://files.pythonhosted.org/packages/b0/16/2f1003ee5d0af4bcb13c0cf894957984c32a6751ed7206db2aee7379a55e/rpds_py-0.27.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "05cd7eb6dd7b232e7f2654d03fa07f1414d7dfc980e82ba71e40a7c46fd95484",
"md5": "66333a74e2cedc9e1f33f820c0d1b501",
"sha256": "b6dfb0e058adb12d8b1d1b25f686e94ffa65d9995a5157afe99743bf7369d62b"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "66333a74e2cedc9e1f33f820c0d1b501",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 399080,
"upload_time": "2025-08-27T12:14:21",
"upload_time_iso_8601": "2025-08-27T12:14:21.531284Z",
"url": "https://files.pythonhosted.org/packages/05/cd/7eb6dd7b232e7f2654d03fa07f1414d7dfc980e82ba71e40a7c46fd95484/rpds_py-0.27.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "20515829afd5000ec1cb60f304711f02572d619040aa3ec033d8226817d1e571",
"md5": "b70b5db389486b4a61dc3cbe7d7faf96",
"sha256": "ed090ccd235f6fa8bb5861684567f0a83e04f52dfc2e5c05f2e4b1309fcf85e7"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "b70b5db389486b4a61dc3cbe7d7faf96",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 523868,
"upload_time": "2025-08-27T12:14:23",
"upload_time_iso_8601": "2025-08-27T12:14:23.485461Z",
"url": "https://files.pythonhosted.org/packages/20/51/5829afd5000ec1cb60f304711f02572d619040aa3ec033d8226817d1e571/rpds_py-0.27.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "052c30eebca20d5db95720ab4d2faec1b5e4c1025c473f703738c371241476a2",
"md5": "cb7785268ac99326796c6c69fe572fae",
"sha256": "bf876e79763eecf3e7356f157540d6a093cef395b65514f17a356f62af6cc136"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "cb7785268ac99326796c6c69fe572fae",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 408750,
"upload_time": "2025-08-27T12:14:24",
"upload_time_iso_8601": "2025-08-27T12:14:24.924833Z",
"url": "https://files.pythonhosted.org/packages/05/2c/30eebca20d5db95720ab4d2faec1b5e4c1025c473f703738c371241476a2/rpds_py-0.27.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "901acdb5083f043597c4d4276eae4e4c70c55ab5accec078da8611f24575a367",
"md5": "662de1161c080400e261ba80a29b2e4e",
"sha256": "12ed005216a51b1d6e2b02a7bd31885fe317e45897de81d86dcce7d74618ffff"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "662de1161c080400e261ba80a29b2e4e",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 387688,
"upload_time": "2025-08-27T12:14:27",
"upload_time_iso_8601": "2025-08-27T12:14:27.537105Z",
"url": "https://files.pythonhosted.org/packages/90/1a/cdb5083f043597c4d4276eae4e4c70c55ab5accec078da8611f24575a367/rpds_py-0.27.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7c92cf786a15320e173f945d205ab31585cc43969743bb1a48b6888f7a2b0a2d",
"md5": "ffd1c94c4230d3ab1dc919b80f9fb0e3",
"sha256": "ee4308f409a40e50593c7e3bb8cbe0b4d4c66d1674a316324f0c2f5383b486f9"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-cp314-cp314-manylinux_2_31_riscv64.whl",
"has_sig": false,
"md5_digest": "ffd1c94c4230d3ab1dc919b80f9fb0e3",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 407225,
"upload_time": "2025-08-27T12:14:28",
"upload_time_iso_8601": "2025-08-27T12:14:28.981214Z",
"url": "https://files.pythonhosted.org/packages/7c/92/cf786a15320e173f945d205ab31585cc43969743bb1a48b6888f7a2b0a2d/rpds_py-0.27.1-cp314-cp314-manylinux_2_31_riscv64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "335c85ee16df5b65063ef26017bef33096557a4c83fbe56218ac7cd8c235f16d",
"md5": "fb98ea850259cfc06da0c04ac6ecdae0",
"sha256": "0b08d152555acf1f455154d498ca855618c1378ec810646fcd7c76416ac6dc60"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "fb98ea850259cfc06da0c04ac6ecdae0",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 423361,
"upload_time": "2025-08-27T12:14:30",
"upload_time_iso_8601": "2025-08-27T12:14:30.469351Z",
"url": "https://files.pythonhosted.org/packages/33/5c/85ee16df5b65063ef26017bef33096557a4c83fbe56218ac7cd8c235f16d/rpds_py-0.27.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4b8e1c2741307fcabd1a334ecf008e92c4f47bb6f848712cf15c923becfe82bb",
"md5": "f44100d165582572870d81ce9849b60d",
"sha256": "dce51c828941973a5684d458214d3a36fcd28da3e1875d659388f4f9f12cc33e"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-cp314-cp314-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "f44100d165582572870d81ce9849b60d",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 562493,
"upload_time": "2025-08-27T12:14:31",
"upload_time_iso_8601": "2025-08-27T12:14:31.987739Z",
"url": "https://files.pythonhosted.org/packages/4b/8e/1c2741307fcabd1a334ecf008e92c4f47bb6f848712cf15c923becfe82bb/rpds_py-0.27.1-cp314-cp314-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "04035159321baae9b2222442a70c1f988cbbd66b9be0675dd3936461269be360",
"md5": "10da4940318218fd39e216cd6ec54c0a",
"sha256": "c1476d6f29eb81aa4151c9a31219b03f1f798dc43d8af1250a870735516a1212"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-cp314-cp314-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "10da4940318218fd39e216cd6ec54c0a",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 592623,
"upload_time": "2025-08-27T12:14:33",
"upload_time_iso_8601": "2025-08-27T12:14:33.543272Z",
"url": "https://files.pythonhosted.org/packages/04/03/5159321baae9b2222442a70c1f988cbbd66b9be0675dd3936461269be360/rpds_py-0.27.1-cp314-cp314-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ff39c09fd1ad28b85bc1d4554a8710233c9f4cefd03d7717a1b8fbfd171d1167",
"md5": "52aae53c17f2f44e6b174605642f6741",
"sha256": "3ce0cac322b0d69b63c9cdb895ee1b65805ec9ffad37639f291dd79467bee675"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-cp314-cp314-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "52aae53c17f2f44e6b174605642f6741",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 558800,
"upload_time": "2025-08-27T12:14:35",
"upload_time_iso_8601": "2025-08-27T12:14:35.436942Z",
"url": "https://files.pythonhosted.org/packages/ff/39/c09fd1ad28b85bc1d4554a8710233c9f4cefd03d7717a1b8fbfd171d1167/rpds_py-0.27.1-cp314-cp314-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "627edc7931dc2fa4a6e46b2a4fa744a9fe5c548efd70e0ba74f40b39fa4a8c10",
"md5": "8a147e7f184791153d876ebb3317f6bc",
"sha256": "ba81d2b56b6d4911ce735aad0a1d4495e808b8ee4dc58715998741a26874e7c2"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-cp314-cp314t-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "8a147e7f184791153d876ebb3317f6bc",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 358944,
"upload_time": "2025-08-27T12:14:41",
"upload_time_iso_8601": "2025-08-27T12:14:41.199109Z",
"url": "https://files.pythonhosted.org/packages/62/7e/dc7931dc2fa4a6e46b2a4fa744a9fe5c548efd70e0ba74f40b39fa4a8c10/rpds_py-0.27.1-cp314-cp314t-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e6224af76ac4e9f336bfb1a5f240d18a33c6b2fcaadb7472ac7680576512b49a",
"md5": "a919ff2d89107ab0be08d665b2fe0d24",
"sha256": "84f7d509870098de0e864cad0102711c1e24e9b1a50ee713b65928adb22269e4"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-cp314-cp314t-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "a919ff2d89107ab0be08d665b2fe0d24",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 342283,
"upload_time": "2025-08-27T12:14:42",
"upload_time_iso_8601": "2025-08-27T12:14:42.699171Z",
"url": "https://files.pythonhosted.org/packages/e6/22/4af76ac4e9f336bfb1a5f240d18a33c6b2fcaadb7472ac7680576512b49a/rpds_py-0.27.1-cp314-cp314t-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1c152a7c619b3c2272ea9feb9ade67a45c40b3eeb500d503ad4c28c395dc51b4",
"md5": "9a0e03d63858c05f44ed8278f5baba95",
"sha256": "a9e960fc78fecd1100539f14132425e1d5fe44ecb9239f8f27f079962021523e"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "9a0e03d63858c05f44ed8278f5baba95",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 380320,
"upload_time": "2025-08-27T12:14:44",
"upload_time_iso_8601": "2025-08-27T12:14:44.157270Z",
"url": "https://files.pythonhosted.org/packages/1c/15/2a7c619b3c2272ea9feb9ade67a45c40b3eeb500d503ad4c28c395dc51b4/rpds_py-0.27.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a27d4c6d243ba4a3057e994bb5bedd01b5c963c12fe38dde707a52acdb3849e7",
"md5": "1c4de9ed941c2db14ee99fed00514640",
"sha256": "62f85b665cedab1a503747617393573995dac4600ff51869d69ad2f39eb5e817"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "1c4de9ed941c2db14ee99fed00514640",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 391760,
"upload_time": "2025-08-27T12:14:45",
"upload_time_iso_8601": "2025-08-27T12:14:45.845222Z",
"url": "https://files.pythonhosted.org/packages/a2/7d/4c6d243ba4a3057e994bb5bedd01b5c963c12fe38dde707a52acdb3849e7/rpds_py-0.27.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b471b19401a909b83bcd67f90221330bc1ef11bc486fe4e04c24388d28a618ae",
"md5": "c6f205cc69cafe8ac36921e0d0bee1ea",
"sha256": "fed467af29776f6556250c9ed85ea5a4dd121ab56a5f8b206e3e7a4c551e48ec"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "c6f205cc69cafe8ac36921e0d0bee1ea",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 522476,
"upload_time": "2025-08-27T12:14:47",
"upload_time_iso_8601": "2025-08-27T12:14:47.364392Z",
"url": "https://files.pythonhosted.org/packages/b4/71/b19401a909b83bcd67f90221330bc1ef11bc486fe4e04c24388d28a618ae/rpds_py-0.27.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e4441a3b9715c0455d2e2f0f6df5ee6d6f5afdc423d0773a8a682ed2b43c566c",
"md5": "9d19a8ae27d676d24593c1380ac45bab",
"sha256": "f2729615f9d430af0ae6b36cf042cb55c0936408d543fb691e1a9e36648fd35a"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "9d19a8ae27d676d24593c1380ac45bab",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 403418,
"upload_time": "2025-08-27T12:14:49",
"upload_time_iso_8601": "2025-08-27T12:14:49.991885Z",
"url": "https://files.pythonhosted.org/packages/e4/44/1a3b9715c0455d2e2f0f6df5ee6d6f5afdc423d0773a8a682ed2b43c566c/rpds_py-0.27.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1c4bfb6c4f14984eb56673bc868a66536f53417ddb13ed44b391998100a06a96",
"md5": "7c0297c8726784a77f965ed945a28922",
"sha256": "1b207d881a9aef7ba753d69c123a35d96ca7cb808056998f6b9e8747321f03b8"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "7c0297c8726784a77f965ed945a28922",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 384771,
"upload_time": "2025-08-27T12:14:52",
"upload_time_iso_8601": "2025-08-27T12:14:52.159777Z",
"url": "https://files.pythonhosted.org/packages/1c/4b/fb6c4f14984eb56673bc868a66536f53417ddb13ed44b391998100a06a96/rpds_py-0.27.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c056d5265d2d28b7420d7b4d4d85cad8ef891760f5135102e60d5c970b976e41",
"md5": "d9b419aafc9b4eb33a1aba2ae1b1365b",
"sha256": "639fd5efec029f99b79ae47e5d7e00ad8a773da899b6309f6786ecaf22948c48"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-cp314-cp314t-manylinux_2_31_riscv64.whl",
"has_sig": false,
"md5_digest": "d9b419aafc9b4eb33a1aba2ae1b1365b",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 400022,
"upload_time": "2025-08-27T12:14:53",
"upload_time_iso_8601": "2025-08-27T12:14:53.859066Z",
"url": "https://files.pythonhosted.org/packages/c0/56/d5265d2d28b7420d7b4d4d85cad8ef891760f5135102e60d5c970b976e41/rpds_py-0.27.1-cp314-cp314t-manylinux_2_31_riscv64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8fe99f5fc70164a569bdd6ed9046486c3568d6926e3a49bdefeeccfb18655875",
"md5": "579c309311177ea734913af851b14664",
"sha256": "fecc80cb2a90e28af8a9b366edacf33d7a91cbfe4c2c4544ea1246e949cfebeb"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "579c309311177ea734913af851b14664",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 416787,
"upload_time": "2025-08-27T12:14:55",
"upload_time_iso_8601": "2025-08-27T12:14:55.673845Z",
"url": "https://files.pythonhosted.org/packages/8f/e9/9f5fc70164a569bdd6ed9046486c3568d6926e3a49bdefeeccfb18655875/rpds_py-0.27.1-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d46456dd03430ba491db943a81dcdef115a985aac5f44f565cd39a00c766d45c",
"md5": "eee78f0f7541e03b51489036c0e37623",
"sha256": "42a89282d711711d0a62d6f57d81aa43a1368686c45bc1c46b7f079d55692734"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-cp314-cp314t-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "eee78f0f7541e03b51489036c0e37623",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 557538,
"upload_time": "2025-08-27T12:14:57",
"upload_time_iso_8601": "2025-08-27T12:14:57.245517Z",
"url": "https://files.pythonhosted.org/packages/d4/64/56dd03430ba491db943a81dcdef115a985aac5f44f565cd39a00c766d45c/rpds_py-0.27.1-cp314-cp314t-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3f3692cc885a3129993b1d963a2a42ecf64e6a8e129d2c7cc980dbeba84e55fb",
"md5": "e205364091d0ca0406dc250fadb9ad14",
"sha256": "cf9931f14223de59551ab9d38ed18d92f14f055a5f78c1d8ad6493f735021bbb"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-cp314-cp314t-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "e205364091d0ca0406dc250fadb9ad14",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 588512,
"upload_time": "2025-08-27T12:14:58",
"upload_time_iso_8601": "2025-08-27T12:14:58.728006Z",
"url": "https://files.pythonhosted.org/packages/3f/36/92cc885a3129993b1d963a2a42ecf64e6a8e129d2c7cc980dbeba84e55fb/rpds_py-0.27.1-cp314-cp314t-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "dd106b283707780a81919f71625351182b4f98932ac89a09023cb61865136244",
"md5": "45f4cb3017dbef144bef89c16a580c68",
"sha256": "f39f58a27cc6e59f432b568ed8429c7e1641324fbe38131de852cd77b2d534b0"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-cp314-cp314t-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "45f4cb3017dbef144bef89c16a580c68",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 555813,
"upload_time": "2025-08-27T12:15:00",
"upload_time_iso_8601": "2025-08-27T12:15:00.334745Z",
"url": "https://files.pythonhosted.org/packages/dd/10/6b283707780a81919f71625351182b4f98932ac89a09023cb61865136244/rpds_py-0.27.1-cp314-cp314t-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "042e30b5ea18c01379da6272a92825dd7e53dc9d15c88a19e97932d35d430ef7",
"md5": "1a44fc2748d12038271fd4b4c70b857b",
"sha256": "d5fa0ee122dc09e23607a28e6d7b150da16c662e66409bbe85230e4c85bb528a"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-cp314-cp314t-win32.whl",
"has_sig": false,
"md5_digest": "1a44fc2748d12038271fd4b4c70b857b",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 217385,
"upload_time": "2025-08-27T12:15:01",
"upload_time_iso_8601": "2025-08-27T12:15:01.937800Z",
"url": "https://files.pythonhosted.org/packages/04/2e/30b5ea18c01379da6272a92825dd7e53dc9d15c88a19e97932d35d430ef7/rpds_py-0.27.1-cp314-cp314t-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "327d97119da51cb1dd3f2f3c0805f155a3aa4a95fa44fe7d78ae15e69edf4f34",
"md5": "6efcaa018e0f8c1317ee26e3dce57a28",
"sha256": "6567d2bb951e21232c2f660c24cf3470bb96de56cdcb3f071a83feeaff8a2772"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-cp314-cp314t-win_amd64.whl",
"has_sig": false,
"md5_digest": "6efcaa018e0f8c1317ee26e3dce57a28",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 230097,
"upload_time": "2025-08-27T12:15:03",
"upload_time_iso_8601": "2025-08-27T12:15:03.961978Z",
"url": "https://files.pythonhosted.org/packages/32/7d/97119da51cb1dd3f2f3c0805f155a3aa4a95fa44fe7d78ae15e69edf4f34/rpds_py-0.27.1-cp314-cp314t-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c5d699228e6bbcf4baa764b18258f519a9035131d91b538d4e0e294313462a98",
"md5": "687848767771f5a778fca2ed877d0a9c",
"sha256": "dfbfac137d2a3d0725758cd141f878bf4329ba25e34979797c89474a89a8a3a3"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-cp314-cp314-win32.whl",
"has_sig": false,
"md5_digest": "687848767771f5a778fca2ed877d0a9c",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 221943,
"upload_time": "2025-08-27T12:14:36",
"upload_time_iso_8601": "2025-08-27T12:14:36.898475Z",
"url": "https://files.pythonhosted.org/packages/c5/d6/99228e6bbcf4baa764b18258f519a9035131d91b538d4e0e294313462a98/rpds_py-0.27.1-cp314-cp314-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "be07c802bc6b8e95be83b79bdf23d1aa61d68324cb1006e245d6c58e959e314d",
"md5": "a8bbe34c4fb82622fa02d37030ac14b5",
"sha256": "a6e57b0abfe7cc513450fcf529eb486b6e4d3f8aee83e92eb5f1ef848218d456"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-cp314-cp314-win_amd64.whl",
"has_sig": false,
"md5_digest": "a8bbe34c4fb82622fa02d37030ac14b5",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 233739,
"upload_time": "2025-08-27T12:14:38",
"upload_time_iso_8601": "2025-08-27T12:14:38.386969Z",
"url": "https://files.pythonhosted.org/packages/be/07/c802bc6b8e95be83b79bdf23d1aa61d68324cb1006e245d6c58e959e314d/rpds_py-0.27.1-cp314-cp314-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c8893e1b1c16d4c2d547c5717377a8df99aee8099ff050f87c45cb4d5fa70891",
"md5": "5aa90c2e70a5e91b340ddbb852d17c9c",
"sha256": "faf8d146f3d476abfee026c4ae3bdd9ca14236ae4e4c310cbd1cf75ba33d24a3"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-cp314-cp314-win_arm64.whl",
"has_sig": false,
"md5_digest": "5aa90c2e70a5e91b340ddbb852d17c9c",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 223120,
"upload_time": "2025-08-27T12:14:39",
"upload_time_iso_8601": "2025-08-27T12:14:39.820146Z",
"url": "https://files.pythonhosted.org/packages/c8/89/3e1b1c16d4c2d547c5717377a8df99aee8099ff050f87c45cb4d5fa70891/rpds_py-0.27.1-cp314-cp314-win_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7f6c252e83e1ce7583c81f26d1d884b2074d40a13977e1b6c9c50bbf9a7f1f5a",
"md5": "07e94139dc7a286ae3d7864d42aa03fa",
"sha256": "c918c65ec2e42c2a78d19f18c553d77319119bf43aa9e2edf7fb78d624355527"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-cp39-cp39-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "07e94139dc7a286ae3d7864d42aa03fa",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 372140,
"upload_time": "2025-08-27T12:15:05",
"upload_time_iso_8601": "2025-08-27T12:15:05.441762Z",
"url": "https://files.pythonhosted.org/packages/7f/6c/252e83e1ce7583c81f26d1d884b2074d40a13977e1b6c9c50bbf9a7f1f5a/rpds_py-0.27.1-cp39-cp39-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9d71949c195d927c5aeb0d0629d329a20de43a64c423a6aa53836290609ef7ec",
"md5": "9cbc40aef8178b8040ca593dca9fee6d",
"sha256": "1fea2b1a922c47c51fd07d656324531adc787e415c8b116530a1d29c0516c62d"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-cp39-cp39-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "9cbc40aef8178b8040ca593dca9fee6d",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 354086,
"upload_time": "2025-08-27T12:15:07",
"upload_time_iso_8601": "2025-08-27T12:15:07.404819Z",
"url": "https://files.pythonhosted.org/packages/9d/71/949c195d927c5aeb0d0629d329a20de43a64c423a6aa53836290609ef7ec/rpds_py-0.27.1-cp39-cp39-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9f02e43e332ad8ce4f6c4342d151a471a7f2900ed1d76901da62eb3762663a71",
"md5": "8f5dae5a2af37b100071d4bde3477612",
"sha256": "bbf94c58e8e0cd6b6f38d8de67acae41b3a515c26169366ab58bdca4a6883bb8"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "8f5dae5a2af37b100071d4bde3477612",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 382117,
"upload_time": "2025-08-27T12:15:09",
"upload_time_iso_8601": "2025-08-27T12:15:09.275178Z",
"url": "https://files.pythonhosted.org/packages/9f/02/e43e332ad8ce4f6c4342d151a471a7f2900ed1d76901da62eb3762663a71/rpds_py-0.27.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d005b0fdeb5b577197ad72812bbdfb72f9a08fa1e64539cc3940b1b781cd3596",
"md5": "7aef521e5df0d6f2d42af058f98a9e31",
"sha256": "c2a8fed130ce946d5c585eddc7c8eeef0051f58ac80a8ee43bd17835c144c2cc"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "7aef521e5df0d6f2d42af058f98a9e31",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 394520,
"upload_time": "2025-08-27T12:15:10",
"upload_time_iso_8601": "2025-08-27T12:15:10.727544Z",
"url": "https://files.pythonhosted.org/packages/d0/05/b0fdeb5b577197ad72812bbdfb72f9a08fa1e64539cc3940b1b781cd3596/rpds_py-0.27.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "671f4cfef98b2349a7585181e99294fa2a13f0af06902048a5d70f431a66d0b9",
"md5": "50d07dc74ef79731d8ad53aa7ca4d3c7",
"sha256": "037a2361db72ee98d829bc2c5b7cc55598ae0a5e0ec1823a56ea99374cfd73c1"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "50d07dc74ef79731d8ad53aa7ca4d3c7",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 522657,
"upload_time": "2025-08-27T12:15:12",
"upload_time_iso_8601": "2025-08-27T12:15:12.613008Z",
"url": "https://files.pythonhosted.org/packages/67/1f/4cfef98b2349a7585181e99294fa2a13f0af06902048a5d70f431a66d0b9/rpds_py-0.27.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4455ccf37ddc4c6dce7437b335088b5ca18da864b334890e2fe9aa6ddc3f79a9",
"md5": "bd311a4596f299aacec96fac8a54e2a5",
"sha256": "5281ed1cc1d49882f9997981c88df1a22e140ab41df19071222f7e5fc4e72125"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "bd311a4596f299aacec96fac8a54e2a5",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 402967,
"upload_time": "2025-08-27T12:15:14",
"upload_time_iso_8601": "2025-08-27T12:15:14.113767Z",
"url": "https://files.pythonhosted.org/packages/44/55/ccf37ddc4c6dce7437b335088b5ca18da864b334890e2fe9aa6ddc3f79a9/rpds_py-0.27.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "74e55903f92e41e293b07707d5bf00ef39a0eb2af7190aff4beaf581a6591510",
"md5": "774bfaf3ed7c06cb661aee83fb4c3ba5",
"sha256": "2fd50659a069c15eef8aa3d64bbef0d69fd27bb4a50c9ab4f17f83a16cbf8905"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "774bfaf3ed7c06cb661aee83fb4c3ba5",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 384372,
"upload_time": "2025-08-27T12:15:15",
"upload_time_iso_8601": "2025-08-27T12:15:15.842141Z",
"url": "https://files.pythonhosted.org/packages/74/e5/5903f92e41e293b07707d5bf00ef39a0eb2af7190aff4beaf581a6591510/rpds_py-0.27.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8fe3fbb409e18aeefc01e49f5922ac63d2d914328430e295c12183ce56ebf76b",
"md5": "3f7f9b50fa443dcfe653198bd0bcde2a",
"sha256": "c4b676c4ae3921649a15d28ed10025548e9b561ded473aa413af749503c6737e"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-cp39-cp39-manylinux_2_31_riscv64.whl",
"has_sig": false,
"md5_digest": "3f7f9b50fa443dcfe653198bd0bcde2a",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 401264,
"upload_time": "2025-08-27T12:15:17",
"upload_time_iso_8601": "2025-08-27T12:15:17.388687Z",
"url": "https://files.pythonhosted.org/packages/8f/e3/fbb409e18aeefc01e49f5922ac63d2d914328430e295c12183ce56ebf76b/rpds_py-0.27.1-cp39-cp39-manylinux_2_31_riscv64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5579529ad07794e05cb0f38e2f965fc5bb20853d523976719400acecc447ec9d",
"md5": "81fd1683149e7822f97aeb0e1952576e",
"sha256": "079bc583a26db831a985c5257797b2b5d3affb0386e7ff886256762f82113b5e"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "81fd1683149e7822f97aeb0e1952576e",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 418691,
"upload_time": "2025-08-27T12:15:19",
"upload_time_iso_8601": "2025-08-27T12:15:19.144862Z",
"url": "https://files.pythonhosted.org/packages/55/79/529ad07794e05cb0f38e2f965fc5bb20853d523976719400acecc447ec9d/rpds_py-0.27.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "33396554a7fd6d9906fda2521c6d52f5d723dca123529fb719a5b5e074c15e01",
"md5": "6c6cdc0d809e0bb3013358f137ac261c",
"sha256": "4e44099bd522cba71a2c6b97f68e19f40e7d85399de899d66cdb67b32d7cb786"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-cp39-cp39-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "6c6cdc0d809e0bb3013358f137ac261c",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 558989,
"upload_time": "2025-08-27T12:15:21",
"upload_time_iso_8601": "2025-08-27T12:15:21.087878Z",
"url": "https://files.pythonhosted.org/packages/33/39/6554a7fd6d9906fda2521c6d52f5d723dca123529fb719a5b5e074c15e01/rpds_py-0.27.1-cp39-cp39-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "19b276fa15173b6f9f445e5ef15120871b945fb8dd9044b6b8c7abe87e938416",
"md5": "46e1e5fb56a3d5ab72a83c9489781ea1",
"sha256": "e202e6d4188e53c6661af813b46c37ca2c45e497fc558bacc1a7630ec2695aec"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-cp39-cp39-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "46e1e5fb56a3d5ab72a83c9489781ea1",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 589835,
"upload_time": "2025-08-27T12:15:22",
"upload_time_iso_8601": "2025-08-27T12:15:22.696175Z",
"url": "https://files.pythonhosted.org/packages/19/b2/76fa15173b6f9f445e5ef15120871b945fb8dd9044b6b8c7abe87e938416/rpds_py-0.27.1-cp39-cp39-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ee9e5560a4b39bab780405bed8a88ee85b30178061d189558a86003548dea045",
"md5": "83fd13a2d655984ff67f2985292800e6",
"sha256": "f41f814b8eaa48768d1bb551591f6ba45f87ac76899453e8ccd41dba1289b04b"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-cp39-cp39-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "83fd13a2d655984ff67f2985292800e6",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 555227,
"upload_time": "2025-08-27T12:15:24",
"upload_time_iso_8601": "2025-08-27T12:15:24.278179Z",
"url": "https://files.pythonhosted.org/packages/ee/9e/5560a4b39bab780405bed8a88ee85b30178061d189558a86003548dea045/rpds_py-0.27.1-cp39-cp39-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "52d7cd9c36215111aa65724c132bf709c6f35175973e90b32115dedc4ced09cb",
"md5": "514d96e87c2b3db289b17398dfdf771b",
"sha256": "9e71f5a087ead99563c11fdaceee83ee982fd39cf67601f4fd66cb386336ee52"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-cp39-cp39-win32.whl",
"has_sig": false,
"md5_digest": "514d96e87c2b3db289b17398dfdf771b",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 217899,
"upload_time": "2025-08-27T12:15:25",
"upload_time_iso_8601": "2025-08-27T12:15:25.926378Z",
"url": "https://files.pythonhosted.org/packages/52/d7/cd9c36215111aa65724c132bf709c6f35175973e90b32115dedc4ced09cb/rpds_py-0.27.1-cp39-cp39-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5be0d75ab7b4dd8ba777f6b365adbdfc7614bbfe7c5f05703031dfa4b61c3d6c",
"md5": "30f4b2df1b456434e1fcc7c86a063cf6",
"sha256": "71108900c9c3c8590697244b9519017a400d9ba26a36c48381b3f64743a44aab"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "30f4b2df1b456434e1fcc7c86a063cf6",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 228725,
"upload_time": "2025-08-27T12:15:27",
"upload_time_iso_8601": "2025-08-27T12:15:27.398767Z",
"url": "https://files.pythonhosted.org/packages/5b/e0/d75ab7b4dd8ba777f6b365adbdfc7614bbfe7c5f05703031dfa4b61c3d6c/rpds_py-0.27.1-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d563b7cc415c345625d5e62f694ea356c58fb964861409008118f1245f8c3347",
"md5": "bb06d6d403b52c7c2d11c4e06c693d17",
"sha256": "7ba22cb9693df986033b91ae1d7a979bc399237d45fccf875b76f62bb9e52ddf"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-pp310-pypy310_pp73-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "bb06d6d403b52c7c2d11c4e06c693d17",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.9",
"size": 371360,
"upload_time": "2025-08-27T12:15:29",
"upload_time_iso_8601": "2025-08-27T12:15:29.218436Z",
"url": "https://files.pythonhosted.org/packages/d5/63/b7cc415c345625d5e62f694ea356c58fb964861409008118f1245f8c3347/rpds_py-0.27.1-pp310-pypy310_pp73-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e58c12e1b24b560cf378b8ffbdb9dc73abd529e1adcfcf82727dfd29c4a7b88d",
"md5": "1e2064aa1323a36ef72537abcc08f7ff",
"sha256": "5b640501be9288c77738b5492b3fd3abc4ba95c50c2e41273c8a1459f08298d3"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "1e2064aa1323a36ef72537abcc08f7ff",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.9",
"size": 353933,
"upload_time": "2025-08-27T12:15:30",
"upload_time_iso_8601": "2025-08-27T12:15:30.837979Z",
"url": "https://files.pythonhosted.org/packages/e5/8c/12e1b24b560cf378b8ffbdb9dc73abd529e1adcfcf82727dfd29c4a7b88d/rpds_py-0.27.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9b851bb2210c1f7a1b99e91fea486b9f0f894aa5da3a5ec7097cbad7dec6d40f",
"md5": "10e06f4a62d6897b649aed3165db1ea8",
"sha256": "fb08b65b93e0c6dd70aac7f7890a9c0938d5ec71d5cb32d45cf844fb8ae47636"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "10e06f4a62d6897b649aed3165db1ea8",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.9",
"size": 382962,
"upload_time": "2025-08-27T12:15:32",
"upload_time_iso_8601": "2025-08-27T12:15:32.348726Z",
"url": "https://files.pythonhosted.org/packages/9b/85/1bb2210c1f7a1b99e91fea486b9f0f894aa5da3a5ec7097cbad7dec6d40f/rpds_py-0.27.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ccc9a839b9f219cf80ed65f27a7f5ddbb2809c1b85c966020ae2dff490e0b18e",
"md5": "d7d2f3b5f689a1e59902a43392e69f56",
"sha256": "d7ff07d696a7a38152ebdb8212ca9e5baab56656749f3d6004b34ab726b550b8"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "d7d2f3b5f689a1e59902a43392e69f56",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.9",
"size": 394412,
"upload_time": "2025-08-27T12:15:33",
"upload_time_iso_8601": "2025-08-27T12:15:33.839874Z",
"url": "https://files.pythonhosted.org/packages/cc/c9/a839b9f219cf80ed65f27a7f5ddbb2809c1b85c966020ae2dff490e0b18e/rpds_py-0.27.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "022db1d7f928b0b1f4fc2e0133e8051d199b01d7384875adc63b6ddadf3de7e5",
"md5": "c96277f4cfd53e8aeeb98e7ead673417",
"sha256": "fb7c72262deae25366e3b6c0c0ba46007967aea15d1eea746e44ddba8ec58dcc"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "c96277f4cfd53e8aeeb98e7ead673417",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.9",
"size": 523972,
"upload_time": "2025-08-27T12:15:35",
"upload_time_iso_8601": "2025-08-27T12:15:35.377788Z",
"url": "https://files.pythonhosted.org/packages/02/2d/b1d7f928b0b1f4fc2e0133e8051d199b01d7384875adc63b6ddadf3de7e5/rpds_py-0.27.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a9af2cbf56edd2d07716df1aec8a726b3159deb47cb5c27e1e42b71d705a7c2f",
"md5": "0f115c192bc10f69a09e879d509ad587",
"sha256": "7b002cab05d6339716b03a4a3a2ce26737f6231d7b523f339fa061d53368c9d8"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "0f115c192bc10f69a09e879d509ad587",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.9",
"size": 403273,
"upload_time": "2025-08-27T12:15:37",
"upload_time_iso_8601": "2025-08-27T12:15:37.051492Z",
"url": "https://files.pythonhosted.org/packages/a9/af/2cbf56edd2d07716df1aec8a726b3159deb47cb5c27e1e42b71d705a7c2f/rpds_py-0.27.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c093425e32200158d44ff01da5d9612c3b6711fe69f606f06e3895511f17473b",
"md5": "5b56607a3de57fffaf0ce291341abbae",
"sha256": "23f6b69d1c26c4704fec01311963a41d7de3ee0570a84ebde4d544e5a1859ffc"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "5b56607a3de57fffaf0ce291341abbae",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.9",
"size": 385278,
"upload_time": "2025-08-27T12:15:38",
"upload_time_iso_8601": "2025-08-27T12:15:38.571127Z",
"url": "https://files.pythonhosted.org/packages/c0/93/425e32200158d44ff01da5d9612c3b6711fe69f606f06e3895511f17473b/rpds_py-0.27.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "eb1a1a04a915ecd0551bfa9e77b7672d1937b4b72a0fc204a17deef76001cfb2",
"md5": "b4bd2669469f2d84457b3ae44ee96741",
"sha256": "530064db9146b247351f2a0250b8f00b289accea4596a033e94be2389977de71"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-pp310-pypy310_pp73-manylinux_2_31_riscv64.whl",
"has_sig": false,
"md5_digest": "b4bd2669469f2d84457b3ae44ee96741",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.9",
"size": 402084,
"upload_time": "2025-08-27T12:15:40",
"upload_time_iso_8601": "2025-08-27T12:15:40.529868Z",
"url": "https://files.pythonhosted.org/packages/eb/1a/1a04a915ecd0551bfa9e77b7672d1937b4b72a0fc204a17deef76001cfb2/rpds_py-0.27.1-pp310-pypy310_pp73-manylinux_2_31_riscv64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "51f766585c0fe5714368b62951d2513b684e5215beaceab2c6629549ddb15036",
"md5": "609cc8fa9a1374b3406fb7858ed0abbf",
"sha256": "7b90b0496570bd6b0321724a330d8b545827c4df2034b6ddfc5f5275f55da2ad"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "609cc8fa9a1374b3406fb7858ed0abbf",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.9",
"size": 419041,
"upload_time": "2025-08-27T12:15:42",
"upload_time_iso_8601": "2025-08-27T12:15:42.191849Z",
"url": "https://files.pythonhosted.org/packages/51/f7/66585c0fe5714368b62951d2513b684e5215beaceab2c6629549ddb15036/rpds_py-0.27.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8e7e83a508f6b8e219bba2d4af077c35ba0e0cdd35a751a3be6a7cba5a55ad71",
"md5": "c7dc81605bdfd48f9b440cff3104c1c5",
"sha256": "879b0e14a2da6a1102a3fc8af580fc1ead37e6d6692a781bd8c83da37429b5ab"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "c7dc81605bdfd48f9b440cff3104c1c5",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.9",
"size": 560084,
"upload_time": "2025-08-27T12:15:43",
"upload_time_iso_8601": "2025-08-27T12:15:43.839667Z",
"url": "https://files.pythonhosted.org/packages/8e/7e/83a508f6b8e219bba2d4af077c35ba0e0cdd35a751a3be6a7cba5a55ad71/rpds_py-0.27.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6666bb945683b958a1b19eb0fe715594630d0f36396ebdef4d9b89c2fa09aa56",
"md5": "3e2372a18ce6c07df6deb9dfbf7fe310",
"sha256": "0d807710df3b5faa66c731afa162ea29717ab3be17bdc15f90f2d9f183da4059"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "3e2372a18ce6c07df6deb9dfbf7fe310",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.9",
"size": 590115,
"upload_time": "2025-08-27T12:15:46",
"upload_time_iso_8601": "2025-08-27T12:15:46.647417Z",
"url": "https://files.pythonhosted.org/packages/66/66/bb945683b958a1b19eb0fe715594630d0f36396ebdef4d9b89c2fa09aa56/rpds_py-0.27.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1200ccfaafaf7db7e7adace915e5c2f2c2410e16402561801e9c7f96683002d3",
"md5": "99f09830ba52c64e2260be6cf26b62a9",
"sha256": "3adc388fc3afb6540aec081fa59e6e0d3908722771aa1e37ffe22b220a436f0b"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "99f09830ba52c64e2260be6cf26b62a9",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.9",
"size": 556561,
"upload_time": "2025-08-27T12:15:48",
"upload_time_iso_8601": "2025-08-27T12:15:48.219085Z",
"url": "https://files.pythonhosted.org/packages/12/00/ccfaafaf7db7e7adace915e5c2f2c2410e16402561801e9c7f96683002d3/rpds_py-0.27.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e1b792b6ed9aad103bfe1c45df98453dfae40969eef2cb6c6239c58d7e96f1b3",
"md5": "76dc4b2f1f2c27ed21b7be75886b8ee6",
"sha256": "c796c0c1cc68cb08b0284db4229f5af76168172670c74908fdbd4b7d7f515819"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-pp310-pypy310_pp73-win_amd64.whl",
"has_sig": false,
"md5_digest": "76dc4b2f1f2c27ed21b7be75886b8ee6",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.9",
"size": 229125,
"upload_time": "2025-08-27T12:15:49",
"upload_time_iso_8601": "2025-08-27T12:15:49.956202Z",
"url": "https://files.pythonhosted.org/packages/e1/b7/92b6ed9aad103bfe1c45df98453dfae40969eef2cb6c6239c58d7e96f1b3/rpds_py-0.27.1-pp310-pypy310_pp73-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0cede1fba02de17f4f76318b834425257c8ea297e415e12c68b4361f63e8ae92",
"md5": "ff4cde7ec30018e8f09057ac1e742bee",
"sha256": "cdfe4bb2f9fe7458b7453ad3c33e726d6d1c7c0a72960bcc23800d77384e42df"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-pp311-pypy311_pp73-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "ff4cde7ec30018e8f09057ac1e742bee",
"packagetype": "bdist_wheel",
"python_version": "pp311",
"requires_python": ">=3.9",
"size": 371402,
"upload_time": "2025-08-27T12:15:51",
"upload_time_iso_8601": "2025-08-27T12:15:51.561183Z",
"url": "https://files.pythonhosted.org/packages/0c/ed/e1fba02de17f4f76318b834425257c8ea297e415e12c68b4361f63e8ae92/rpds_py-0.27.1-pp311-pypy311_pp73-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "af7ce16b959b316048b55585a697e94add55a4ae0d984434d279ea83442e460d",
"md5": "56b781e6e6d797c2ca15c497fbe4b899",
"sha256": "8fabb8fd848a5f75a2324e4a84501ee3a5e3c78d8603f83475441866e60b94a3"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "56b781e6e6d797c2ca15c497fbe4b899",
"packagetype": "bdist_wheel",
"python_version": "pp311",
"requires_python": ">=3.9",
"size": 354084,
"upload_time": "2025-08-27T12:15:53",
"upload_time_iso_8601": "2025-08-27T12:15:53.219386Z",
"url": "https://files.pythonhosted.org/packages/af/7c/e16b959b316048b55585a697e94add55a4ae0d984434d279ea83442e460d/rpds_py-0.27.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "dec1ade645f55de76799fdd08682d51ae6724cb46f318573f18be49b1e040428",
"md5": "10a2904b990763124c9468f8720e4f05",
"sha256": "eda8719d598f2f7f3e0f885cba8646644b55a187762bec091fa14a2b819746a9"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "10a2904b990763124c9468f8720e4f05",
"packagetype": "bdist_wheel",
"python_version": "pp311",
"requires_python": ">=3.9",
"size": 383090,
"upload_time": "2025-08-27T12:15:55",
"upload_time_iso_8601": "2025-08-27T12:15:55.158957Z",
"url": "https://files.pythonhosted.org/packages/de/c1/ade645f55de76799fdd08682d51ae6724cb46f318573f18be49b1e040428/rpds_py-0.27.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1f2789070ca9b856e52960da1472efcb6c20ba27cfe902f4f23ed095b9cfc61d",
"md5": "616f5c9ffadf8f19c25767e3187a5edd",
"sha256": "3c64d07e95606ec402a0a1c511fe003873fa6af630bda59bac77fac8b4318ebc"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "616f5c9ffadf8f19c25767e3187a5edd",
"packagetype": "bdist_wheel",
"python_version": "pp311",
"requires_python": ">=3.9",
"size": 394519,
"upload_time": "2025-08-27T12:15:57",
"upload_time_iso_8601": "2025-08-27T12:15:57.238102Z",
"url": "https://files.pythonhosted.org/packages/1f/27/89070ca9b856e52960da1472efcb6c20ba27cfe902f4f23ed095b9cfc61d/rpds_py-0.27.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b328be120586874ef906aa5aeeae95ae8df4184bc757e5b6bd1c729ccff45ed5",
"md5": "b5246a9a3525b293b459793c054d8e58",
"sha256": "93a2ed40de81bcff59aabebb626562d48332f3d028ca2036f1d23cbb52750be4"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "b5246a9a3525b293b459793c054d8e58",
"packagetype": "bdist_wheel",
"python_version": "pp311",
"requires_python": ">=3.9",
"size": 523817,
"upload_time": "2025-08-27T12:15:59",
"upload_time_iso_8601": "2025-08-27T12:15:59.237059Z",
"url": "https://files.pythonhosted.org/packages/b3/28/be120586874ef906aa5aeeae95ae8df4184bc757e5b6bd1c729ccff45ed5/rpds_py-0.27.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a8ef70cc197bc11cfcde02a86f36ac1eed15c56667c2ebddbdb76a47e90306da",
"md5": "c68c2bfa776e049583e1a56c2f50f363",
"sha256": "387ce8c44ae94e0ec50532d9cb0edce17311024c9794eb196b90e1058aadeb66"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "c68c2bfa776e049583e1a56c2f50f363",
"packagetype": "bdist_wheel",
"python_version": "pp311",
"requires_python": ">=3.9",
"size": 403240,
"upload_time": "2025-08-27T12:16:00",
"upload_time_iso_8601": "2025-08-27T12:16:00.923690Z",
"url": "https://files.pythonhosted.org/packages/a8/ef/70cc197bc11cfcde02a86f36ac1eed15c56667c2ebddbdb76a47e90306da/rpds_py-0.27.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "cf3546936cca449f7f518f2f4996e0e8344db4b57e2081e752441154089d2a5f",
"md5": "7116e4f8d22489638d2ede6ad5d36aa4",
"sha256": "aaf94f812c95b5e60ebaf8bfb1898a7d7cb9c1af5744d4a67fa47796e0465d4e"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "7116e4f8d22489638d2ede6ad5d36aa4",
"packagetype": "bdist_wheel",
"python_version": "pp311",
"requires_python": ">=3.9",
"size": 385194,
"upload_time": "2025-08-27T12:16:02",
"upload_time_iso_8601": "2025-08-27T12:16:02.802690Z",
"url": "https://files.pythonhosted.org/packages/cf/35/46936cca449f7f518f2f4996e0e8344db4b57e2081e752441154089d2a5f/rpds_py-0.27.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e16229c0d3e5125c3270b51415af7cbff1ec587379c84f55a5761cc9efa8cd06",
"md5": "2bd12834cedd2a7efa4773afc5196a3d",
"sha256": "4848ca84d6ded9b58e474dfdbad4b8bfb450344c0551ddc8d958bf4b36aa837c"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-pp311-pypy311_pp73-manylinux_2_31_riscv64.whl",
"has_sig": false,
"md5_digest": "2bd12834cedd2a7efa4773afc5196a3d",
"packagetype": "bdist_wheel",
"python_version": "pp311",
"requires_python": ">=3.9",
"size": 402086,
"upload_time": "2025-08-27T12:16:04",
"upload_time_iso_8601": "2025-08-27T12:16:04.806804Z",
"url": "https://files.pythonhosted.org/packages/e1/62/29c0d3e5125c3270b51415af7cbff1ec587379c84f55a5761cc9efa8cd06/rpds_py-0.27.1-pp311-pypy311_pp73-manylinux_2_31_riscv64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8f6603e1087679227785474466fdd04157fb793b3b76e3fcf01cbf4c693c1949",
"md5": "ef35904368daf2332a92860f1627af9d",
"sha256": "2bde09cbcf2248b73c7c323be49b280180ff39fadcfe04e7b6f54a678d02a7cf"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "ef35904368daf2332a92860f1627af9d",
"packagetype": "bdist_wheel",
"python_version": "pp311",
"requires_python": ">=3.9",
"size": 419272,
"upload_time": "2025-08-27T12:16:06",
"upload_time_iso_8601": "2025-08-27T12:16:06.471024Z",
"url": "https://files.pythonhosted.org/packages/8f/66/03e1087679227785474466fdd04157fb793b3b76e3fcf01cbf4c693c1949/rpds_py-0.27.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6a24e3e72d265121e00b063aef3e3501e5b2473cf1b23511d56e529531acf01e",
"md5": "bfc5aecca51e25bbba899ebfc0b3069b",
"sha256": "94c44ee01fd21c9058f124d2d4f0c9dc7634bec93cd4b38eefc385dabe71acbf"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "bfc5aecca51e25bbba899ebfc0b3069b",
"packagetype": "bdist_wheel",
"python_version": "pp311",
"requires_python": ">=3.9",
"size": 560003,
"upload_time": "2025-08-27T12:16:08",
"upload_time_iso_8601": "2025-08-27T12:16:08.060524Z",
"url": "https://files.pythonhosted.org/packages/6a/24/e3e72d265121e00b063aef3e3501e5b2473cf1b23511d56e529531acf01e/rpds_py-0.27.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "26caf5a344c534214cc2d41118c0699fffbdc2c1bc7046f2a2b9609765ab9c92",
"md5": "6216d6b4ede9203e38089e426dab24f7",
"sha256": "df8b74962e35c9249425d90144e721eed198e6555a0e22a563d29fe4486b51f6"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "6216d6b4ede9203e38089e426dab24f7",
"packagetype": "bdist_wheel",
"python_version": "pp311",
"requires_python": ">=3.9",
"size": 590482,
"upload_time": "2025-08-27T12:16:10",
"upload_time_iso_8601": "2025-08-27T12:16:10.137319Z",
"url": "https://files.pythonhosted.org/packages/26/ca/f5a344c534214cc2d41118c0699fffbdc2c1bc7046f2a2b9609765ab9c92/rpds_py-0.27.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ce084349bdd5c64d9d193c360aa9db89adeee6f6682ab8825dca0a3f535f434f",
"md5": "8b9e14c82dcec8eb493ec68133406290",
"sha256": "dc23e6820e3b40847e2f4a7726462ba0cf53089512abe9ee16318c366494c17a"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "8b9e14c82dcec8eb493ec68133406290",
"packagetype": "bdist_wheel",
"python_version": "pp311",
"requires_python": ">=3.9",
"size": 556523,
"upload_time": "2025-08-27T12:16:12",
"upload_time_iso_8601": "2025-08-27T12:16:12.188106Z",
"url": "https://files.pythonhosted.org/packages/ce/08/4349bdd5c64d9d193c360aa9db89adeee6f6682ab8825dca0a3f535f434f/rpds_py-0.27.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4eea5463cd5048a7a2fcdae308b6e96432802132c141bfb9420260142632a0f1",
"md5": "fca79244ac1a330db2b1f318aec01556",
"sha256": "aa8933159edc50be265ed22b401125c9eebff3171f570258854dbce3ecd55475"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-pp39-pypy39_pp73-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "fca79244ac1a330db2b1f318aec01556",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.9",
"size": 371778,
"upload_time": "2025-08-27T12:16:13",
"upload_time_iso_8601": "2025-08-27T12:16:13.851837Z",
"url": "https://files.pythonhosted.org/packages/4e/ea/5463cd5048a7a2fcdae308b6e96432802132c141bfb9420260142632a0f1/rpds_py-0.27.1-pp39-pypy39_pp73-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0dc8f38c099db07f5114029c1467649d308543906933eebbc226d4527a5f4693",
"md5": "9cf2f032899e63b984a3ede5dd4391f5",
"sha256": "a50431bf02583e21bf273c71b89d710e7a710ad5e39c725b14e685610555926f"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "9cf2f032899e63b984a3ede5dd4391f5",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.9",
"size": 354394,
"upload_time": "2025-08-27T12:16:15",
"upload_time_iso_8601": "2025-08-27T12:16:15.609331Z",
"url": "https://files.pythonhosted.org/packages/0d/c8/f38c099db07f5114029c1467649d308543906933eebbc226d4527a5f4693/rpds_py-0.27.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7d79b76f97704d9dd8ddbd76fed4c4048153a847c5d6003afe20a6b5c3339065",
"md5": "d9bcfcb659ec55645238f8bbf30cb1e7",
"sha256": "78af06ddc7fe5cc0e967085a9115accee665fb912c22a3f54bad70cc65b05fe6"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "d9bcfcb659ec55645238f8bbf30cb1e7",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.9",
"size": 382348,
"upload_time": "2025-08-27T12:16:17",
"upload_time_iso_8601": "2025-08-27T12:16:17.251662Z",
"url": "https://files.pythonhosted.org/packages/7d/79/b76f97704d9dd8ddbd76fed4c4048153a847c5d6003afe20a6b5c3339065/rpds_py-0.27.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8a3fef23d3c1be1b837b648a3016d5bbe7cfe711422ad110b4081c0a90ef5a53",
"md5": "d6c92e02293545d8601ea74e271e61bd",
"sha256": "70d0738ef8fee13c003b100c2fbd667ec4f133468109b3472d249231108283a3"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "d6c92e02293545d8601ea74e271e61bd",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.9",
"size": 394159,
"upload_time": "2025-08-27T12:16:19",
"upload_time_iso_8601": "2025-08-27T12:16:19.251195Z",
"url": "https://files.pythonhosted.org/packages/8a/3f/ef23d3c1be1b837b648a3016d5bbe7cfe711422ad110b4081c0a90ef5a53/rpds_py-0.27.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "748a9e62693af1a34fd28b1a190d463d12407bd7cf561748cb4745845d9548d3",
"md5": "51737c07912cb39be6fde24722087a62",
"sha256": "e2f6fd8a1cea5bbe599b6e78a6e5ee08db434fc8ffea51ff201c8765679698b3"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "51737c07912cb39be6fde24722087a62",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.9",
"size": 522775,
"upload_time": "2025-08-27T12:16:20",
"upload_time_iso_8601": "2025-08-27T12:16:20.929803Z",
"url": "https://files.pythonhosted.org/packages/74/8a/9e62693af1a34fd28b1a190d463d12407bd7cf561748cb4745845d9548d3/rpds_py-0.27.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "360d8d5bb122bf7a60976b54c5c99a739a3819f49f02d69df3ea2ca2aff47d5c",
"md5": "5e26a81d395bb20eab235ce5eb8088cd",
"sha256": "8177002868d1426305bb5de1e138161c2ec9eb2d939be38291d7c431c4712df8"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "5e26a81d395bb20eab235ce5eb8088cd",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.9",
"size": 402633,
"upload_time": "2025-08-27T12:16:22",
"upload_time_iso_8601": "2025-08-27T12:16:22.548557Z",
"url": "https://files.pythonhosted.org/packages/36/0d/8d5bb122bf7a60976b54c5c99a739a3819f49f02d69df3ea2ca2aff47d5c/rpds_py-0.27.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0f0e237948c1f425e23e0cf5a566d702652a6e55c6f8fbd332a1792eb7043daf",
"md5": "bcb4921fbc6b6922cf921e91e23cdefa",
"sha256": "008b839781d6c9bf3b6a8984d1d8e56f0ec46dc56df61fd669c49b58ae800400"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "bcb4921fbc6b6922cf921e91e23cdefa",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.9",
"size": 384867,
"upload_time": "2025-08-27T12:16:24",
"upload_time_iso_8601": "2025-08-27T12:16:24.290237Z",
"url": "https://files.pythonhosted.org/packages/0f/0e/237948c1f425e23e0cf5a566d702652a6e55c6f8fbd332a1792eb7043daf/rpds_py-0.27.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d60ada0813efcd998d260cbe876d97f55b0f469ada8ba9cbc47490a132554540",
"md5": "6d80afb24c85fdfc86dd2dc019ad1ce2",
"sha256": "a55b9132bb1ade6c734ddd2759c8dc132aa63687d259e725221f106b83a0e485"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-pp39-pypy39_pp73-manylinux_2_31_riscv64.whl",
"has_sig": false,
"md5_digest": "6d80afb24c85fdfc86dd2dc019ad1ce2",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.9",
"size": 401791,
"upload_time": "2025-08-27T12:16:25",
"upload_time_iso_8601": "2025-08-27T12:16:25.954128Z",
"url": "https://files.pythonhosted.org/packages/d6/0a/da0813efcd998d260cbe876d97f55b0f469ada8ba9cbc47490a132554540/rpds_py-0.27.1-pp39-pypy39_pp73-manylinux_2_31_riscv64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5178c6c9e8a8aaca416a6f0d1b6b4a6ee35b88fe2c5401d02235d0a056eceed2",
"md5": "125806909f51fa4498f4609e953b11ae",
"sha256": "a46fdec0083a26415f11d5f236b79fa1291c32aaa4a17684d82f7017a1f818b1"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "125806909f51fa4498f4609e953b11ae",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.9",
"size": 419525,
"upload_time": "2025-08-27T12:16:27",
"upload_time_iso_8601": "2025-08-27T12:16:27.659904Z",
"url": "https://files.pythonhosted.org/packages/51/78/c6c9e8a8aaca416a6f0d1b6b4a6ee35b88fe2c5401d02235d0a056eceed2/rpds_py-0.27.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a3695af37e1d71487cf6d56dd1420dc7e0c2732c1b6ff612aa7a88374061c0a8",
"md5": "283d2ea006806cda599268fe20701768",
"sha256": "8a63b640a7845f2bdd232eb0d0a4a2dd939bcdd6c57e6bb134526487f3160ec5"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "283d2ea006806cda599268fe20701768",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.9",
"size": 559255,
"upload_time": "2025-08-27T12:16:29",
"upload_time_iso_8601": "2025-08-27T12:16:29.343649Z",
"url": "https://files.pythonhosted.org/packages/a3/69/5af37e1d71487cf6d56dd1420dc7e0c2732c1b6ff612aa7a88374061c0a8/rpds_py-0.27.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "407f8b7b136069ef7ac3960eda25d832639bdb163018a34c960ed042dd1707c8",
"md5": "4f5e4ef34b41d0c178b9da9a92d36c0f",
"sha256": "7e32721e5d4922deaaf963469d795d5bde6093207c52fec719bd22e5d1bedbc4"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "4f5e4ef34b41d0c178b9da9a92d36c0f",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.9",
"size": 590384,
"upload_time": "2025-08-27T12:16:31",
"upload_time_iso_8601": "2025-08-27T12:16:31.005052Z",
"url": "https://files.pythonhosted.org/packages/40/7f/8b7b136069ef7ac3960eda25d832639bdb163018a34c960ed042dd1707c8/rpds_py-0.27.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d806c316d3f6ff03f43ccb0eba7de61376f8ec4ea850067dddfafe98274ae13c",
"md5": "d3ab481090de2acc04e31a24cac76f15",
"sha256": "2c426b99a068601b5f4623573df7a7c3d72e87533a2dd2253353a03e7502566c"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "d3ab481090de2acc04e31a24cac76f15",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.9",
"size": 555959,
"upload_time": "2025-08-27T12:16:32",
"upload_time_iso_8601": "2025-08-27T12:16:32.730642Z",
"url": "https://files.pythonhosted.org/packages/d8/06/c316d3f6ff03f43ccb0eba7de61376f8ec4ea850067dddfafe98274ae13c/rpds_py-0.27.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6094384cf54c430b9dac742bbd2ec26c23feb78ded0d43d6d78563a281aec017",
"md5": "3ebc7a27000ade66fadd7914cfd6ff7c",
"sha256": "4fc9b7fe29478824361ead6e14e4f5aed570d477e06088826537e202d25fe859"
},
"downloads": -1,
"filename": "rpds_py-0.27.1-pp39-pypy39_pp73-win_amd64.whl",
"has_sig": false,
"md5_digest": "3ebc7a27000ade66fadd7914cfd6ff7c",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.9",
"size": 228784,
"upload_time": "2025-08-27T12:16:34",
"upload_time_iso_8601": "2025-08-27T12:16:34.428337Z",
"url": "https://files.pythonhosted.org/packages/60/94/384cf54c430b9dac742bbd2ec26c23feb78ded0d43d6d78563a281aec017/rpds_py-0.27.1-pp39-pypy39_pp73-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e9dd2c0cbe774744272b0ae725f44032c77bdcab6e8bcf544bffa3b6e70c8dba",
"md5": "41581e4b264e630e9d87f1793666a164",
"sha256": "26a1c73171d10b7acccbded82bf6a586ab8203601e565badc74bbbf8bc5a10f8"
},
"downloads": -1,
"filename": "rpds_py-0.27.1.tar.gz",
"has_sig": false,
"md5_digest": "41581e4b264e630e9d87f1793666a164",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.9",
"size": 27479,
"upload_time": "2025-08-27T12:16:36",
"upload_time_iso_8601": "2025-08-27T12:16:36.024910Z",
"url": "https://files.pythonhosted.org/packages/e9/dd/2c0cbe774744272b0ae725f44032c77bdcab6e8bcf544bffa3b6e70c8dba/rpds_py-0.27.1.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-08-27 12:16:36",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "sponsors",
"github_project": "Julian",
"github_not_found": true,
"lcname": "rpds-py"
}