rpds-py


Namerpds-py JSON
Version 0.21.0 PyPI version JSON
download
home_pageNone
SummaryPython bindings to Rust's persistent data structures (rpds)
upload_time2024-11-06 14:00:30
maintainerNone
docs_urlNone
authorNone
requires_python>=3.9
licenseNone
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/23/80/afdf96daf9b27d61483ef05b38f282121db0e38f5fd4e89f40f5c86c2a4f/rpds_py-0.21.0.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.21.0",
    "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": "4ca491747f902f166c589f1753cbd8bda713aceb75817c8bb597058a38aa85e6",
                "md5": "8ea883c5f1ac67c0dc5d0176bab2716c",
                "sha256": "a017f813f24b9df929674d0332a374d40d7f0162b326562daae8066b502d0590"
            },
            "downloads": -1,
            "filename": "rpds_py-0.21.0-cp310-cp310-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8ea883c5f1ac67c0dc5d0176bab2716c",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 327473,
            "upload_time": "2024-11-06T13:57:41",
            "upload_time_iso_8601": "2024-11-06T13:57:41.400951Z",
            "url": "https://files.pythonhosted.org/packages/4c/a4/91747f902f166c589f1753cbd8bda713aceb75817c8bb597058a38aa85e6/rpds_py-0.21.0-cp310-cp310-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8a7275a30a07f96ae210e732c50c7339e742945fdc83661e65a1c80fcf39ceea",
                "md5": "179f4c29cd005c5607019fa69d124658",
                "sha256": "20cc1ed0bcc86d8e1a7e968cce15be45178fd16e2ff656a243145e0b439bd250"
            },
            "downloads": -1,
            "filename": "rpds_py-0.21.0-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "179f4c29cd005c5607019fa69d124658",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 318359,
            "upload_time": "2024-11-06T13:57:43",
            "upload_time_iso_8601": "2024-11-06T13:57:43.811429Z",
            "url": "https://files.pythonhosted.org/packages/8a/72/75a30a07f96ae210e732c50c7339e742945fdc83661e65a1c80fcf39ceea/rpds_py-0.21.0-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "dc6387d469d7628cd71366fd1baa32573acd37385843b8d39b6e2b69f16eec48",
                "md5": "56e5735f357957acf3fb3424ccaf826a",
                "sha256": "ad116dda078d0bc4886cb7840e19811562acdc7a8e296ea6ec37e70326c1b41c"
            },
            "downloads": -1,
            "filename": "rpds_py-0.21.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "56e5735f357957acf3fb3424ccaf826a",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 361377,
            "upload_time": "2024-11-06T13:57:45",
            "upload_time_iso_8601": "2024-11-06T13:57:45.472025Z",
            "url": "https://files.pythonhosted.org/packages/dc/63/87d469d7628cd71366fd1baa32573acd37385843b8d39b6e2b69f16eec48/rpds_py-0.21.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ddb178da258a4cafa1d8606a21b7d9ed4cc9d72d1c663583060ab02444b9bd9c",
                "md5": "fe44e6be8d5150b73b02e13bb19b7d47",
                "sha256": "808f1ac7cf3b44f81c9475475ceb221f982ef548e44e024ad5f9e7060649540e"
            },
            "downloads": -1,
            "filename": "rpds_py-0.21.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "fe44e6be8d5150b73b02e13bb19b7d47",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 369494,
            "upload_time": "2024-11-06T13:57:47",
            "upload_time_iso_8601": "2024-11-06T13:57:47.122608Z",
            "url": "https://files.pythonhosted.org/packages/dd/b1/78da258a4cafa1d8606a21b7d9ed4cc9d72d1c663583060ab02444b9bd9c/rpds_py-0.21.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "44476fdb7273cc80066d434e83cd49a3cfedb6d96ff70908480870877fb64b1e",
                "md5": "7a27c90bdafe2ac6f5e92de534c42d00",
                "sha256": "de552f4a1916e520f2703ec474d2b4d3f86d41f353e7680b597512ffe7eac5d0"
            },
            "downloads": -1,
            "filename": "rpds_py-0.21.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "7a27c90bdafe2ac6f5e92de534c42d00",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 403639,
            "upload_time": "2024-11-06T13:57:48",
            "upload_time_iso_8601": "2024-11-06T13:57:48.720898Z",
            "url": "https://files.pythonhosted.org/packages/44/47/6fdb7273cc80066d434e83cd49a3cfedb6d96ff70908480870877fb64b1e/rpds_py-0.21.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5f4a8c6c46afc050b5243be579be7f7b194d00b9731e83cc0845e9c70db127bb",
                "md5": "bf5e191ec68cd823e666fb199d05077b",
                "sha256": "efec946f331349dfc4ae9d0e034c263ddde19414fe5128580f512619abed05f1"
            },
            "downloads": -1,
            "filename": "rpds_py-0.21.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "bf5e191ec68cd823e666fb199d05077b",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 430551,
            "upload_time": "2024-11-06T13:57:50",
            "upload_time_iso_8601": "2024-11-06T13:57:50.461042Z",
            "url": "https://files.pythonhosted.org/packages/5f/4a/8c6c46afc050b5243be579be7f7b194d00b9731e83cc0845e9c70db127bb/rpds_py-0.21.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d4312dd40abc26fc0fc037b86006583276dc375d38ac821d4ca2394274e8045b",
                "md5": "f47a0a5d2086172e2c57c8df63f244da",
                "sha256": "b80b4690bbff51a034bfde9c9f6bf9357f0a8c61f548942b80f7b66356508bf5"
            },
            "downloads": -1,
            "filename": "rpds_py-0.21.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f47a0a5d2086172e2c57c8df63f244da",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 360795,
            "upload_time": "2024-11-06T13:57:51",
            "upload_time_iso_8601": "2024-11-06T13:57:51.828182Z",
            "url": "https://files.pythonhosted.org/packages/d4/31/2dd40abc26fc0fc037b86006583276dc375d38ac821d4ca2394274e8045b/rpds_py-0.21.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9d2a665b9ebef76f54764f1437ac03373a95a69480b7ce56c480360f88730cae",
                "md5": "14de8a6571ae09ff3ec9d8cc754b41f7",
                "sha256": "085ed25baac88953d4283e5b5bd094b155075bb40d07c29c4f073e10623f9f2e"
            },
            "downloads": -1,
            "filename": "rpds_py-0.21.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "14de8a6571ae09ff3ec9d8cc754b41f7",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 382663,
            "upload_time": "2024-11-06T13:57:53",
            "upload_time_iso_8601": "2024-11-06T13:57:53.310706Z",
            "url": "https://files.pythonhosted.org/packages/9d/2a/665b9ebef76f54764f1437ac03373a95a69480b7ce56c480360f88730cae/rpds_py-0.21.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e88ce056f0c887d29baa256f8c8d7f7079a72d80395c35c14219de45ab19dce2",
                "md5": "dee803a21670eff2cba9780fa821eb58",
                "sha256": "daa8efac2a1273eed2354397a51216ae1e198ecbce9036fba4e7610b308b6153"
            },
            "downloads": -1,
            "filename": "rpds_py-0.21.0-cp310-cp310-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "dee803a21670eff2cba9780fa821eb58",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 546477,
            "upload_time": "2024-11-06T13:57:54",
            "upload_time_iso_8601": "2024-11-06T13:57:54.570890Z",
            "url": "https://files.pythonhosted.org/packages/e8/8c/e056f0c887d29baa256f8c8d7f7079a72d80395c35c14219de45ab19dce2/rpds_py-0.21.0-cp310-cp310-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3311588568f6c2ed5c9d6d121c188c71ca0f76e0e369a6d66f835737189e5a75",
                "md5": "83d6559f6ec5b1b4aee77ae9b7a205c3",
                "sha256": "95a5bad1ac8a5c77b4e658671642e4af3707f095d2b78a1fdd08af0dfb647624"
            },
            "downloads": -1,
            "filename": "rpds_py-0.21.0-cp310-cp310-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "83d6559f6ec5b1b4aee77ae9b7a205c3",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 549477,
            "upload_time": "2024-11-06T13:57:56",
            "upload_time_iso_8601": "2024-11-06T13:57:56.175912Z",
            "url": "https://files.pythonhosted.org/packages/33/11/588568f6c2ed5c9d6d121c188c71ca0f76e0e369a6d66f835737189e5a75/rpds_py-0.21.0-cp310-cp310-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1586c1401e2f70fbdf963c2ac9157994ebeb00c101ddf87975a90507f27cb2f4",
                "md5": "5c38422a46cf2af28aa425c8d6092475",
                "sha256": "3e53861b29a13d5b70116ea4230b5f0f3547b2c222c5daa090eb7c9c82d7f664"
            },
            "downloads": -1,
            "filename": "rpds_py-0.21.0-cp310-cp310-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5c38422a46cf2af28aa425c8d6092475",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 527966,
            "upload_time": "2024-11-06T13:57:58",
            "upload_time_iso_8601": "2024-11-06T13:57:58.532006Z",
            "url": "https://files.pythonhosted.org/packages/15/86/c1401e2f70fbdf963c2ac9157994ebeb00c101ddf87975a90507f27cb2f4/rpds_py-0.21.0-cp310-cp310-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "66f2452420f1493112825e975c87b3b4fd8b334e0e228cdb641597a92e0c3267",
                "md5": "e589a914dd3be8cd96dbfb09aa69b866",
                "sha256": "ea3a6ac4d74820c98fcc9da4a57847ad2cc36475a8bd9683f32ab6d47a2bd682"
            },
            "downloads": -1,
            "filename": "rpds_py-0.21.0-cp310-none-win32.whl",
            "has_sig": false,
            "md5_digest": "e589a914dd3be8cd96dbfb09aa69b866",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 200978,
            "upload_time": "2024-11-06T13:57:59",
            "upload_time_iso_8601": "2024-11-06T13:57:59.770111Z",
            "url": "https://files.pythonhosted.org/packages/66/f2/452420f1493112825e975c87b3b4fd8b334e0e228cdb641597a92e0c3267/rpds_py-0.21.0-cp310-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "354c674b2e2d75607acdbc7a162ace36dcaad225c9e760cef5defa5c0f5ddd2d",
                "md5": "a9db0630fad218feda2c006c5d78beaf",
                "sha256": "b8f107395f2f1d151181880b69a2869c69e87ec079c49c0016ab96860b6acbe5"
            },
            "downloads": -1,
            "filename": "rpds_py-0.21.0-cp310-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "a9db0630fad218feda2c006c5d78beaf",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 218549,
            "upload_time": "2024-11-06T13:58:01",
            "upload_time_iso_8601": "2024-11-06T13:58:01.065172Z",
            "url": "https://files.pythonhosted.org/packages/35/4c/674b2e2d75607acdbc7a162ace36dcaad225c9e760cef5defa5c0f5ddd2d/rpds_py-0.21.0-cp310-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8061615929ea79f5fd0b3aca000411a33bcc1753607ccc1af0ce7b05b56e6e56",
                "md5": "f0dc401865241a52b42f56817f5433ce",
                "sha256": "5555db3e618a77034954b9dc547eae94166391a98eb867905ec8fcbce1308d95"
            },
            "downloads": -1,
            "filename": "rpds_py-0.21.0-cp311-cp311-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f0dc401865241a52b42f56817f5433ce",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 327267,
            "upload_time": "2024-11-06T13:58:02",
            "upload_time_iso_8601": "2024-11-06T13:58:02.353146Z",
            "url": "https://files.pythonhosted.org/packages/80/61/615929ea79f5fd0b3aca000411a33bcc1753607ccc1af0ce7b05b56e6e56/rpds_py-0.21.0-cp311-cp311-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a5f528e89dda55b731d78cbfea284dc9789d265a8a06523f0adf60e9b05cade7",
                "md5": "2242947facc491f8d3f8aa5a52caa02f",
                "sha256": "97ef67d9bbc3e15584c2f3c74bcf064af36336c10d2e21a2131e123ce0f924c9"
            },
            "downloads": -1,
            "filename": "rpds_py-0.21.0-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "2242947facc491f8d3f8aa5a52caa02f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 318227,
            "upload_time": "2024-11-06T13:58:04",
            "upload_time_iso_8601": "2024-11-06T13:58:04.309041Z",
            "url": "https://files.pythonhosted.org/packages/a5/f5/28e89dda55b731d78cbfea284dc9789d265a8a06523f0adf60e9b05cade7/rpds_py-0.21.0-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e4efeb90feb3e384543c48e2f867551075c43a429aa4c9a44e9c4bd71f4f786b",
                "md5": "65d539cc52736b617190a64022b880f0",
                "sha256": "4ab2c2a26d2f69cdf833174f4d9d86118edc781ad9a8fa13970b527bf8236027"
            },
            "downloads": -1,
            "filename": "rpds_py-0.21.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "65d539cc52736b617190a64022b880f0",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 361235,
            "upload_time": "2024-11-06T13:58:05",
            "upload_time_iso_8601": "2024-11-06T13:58:05.942759Z",
            "url": "https://files.pythonhosted.org/packages/e4/ef/eb90feb3e384543c48e2f867551075c43a429aa4c9a44e9c4bd71f4f786b/rpds_py-0.21.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ede78ea2d3d3398266c5c8ddd957d86003493b6d14f8f158b726dd09c8f43dee",
                "md5": "f141e6bb9cf47016e8a67a74d6df8cb3",
                "sha256": "4e8921a259f54bfbc755c5bbd60c82bb2339ae0324163f32868f63f0ebb873d9"
            },
            "downloads": -1,
            "filename": "rpds_py-0.21.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "f141e6bb9cf47016e8a67a74d6df8cb3",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 369467,
            "upload_time": "2024-11-06T13:58:07",
            "upload_time_iso_8601": "2024-11-06T13:58:07.856109Z",
            "url": "https://files.pythonhosted.org/packages/ed/e7/8ea2d3d3398266c5c8ddd957d86003493b6d14f8f158b726dd09c8f43dee/rpds_py-0.21.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5125a286abda9da7820c971a0b1abcf1d31fb81c44a1088a128ad26c77206622",
                "md5": "5a60bf33142cca8f9586175cfef5480c",
                "sha256": "8a7ff941004d74d55a47f916afc38494bd1cfd4b53c482b77c03147c91ac0ac3"
            },
            "downloads": -1,
            "filename": "rpds_py-0.21.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "5a60bf33142cca8f9586175cfef5480c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 403482,
            "upload_time": "2024-11-06T13:58:10",
            "upload_time_iso_8601": "2024-11-06T13:58:10.068312Z",
            "url": "https://files.pythonhosted.org/packages/51/25/a286abda9da7820c971a0b1abcf1d31fb81c44a1088a128ad26c77206622/rpds_py-0.21.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7a1e9c3c0463fe142456dcd9e9be0ffd15b66a77adfcdf3ecf94fa2b12d95fcb",
                "md5": "3554870afd896133f4b2ea77f7c339af",
                "sha256": "5145282a7cd2ac16ea0dc46b82167754d5e103a05614b724457cffe614f25bd8"
            },
            "downloads": -1,
            "filename": "rpds_py-0.21.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "3554870afd896133f4b2ea77f7c339af",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 429943,
            "upload_time": "2024-11-06T13:58:11",
            "upload_time_iso_8601": "2024-11-06T13:58:11.814360Z",
            "url": "https://files.pythonhosted.org/packages/7a/1e/9c3c0463fe142456dcd9e9be0ffd15b66a77adfcdf3ecf94fa2b12d95fcb/rpds_py-0.21.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e1fdf1fd7e77fef8e5a442ce7fd80ba957730877515fe18d7195f646408a60ce",
                "md5": "8bd50188f834bf19102868382e4b947e",
                "sha256": "de609a6f1b682f70bb7163da745ee815d8f230d97276db049ab447767466a09d"
            },
            "downloads": -1,
            "filename": "rpds_py-0.21.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8bd50188f834bf19102868382e4b947e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 360437,
            "upload_time": "2024-11-06T13:58:13",
            "upload_time_iso_8601": "2024-11-06T13:58:13.147782Z",
            "url": "https://files.pythonhosted.org/packages/e1/fd/f1fd7e77fef8e5a442ce7fd80ba957730877515fe18d7195f646408a60ce/rpds_py-0.21.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5583347932db075847f4f8172c3b53ad70fe725edd9058f0d4098080ad45e3bc",
                "md5": "21dbd1edff79118c47c40e5fc93fa85b",
                "sha256": "40c91c6e34cf016fa8e6b59d75e3dbe354830777fcfd74c58b279dceb7975b75"
            },
            "downloads": -1,
            "filename": "rpds_py-0.21.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "21dbd1edff79118c47c40e5fc93fa85b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 382400,
            "upload_time": "2024-11-06T13:58:14",
            "upload_time_iso_8601": "2024-11-06T13:58:14.883109Z",
            "url": "https://files.pythonhosted.org/packages/55/83/347932db075847f4f8172c3b53ad70fe725edd9058f0d4098080ad45e3bc/rpds_py-0.21.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "229b2a6eeab4e6752adba751cfee19bdf35d11e1073509f74883cbf14d42d682",
                "md5": "6bb524405004fe760587665968f0fc03",
                "sha256": "d2132377f9deef0c4db89e65e8bb28644ff75a18df5293e132a8d67748397b9f"
            },
            "downloads": -1,
            "filename": "rpds_py-0.21.0-cp311-cp311-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "6bb524405004fe760587665968f0fc03",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 546560,
            "upload_time": "2024-11-06T13:58:16",
            "upload_time_iso_8601": "2024-11-06T13:58:16.708759Z",
            "url": "https://files.pythonhosted.org/packages/22/9b/2a6eeab4e6752adba751cfee19bdf35d11e1073509f74883cbf14d42d682/rpds_py-0.21.0-cp311-cp311-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3c196e51a141fe6f017d07b7d899b10a4af9e0f268deffacc1107d70fcd9257b",
                "md5": "a7eb3ce01ca044f42bdfbfdab214b578",
                "sha256": "0a9e0759e7be10109645a9fddaaad0619d58c9bf30a3f248a2ea57a7c417173a"
            },
            "downloads": -1,
            "filename": "rpds_py-0.21.0-cp311-cp311-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "a7eb3ce01ca044f42bdfbfdab214b578",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 549334,
            "upload_time": "2024-11-06T13:58:18",
            "upload_time_iso_8601": "2024-11-06T13:58:18.450103Z",
            "url": "https://files.pythonhosted.org/packages/3c/19/6e51a141fe6f017d07b7d899b10a4af9e0f268deffacc1107d70fcd9257b/rpds_py-0.21.0-cp311-cp311-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cf404ae09a07e4531278e6bee41ef3e4f166c23468135afc2c6c98917bfc28e6",
                "md5": "5c68888a42110db3789eece6ed63095c",
                "sha256": "9e20da3957bdf7824afdd4b6eeb29510e83e026473e04952dca565170cd1ecc8"
            },
            "downloads": -1,
            "filename": "rpds_py-0.21.0-cp311-cp311-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5c68888a42110db3789eece6ed63095c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 527855,
            "upload_time": "2024-11-06T13:58:20",
            "upload_time_iso_8601": "2024-11-06T13:58:20.271958Z",
            "url": "https://files.pythonhosted.org/packages/cf/40/4ae09a07e4531278e6bee41ef3e4f166c23468135afc2c6c98917bfc28e6/rpds_py-0.21.0-cp311-cp311-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "eb452135be31543677687a426117c56d8b33e8b581bc4a8b7abfa53721012162",
                "md5": "05be1e30745f5d67d49bfc6b389dd6de",
                "sha256": "f71009b0d5e94c0e86533c0b27ed7cacc1239cb51c178fd239c3cfefefb0400a"
            },
            "downloads": -1,
            "filename": "rpds_py-0.21.0-cp311-none-win32.whl",
            "has_sig": false,
            "md5_digest": "05be1e30745f5d67d49bfc6b389dd6de",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 200968,
            "upload_time": "2024-11-06T13:58:21",
            "upload_time_iso_8601": "2024-11-06T13:58:21.699578Z",
            "url": "https://files.pythonhosted.org/packages/eb/45/2135be31543677687a426117c56d8b33e8b581bc4a8b7abfa53721012162/rpds_py-0.21.0-cp311-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "68fae66c3aaf13ef91c203ba47c102cd7c5dca92dde8837e5093577968d6d36d",
                "md5": "51c4bf580139b26205deef86aafe5d87",
                "sha256": "e168afe6bf6ab7ab46c8c375606298784ecbe3ba31c0980b7dcbb9631dcba97e"
            },
            "downloads": -1,
            "filename": "rpds_py-0.21.0-cp311-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "51c4bf580139b26205deef86aafe5d87",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 218502,
            "upload_time": "2024-11-06T13:58:22",
            "upload_time_iso_8601": "2024-11-06T13:58:22.875938Z",
            "url": "https://files.pythonhosted.org/packages/68/fa/e66c3aaf13ef91c203ba47c102cd7c5dca92dde8837e5093577968d6d36d/rpds_py-0.21.0-cp311-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d95a3aa6f5d8bacbe4f55ebf9a3c9628dad40cdb57f845124cf13c78895ea156",
                "md5": "e4bf0363ec2b52c2182064ebfbf02f57",
                "sha256": "30b912c965b2aa76ba5168fd610087bad7fcde47f0a8367ee8f1876086ee6d1d"
            },
            "downloads": -1,
            "filename": "rpds_py-0.21.0-cp312-cp312-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e4bf0363ec2b52c2182064ebfbf02f57",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 329516,
            "upload_time": "2024-11-06T13:58:24",
            "upload_time_iso_8601": "2024-11-06T13:58:24.602176Z",
            "url": "https://files.pythonhosted.org/packages/d9/5a/3aa6f5d8bacbe4f55ebf9a3c9628dad40cdb57f845124cf13c78895ea156/rpds_py-0.21.0-cp312-cp312-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "dfc067c8c8ac850c6e3681e356a59d46315bf73bc77cb50c9a32db8ae44325b7",
                "md5": "32028da202975170152dcd5ddb1af3d1",
                "sha256": "ca9989d5d9b1b300bc18e1801c67b9f6d2c66b8fd9621b36072ed1df2c977f72"
            },
            "downloads": -1,
            "filename": "rpds_py-0.21.0-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "32028da202975170152dcd5ddb1af3d1",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 321245,
            "upload_time": "2024-11-06T13:58:25",
            "upload_time_iso_8601": "2024-11-06T13:58:25.940079Z",
            "url": "https://files.pythonhosted.org/packages/df/c0/67c8c8ac850c6e3681e356a59d46315bf73bc77cb50c9a32db8ae44325b7/rpds_py-0.21.0-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6483bf31341f21fa594035891ff04a497dc86b210cc1a903a9cc01b097cc614f",
                "md5": "73053cf23353b71f30f706df7e95595b",
                "sha256": "6f54e7106f0001244a5f4cf810ba8d3f9c542e2730821b16e969d6887b664266"
            },
            "downloads": -1,
            "filename": "rpds_py-0.21.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "73053cf23353b71f30f706df7e95595b",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 363951,
            "upload_time": "2024-11-06T13:58:27",
            "upload_time_iso_8601": "2024-11-06T13:58:27.269222Z",
            "url": "https://files.pythonhosted.org/packages/64/83/bf31341f21fa594035891ff04a497dc86b210cc1a903a9cc01b097cc614f/rpds_py-0.21.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a2e18218bba36737621262df316fbb729639af25ff611cc07bfeaadc1bfa6292",
                "md5": "79ec2b923511b8cdda4e7e8675779add",
                "sha256": "fed5dfefdf384d6fe975cc026886aece4f292feaf69d0eeb716cfd3c5a4dd8be"
            },
            "downloads": -1,
            "filename": "rpds_py-0.21.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "79ec2b923511b8cdda4e7e8675779add",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 373113,
            "upload_time": "2024-11-06T13:58:28",
            "upload_time_iso_8601": "2024-11-06T13:58:28.552424Z",
            "url": "https://files.pythonhosted.org/packages/a2/e1/8218bba36737621262df316fbb729639af25ff611cc07bfeaadc1bfa6292/rpds_py-0.21.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "398d4afcd688e3ad33ec273900f42e6a41e9bd9f43cfc509b6d498683d2d0338",
                "md5": "ffe65329d38c7fc3ec1b589a3822c5cb",
                "sha256": "590ef88db231c9c1eece44dcfefd7515d8bf0d986d64d0caf06a81998a9e8cab"
            },
            "downloads": -1,
            "filename": "rpds_py-0.21.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "ffe65329d38c7fc3ec1b589a3822c5cb",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 405944,
            "upload_time": "2024-11-06T13:58:29",
            "upload_time_iso_8601": "2024-11-06T13:58:29.837260Z",
            "url": "https://files.pythonhosted.org/packages/39/8d/4afcd688e3ad33ec273900f42e6a41e9bd9f43cfc509b6d498683d2d0338/rpds_py-0.21.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fa653326efa721b6ecd70262aab69a26c9bc19398cdb0a2a416ef30b58326460",
                "md5": "fa8e3a2945a3795e5d1c7fead4365153",
                "sha256": "f983e4c2f603c95dde63df633eec42955508eefd8d0f0e6d236d31a044c882d7"
            },
            "downloads": -1,
            "filename": "rpds_py-0.21.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "fa8e3a2945a3795e5d1c7fead4365153",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 422874,
            "upload_time": "2024-11-06T13:58:31",
            "upload_time_iso_8601": "2024-11-06T13:58:31.225439Z",
            "url": "https://files.pythonhosted.org/packages/fa/65/3326efa721b6ecd70262aab69a26c9bc19398cdb0a2a416ef30b58326460/rpds_py-0.21.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "31fb48a647d0afab74289dd21a4128002d58684c22600a22c4bfb76cb9e3bfb0",
                "md5": "f570d2db9606e72b1beffd99712b8153",
                "sha256": "b229ce052ddf1a01c67d68166c19cb004fb3612424921b81c46e7ea7ccf7c3bf"
            },
            "downloads": -1,
            "filename": "rpds_py-0.21.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f570d2db9606e72b1beffd99712b8153",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 364227,
            "upload_time": "2024-11-06T13:58:32",
            "upload_time_iso_8601": "2024-11-06T13:58:32.560413Z",
            "url": "https://files.pythonhosted.org/packages/31/fb/48a647d0afab74289dd21a4128002d58684c22600a22c4bfb76cb9e3bfb0/rpds_py-0.21.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f1b01cdd179d7382dd52d65b1fd19c54d090b6bd0688dfbe259bb5ab7548c359",
                "md5": "193a6d4ff5b97f8677096daa79453ba1",
                "sha256": "ebf64e281a06c904a7636781d2e973d1f0926a5b8b480ac658dc0f556e7779f4"
            },
            "downloads": -1,
            "filename": "rpds_py-0.21.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "193a6d4ff5b97f8677096daa79453ba1",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 386447,
            "upload_time": "2024-11-06T13:58:33",
            "upload_time_iso_8601": "2024-11-06T13:58:33.997532Z",
            "url": "https://files.pythonhosted.org/packages/f1/b0/1cdd179d7382dd52d65b1fd19c54d090b6bd0688dfbe259bb5ab7548c359/rpds_py-0.21.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "dc4184ace07f31aac3a96b73a374d89106cf252f7d3274e7cae85d17a27c602d",
                "md5": "05aad2e41ac060c319c4427deff78eae",
                "sha256": "998a8080c4495e4f72132f3d66ff91f5997d799e86cec6ee05342f8f3cda7dca"
            },
            "downloads": -1,
            "filename": "rpds_py-0.21.0-cp312-cp312-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "05aad2e41ac060c319c4427deff78eae",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 549386,
            "upload_time": "2024-11-06T13:58:43",
            "upload_time_iso_8601": "2024-11-06T13:58:43.716087Z",
            "url": "https://files.pythonhosted.org/packages/dc/41/84ace07f31aac3a96b73a374d89106cf252f7d3274e7cae85d17a27c602d/rpds_py-0.21.0-cp312-cp312-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "33cebf51bc5a3aa539171ea8c7737ab5ac06cef54c79b6b2a0511afc41533c89",
                "md5": "e9b0894c78e9f167c793c692df011c85",
                "sha256": "98486337f7b4f3c324ab402e83453e25bb844f44418c066623db88e4c56b7c7b"
            },
            "downloads": -1,
            "filename": "rpds_py-0.21.0-cp312-cp312-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "e9b0894c78e9f167c793c692df011c85",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 554777,
            "upload_time": "2024-11-06T13:58:45",
            "upload_time_iso_8601": "2024-11-06T13:58:45.402987Z",
            "url": "https://files.pythonhosted.org/packages/33/ce/bf51bc5a3aa539171ea8c7737ab5ac06cef54c79b6b2a0511afc41533c89/rpds_py-0.21.0-cp312-cp312-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "76b1950568e55a94c2979c2b61ec24e76e648a525fbc7551ccfc1f2841e39d44",
                "md5": "46cec538ff7ff9f7d79d987be0866963",
                "sha256": "a78d8b634c9df7f8d175451cfeac3810a702ccb85f98ec95797fa98b942cea11"
            },
            "downloads": -1,
            "filename": "rpds_py-0.21.0-cp312-cp312-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "46cec538ff7ff9f7d79d987be0866963",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 530918,
            "upload_time": "2024-11-06T13:58:49",
            "upload_time_iso_8601": "2024-11-06T13:58:49.099444Z",
            "url": "https://files.pythonhosted.org/packages/76/b1/950568e55a94c2979c2b61ec24e76e648a525fbc7551ccfc1f2841e39d44/rpds_py-0.21.0-cp312-cp312-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "788493f00e3613426c8a7a9ca16782d2828f2ac55296dd5c6b599379d9f59ee2",
                "md5": "2bd206be15ef311d022b7a599bda6e32",
                "sha256": "a58ce66847711c4aa2ecfcfaff04cb0327f907fead8945ffc47d9407f41ff952"
            },
            "downloads": -1,
            "filename": "rpds_py-0.21.0-cp312-none-win32.whl",
            "has_sig": false,
            "md5_digest": "2bd206be15ef311d022b7a599bda6e32",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 203112,
            "upload_time": "2024-11-06T13:58:53",
            "upload_time_iso_8601": "2024-11-06T13:58:53.165596Z",
            "url": "https://files.pythonhosted.org/packages/78/84/93f00e3613426c8a7a9ca16782d2828f2ac55296dd5c6b599379d9f59ee2/rpds_py-0.21.0-cp312-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e6087a186847dd78881a781d2be9b42c8e49c3261c0f4a6d0289ba9a1e4cde71",
                "md5": "4e8377563981c1dd70d2e72a08cf316b",
                "sha256": "e860f065cc4ea6f256d6f411aba4b1251255366e48e972f8a347cf88077b24fd"
            },
            "downloads": -1,
            "filename": "rpds_py-0.21.0-cp312-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "4e8377563981c1dd70d2e72a08cf316b",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 220735,
            "upload_time": "2024-11-06T13:58:54",
            "upload_time_iso_8601": "2024-11-06T13:58:54.470515Z",
            "url": "https://files.pythonhosted.org/packages/e6/08/7a186847dd78881a781d2be9b42c8e49c3261c0f4a6d0289ba9a1e4cde71/rpds_py-0.21.0-cp312-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "323ae69ec108eefb9b1f19ee00dde7a800b485942e62b123f01d9156a6d8569c",
                "md5": "10c48d0464ec0b707edf9c8742486350",
                "sha256": "ee4eafd77cc98d355a0d02f263efc0d3ae3ce4a7c24740010a8b4012bbb24937"
            },
            "downloads": -1,
            "filename": "rpds_py-0.21.0-cp313-cp313-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "10c48d0464ec0b707edf9c8742486350",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 329206,
            "upload_time": "2024-11-06T13:58:55",
            "upload_time_iso_8601": "2024-11-06T13:58:55.868798Z",
            "url": "https://files.pythonhosted.org/packages/32/3a/e69ec108eefb9b1f19ee00dde7a800b485942e62b123f01d9156a6d8569c/rpds_py-0.21.0-cp313-cp313-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f6c0fa689498fa3415565306398c8d2a596207c2a13d3cc03724f32514bddfbc",
                "md5": "9d11da60e75a842e10ed4840df1f31ff",
                "sha256": "688c93b77e468d72579351a84b95f976bd7b3e84aa6686be6497045ba84be560"
            },
            "downloads": -1,
            "filename": "rpds_py-0.21.0-cp313-cp313-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "9d11da60e75a842e10ed4840df1f31ff",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 320245,
            "upload_time": "2024-11-06T13:58:58",
            "upload_time_iso_8601": "2024-11-06T13:58:58.081573Z",
            "url": "https://files.pythonhosted.org/packages/f6/c0/fa689498fa3415565306398c8d2a596207c2a13d3cc03724f32514bddfbc/rpds_py-0.21.0-cp313-cp313-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "68d0466b61007005f1b2fd8501f23e4bdee4d71c7381b61358750920d1882ac9",
                "md5": "ecbc5e215ee72758defcd67c4ec8b6b7",
                "sha256": "c38dbf31c57032667dd5a2f0568ccde66e868e8f78d5a0d27dcc56d70f3fcd3b"
            },
            "downloads": -1,
            "filename": "rpds_py-0.21.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "ecbc5e215ee72758defcd67c4ec8b6b7",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 363585,
            "upload_time": "2024-11-06T13:58:59",
            "upload_time_iso_8601": "2024-11-06T13:58:59.951732Z",
            "url": "https://files.pythonhosted.org/packages/68/d0/466b61007005f1b2fd8501f23e4bdee4d71c7381b61358750920d1882ac9/rpds_py-0.21.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1ee2787ea3a0f4b197893c62c254e6f14929c40bbcff86922928ac4eafaa8edf",
                "md5": "7081ed4409a5d86c4743384955cb153f",
                "sha256": "2d6129137f43f7fa02d41542ffff4871d4aefa724a5fe38e2c31a4e0fd343fb0"
            },
            "downloads": -1,
            "filename": "rpds_py-0.21.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "7081ed4409a5d86c4743384955cb153f",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 372302,
            "upload_time": "2024-11-06T13:59:02",
            "upload_time_iso_8601": "2024-11-06T13:59:02.229733Z",
            "url": "https://files.pythonhosted.org/packages/1e/e2/787ea3a0f4b197893c62c254e6f14929c40bbcff86922928ac4eafaa8edf/rpds_py-0.21.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b5ef99f2cfe6aa128c21f1b30c66ecd348cbd59792953ca35eeb6efa38b88aa1",
                "md5": "22d86376e64259ccb3a7ef7edb55f31b",
                "sha256": "520ed8b99b0bf86a176271f6fe23024323862ac674b1ce5b02a72bfeff3fff44"
            },
            "downloads": -1,
            "filename": "rpds_py-0.21.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "22d86376e64259ccb3a7ef7edb55f31b",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 405344,
            "upload_time": "2024-11-06T13:59:04",
            "upload_time_iso_8601": "2024-11-06T13:59:04.367409Z",
            "url": "https://files.pythonhosted.org/packages/b5/ef/99f2cfe6aa128c21f1b30c66ecd348cbd59792953ca35eeb6efa38b88aa1/rpds_py-0.21.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "303c9d12d0b76ecfe80a7ba4770459828dda495d72b18cafd6dfd54c67b2e282",
                "md5": "8b5a9e83c4e2d438a7e51ca0c0922cba",
                "sha256": "aaeb25ccfb9b9014a10eaf70904ebf3f79faaa8e60e99e19eef9f478651b9b74"
            },
            "downloads": -1,
            "filename": "rpds_py-0.21.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "8b5a9e83c4e2d438a7e51ca0c0922cba",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 422322,
            "upload_time": "2024-11-06T13:59:05",
            "upload_time_iso_8601": "2024-11-06T13:59:05.769480Z",
            "url": "https://files.pythonhosted.org/packages/30/3c/9d12d0b76ecfe80a7ba4770459828dda495d72b18cafd6dfd54c67b2e282/rpds_py-0.21.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f922387aec1cd6e124adbc3b1f40c4e4152c3963ae47d78d3ca650102ea72c4f",
                "md5": "fd72855e37fe39f4d3e698e86e3051bf",
                "sha256": "af04ac89c738e0f0f1b913918024c3eab6e3ace989518ea838807177d38a2e94"
            },
            "downloads": -1,
            "filename": "rpds_py-0.21.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fd72855e37fe39f4d3e698e86e3051bf",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 363739,
            "upload_time": "2024-11-06T13:59:07",
            "upload_time_iso_8601": "2024-11-06T13:59:07.127925Z",
            "url": "https://files.pythonhosted.org/packages/f9/22/387aec1cd6e124adbc3b1f40c4e4152c3963ae47d78d3ca650102ea72c4f/rpds_py-0.21.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d13e0ad65b776db13d13f002ab363fe3821cd1adec500d8e05e0a81047a75f9d",
                "md5": "cf1e87d68fa5d66db6699f49f90f4421",
                "sha256": "b9b76e2afd585803c53c5b29e992ecd183f68285b62fe2668383a18e74abe7a3"
            },
            "downloads": -1,
            "filename": "rpds_py-0.21.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "cf1e87d68fa5d66db6699f49f90f4421",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 386579,
            "upload_time": "2024-11-06T13:59:08",
            "upload_time_iso_8601": "2024-11-06T13:59:08.544126Z",
            "url": "https://files.pythonhosted.org/packages/d1/3e/0ad65b776db13d13f002ab363fe3821cd1adec500d8e05e0a81047a75f9d/rpds_py-0.21.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4f3bc68c1067b24a7df47edcc0325a825908601aba399e2d372a156edc631ad1",
                "md5": "35b08db67ca7e4ec0f4e237f3362d45d",
                "sha256": "5afb5efde74c54724e1a01118c6e5c15e54e642c42a1ba588ab1f03544ac8c7a"
            },
            "downloads": -1,
            "filename": "rpds_py-0.21.0-cp313-cp313-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "35b08db67ca7e4ec0f4e237f3362d45d",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 548924,
            "upload_time": "2024-11-06T13:59:10",
            "upload_time_iso_8601": "2024-11-06T13:59:10.520570Z",
            "url": "https://files.pythonhosted.org/packages/4f/3b/c68c1067b24a7df47edcc0325a825908601aba399e2d372a156edc631ad1/rpds_py-0.21.0-cp313-cp313-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ab1c35f1a5cce4bca71c49664f00140010a96b126e5f443ebaf6db741c25b9b7",
                "md5": "54bcaf9c4d25bbdd68c88ca32a7f28d4",
                "sha256": "52c041802a6efa625ea18027a0723676a778869481d16803481ef6cc02ea8cb3"
            },
            "downloads": -1,
            "filename": "rpds_py-0.21.0-cp313-cp313-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "54bcaf9c4d25bbdd68c88ca32a7f28d4",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 554217,
            "upload_time": "2024-11-06T13:59:12",
            "upload_time_iso_8601": "2024-11-06T13:59:12.023381Z",
            "url": "https://files.pythonhosted.org/packages/ab/1c/35f1a5cce4bca71c49664f00140010a96b126e5f443ebaf6db741c25b9b7/rpds_py-0.21.0-cp313-cp313-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c8d048154c152f9adb8304b21d867d28e79be3b352633fb195c03c7107a4da9a",
                "md5": "2b86bafc1bba1f5d68522614b2c49d19",
                "sha256": "ee1e4fc267b437bb89990b2f2abf6c25765b89b72dd4a11e21934df449e0c976"
            },
            "downloads": -1,
            "filename": "rpds_py-0.21.0-cp313-cp313-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2b86bafc1bba1f5d68522614b2c49d19",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 530540,
            "upload_time": "2024-11-06T13:59:13",
            "upload_time_iso_8601": "2024-11-06T13:59:13.919492Z",
            "url": "https://files.pythonhosted.org/packages/c8/d0/48154c152f9adb8304b21d867d28e79be3b352633fb195c03c7107a4da9a/rpds_py-0.21.0-cp313-cp313-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "50e878847f4e112e99fd5b7bc30fea3e4a44c20b811473d6755f944c5bf0aec7",
                "md5": "4175eb750c5f9cbe297057c8bbda37b8",
                "sha256": "0c025820b78817db6a76413fff6866790786c38f95ea3f3d3c93dbb73b632202"
            },
            "downloads": -1,
            "filename": "rpds_py-0.21.0-cp313-none-win32.whl",
            "has_sig": false,
            "md5_digest": "4175eb750c5f9cbe297057c8bbda37b8",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 202604,
            "upload_time": "2024-11-06T13:59:15",
            "upload_time_iso_8601": "2024-11-06T13:59:15.518277Z",
            "url": "https://files.pythonhosted.org/packages/50/e8/78847f4e112e99fd5b7bc30fea3e4a44c20b811473d6755f944c5bf0aec7/rpds_py-0.21.0-cp313-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6031083e6337775e133fb0217ed0ab0752380efa6e5112f2250d592d4135a228",
                "md5": "45e7eaceba61446cd6b8d0984bf34def",
                "sha256": "320c808df533695326610a1b6a0a6e98f033e49de55d7dc36a13c8a30cfa756e"
            },
            "downloads": -1,
            "filename": "rpds_py-0.21.0-cp313-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "45e7eaceba61446cd6b8d0984bf34def",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 220448,
            "upload_time": "2024-11-06T13:59:17",
            "upload_time_iso_8601": "2024-11-06T13:59:17.214555Z",
            "url": "https://files.pythonhosted.org/packages/60/31/083e6337775e133fb0217ed0ab0752380efa6e5112f2250d592d4135a228/rpds_py-0.21.0-cp313-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6ce0ab30b78170a198fe12c47c2f04c12374d3a424d506c6fe813c62434c6a5a",
                "md5": "15ff9250bb1b7dbce81566b050335842",
                "sha256": "2c51d99c30091f72a3c5d126fad26236c3f75716b8b5e5cf8effb18889ced928"
            },
            "downloads": -1,
            "filename": "rpds_py-0.21.0-cp39-cp39-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "15ff9250bb1b7dbce81566b050335842",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 327774,
            "upload_time": "2024-11-06T13:59:18",
            "upload_time_iso_8601": "2024-11-06T13:59:18.670866Z",
            "url": "https://files.pythonhosted.org/packages/6c/e0/ab30b78170a198fe12c47c2f04c12374d3a424d506c6fe813c62434c6a5a/rpds_py-0.21.0-cp39-cp39-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e87c8cbd90d5726894dab069bbba7813864d163cdbbfcd5bf60a12504d061788",
                "md5": "5ebc79669ddc8f17a31b1ad5f9f9902c",
                "sha256": "cbd7504a10b0955ea287114f003b7ad62330c9e65ba012c6223dba646f6ffd05"
            },
            "downloads": -1,
            "filename": "rpds_py-0.21.0-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "5ebc79669ddc8f17a31b1ad5f9f9902c",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 318715,
            "upload_time": "2024-11-06T13:59:20",
            "upload_time_iso_8601": "2024-11-06T13:59:20.967446Z",
            "url": "https://files.pythonhosted.org/packages/e8/7c/8cbd90d5726894dab069bbba7813864d163cdbbfcd5bf60a12504d061788/rpds_py-0.21.0-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "95507bf8688a91f09a214b847cb3a47007f87577e67c40354d1643adb7ec27e9",
                "md5": "8c4dba9d7e58306c240b7e992b7973ee",
                "sha256": "6dcc4949be728ede49e6244eabd04064336012b37f5c2200e8ec8eb2988b209c"
            },
            "downloads": -1,
            "filename": "rpds_py-0.21.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "8c4dba9d7e58306c240b7e992b7973ee",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 361901,
            "upload_time": "2024-11-06T13:59:22",
            "upload_time_iso_8601": "2024-11-06T13:59:22.391530Z",
            "url": "https://files.pythonhosted.org/packages/95/50/7bf8688a91f09a214b847cb3a47007f87577e67c40354d1643adb7ec27e9/rpds_py-0.21.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0af90be0f9f58d8d06b3e7c921ce5ca68774eb4d67c691ee21c60d1eeedaf6a7",
                "md5": "de53ec7481ad7a43e45dd71e9a46b92d",
                "sha256": "f414da5c51bf350e4b7960644617c130140423882305f7574b6cf65a3081cecb"
            },
            "downloads": -1,
            "filename": "rpds_py-0.21.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "de53ec7481ad7a43e45dd71e9a46b92d",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 370187,
            "upload_time": "2024-11-06T13:59:25",
            "upload_time_iso_8601": "2024-11-06T13:59:25.764266Z",
            "url": "https://files.pythonhosted.org/packages/0a/f9/0be0f9f58d8d06b3e7c921ce5ca68774eb4d67c691ee21c60d1eeedaf6a7/rpds_py-0.21.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "adb1cccfbcd85cfa7537427384f636708867b29c3b438a5d60d579dd022374d1",
                "md5": "7fcd3b6725c870f1215179658270ba79",
                "sha256": "9afe42102b40007f588666bc7de82451e10c6788f6f70984629db193849dced1"
            },
            "downloads": -1,
            "filename": "rpds_py-0.21.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "7fcd3b6725c870f1215179658270ba79",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 404678,
            "upload_time": "2024-11-06T13:59:27",
            "upload_time_iso_8601": "2024-11-06T13:59:27.330573Z",
            "url": "https://files.pythonhosted.org/packages/ad/b1/cccfbcd85cfa7537427384f636708867b29c3b438a5d60d579dd022374d1/rpds_py-0.21.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "06c37cd4daa0a7ae54ec4b5b9e93b2f0b0d9b6dd3eccb10a0408c3508066ca6d",
                "md5": "8067c99fb5168977e0fe7d2d9aa755c7",
                "sha256": "3b929c2bb6e29ab31f12a1117c39f7e6d6450419ab7464a4ea9b0b417174f044"
            },
            "downloads": -1,
            "filename": "rpds_py-0.21.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "8067c99fb5168977e0fe7d2d9aa755c7",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 431349,
            "upload_time": "2024-11-06T13:59:29",
            "upload_time_iso_8601": "2024-11-06T13:59:29.478401Z",
            "url": "https://files.pythonhosted.org/packages/06/c3/7cd4daa0a7ae54ec4b5b9e93b2f0b0d9b6dd3eccb10a0408c3508066ca6d/rpds_py-0.21.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "44ab6fd9144e3b182b7c6ee09fd3f1718541d86c74a595f2afe0bd8bf8fb5db0",
                "md5": "c3833f682a999e99cf7004909a15435a",
                "sha256": "8404b3717da03cbf773a1d275d01fec84ea007754ed380f63dfc24fb76ce4592"
            },
            "downloads": -1,
            "filename": "rpds_py-0.21.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c3833f682a999e99cf7004909a15435a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 361472,
            "upload_time": "2024-11-06T13:59:31",
            "upload_time_iso_8601": "2024-11-06T13:59:31.074460Z",
            "url": "https://files.pythonhosted.org/packages/44/ab/6fd9144e3b182b7c6ee09fd3f1718541d86c74a595f2afe0bd8bf8fb5db0/rpds_py-0.21.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9f54902896b543778b0ff6d1baf9b46290f2ca5db14593136b4602a44c0df440",
                "md5": "a132b540930a14964018a68f4f2749bc",
                "sha256": "e12bb09678f38b7597b8346983d2323a6482dcd59e423d9448108c1be37cac9d"
            },
            "downloads": -1,
            "filename": "rpds_py-0.21.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "a132b540930a14964018a68f4f2749bc",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 383059,
            "upload_time": "2024-11-06T13:59:33",
            "upload_time_iso_8601": "2024-11-06T13:59:33.067881Z",
            "url": "https://files.pythonhosted.org/packages/9f/54/902896b543778b0ff6d1baf9b46290f2ca5db14593136b4602a44c0df440/rpds_py-0.21.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2a38c17ae56ed63ef78fb22dbd669460b4ea5ae37ae100e16d5205e4538e0bb1",
                "md5": "ebbbf141efe3871760eae3e0670bcf8b",
                "sha256": "58a0e345be4b18e6b8501d3b0aa540dad90caeed814c515e5206bb2ec26736fd"
            },
            "downloads": -1,
            "filename": "rpds_py-0.21.0-cp39-cp39-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "ebbbf141efe3871760eae3e0670bcf8b",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 547211,
            "upload_time": "2024-11-06T13:59:35",
            "upload_time_iso_8601": "2024-11-06T13:59:35.231719Z",
            "url": "https://files.pythonhosted.org/packages/2a/38/c17ae56ed63ef78fb22dbd669460b4ea5ae37ae100e16d5205e4538e0bb1/rpds_py-0.21.0-cp39-cp39-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ad0f8688bb424ca626fe2ff8782ed40660b1881c78bceadcdd6c72971ebba4cb",
                "md5": "5da234b0c8d59738999a798dc7df8f0e",
                "sha256": "c3761f62fcfccf0864cc4665b6e7c3f0c626f0380b41b8bd1ce322103fa3ef87"
            },
            "downloads": -1,
            "filename": "rpds_py-0.21.0-cp39-cp39-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "5da234b0c8d59738999a798dc7df8f0e",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 550158,
            "upload_time": "2024-11-06T13:59:36",
            "upload_time_iso_8601": "2024-11-06T13:59:36.977822Z",
            "url": "https://files.pythonhosted.org/packages/ad/0f/8688bb424ca626fe2ff8782ed40660b1881c78bceadcdd6c72971ebba4cb/rpds_py-0.21.0-cp39-cp39-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "eef3002f79553404f04d737b461e07935a8bf7303d1cee6d7934b0cec009f650",
                "md5": "24cc6e6795f1b3ecc96fd33f1d5d9763",
                "sha256": "c2b2f71c6ad6c2e4fc9ed9401080badd1469fa9889657ec3abea42a3d6b2e1ed"
            },
            "downloads": -1,
            "filename": "rpds_py-0.21.0-cp39-cp39-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "24cc6e6795f1b3ecc96fd33f1d5d9763",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 528557,
            "upload_time": "2024-11-06T13:59:38",
            "upload_time_iso_8601": "2024-11-06T13:59:38.780770Z",
            "url": "https://files.pythonhosted.org/packages/ee/f3/002f79553404f04d737b461e07935a8bf7303d1cee6d7934b0cec009f650/rpds_py-0.21.0-cp39-cp39-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5226dca37e306fa2b7329fcdd3b6028d5075c156e444f87b3229af51074ec4a9",
                "md5": "65eecaf66cd8d11de69898ae543d5037",
                "sha256": "b21747f79f360e790525e6f6438c7569ddbfb1b3197b9e65043f25c3c9b489d8"
            },
            "downloads": -1,
            "filename": "rpds_py-0.21.0-cp39-none-win32.whl",
            "has_sig": false,
            "md5_digest": "65eecaf66cd8d11de69898ae543d5037",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 200495,
            "upload_time": "2024-11-06T13:59:40",
            "upload_time_iso_8601": "2024-11-06T13:59:40.390567Z",
            "url": "https://files.pythonhosted.org/packages/52/26/dca37e306fa2b7329fcdd3b6028d5075c156e444f87b3229af51074ec4a9/rpds_py-0.21.0-cp39-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f39cf5438d22e6172bf6b38e1809e42f4ce47e9dec7f6db04635c167a674fa68",
                "md5": "96013c1c3d769ab923fc3ae640f96495",
                "sha256": "0626238a43152918f9e72ede9a3b6ccc9e299adc8ade0d67c5e142d564c9a83d"
            },
            "downloads": -1,
            "filename": "rpds_py-0.21.0-cp39-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "96013c1c3d769ab923fc3ae640f96495",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 218879,
            "upload_time": "2024-11-06T13:59:41",
            "upload_time_iso_8601": "2024-11-06T13:59:41.924293Z",
            "url": "https://files.pythonhosted.org/packages/f3/9c/f5438d22e6172bf6b38e1809e42f4ce47e9dec7f6db04635c167a674fa68/rpds_py-0.21.0-cp39-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ffd3ffb04445d29c03d380047c62bed01b979adb9204424e2c833817012f679e",
                "md5": "b2824f16184c476c172967fd0d9e1806",
                "sha256": "6b4ef7725386dc0762857097f6b7266a6cdd62bfd209664da6712cb26acef035"
            },
            "downloads": -1,
            "filename": "rpds_py-0.21.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b2824f16184c476c172967fd0d9e1806",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 328265,
            "upload_time": "2024-11-06T13:59:43",
            "upload_time_iso_8601": "2024-11-06T13:59:43.674894Z",
            "url": "https://files.pythonhosted.org/packages/ff/d3/ffb04445d29c03d380047c62bed01b979adb9204424e2c833817012f679e/rpds_py-0.21.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "dc9d894ff29a2be8f85fd1acff6e0c1b52b629aee019da8651125af9ee4894e1",
                "md5": "158dce5c46778352cc1e95067b61eb99",
                "sha256": "6bc0e697d4d79ab1aacbf20ee5f0df80359ecf55db33ff41481cf3e24f206919"
            },
            "downloads": -1,
            "filename": "rpds_py-0.21.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "158dce5c46778352cc1e95067b61eb99",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 319238,
            "upload_time": "2024-11-06T13:59:45",
            "upload_time_iso_8601": "2024-11-06T13:59:45.700889Z",
            "url": "https://files.pythonhosted.org/packages/dc/9d/894ff29a2be8f85fd1acff6e0c1b52b629aee019da8651125af9ee4894e1/rpds_py-0.21.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "433d0e5b835c22933a5bdc4413e4a91de55a8c1ef33f55eb2514a5cf24729173",
                "md5": "f827b3c1ace6e61233fa8a93e5989d2b",
                "sha256": "da52d62a96e61c1c444f3998c434e8b263c384f6d68aca8274d2e08d1906325c"
            },
            "downloads": -1,
            "filename": "rpds_py-0.21.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "f827b3c1ace6e61233fa8a93e5989d2b",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 362136,
            "upload_time": "2024-11-06T13:59:47",
            "upload_time_iso_8601": "2024-11-06T13:59:47.339623Z",
            "url": "https://files.pythonhosted.org/packages/43/3d/0e5b835c22933a5bdc4413e4a91de55a8c1ef33f55eb2514a5cf24729173/rpds_py-0.21.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6781c9f29da910ac19758f170633c0937fc2f0898b84389bd05bfc255c985f19",
                "md5": "8eea834cf0d4db820ab329aba6504390",
                "sha256": "98e4fe5db40db87ce1c65031463a760ec7906ab230ad2249b4572c2fc3ef1f9f"
            },
            "downloads": -1,
            "filename": "rpds_py-0.21.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "8eea834cf0d4db820ab329aba6504390",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 370411,
            "upload_time": "2024-11-06T13:59:49",
            "upload_time_iso_8601": "2024-11-06T13:59:49.329004Z",
            "url": "https://files.pythonhosted.org/packages/67/81/c9f29da910ac19758f170633c0937fc2f0898b84389bd05bfc255c985f19/rpds_py-0.21.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a8dfb989044f90b81093e454eb54799e7ee5b085ebf957a75d07d5e21eac2fb5",
                "md5": "642992d83fe3cb74fe371ad9fd098b53",
                "sha256": "30bdc973f10d28e0337f71d202ff29345320f8bc49a31c90e6c257e1ccef4333"
            },
            "downloads": -1,
            "filename": "rpds_py-0.21.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "642992d83fe3cb74fe371ad9fd098b53",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 404598,
            "upload_time": "2024-11-06T13:59:50",
            "upload_time_iso_8601": "2024-11-06T13:59:50.806663Z",
            "url": "https://files.pythonhosted.org/packages/a8/df/b989044f90b81093e454eb54799e7ee5b085ebf957a75d07d5e21eac2fb5/rpds_py-0.21.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8f09f79cd575f503932f41138c4bec4c902eb3b71ea8570436688145cc77b8ef",
                "md5": "6d4ab4f7289cebd22741cb826a9dd6fc",
                "sha256": "faa5e8496c530f9c71f2b4e1c49758b06e5f4055e17144906245c99fa6d45356"
            },
            "downloads": -1,
            "filename": "rpds_py-0.21.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "6d4ab4f7289cebd22741cb826a9dd6fc",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 430224,
            "upload_time": "2024-11-06T13:59:52",
            "upload_time_iso_8601": "2024-11-06T13:59:52.369353Z",
            "url": "https://files.pythonhosted.org/packages/8f/09/f79cd575f503932f41138c4bec4c902eb3b71ea8570436688145cc77b8ef/rpds_py-0.21.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "34467fae3500bc188df2feee09dd72df262b97d31e8e4bd2ff4a8be4e28bf1d3",
                "md5": "0dcd90ced08230da294b7980bb333bfd",
                "sha256": "32eb88c30b6a4f0605508023b7141d043a79b14acb3b969aa0b4f99b25bc7d4a"
            },
            "downloads": -1,
            "filename": "rpds_py-0.21.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0dcd90ced08230da294b7980bb333bfd",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 361660,
            "upload_time": "2024-11-06T13:59:54",
            "upload_time_iso_8601": "2024-11-06T13:59:54.472780Z",
            "url": "https://files.pythonhosted.org/packages/34/46/7fae3500bc188df2feee09dd72df262b97d31e8e4bd2ff4a8be4e28bf1d3/rpds_py-0.21.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5b1dd850242d30e68f99ad80815576f38b378b5aba393613e3357ed5e593499e",
                "md5": "e29e2e5756a4c8861f7eb302c71ae586",
                "sha256": "a89a8ce9e4e75aeb7fa5d8ad0f3fecdee813802592f4f46a15754dcb2fd6b061"
            },
            "downloads": -1,
            "filename": "rpds_py-0.21.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "e29e2e5756a4c8861f7eb302c71ae586",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 384008,
            "upload_time": "2024-11-06T13:59:55",
            "upload_time_iso_8601": "2024-11-06T13:59:55.985044Z",
            "url": "https://files.pythonhosted.org/packages/5b/1d/d850242d30e68f99ad80815576f38b378b5aba393613e3357ed5e593499e/rpds_py-0.21.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c916df4cfd1de216c25de24f8631f17380f8edee92201ec7810d1e2ba1dd9f85",
                "md5": "0cb2482f619101f19540d89178cd8238",
                "sha256": "241e6c125568493f553c3d0fdbb38c74babf54b45cef86439d4cd97ff8feb34d"
            },
            "downloads": -1,
            "filename": "rpds_py-0.21.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "0cb2482f619101f19540d89178cd8238",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 546855,
            "upload_time": "2024-11-06T13:59:57",
            "upload_time_iso_8601": "2024-11-06T13:59:57.526973Z",
            "url": "https://files.pythonhosted.org/packages/c9/16/df4cfd1de216c25de24f8631f17380f8edee92201ec7810d1e2ba1dd9f85/rpds_py-0.21.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c0b803d4561095d4fbf2ab62ed651a2b5cb674fe5245b1ab2f7909e8056bd014",
                "md5": "ac61c21cd21d6a6fe805547eb55927d8",
                "sha256": "3b766a9f57663396e4f34f5140b3595b233a7b146e94777b97a8413a1da1be18"
            },
            "downloads": -1,
            "filename": "rpds_py-0.21.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "ac61c21cd21d6a6fe805547eb55927d8",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 550599,
            "upload_time": "2024-11-06T13:59:59",
            "upload_time_iso_8601": "2024-11-06T13:59:59.235311Z",
            "url": "https://files.pythonhosted.org/packages/c0/b8/03d4561095d4fbf2ab62ed651a2b5cb674fe5245b1ab2f7909e8056bd014/rpds_py-0.21.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f454d93867e2bf4acf57314798181faf3bd7d1a4f51a3aa81cb6211d56f74d3f",
                "md5": "0ea09e0d77c19f1359853ae11c3c9fbb",
                "sha256": "af4a644bf890f56e41e74be7d34e9511e4954894d544ec6b8efe1e21a1a8da6c"
            },
            "downloads": -1,
            "filename": "rpds_py-0.21.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0ea09e0d77c19f1359853ae11c3c9fbb",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 528963,
            "upload_time": "2024-11-06T14:00:00",
            "upload_time_iso_8601": "2024-11-06T14:00:00.880942Z",
            "url": "https://files.pythonhosted.org/packages/f4/54/d93867e2bf4acf57314798181faf3bd7d1a4f51a3aa81cb6211d56f74d3f/rpds_py-0.21.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "66866f72984a284d720d84fba5ee7b0d1b0d320978b516497cbfd6e335e95a3e",
                "md5": "2c6d4f7b2aba5e3850e0e40624136b8c",
                "sha256": "3e30a69a706e8ea20444b98a49f386c17b26f860aa9245329bab0851ed100677"
            },
            "downloads": -1,
            "filename": "rpds_py-0.21.0-pp310-pypy310_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "2c6d4f7b2aba5e3850e0e40624136b8c",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 219621,
            "upload_time": "2024-11-06T14:00:03",
            "upload_time_iso_8601": "2024-11-06T14:00:03.211026Z",
            "url": "https://files.pythonhosted.org/packages/66/86/6f72984a284d720d84fba5ee7b0d1b0d320978b516497cbfd6e335e95a3e/rpds_py-0.21.0-pp310-pypy310_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f525999c5176513cdf7d9b86958dedddfa95790f9db643b5ddce0a889def7471",
                "md5": "248d56ac1234b35f9d92f6ccc9ed1910",
                "sha256": "031819f906bb146561af051c7cef4ba2003d28cff07efacef59da973ff7969ba"
            },
            "downloads": -1,
            "filename": "rpds_py-0.21.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "248d56ac1234b35f9d92f6ccc9ed1910",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 328029,
            "upload_time": "2024-11-06T14:00:05",
            "upload_time_iso_8601": "2024-11-06T14:00:05.267241Z",
            "url": "https://files.pythonhosted.org/packages/f5/25/999c5176513cdf7d9b86958dedddfa95790f9db643b5ddce0a889def7471/rpds_py-0.21.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6489b468c7bd5736db4c8800c905c6d351b750dfccd9e29e685a3aa9705cfcb4",
                "md5": "223570bf316c8d7ec4b2693e96a2b8c3",
                "sha256": "b876f2bc27ab5954e2fd88890c071bd0ed18b9c50f6ec3de3c50a5ece612f7a6"
            },
            "downloads": -1,
            "filename": "rpds_py-0.21.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "223570bf316c8d7ec4b2693e96a2b8c3",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 319144,
            "upload_time": "2024-11-06T14:00:07",
            "upload_time_iso_8601": "2024-11-06T14:00:07.096358Z",
            "url": "https://files.pythonhosted.org/packages/64/89/b468c7bd5736db4c8800c905c6d351b750dfccd9e29e685a3aa9705cfcb4/rpds_py-0.21.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ca19de615c09b8ce5a1a09c4d85b64cbeb4188784b082e9e99f051ba6e9ef758",
                "md5": "8e3e49df5960b20e8ca0ebfc90ee59bb",
                "sha256": "dc5695c321e518d9f03b7ea6abb5ea3af4567766f9852ad1560f501b17588c7b"
            },
            "downloads": -1,
            "filename": "rpds_py-0.21.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "8e3e49df5960b20e8ca0ebfc90ee59bb",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 362362,
            "upload_time": "2024-11-06T14:00:09",
            "upload_time_iso_8601": "2024-11-06T14:00:09.468047Z",
            "url": "https://files.pythonhosted.org/packages/ca/19/de615c09b8ce5a1a09c4d85b64cbeb4188784b082e9e99f051ba6e9ef758/rpds_py-0.21.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "53ac5ba82e51534a13580649de84304c5f75abe37ead43194b7347dd11970528",
                "md5": "226d922e291db8ab6f18818a16b146a8",
                "sha256": "b4de1da871b5c0fd5537b26a6fc6814c3cc05cabe0c941db6e9044ffbb12f04a"
            },
            "downloads": -1,
            "filename": "rpds_py-0.21.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "226d922e291db8ab6f18818a16b146a8",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 370449,
            "upload_time": "2024-11-06T14:00:11",
            "upload_time_iso_8601": "2024-11-06T14:00:11.068006Z",
            "url": "https://files.pythonhosted.org/packages/53/ac/5ba82e51534a13580649de84304c5f75abe37ead43194b7347dd11970528/rpds_py-0.21.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "aa3e4b99613a4628abb6efd82c9d653fee53fcde12225b68f62037b09ad2a720",
                "md5": "2e47bb21390c261e927ab2fed1eef505",
                "sha256": "878f6fea96621fda5303a2867887686d7a198d9e0f8a40be100a63f5d60c88c9"
            },
            "downloads": -1,
            "filename": "rpds_py-0.21.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "2e47bb21390c261e927ab2fed1eef505",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 404073,
            "upload_time": "2024-11-06T14:00:12",
            "upload_time_iso_8601": "2024-11-06T14:00:12.880224Z",
            "url": "https://files.pythonhosted.org/packages/aa/3e/4b99613a4628abb6efd82c9d653fee53fcde12225b68f62037b09ad2a720/rpds_py-0.21.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cebc00bda2ffe45d53c7900234508e1a9432031ff8a38df3325af98aada9c680",
                "md5": "83657e931afbf1120a847610742fcb9d",
                "sha256": "a8eeec67590e94189f434c6d11c426892e396ae59e4801d17a93ac96b8c02a6c"
            },
            "downloads": -1,
            "filename": "rpds_py-0.21.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "83657e931afbf1120a847610742fcb9d",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 429922,
            "upload_time": "2024-11-06T14:00:14",
            "upload_time_iso_8601": "2024-11-06T14:00:14.555643Z",
            "url": "https://files.pythonhosted.org/packages/ce/bc/00bda2ffe45d53c7900234508e1a9432031ff8a38df3325af98aada9c680/rpds_py-0.21.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "96513942efa11d6e3fa140f1ac639d533286c94fa6e09e5a1f50a01bfbe12ca9",
                "md5": "0b58cc5a1612b18f5d4ae29fc4c40b1b",
                "sha256": "1ff2eba7f6c0cb523d7e9cff0903f2fe1feff8f0b2ceb6bd71c0e20a4dcee271"
            },
            "downloads": -1,
            "filename": "rpds_py-0.21.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0b58cc5a1612b18f5d4ae29fc4c40b1b",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 361252,
            "upload_time": "2024-11-06T14:00:16",
            "upload_time_iso_8601": "2024-11-06T14:00:16.281278Z",
            "url": "https://files.pythonhosted.org/packages/96/51/3942efa11d6e3fa140f1ac639d533286c94fa6e09e5a1f50a01bfbe12ca9/rpds_py-0.21.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "badd91a32a556908ddc6762ef5247345b30a91a7e75e3e004246e238224f3321",
                "md5": "0458ecef360fe4b034107d00926237d9",
                "sha256": "a429b99337062877d7875e4ff1a51fe788424d522bd64a8c0a20ef3021fdb6ed"
            },
            "downloads": -1,
            "filename": "rpds_py-0.21.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "0458ecef360fe4b034107d00926237d9",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 383920,
            "upload_time": "2024-11-06T14:00:18",
            "upload_time_iso_8601": "2024-11-06T14:00:18.666706Z",
            "url": "https://files.pythonhosted.org/packages/ba/dd/91a32a556908ddc6762ef5247345b30a91a7e75e3e004246e238224f3321/rpds_py-0.21.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6a648b0d0c0d162c06805ba0218f524bf607b1324c41e7396ee6cfed751bcfc9",
                "md5": "1f85d944a4421194d4558b6e1edcdfe1",
                "sha256": "d167e4dbbdac48bd58893c7e446684ad5d425b407f9336e04ab52e8b9194e2ed"
            },
            "downloads": -1,
            "filename": "rpds_py-0.21.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "1f85d944a4421194d4558b6e1edcdfe1",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 546679,
            "upload_time": "2024-11-06T14:00:20",
            "upload_time_iso_8601": "2024-11-06T14:00:20.737560Z",
            "url": "https://files.pythonhosted.org/packages/6a/64/8b0d0c0d162c06805ba0218f524bf607b1324c41e7396ee6cfed751bcfc9/rpds_py-0.21.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e5266800bf70179c5aaffae6bc0cee355744b1475f4b08cb9855a72a5b488fff",
                "md5": "185093082a079ae12c6ecb11ac3c0b4a",
                "sha256": "4eb2de8a147ffe0626bfdc275fc6563aa7bf4b6db59cf0d44f0ccd6ca625a24e"
            },
            "downloads": -1,
            "filename": "rpds_py-0.21.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "185093082a079ae12c6ecb11ac3c0b4a",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 550831,
            "upload_time": "2024-11-06T14:00:23",
            "upload_time_iso_8601": "2024-11-06T14:00:23.733561Z",
            "url": "https://files.pythonhosted.org/packages/e5/26/6800bf70179c5aaffae6bc0cee355744b1475f4b08cb9855a72a5b488fff/rpds_py-0.21.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "32b775e7cea814765ecc0820aac232216b236ffad940f59bc87522effb44e144",
                "md5": "f43e3c22896db8359f608edcc9292138",
                "sha256": "e78868e98f34f34a88e23ee9ccaeeec460e4eaf6db16d51d7a9b883e5e785a5e"
            },
            "downloads": -1,
            "filename": "rpds_py-0.21.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f43e3c22896db8359f608edcc9292138",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 528487,
            "upload_time": "2024-11-06T14:00:25",
            "upload_time_iso_8601": "2024-11-06T14:00:25.615726Z",
            "url": "https://files.pythonhosted.org/packages/32/b7/75e7cea814765ecc0820aac232216b236ffad940f59bc87522effb44e144/rpds_py-0.21.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "543d11cac262f7d5ac4f34e838628410eca4f9ce3bf02be28ccb0de90362ac11",
                "md5": "560be66e70184207d9c11f595907bb37",
                "sha256": "4991ca61656e3160cdaca4851151fd3f4a92e9eba5c7a530ab030d6aee96ec89"
            },
            "downloads": -1,
            "filename": "rpds_py-0.21.0-pp39-pypy39_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "560be66e70184207d9c11f595907bb37",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 219893,
            "upload_time": "2024-11-06T14:00:27",
            "upload_time_iso_8601": "2024-11-06T14:00:27.480511Z",
            "url": "https://files.pythonhosted.org/packages/54/3d/11cac262f7d5ac4f34e838628410eca4f9ce3bf02be28ccb0de90362ac11/rpds_py-0.21.0-pp39-pypy39_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2380afdf96daf9b27d61483ef05b38f282121db0e38f5fd4e89f40f5c86c2a4f",
                "md5": "cfa74e8eb78ab2819d02ddd1b78541a6",
                "sha256": "ed6378c9d66d0de903763e7706383d60c33829581f0adff47b6535f1802fa6db"
            },
            "downloads": -1,
            "filename": "rpds_py-0.21.0.tar.gz",
            "has_sig": false,
            "md5_digest": "cfa74e8eb78ab2819d02ddd1b78541a6",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.9",
            "size": 26335,
            "upload_time": "2024-11-06T14:00:30",
            "upload_time_iso_8601": "2024-11-06T14:00:30.463853Z",
            "url": "https://files.pythonhosted.org/packages/23/80/afdf96daf9b27d61483ef05b38f282121db0e38f5fd4e89f40f5c86c2a4f/rpds_py-0.21.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-11-06 14:00:30",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "sponsors",
    "github_project": "Julian",
    "github_not_found": true,
    "lcname": "rpds-py"
}
        
Elapsed time: 0.41586s