rpds-py


Namerpds-py JSON
Version 0.22.3 PyPI version JSON
download
home_pageNone
SummaryPython bindings to Rust's persistent data structures (rpds)
upload_time2024-12-04 15:34:14
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/01/80/cce854d0921ff2f0a9fa831ba3ad3c65cee3a46711addf39a2af52df2cfd/rpds_py-0.22.3.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.22.3",
    "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": "422aead1d09e57449b99dcc190d8d2323e3a167421d8f8fdf0f217c6f6befe47",
                "md5": "ccf3979e9bd875de3e9025d49b91453c",
                "sha256": "6c7b99ca52c2c1752b544e310101b98a659b720b21db00e65edca34483259967"
            },
            "downloads": -1,
            "filename": "rpds_py-0.22.3-cp310-cp310-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ccf3979e9bd875de3e9025d49b91453c",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 359514,
            "upload_time": "2024-12-04T15:31:31",
            "upload_time_iso_8601": "2024-12-04T15:31:31.341172Z",
            "url": "https://files.pythonhosted.org/packages/42/2a/ead1d09e57449b99dcc190d8d2323e3a167421d8f8fdf0f217c6f6befe47/rpds_py-0.22.3-cp310-cp310-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8f7e1254f406b7793b586c68e217a6a24ec79040f85e030fff7e9049069284f4",
                "md5": "550eef0cb029058949771fc2978e0371",
                "sha256": "be2eb3f2495ba669d2a985f9b426c1797b7d48d6963899276d22f23e33d47e37"
            },
            "downloads": -1,
            "filename": "rpds_py-0.22.3-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "550eef0cb029058949771fc2978e0371",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 349031,
            "upload_time": "2024-12-04T15:31:32",
            "upload_time_iso_8601": "2024-12-04T15:31:32.973110Z",
            "url": "https://files.pythonhosted.org/packages/8f/7e/1254f406b7793b586c68e217a6a24ec79040f85e030fff7e9049069284f4/rpds_py-0.22.3-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "aada17c6a2c73730d426df53675ff9cc6653ac7a60b6438d03c18e1c822a576a",
                "md5": "cfa0055c40c81c20d85aa7bae2536065",
                "sha256": "70eb60b3ae9245ddea20f8a4190bd79c705a22f8028aaf8bbdebe4716c3fab24"
            },
            "downloads": -1,
            "filename": "rpds_py-0.22.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "cfa0055c40c81c20d85aa7bae2536065",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 381485,
            "upload_time": "2024-12-04T15:31:34",
            "upload_time_iso_8601": "2024-12-04T15:31:34.586709Z",
            "url": "https://files.pythonhosted.org/packages/aa/da/17c6a2c73730d426df53675ff9cc6653ac7a60b6438d03c18e1c822a576a/rpds_py-0.22.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "aa132dbacd820466aa2a3c4b747afb18d71209523d353cf865bf8f4796c969ea",
                "md5": "bce3be0fe63a6e8652241a24f9b9691c",
                "sha256": "4041711832360a9b75cfb11b25a6a97c8fb49c07b8bd43d0d02b45d0b499a4ff"
            },
            "downloads": -1,
            "filename": "rpds_py-0.22.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "bce3be0fe63a6e8652241a24f9b9691c",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 386794,
            "upload_time": "2024-12-04T15:31:37",
            "upload_time_iso_8601": "2024-12-04T15:31:37.237030Z",
            "url": "https://files.pythonhosted.org/packages/aa/13/2dbacd820466aa2a3c4b747afb18d71209523d353cf865bf8f4796c969ea/rpds_py-0.22.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6d6296905d0a35ad4e4bc3c098b2f34b2e7266e211d08635baa690643d2227be",
                "md5": "a83863143585538be2cc83d99ab5dbeb",
                "sha256": "64607d4cbf1b7e3c3c8a14948b99345eda0e161b852e122c6bb71aab6d1d798c"
            },
            "downloads": -1,
            "filename": "rpds_py-0.22.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "a83863143585538be2cc83d99ab5dbeb",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 423523,
            "upload_time": "2024-12-04T15:31:39",
            "upload_time_iso_8601": "2024-12-04T15:31:39.259231Z",
            "url": "https://files.pythonhosted.org/packages/6d/62/96905d0a35ad4e4bc3c098b2f34b2e7266e211d08635baa690643d2227be/rpds_py-0.22.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "eb1bd12770f2b6a9fc2c3ec0d810d7d440f6d465ccd8b7f16ae5385952c28b89",
                "md5": "19bc9a9224a63434d950eeaf5a02b301",
                "sha256": "81e69b0a0e2537f26d73b4e43ad7bc8c8efb39621639b4434b76a3de50c6966e"
            },
            "downloads": -1,
            "filename": "rpds_py-0.22.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "19bc9a9224a63434d950eeaf5a02b301",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 446695,
            "upload_time": "2024-12-04T15:31:40",
            "upload_time_iso_8601": "2024-12-04T15:31:40.477190Z",
            "url": "https://files.pythonhosted.org/packages/eb/1b/d12770f2b6a9fc2c3ec0d810d7d440f6d465ccd8b7f16ae5385952c28b89/rpds_py-0.22.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4dcf96f1fd75512a017f8e07408b6d5dbeb492d9ed46bfe0555544294f3681b3",
                "md5": "55bf018e7ff0f0190502d92670cbe9bc",
                "sha256": "bc27863442d388870c1809a87507727b799c8460573cfbb6dc0eeaef5a11b5ec"
            },
            "downloads": -1,
            "filename": "rpds_py-0.22.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "55bf018e7ff0f0190502d92670cbe9bc",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 381959,
            "upload_time": "2024-12-04T15:31:41",
            "upload_time_iso_8601": "2024-12-04T15:31:41.665539Z",
            "url": "https://files.pythonhosted.org/packages/4d/cf/96f1fd75512a017f8e07408b6d5dbeb492d9ed46bfe0555544294f3681b3/rpds_py-0.22.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "abf0d1c5b501c8aea85aeb938b555bfdf7612110a2f8cdc21ae0482c93dd0c24",
                "md5": "bc5df0154299b910082b0b28e87c8339",
                "sha256": "e79dd39f1e8c3504be0607e5fc6e86bb60fe3584bec8b782578c3b0fde8d932c"
            },
            "downloads": -1,
            "filename": "rpds_py-0.22.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "bc5df0154299b910082b0b28e87c8339",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 410420,
            "upload_time": "2024-12-04T15:31:43",
            "upload_time_iso_8601": "2024-12-04T15:31:43.407445Z",
            "url": "https://files.pythonhosted.org/packages/ab/f0/d1c5b501c8aea85aeb938b555bfdf7612110a2f8cdc21ae0482c93dd0c24/rpds_py-0.22.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "333b45b6c58fb6aad5a569ae40fb890fc494c6b02203505a5008ee6dc68e65f7",
                "md5": "23670530cedd437d598ddd1283d703b9",
                "sha256": "e0fa2d4ec53dc51cf7d3bb22e0aa0143966119f42a0c3e4998293a3dd2856b09"
            },
            "downloads": -1,
            "filename": "rpds_py-0.22.3-cp310-cp310-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "23670530cedd437d598ddd1283d703b9",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 557620,
            "upload_time": "2024-12-04T15:31:45",
            "upload_time_iso_8601": "2024-12-04T15:31:45.271915Z",
            "url": "https://files.pythonhosted.org/packages/33/3b/45b6c58fb6aad5a569ae40fb890fc494c6b02203505a5008ee6dc68e65f7/rpds_py-0.22.3-cp310-cp310-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "83623fdd2d3d47bf0bb9b931c4c73036b4ab3ec77b25e016ae26fab0f02be2af",
                "md5": "121d238d158e7db1465eb922a1513d44",
                "sha256": "fda7cb070f442bf80b642cd56483b5548e43d366fe3f39b98e67cce780cded00"
            },
            "downloads": -1,
            "filename": "rpds_py-0.22.3-cp310-cp310-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "121d238d158e7db1465eb922a1513d44",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 584202,
            "upload_time": "2024-12-04T15:31:47",
            "upload_time_iso_8601": "2024-12-04T15:31:47.210990Z",
            "url": "https://files.pythonhosted.org/packages/83/62/3fdd2d3d47bf0bb9b931c4c73036b4ab3ec77b25e016ae26fab0f02be2af/rpds_py-0.22.3-cp310-cp310-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "04f25dced98b64874b84ca824292f9cee2e3f30f3bcf231d15a903126684f74d",
                "md5": "a9f6d1e7ea99edcfbfbe2b3e2eafac5d",
                "sha256": "cff63a0272fcd259dcc3be1657b07c929c466b067ceb1c20060e8d10af56f5bf"
            },
            "downloads": -1,
            "filename": "rpds_py-0.22.3-cp310-cp310-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a9f6d1e7ea99edcfbfbe2b3e2eafac5d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 552787,
            "upload_time": "2024-12-04T15:31:49",
            "upload_time_iso_8601": "2024-12-04T15:31:49.142464Z",
            "url": "https://files.pythonhosted.org/packages/04/f2/5dced98b64874b84ca824292f9cee2e3f30f3bcf231d15a903126684f74d/rpds_py-0.22.3-cp310-cp310-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "67132273dea1204eda0aea0ef55145da96a9aa28b3f88bb5c70e994f69eda7c3",
                "md5": "e70c89221549984c867bba8491c3875e",
                "sha256": "9bd7228827ec7bb817089e2eb301d907c0d9827a9e558f22f762bb690b131652"
            },
            "downloads": -1,
            "filename": "rpds_py-0.22.3-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "e70c89221549984c867bba8491c3875e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 220088,
            "upload_time": "2024-12-04T15:31:51",
            "upload_time_iso_8601": "2024-12-04T15:31:51.303912Z",
            "url": "https://files.pythonhosted.org/packages/67/13/2273dea1204eda0aea0ef55145da96a9aa28b3f88bb5c70e994f69eda7c3/rpds_py-0.22.3-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4e808c8176b67ad7f4a894967a7a4014ba039626d96f1d4874d53e409b58d69f",
                "md5": "883da4508b1f7ad48a2372e9f772b8de",
                "sha256": "9beeb01d8c190d7581a4d59522cd3d4b6887040dcfc744af99aa59fef3e041a8"
            },
            "downloads": -1,
            "filename": "rpds_py-0.22.3-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "883da4508b1f7ad48a2372e9f772b8de",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 231737,
            "upload_time": "2024-12-04T15:31:52",
            "upload_time_iso_8601": "2024-12-04T15:31:52.611811Z",
            "url": "https://files.pythonhosted.org/packages/4e/80/8c8176b67ad7f4a894967a7a4014ba039626d96f1d4874d53e409b58d69f/rpds_py-0.22.3-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "15ad8d1ddf78f2805a71253fcd388017e7b4a0615c22c762b6d35301fef20106",
                "md5": "ddeb985be964dc7bc461043166f179a0",
                "sha256": "d20cfb4e099748ea39e6f7b16c91ab057989712d31761d3300d43134e26e165f"
            },
            "downloads": -1,
            "filename": "rpds_py-0.22.3-cp311-cp311-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ddeb985be964dc7bc461043166f179a0",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 359773,
            "upload_time": "2024-12-04T15:31:53",
            "upload_time_iso_8601": "2024-12-04T15:31:53.773936Z",
            "url": "https://files.pythonhosted.org/packages/15/ad/8d1ddf78f2805a71253fcd388017e7b4a0615c22c762b6d35301fef20106/rpds_py-0.22.3-cp311-cp311-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c87568c15732293a8485d79fe4ebe9045525502a067865fa4278f178851b2d87",
                "md5": "55118f3e4daf204c9b6afdab4bc74d82",
                "sha256": "68049202f67380ff9aa52f12e92b1c30115f32e6895cd7198fa2a7961621fc5a"
            },
            "downloads": -1,
            "filename": "rpds_py-0.22.3-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "55118f3e4daf204c9b6afdab4bc74d82",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 349214,
            "upload_time": "2024-12-04T15:31:57",
            "upload_time_iso_8601": "2024-12-04T15:31:57.443068Z",
            "url": "https://files.pythonhosted.org/packages/c8/75/68c15732293a8485d79fe4ebe9045525502a067865fa4278f178851b2d87/rpds_py-0.22.3-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3c4c7ce50f3070083c2e1b2bbd0fb7046f3da55f510d19e283222f8f33d7d5f4",
                "md5": "dbca88ca21598c5250766979c3f19119",
                "sha256": "fb4f868f712b2dd4bcc538b0a0c1f63a2b1d584c925e69a224d759e7070a12d5"
            },
            "downloads": -1,
            "filename": "rpds_py-0.22.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "dbca88ca21598c5250766979c3f19119",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 380477,
            "upload_time": "2024-12-04T15:31:58",
            "upload_time_iso_8601": "2024-12-04T15:31:58.713593Z",
            "url": "https://files.pythonhosted.org/packages/3c/4c/7ce50f3070083c2e1b2bbd0fb7046f3da55f510d19e283222f8f33d7d5f4/rpds_py-0.22.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9ae9835196a69cb229d5c31c13b8ae603bd2da9a6695f35fe4270d398e1db44c",
                "md5": "1c6a551eed2900302f63e68e2f6bf472",
                "sha256": "bc51abd01f08117283c5ebf64844a35144a0843ff7b2983e0648e4d3d9f10dbb"
            },
            "downloads": -1,
            "filename": "rpds_py-0.22.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "1c6a551eed2900302f63e68e2f6bf472",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 386171,
            "upload_time": "2024-12-04T15:32:01",
            "upload_time_iso_8601": "2024-12-04T15:32:01.330535Z",
            "url": "https://files.pythonhosted.org/packages/9a/e9/835196a69cb229d5c31c13b8ae603bd2da9a6695f35fe4270d398e1db44c/rpds_py-0.22.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f98e33fc4eba6683db71e91e6d594a2cf3a8fbceb5316629f0477f7ece5e3f75",
                "md5": "17e7657acb3d3f0bd97fe4eeeabb03da",
                "sha256": "0f3cec041684de9a4684b1572fe28c7267410e02450f4561700ca5a3bc6695a2"
            },
            "downloads": -1,
            "filename": "rpds_py-0.22.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "17e7657acb3d3f0bd97fe4eeeabb03da",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 422676,
            "upload_time": "2024-12-04T15:32:03",
            "upload_time_iso_8601": "2024-12-04T15:32:03.223136Z",
            "url": "https://files.pythonhosted.org/packages/f9/8e/33fc4eba6683db71e91e6d594a2cf3a8fbceb5316629f0477f7ece5e3f75/rpds_py-0.22.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "37472e82d58f8046a98bb9497a8319604c92b827b94d558df30877c4b3c6ccb3",
                "md5": "421a59d4c64546a3e1ca4df04d611544",
                "sha256": "7ef9d9da710be50ff6809fed8f1963fecdfecc8b86656cadfca3bc24289414b0"
            },
            "downloads": -1,
            "filename": "rpds_py-0.22.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "421a59d4c64546a3e1ca4df04d611544",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 446152,
            "upload_time": "2024-12-04T15:32:05",
            "upload_time_iso_8601": "2024-12-04T15:32:05.109513Z",
            "url": "https://files.pythonhosted.org/packages/37/47/2e82d58f8046a98bb9497a8319604c92b827b94d558df30877c4b3c6ccb3/rpds_py-0.22.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e17879c128c3e71abbc8e9739ac27af11dc0f91840a86fce67ff83c65d1ba195",
                "md5": "6035fa10b2b05b46d81fd886b30e75cc",
                "sha256": "59f4a79c19232a5774aee369a0c296712ad0e77f24e62cad53160312b1c1eaa1"
            },
            "downloads": -1,
            "filename": "rpds_py-0.22.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6035fa10b2b05b46d81fd886b30e75cc",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 381300,
            "upload_time": "2024-12-04T15:32:06",
            "upload_time_iso_8601": "2024-12-04T15:32:06.404323Z",
            "url": "https://files.pythonhosted.org/packages/e1/78/79c128c3e71abbc8e9739ac27af11dc0f91840a86fce67ff83c65d1ba195/rpds_py-0.22.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c95b2e193be0e8b228c1207f31fa3ea79de64dadb4f6a4833111af8145a6bc33",
                "md5": "315fca03fc43669cbaa211ecd6ddd660",
                "sha256": "1a60bce91f81ddaac922a40bbb571a12c1070cb20ebd6d49c48e0b101d87300d"
            },
            "downloads": -1,
            "filename": "rpds_py-0.22.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "315fca03fc43669cbaa211ecd6ddd660",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 409636,
            "upload_time": "2024-12-04T15:32:07",
            "upload_time_iso_8601": "2024-12-04T15:32:07.568944Z",
            "url": "https://files.pythonhosted.org/packages/c9/5b/2e193be0e8b228c1207f31fa3ea79de64dadb4f6a4833111af8145a6bc33/rpds_py-0.22.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c23f687c7100b762d62186a1c1100ffdf99825f6fa5ea94556844bbbd2d0f3a9",
                "md5": "4c0ec2d81322e7ba2657e01737017e0b",
                "sha256": "e89391e6d60251560f0a8f4bd32137b077a80d9b7dbe6d5cab1cd80d2746f648"
            },
            "downloads": -1,
            "filename": "rpds_py-0.22.3-cp311-cp311-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "4c0ec2d81322e7ba2657e01737017e0b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 556708,
            "upload_time": "2024-12-04T15:32:09",
            "upload_time_iso_8601": "2024-12-04T15:32:09.141716Z",
            "url": "https://files.pythonhosted.org/packages/c2/3f/687c7100b762d62186a1c1100ffdf99825f6fa5ea94556844bbbd2d0f3a9/rpds_py-0.22.3-cp311-cp311-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8ca2c00cbc4b857e8b3d5e7f7fc4c81e23afd8c138b930f4f3ccf9a41a23e9e4",
                "md5": "a8f49048b0498467111111c2092b4755",
                "sha256": "e3fb866d9932a3d7d0c82da76d816996d1667c44891bd861a0f97ba27e84fc74"
            },
            "downloads": -1,
            "filename": "rpds_py-0.22.3-cp311-cp311-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "a8f49048b0498467111111c2092b4755",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 583554,
            "upload_time": "2024-12-04T15:32:11",
            "upload_time_iso_8601": "2024-12-04T15:32:11.170237Z",
            "url": "https://files.pythonhosted.org/packages/8c/a2/c00cbc4b857e8b3d5e7f7fc4c81e23afd8c138b930f4f3ccf9a41a23e9e4/rpds_py-0.22.3-cp311-cp311-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d008696c9872cf56effdad9ed617ac072f6774a898d46b8b8964eab39ec562d2",
                "md5": "bda95040681fce8c98117eeadc563c49",
                "sha256": "1352ae4f7c717ae8cba93421a63373e582d19d55d2ee2cbb184344c82d2ae55a"
            },
            "downloads": -1,
            "filename": "rpds_py-0.22.3-cp311-cp311-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "bda95040681fce8c98117eeadc563c49",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 552105,
            "upload_time": "2024-12-04T15:32:12",
            "upload_time_iso_8601": "2024-12-04T15:32:12.701071Z",
            "url": "https://files.pythonhosted.org/packages/d0/08/696c9872cf56effdad9ed617ac072f6774a898d46b8b8964eab39ec562d2/rpds_py-0.22.3-cp311-cp311-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "181f4df560be1e994f5adf56cabd6c117e02de7c88ee238bb4ce03ed50da9d56",
                "md5": "eb3f1b464f021aee4078ccc3dd9d410b",
                "sha256": "b0b4136a252cadfa1adb705bb81524eee47d9f6aab4f2ee4fa1e9d3cd4581f64"
            },
            "downloads": -1,
            "filename": "rpds_py-0.22.3-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "eb3f1b464f021aee4078ccc3dd9d410b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 220199,
            "upload_time": "2024-12-04T15:32:13",
            "upload_time_iso_8601": "2024-12-04T15:32:13.903451Z",
            "url": "https://files.pythonhosted.org/packages/18/1f/4df560be1e994f5adf56cabd6c117e02de7c88ee238bb4ce03ed50da9d56/rpds_py-0.22.3-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b81bc29b570bc5db8237553002788dc734d6bd71443a2ceac2a58202ec06ef12",
                "md5": "292ce7f9a4334dfe5a90537dac6df4cc",
                "sha256": "8bd7c8cfc0b8247c8799080fbff54e0b9619e17cdfeb0478ba7295d43f635d7c"
            },
            "downloads": -1,
            "filename": "rpds_py-0.22.3-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "292ce7f9a4334dfe5a90537dac6df4cc",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 231775,
            "upload_time": "2024-12-04T15:32:15",
            "upload_time_iso_8601": "2024-12-04T15:32:15.137846Z",
            "url": "https://files.pythonhosted.org/packages/b8/1b/c29b570bc5db8237553002788dc734d6bd71443a2ceac2a58202ec06ef12/rpds_py-0.22.3-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "75473383ee3bd787a2a5e65a9b9edc37ccf8505c0a00170e3a5e6ea5fbcd97f7",
                "md5": "23237ebb4b84e12be87d9b1a8f92800a",
                "sha256": "27e98004595899949bd7a7b34e91fa7c44d7a97c40fcaf1d874168bb652ec67e"
            },
            "downloads": -1,
            "filename": "rpds_py-0.22.3-cp312-cp312-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "23237ebb4b84e12be87d9b1a8f92800a",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 352334,
            "upload_time": "2024-12-04T15:32:16",
            "upload_time_iso_8601": "2024-12-04T15:32:16.432524Z",
            "url": "https://files.pythonhosted.org/packages/75/47/3383ee3bd787a2a5e65a9b9edc37ccf8505c0a00170e3a5e6ea5fbcd97f7/rpds_py-0.22.3-cp312-cp312-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4014aa6400fa8158b90a5a250a77f2077c0d0cd8a76fce31d9f2b289f04c6dec",
                "md5": "521a31ba05a5dbc42b960bd5ddbc539c",
                "sha256": "1978d0021e943aae58b9b0b196fb4895a25cc53d3956b8e35e0b7682eefb6d56"
            },
            "downloads": -1,
            "filename": "rpds_py-0.22.3-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "521a31ba05a5dbc42b960bd5ddbc539c",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 342111,
            "upload_time": "2024-12-04T15:32:18",
            "upload_time_iso_8601": "2024-12-04T15:32:18.336890Z",
            "url": "https://files.pythonhosted.org/packages/40/14/aa6400fa8158b90a5a250a77f2077c0d0cd8a76fce31d9f2b289f04c6dec/rpds_py-0.22.3-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7d06395a13bfaa8a28b302fb433fb285a67ce0ea2004959a027aea8f9c52bad4",
                "md5": "d7a0e472c749e0a0b9d717f58cc1cc23",
                "sha256": "655ca44a831ecb238d124e0402d98f6212ac527a0ba6c55ca26f616604e60a45"
            },
            "downloads": -1,
            "filename": "rpds_py-0.22.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d7a0e472c749e0a0b9d717f58cc1cc23",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 384286,
            "upload_time": "2024-12-04T15:32:19",
            "upload_time_iso_8601": "2024-12-04T15:32:19.589489Z",
            "url": "https://files.pythonhosted.org/packages/7d/06/395a13bfaa8a28b302fb433fb285a67ce0ea2004959a027aea8f9c52bad4/rpds_py-0.22.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4352d8eeaffab047e6b7b7ef7f00d5ead074a07973968ffa2d5820fa131d7852",
                "md5": "9ca2fc4a97d5f4586260f6445cac086b",
                "sha256": "feea821ee2a9273771bae61194004ee2fc33f8ec7db08117ef9147d4bbcbca8e"
            },
            "downloads": -1,
            "filename": "rpds_py-0.22.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "9ca2fc4a97d5f4586260f6445cac086b",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 391739,
            "upload_time": "2024-12-04T15:32:20",
            "upload_time_iso_8601": "2024-12-04T15:32:20.772456Z",
            "url": "https://files.pythonhosted.org/packages/43/52/d8eeaffab047e6b7b7ef7f00d5ead074a07973968ffa2d5820fa131d7852/rpds_py-0.22.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "833152dc4bde85c60b63719610ed6f6d61877effdb5113a72007679b786377b8",
                "md5": "e6dd699e7ba53493e9e4d9de7aaccac1",
                "sha256": "22bebe05a9ffc70ebfa127efbc429bc26ec9e9b4ee4d15a740033efda515cf3d"
            },
            "downloads": -1,
            "filename": "rpds_py-0.22.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "e6dd699e7ba53493e9e4d9de7aaccac1",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 427306,
            "upload_time": "2024-12-04T15:32:23",
            "upload_time_iso_8601": "2024-12-04T15:32:23.138516Z",
            "url": "https://files.pythonhosted.org/packages/83/31/52dc4bde85c60b63719610ed6f6d61877effdb5113a72007679b786377b8/rpds_py-0.22.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "70d51bab8e389c2261dba1764e9e793ed6830a63f830fdbec581a242c7c46bda",
                "md5": "b9af38874f8fe4056da3a155107a8918",
                "sha256": "3af6e48651c4e0d2d166dc1b033b7042ea3f871504b6805ba5f4fe31581d8d38"
            },
            "downloads": -1,
            "filename": "rpds_py-0.22.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "b9af38874f8fe4056da3a155107a8918",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 442717,
            "upload_time": "2024-12-04T15:32:24",
            "upload_time_iso_8601": "2024-12-04T15:32:24.399478Z",
            "url": "https://files.pythonhosted.org/packages/70/d5/1bab8e389c2261dba1764e9e793ed6830a63f830fdbec581a242c7c46bda/rpds_py-0.22.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "82a1a45f3e30835b553379b3a56ea6c4eb622cf11e72008229af840e4596a8ea",
                "md5": "e5afaeb6375574baf20f58e4757b23b4",
                "sha256": "e67ba3c290821343c192f7eae1d8fd5999ca2dc99994114643e2f2d3e6138b15"
            },
            "downloads": -1,
            "filename": "rpds_py-0.22.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e5afaeb6375574baf20f58e4757b23b4",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 385721,
            "upload_time": "2024-12-04T15:32:26",
            "upload_time_iso_8601": "2024-12-04T15:32:26.464042Z",
            "url": "https://files.pythonhosted.org/packages/82/a1/a45f3e30835b553379b3a56ea6c4eb622cf11e72008229af840e4596a8ea/rpds_py-0.22.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a627780c942de3120bdd4d0e69583f9c96e179dfff082f6ecbb46b8d6488841f",
                "md5": "4afe392e4384a6027c163401d1e1054f",
                "sha256": "02fbb9c288ae08bcb34fb41d516d5eeb0455ac35b5512d03181d755d80810059"
            },
            "downloads": -1,
            "filename": "rpds_py-0.22.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "4afe392e4384a6027c163401d1e1054f",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 415824,
            "upload_time": "2024-12-04T15:32:27",
            "upload_time_iso_8601": "2024-12-04T15:32:27.742132Z",
            "url": "https://files.pythonhosted.org/packages/a6/27/780c942de3120bdd4d0e69583f9c96e179dfff082f6ecbb46b8d6488841f/rpds_py-0.22.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "940baa0542ca88ad20ea719b06520f925bae348ea5c1fdf201b7e7202d20871d",
                "md5": "f43963f39d9b716c28ec1752fbecf197",
                "sha256": "f56a6b404f74ab372da986d240e2e002769a7d7102cc73eb238a4f72eec5284e"
            },
            "downloads": -1,
            "filename": "rpds_py-0.22.3-cp312-cp312-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "f43963f39d9b716c28ec1752fbecf197",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 561227,
            "upload_time": "2024-12-04T15:32:29",
            "upload_time_iso_8601": "2024-12-04T15:32:29.722469Z",
            "url": "https://files.pythonhosted.org/packages/94/0b/aa0542ca88ad20ea719b06520f925bae348ea5c1fdf201b7e7202d20871d/rpds_py-0.22.3-cp312-cp312-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0d923ed77d215f82c8f844d7f98929d56cc321bb0bcfaf8f166559b8ec56e5f1",
                "md5": "3f99ab3f83772733e4332af6c239dd55",
                "sha256": "0a0461200769ab3b9ab7e513f6013b7a97fdeee41c29b9db343f3c5a8e2b9e61"
            },
            "downloads": -1,
            "filename": "rpds_py-0.22.3-cp312-cp312-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "3f99ab3f83772733e4332af6c239dd55",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 587424,
            "upload_time": "2024-12-04T15:32:31",
            "upload_time_iso_8601": "2024-12-04T15:32:31.039814Z",
            "url": "https://files.pythonhosted.org/packages/0d/92/3ed77d215f82c8f844d7f98929d56cc321bb0bcfaf8f166559b8ec56e5f1/rpds_py-0.22.3-cp312-cp312-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0942cacaeb047a22cab6241f107644f230e2935d4efecf6488859a7dd82fc47d",
                "md5": "e217c580c5e062ebaedf4b9ed5008041",
                "sha256": "8633e471c6207a039eff6aa116e35f69f3156b3989ea3e2d755f7bc41754a4a7"
            },
            "downloads": -1,
            "filename": "rpds_py-0.22.3-cp312-cp312-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e217c580c5e062ebaedf4b9ed5008041",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 555953,
            "upload_time": "2024-12-04T15:32:32",
            "upload_time_iso_8601": "2024-12-04T15:32:32.486112Z",
            "url": "https://files.pythonhosted.org/packages/09/42/cacaeb047a22cab6241f107644f230e2935d4efecf6488859a7dd82fc47d/rpds_py-0.22.3-cp312-cp312-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e652c921dc6d5f5d45b212a456c1f5b17df1a471127e8037eb0972379e39dff4",
                "md5": "1649dbd85caf366b95c432dd0194c9de",
                "sha256": "593eba61ba0c3baae5bc9be2f5232430453fb4432048de28399ca7376de9c627"
            },
            "downloads": -1,
            "filename": "rpds_py-0.22.3-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "1649dbd85caf366b95c432dd0194c9de",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 221339,
            "upload_time": "2024-12-04T15:32:33",
            "upload_time_iso_8601": "2024-12-04T15:32:33.768506Z",
            "url": "https://files.pythonhosted.org/packages/e6/52/c921dc6d5f5d45b212a456c1f5b17df1a471127e8037eb0972379e39dff4/rpds_py-0.22.3-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f2c7f82b5be1e8456600395366f86104d1bd8d0faed3802ad511ef6d60c30d98",
                "md5": "168a55188428e3c76fe491dcbb9a86cf",
                "sha256": "d115bffdd417c6d806ea9069237a4ae02f513b778e3789a359bc5856e0404cc4"
            },
            "downloads": -1,
            "filename": "rpds_py-0.22.3-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "168a55188428e3c76fe491dcbb9a86cf",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 235786,
            "upload_time": "2024-12-04T15:32:34",
            "upload_time_iso_8601": "2024-12-04T15:32:34.985924Z",
            "url": "https://files.pythonhosted.org/packages/f2/c7/f82b5be1e8456600395366f86104d1bd8d0faed3802ad511ef6d60c30d98/rpds_py-0.22.3-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d0bf36d5cc1f2c609ae6e8bf0fc35949355ca9d8790eceb66e6385680c951e60",
                "md5": "a6b32fb3ddcf9694da6a5b4827ee4ac5",
                "sha256": "ea7433ce7e4bfc3a85654aeb6747babe3f66eaf9a1d0c1e7a4435bbdf27fea84"
            },
            "downloads": -1,
            "filename": "rpds_py-0.22.3-cp313-cp313-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a6b32fb3ddcf9694da6a5b4827ee4ac5",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 351657,
            "upload_time": "2024-12-04T15:32:36",
            "upload_time_iso_8601": "2024-12-04T15:32:36.241366Z",
            "url": "https://files.pythonhosted.org/packages/d0/bf/36d5cc1f2c609ae6e8bf0fc35949355ca9d8790eceb66e6385680c951e60/rpds_py-0.22.3-cp313-cp313-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "242af1e0fa124e300c26ea9382e59b2d582cba71cedd340f32d1447f4f29fa4e",
                "md5": "79a74e08f048a63c10bd877e483f548c",
                "sha256": "6dd9412824c4ce1aca56c47b0991e65bebb7ac3f4edccfd3f156150c96a7bf25"
            },
            "downloads": -1,
            "filename": "rpds_py-0.22.3-cp313-cp313-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "79a74e08f048a63c10bd877e483f548c",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 341829,
            "upload_time": "2024-12-04T15:32:37",
            "upload_time_iso_8601": "2024-12-04T15:32:37.607475Z",
            "url": "https://files.pythonhosted.org/packages/24/2a/f1e0fa124e300c26ea9382e59b2d582cba71cedd340f32d1447f4f29fa4e/rpds_py-0.22.3-cp313-cp313-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cfc20da1231dd16953845bed60d1a586fcd6b15ceaeb965f4d35cdc71f70f606",
                "md5": "9c923cc0bee1557a7e7bc0f8c969967d",
                "sha256": "20070c65396f7373f5df4005862fa162db5d25d56150bddd0b3e8214e8ef45b4"
            },
            "downloads": -1,
            "filename": "rpds_py-0.22.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "9c923cc0bee1557a7e7bc0f8c969967d",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 384220,
            "upload_time": "2024-12-04T15:32:38",
            "upload_time_iso_8601": "2024-12-04T15:32:38.854532Z",
            "url": "https://files.pythonhosted.org/packages/cf/c2/0da1231dd16953845bed60d1a586fcd6b15ceaeb965f4d35cdc71f70f606/rpds_py-0.22.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c773a4407f4e3a00a9d4b68c532bf2d873d6b562854a8eaff8faa6133b3588ec",
                "md5": "3404a9142c0809a59a8c0525aa4dc15d",
                "sha256": "0b09865a9abc0ddff4e50b5ef65467cd94176bf1e0004184eb915cbc10fc05c5"
            },
            "downloads": -1,
            "filename": "rpds_py-0.22.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "3404a9142c0809a59a8c0525aa4dc15d",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 391009,
            "upload_time": "2024-12-04T15:32:40",
            "upload_time_iso_8601": "2024-12-04T15:32:40.137569Z",
            "url": "https://files.pythonhosted.org/packages/c7/73/a4407f4e3a00a9d4b68c532bf2d873d6b562854a8eaff8faa6133b3588ec/rpds_py-0.22.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a9c304b7353477ab360fe2563f5f0b176d2105982f97cd9ae80a9c5a18f1ae0f",
                "md5": "bc0ba03916fe279867305f82b6b7d086",
                "sha256": "3453e8d41fe5f17d1f8e9c383a7473cd46a63661628ec58e07777c2fff7196dc"
            },
            "downloads": -1,
            "filename": "rpds_py-0.22.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "bc0ba03916fe279867305f82b6b7d086",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 426989,
            "upload_time": "2024-12-04T15:32:41",
            "upload_time_iso_8601": "2024-12-04T15:32:41.325565Z",
            "url": "https://files.pythonhosted.org/packages/a9/c3/04b7353477ab360fe2563f5f0b176d2105982f97cd9ae80a9c5a18f1ae0f/rpds_py-0.22.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8de6e4b85b722bcf11398e17d59c0f6049d19cd606d35363221951e6d625fcb0",
                "md5": "28e39ecec1d0521d4291d1a530de4b6e",
                "sha256": "f5d36399a1b96e1a5fdc91e0522544580dbebeb1f77f27b2b0ab25559e103b8b"
            },
            "downloads": -1,
            "filename": "rpds_py-0.22.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "28e39ecec1d0521d4291d1a530de4b6e",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 441544,
            "upload_time": "2024-12-04T15:32:42",
            "upload_time_iso_8601": "2024-12-04T15:32:42.589599Z",
            "url": "https://files.pythonhosted.org/packages/8d/e6/e4b85b722bcf11398e17d59c0f6049d19cd606d35363221951e6d625fcb0/rpds_py-0.22.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "27fc403e65e56f65fff25f2973216974976d3f0a5c3f30e53758589b6dc9b79b",
                "md5": "4119b091d1dbb9b3daf2cc1ee6f648e1",
                "sha256": "009de23c9c9ee54bf11303a966edf4d9087cd43a6003672e6aa7def643d06518"
            },
            "downloads": -1,
            "filename": "rpds_py-0.22.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4119b091d1dbb9b3daf2cc1ee6f648e1",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 385179,
            "upload_time": "2024-12-04T15:32:44",
            "upload_time_iso_8601": "2024-12-04T15:32:44.331186Z",
            "url": "https://files.pythonhosted.org/packages/27/fc/403e65e56f65fff25f2973216974976d3f0a5c3f30e53758589b6dc9b79b/rpds_py-0.22.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "579b2be9ff9700d664d51fd96b33d6595791c496d2778cb0b2a634f048437a55",
                "md5": "7aa0e703d4734da45932e6eb83b2b2f5",
                "sha256": "1aef18820ef3e4587ebe8b3bc9ba6e55892a6d7b93bac6d29d9f631a3b4befbd"
            },
            "downloads": -1,
            "filename": "rpds_py-0.22.3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "7aa0e703d4734da45932e6eb83b2b2f5",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 415103,
            "upload_time": "2024-12-04T15:32:46",
            "upload_time_iso_8601": "2024-12-04T15:32:46.599476Z",
            "url": "https://files.pythonhosted.org/packages/57/9b/2be9ff9700d664d51fd96b33d6595791c496d2778cb0b2a634f048437a55/rpds_py-0.22.3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bba503c2ad8ca10994fcf22dd2150dd1d653bc974fa82d9a590494c84c10c641",
                "md5": "2f123c0ae145f456b0a0288c8a39772d",
                "sha256": "f60bd8423be1d9d833f230fdbccf8f57af322d96bcad6599e5a771b151398eb2"
            },
            "downloads": -1,
            "filename": "rpds_py-0.22.3-cp313-cp313-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "2f123c0ae145f456b0a0288c8a39772d",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 560916,
            "upload_time": "2024-12-04T15:32:47",
            "upload_time_iso_8601": "2024-12-04T15:32:47.916226Z",
            "url": "https://files.pythonhosted.org/packages/bb/a5/03c2ad8ca10994fcf22dd2150dd1d653bc974fa82d9a590494c84c10c641/rpds_py-0.22.3-cp313-cp313-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ba2ebe4fdfc8b5b576e588782b56978c5b702c5a2307024120d8aeec1ab818f0",
                "md5": "ef3aaf71f8fa2f77d9977852d3f89377",
                "sha256": "62d9cfcf4948683a18a9aff0ab7e1474d407b7bab2ca03116109f8464698ab16"
            },
            "downloads": -1,
            "filename": "rpds_py-0.22.3-cp313-cp313-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "ef3aaf71f8fa2f77d9977852d3f89377",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 587062,
            "upload_time": "2024-12-04T15:32:49",
            "upload_time_iso_8601": "2024-12-04T15:32:49.274589Z",
            "url": "https://files.pythonhosted.org/packages/ba/2e/be4fdfc8b5b576e588782b56978c5b702c5a2307024120d8aeec1ab818f0/rpds_py-0.22.3-cp313-cp313-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "67e02034c221937709bf9c542603d25ad43a68b4b0a9a0c0b06a742f2756eb66",
                "md5": "e83ef9a077b754a9721d0289f759d756",
                "sha256": "9253fc214112405f0afa7db88739294295f0e08466987f1d70e29930262b4c8f"
            },
            "downloads": -1,
            "filename": "rpds_py-0.22.3-cp313-cp313-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e83ef9a077b754a9721d0289f759d756",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 555734,
            "upload_time": "2024-12-04T15:32:50",
            "upload_time_iso_8601": "2024-12-04T15:32:50.528816Z",
            "url": "https://files.pythonhosted.org/packages/67/e0/2034c221937709bf9c542603d25ad43a68b4b0a9a0c0b06a742f2756eb66/rpds_py-0.22.3-cp313-cp313-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f7c4dbe1cc03df013bf2feb5ad00615038050e7859f381e96fb5b7b4572cd814",
                "md5": "936d416e037c51d8192c28a7d5d249bc",
                "sha256": "f82a116a1d03628a8ace4859556fb39fd1424c933341a08ea3ed6de1edb0283b"
            },
            "downloads": -1,
            "filename": "rpds_py-0.22.3-cp313-cp313t-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "936d416e037c51d8192c28a7d5d249bc",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 347698,
            "upload_time": "2024-12-04T15:32:54",
            "upload_time_iso_8601": "2024-12-04T15:32:54.569526Z",
            "url": "https://files.pythonhosted.org/packages/f7/c4/dbe1cc03df013bf2feb5ad00615038050e7859f381e96fb5b7b4572cd814/rpds_py-0.22.3-cp313-cp313t-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a43a684f66dd6b0f37499cad24cd1c0e523541fd768576fa5ce2d0a8799c3cba",
                "md5": "d044eaa6489fa4388891481525171a1b",
                "sha256": "3dfcbc95bd7992b16f3f7ba05af8a64ca694331bd24f9157b49dadeeb287493b"
            },
            "downloads": -1,
            "filename": "rpds_py-0.22.3-cp313-cp313t-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "d044eaa6489fa4388891481525171a1b",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 337330,
            "upload_time": "2024-12-04T15:32:55",
            "upload_time_iso_8601": "2024-12-04T15:32:55.993021Z",
            "url": "https://files.pythonhosted.org/packages/a4/3a/684f66dd6b0f37499cad24cd1c0e523541fd768576fa5ce2d0a8799c3cba/rpds_py-0.22.3-cp313-cp313t-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "82ebe022c08c2ce2e8f7683baa313476492c0e2c1ca97227fe8a75d9f0181e95",
                "md5": "8844f6018828c4282dba405ac3e30de0",
                "sha256": "59259dc58e57b10e7e18ce02c311804c10c5a793e6568f8af4dead03264584d1"
            },
            "downloads": -1,
            "filename": "rpds_py-0.22.3-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "8844f6018828c4282dba405ac3e30de0",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 380022,
            "upload_time": "2024-12-04T15:32:57",
            "upload_time_iso_8601": "2024-12-04T15:32:57.374292Z",
            "url": "https://files.pythonhosted.org/packages/82/eb/e022c08c2ce2e8f7683baa313476492c0e2c1ca97227fe8a75d9f0181e95/rpds_py-0.22.3-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e4215a80e653e4c86aeb28eb4fea4add1f72e1787a3299687a9187105c3ee966",
                "md5": "1264ca46c43c8f0772b663d90fc05799",
                "sha256": "5725dd9cc02068996d4438d397e255dcb1df776b7ceea3b9cb972bdb11260a83"
            },
            "downloads": -1,
            "filename": "rpds_py-0.22.3-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "1264ca46c43c8f0772b663d90fc05799",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 390754,
            "upload_time": "2024-12-04T15:32:58",
            "upload_time_iso_8601": "2024-12-04T15:32:58.726477Z",
            "url": "https://files.pythonhosted.org/packages/e4/21/5a80e653e4c86aeb28eb4fea4add1f72e1787a3299687a9187105c3ee966/rpds_py-0.22.3-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "37a4d320a04ae90f72d080b3d74597074e62be0a8ecad7d7321312dfe2dc5a6a",
                "md5": "39c59753dc10e97b5c4158d8d339c976",
                "sha256": "99b37292234e61325e7a5bb9689e55e48c3f5f603af88b1642666277a81f1fbd"
            },
            "downloads": -1,
            "filename": "rpds_py-0.22.3-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "39c59753dc10e97b5c4158d8d339c976",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 423840,
            "upload_time": "2024-12-04T15:32:59",
            "upload_time_iso_8601": "2024-12-04T15:32:59.997592Z",
            "url": "https://files.pythonhosted.org/packages/37/a4/d320a04ae90f72d080b3d74597074e62be0a8ecad7d7321312dfe2dc5a6a/rpds_py-0.22.3-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8770674dc47d93db30a6624279284e5631be4c3a12a0340e8e4f349153546728",
                "md5": "8c848c099597b4421edb992be58bd928",
                "sha256": "27b1d3b3915a99208fee9ab092b8184c420f2905b7d7feb4aeb5e4a9c509b8a1"
            },
            "downloads": -1,
            "filename": "rpds_py-0.22.3-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "8c848c099597b4421edb992be58bd928",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 438970,
            "upload_time": "2024-12-04T15:33:02",
            "upload_time_iso_8601": "2024-12-04T15:33:02.057193Z",
            "url": "https://files.pythonhosted.org/packages/87/70/674dc47d93db30a6624279284e5631be4c3a12a0340e8e4f349153546728/rpds_py-0.22.3-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3f649500f4d66601d55cadd21e90784cfd5d5f4560e129d72e4339823129171c",
                "md5": "30998a535ae204978bf380dc2766f0e0",
                "sha256": "f612463ac081803f243ff13cccc648578e2279295048f2a8d5eb430af2bae6e3"
            },
            "downloads": -1,
            "filename": "rpds_py-0.22.3-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "30998a535ae204978bf380dc2766f0e0",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 383146,
            "upload_time": "2024-12-04T15:33:03",
            "upload_time_iso_8601": "2024-12-04T15:33:03.414253Z",
            "url": "https://files.pythonhosted.org/packages/3f/64/9500f4d66601d55cadd21e90784cfd5d5f4560e129d72e4339823129171c/rpds_py-0.22.3-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4d45630327addb1d17173adcf4af01336fd0ee030c04798027dfcb50106001e0",
                "md5": "0d60a4924b65f05fd8b4bb23e3e12549",
                "sha256": "f73d3fef726b3243a811121de45193c0ca75f6407fe66f3f4e183c983573e130"
            },
            "downloads": -1,
            "filename": "rpds_py-0.22.3-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "0d60a4924b65f05fd8b4bb23e3e12549",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 408294,
            "upload_time": "2024-12-04T15:33:05",
            "upload_time_iso_8601": "2024-12-04T15:33:05.504488Z",
            "url": "https://files.pythonhosted.org/packages/4d/45/630327addb1d17173adcf4af01336fd0ee030c04798027dfcb50106001e0/rpds_py-0.22.3-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5fef8efb3373cee54ea9d9980b772e5690a0c9e9214045a4e7fa35046e399fee",
                "md5": "fca44e9cd29271a74af76d9f38849101",
                "sha256": "3f21f0495edea7fdbaaa87e633a8689cd285f8f4af5c869f27bc8074638ad69c"
            },
            "downloads": -1,
            "filename": "rpds_py-0.22.3-cp313-cp313t-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "fca44e9cd29271a74af76d9f38849101",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 556345,
            "upload_time": "2024-12-04T15:33:06",
            "upload_time_iso_8601": "2024-12-04T15:33:06.900294Z",
            "url": "https://files.pythonhosted.org/packages/5f/ef/8efb3373cee54ea9d9980b772e5690a0c9e9214045a4e7fa35046e399fee/rpds_py-0.22.3-cp313-cp313t-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5401151d3b9ef4925fc8f15bfb131086c12ec3c3d6dd4a4f7589c335bf8e85ba",
                "md5": "615502bac6521fc36d8a22da9b080604",
                "sha256": "1e9663daaf7a63ceccbbb8e3808fe90415b0757e2abddbfc2e06c857bf8c5e2b"
            },
            "downloads": -1,
            "filename": "rpds_py-0.22.3-cp313-cp313t-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "615502bac6521fc36d8a22da9b080604",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 582292,
            "upload_time": "2024-12-04T15:33:08",
            "upload_time_iso_8601": "2024-12-04T15:33:08.304781Z",
            "url": "https://files.pythonhosted.org/packages/54/01/151d3b9ef4925fc8f15bfb131086c12ec3c3d6dd4a4f7589c335bf8e85ba/rpds_py-0.22.3-cp313-cp313t-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "308935fc7a6cdf3477d441c7aca5e9bbf5a14e0f25152aed7f63f4e0b141045d",
                "md5": "e28b634531b47b8412fa67834abccbff",
                "sha256": "a76e42402542b1fae59798fab64432b2d015ab9d0c8c47ba7addddbaf7952333"
            },
            "downloads": -1,
            "filename": "rpds_py-0.22.3-cp313-cp313t-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e28b634531b47b8412fa67834abccbff",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 553855,
            "upload_time": "2024-12-04T15:33:10",
            "upload_time_iso_8601": "2024-12-04T15:33:10.000449Z",
            "url": "https://files.pythonhosted.org/packages/30/89/35fc7a6cdf3477d441c7aca5e9bbf5a14e0f25152aed7f63f4e0b141045d/rpds_py-0.22.3-cp313-cp313t-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8fe0830c02b2457c4bd20a8c5bb394d31d81f57fbefce2dbdd2e31feff4f7003",
                "md5": "849730a3b5b01a3136c9a6e77d7e5453",
                "sha256": "69803198097467ee7282750acb507fba35ca22cc3b85f16cf45fb01cb9097730"
            },
            "downloads": -1,
            "filename": "rpds_py-0.22.3-cp313-cp313t-win32.whl",
            "has_sig": false,
            "md5_digest": "849730a3b5b01a3136c9a6e77d7e5453",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 219100,
            "upload_time": "2024-12-04T15:33:11",
            "upload_time_iso_8601": "2024-12-04T15:33:11.343942Z",
            "url": "https://files.pythonhosted.org/packages/8f/e0/830c02b2457c4bd20a8c5bb394d31d81f57fbefce2dbdd2e31feff4f7003/rpds_py-0.22.3-cp313-cp313t-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f8307ac943f69855c2db77407ae363484b915d861702dbba1aa82d68d57f42be",
                "md5": "5f35a01c161a2729126f3b8982133cfd",
                "sha256": "f5cf2a0c2bdadf3791b5c205d55a37a54025c6e18a71c71f82bb536cf9a454bf"
            },
            "downloads": -1,
            "filename": "rpds_py-0.22.3-cp313-cp313t-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "5f35a01c161a2729126f3b8982133cfd",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 233794,
            "upload_time": "2024-12-04T15:33:12",
            "upload_time_iso_8601": "2024-12-04T15:33:12.888970Z",
            "url": "https://files.pythonhosted.org/packages/f8/30/7ac943f69855c2db77407ae363484b915d861702dbba1aa82d68d57f42be/rpds_py-0.22.3-cp313-cp313t-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "eace240bae07b5401a22482b58e18cfbabaa392409b2797da60223cca10d7367",
                "md5": "d76cad0707670d2f11e3285d5c4cb46a",
                "sha256": "fb0ba113b4983beac1a2eb16faffd76cb41e176bf58c4afe3e14b9c681f702de"
            },
            "downloads": -1,
            "filename": "rpds_py-0.22.3-cp313-cp313-win32.whl",
            "has_sig": false,
            "md5_digest": "d76cad0707670d2f11e3285d5c4cb46a",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 220663,
            "upload_time": "2024-12-04T15:32:51",
            "upload_time_iso_8601": "2024-12-04T15:32:51.878577Z",
            "url": "https://files.pythonhosted.org/packages/ea/ce/240bae07b5401a22482b58e18cfbabaa392409b2797da60223cca10d7367/rpds_py-0.22.3-cp313-cp313-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cbf0d330d08f51126330467edae2fa4efa5cec8923c87551a79299380fdea30d",
                "md5": "750cb48c1953ae48bf1de7d513f01a6b",
                "sha256": "c58e2339def52ef6b71b8f36d13c3688ea23fa093353f3a4fee2556e62086ec9"
            },
            "downloads": -1,
            "filename": "rpds_py-0.22.3-cp313-cp313-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "750cb48c1953ae48bf1de7d513f01a6b",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 235503,
            "upload_time": "2024-12-04T15:32:53",
            "upload_time_iso_8601": "2024-12-04T15:32:53.195935Z",
            "url": "https://files.pythonhosted.org/packages/cb/f0/d330d08f51126330467edae2fa4efa5cec8923c87551a79299380fdea30d/rpds_py-0.22.3-cp313-cp313-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "db0fa8ad17ddac7c880f48d5da50733dd25bfc35ba2be1bec9f23453e8c7a123",
                "md5": "3c1a78df04e24aa9ef2307ad8e73d968",
                "sha256": "378753b4a4de2a7b34063d6f95ae81bfa7b15f2c1a04a9518e8644e81807ebea"
            },
            "downloads": -1,
            "filename": "rpds_py-0.22.3-cp39-cp39-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3c1a78df04e24aa9ef2307ad8e73d968",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 359735,
            "upload_time": "2024-12-04T15:33:14",
            "upload_time_iso_8601": "2024-12-04T15:33:14.251445Z",
            "url": "https://files.pythonhosted.org/packages/db/0f/a8ad17ddac7c880f48d5da50733dd25bfc35ba2be1bec9f23453e8c7a123/rpds_py-0.22.3-cp39-cp39-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0c41430903669397ea3ee76865e0b53ea236e8dc0ffbecde47b2c4c783ad6759",
                "md5": "054ea790a23e12b37d6a6d447d80f859",
                "sha256": "3445e07bf2e8ecfeef6ef67ac83de670358abf2996916039b16a218e3d95e97e"
            },
            "downloads": -1,
            "filename": "rpds_py-0.22.3-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "054ea790a23e12b37d6a6d447d80f859",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 348724,
            "upload_time": "2024-12-04T15:33:15",
            "upload_time_iso_8601": "2024-12-04T15:33:15.670491Z",
            "url": "https://files.pythonhosted.org/packages/0c/41/430903669397ea3ee76865e0b53ea236e8dc0ffbecde47b2c4c783ad6759/rpds_py-0.22.3-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c95c3496f4f0ee818297544f2d5f641c49dde8ae156392e6834b79c0609ba006",
                "md5": "a815615fb4fe9d508010469c483e23e2",
                "sha256": "7b2513ba235829860b13faa931f3b6846548021846ac808455301c23a101689d"
            },
            "downloads": -1,
            "filename": "rpds_py-0.22.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "a815615fb4fe9d508010469c483e23e2",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 381782,
            "upload_time": "2024-12-04T15:33:17",
            "upload_time_iso_8601": "2024-12-04T15:33:17.133117Z",
            "url": "https://files.pythonhosted.org/packages/c9/5c/3496f4f0ee818297544f2d5f641c49dde8ae156392e6834b79c0609ba006/rpds_py-0.22.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b6dcdb0523ce0cd16ce579185cc9aa9141992de956d0a9c469ecfd1fb5d54ddc",
                "md5": "ada764bb9d55d15b24da02f577b8f79e",
                "sha256": "eaf16ae9ae519a0e237a0f528fd9f0197b9bb70f40263ee57ae53c2b8d48aeb3"
            },
            "downloads": -1,
            "filename": "rpds_py-0.22.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "ada764bb9d55d15b24da02f577b8f79e",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 387036,
            "upload_time": "2024-12-04T15:33:18",
            "upload_time_iso_8601": "2024-12-04T15:33:18.555778Z",
            "url": "https://files.pythonhosted.org/packages/b6/dc/db0523ce0cd16ce579185cc9aa9141992de956d0a9c469ecfd1fb5d54ddc/rpds_py-0.22.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "852a9525c2427d2c257f877348918136a5d4e1b945c205a256e53bec61e54551",
                "md5": "b4753b51f8fdb5dda31550822106a6d6",
                "sha256": "583f6a1993ca3369e0f80ba99d796d8e6b1a3a2a442dd4e1a79e652116413091"
            },
            "downloads": -1,
            "filename": "rpds_py-0.22.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "b4753b51f8fdb5dda31550822106a6d6",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 424566,
            "upload_time": "2024-12-04T15:33:20",
            "upload_time_iso_8601": "2024-12-04T15:33:20.475805Z",
            "url": "https://files.pythonhosted.org/packages/85/2a/9525c2427d2c257f877348918136a5d4e1b945c205a256e53bec61e54551/rpds_py-0.22.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b91cf8c012a39794b84069635709f559c0309103d5d74b3f5013916e6ca4f174",
                "md5": "516b8907e500b431745889cf131f6c3b",
                "sha256": "4617e1915a539a0d9a9567795023de41a87106522ff83fbfaf1f6baf8e85437e"
            },
            "downloads": -1,
            "filename": "rpds_py-0.22.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "516b8907e500b431745889cf131f6c3b",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 447203,
            "upload_time": "2024-12-04T15:33:21",
            "upload_time_iso_8601": "2024-12-04T15:33:21.846271Z",
            "url": "https://files.pythonhosted.org/packages/b9/1c/f8c012a39794b84069635709f559c0309103d5d74b3f5013916e6ca4f174/rpds_py-0.22.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "93f5c1c772364570d35b98ba64f36ec90c3c6d0b932bc4d8b9b4efef6dc64b07",
                "md5": "7f026578b6c5baa00a7ae6219d8560cd",
                "sha256": "0c150c7a61ed4a4f4955a96626574e9baf1adf772c2fb61ef6a5027e52803543"
            },
            "downloads": -1,
            "filename": "rpds_py-0.22.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7f026578b6c5baa00a7ae6219d8560cd",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 382283,
            "upload_time": "2024-12-04T15:33:23",
            "upload_time_iso_8601": "2024-12-04T15:33:23.292795Z",
            "url": "https://files.pythonhosted.org/packages/93/f5/c1c772364570d35b98ba64f36ec90c3c6d0b932bc4d8b9b4efef6dc64b07/rpds_py-0.22.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1006f94f61313f94fc75c3c3aa74563f80bbd990e5b25a7c1a38cee7d5d0309b",
                "md5": "bf10ded04627ba133727a7627c3c65be",
                "sha256": "2fa4331c200c2521512595253f5bb70858b90f750d39b8cbfd67465f8d1b596d"
            },
            "downloads": -1,
            "filename": "rpds_py-0.22.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "bf10ded04627ba133727a7627c3c65be",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 410022,
            "upload_time": "2024-12-04T15:33:24",
            "upload_time_iso_8601": "2024-12-04T15:33:24.585058Z",
            "url": "https://files.pythonhosted.org/packages/10/06/f94f61313f94fc75c3c3aa74563f80bbd990e5b25a7c1a38cee7d5d0309b/rpds_py-0.22.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3fb037ab416a9528419920dfb64886c220f58fcbd66b978e0a91b66e9ee9a993",
                "md5": "40f5da50959a816e7aa4fd46da8dd71c",
                "sha256": "214b7a953d73b5e87f0ebece4a32a5bd83c60a3ecc9d4ec8f1dca968a2d91e99"
            },
            "downloads": -1,
            "filename": "rpds_py-0.22.3-cp39-cp39-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "40f5da50959a816e7aa4fd46da8dd71c",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 557817,
            "upload_time": "2024-12-04T15:33:26",
            "upload_time_iso_8601": "2024-12-04T15:33:26.379180Z",
            "url": "https://files.pythonhosted.org/packages/3f/b0/37ab416a9528419920dfb64886c220f58fcbd66b978e0a91b66e9ee9a993/rpds_py-0.22.3-cp39-cp39-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2c5d9daa18adcd676dd3b2817c8a7cec3f3ebeeb0ce0d05a1b63bf994fc5114f",
                "md5": "7a10be2b49cbd129dd172f74942c950b",
                "sha256": "f47ad3d5f3258bd7058d2d506852217865afefe6153a36eb4b6928758041d831"
            },
            "downloads": -1,
            "filename": "rpds_py-0.22.3-cp39-cp39-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "7a10be2b49cbd129dd172f74942c950b",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 585099,
            "upload_time": "2024-12-04T15:33:27",
            "upload_time_iso_8601": "2024-12-04T15:33:27.794885Z",
            "url": "https://files.pythonhosted.org/packages/2c/5d/9daa18adcd676dd3b2817c8a7cec3f3ebeeb0ce0d05a1b63bf994fc5114f/rpds_py-0.22.3-cp39-cp39-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "413fad4e58035d3f848410aa3d59857b5f238bafab81c8b4a844281f80445d62",
                "md5": "729028b42722673d91165cef7ac9d6f5",
                "sha256": "f276b245347e6e36526cbd4a266a417796fc531ddf391e43574cf6466c492520"
            },
            "downloads": -1,
            "filename": "rpds_py-0.22.3-cp39-cp39-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "729028b42722673d91165cef7ac9d6f5",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 552818,
            "upload_time": "2024-12-04T15:33:29",
            "upload_time_iso_8601": "2024-12-04T15:33:29.249390Z",
            "url": "https://files.pythonhosted.org/packages/41/3f/ad4e58035d3f848410aa3d59857b5f238bafab81c8b4a844281f80445d62/rpds_py-0.22.3-cp39-cp39-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b819123acae8f4cab3c9463097c3ced3cc87c46f405056e249c874940e045309",
                "md5": "bc86686a1ea6c1b0f5af07317b6fb792",
                "sha256": "bbb232860e3d03d544bc03ac57855cd82ddf19c7a07651a7c0fdb95e9efea8b9"
            },
            "downloads": -1,
            "filename": "rpds_py-0.22.3-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "bc86686a1ea6c1b0f5af07317b6fb792",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 220246,
            "upload_time": "2024-12-04T15:33:30",
            "upload_time_iso_8601": "2024-12-04T15:33:30.672298Z",
            "url": "https://files.pythonhosted.org/packages/b8/19/123acae8f4cab3c9463097c3ced3cc87c46f405056e249c874940e045309/rpds_py-0.22.3-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8b8d9db93e48d96ace1f6713c71ce72e2d94b71d82156c37b6a54e0930486f00",
                "md5": "2a021fe1d9fe8a3883f0b4a7f44d48c1",
                "sha256": "cfbc454a2880389dbb9b5b398e50d439e2e58669160f27b60e5eca11f68ae17c"
            },
            "downloads": -1,
            "filename": "rpds_py-0.22.3-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "2a021fe1d9fe8a3883f0b4a7f44d48c1",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 231932,
            "upload_time": "2024-12-04T15:33:32",
            "upload_time_iso_8601": "2024-12-04T15:33:32.092596Z",
            "url": "https://files.pythonhosted.org/packages/8b/8d/9db93e48d96ace1f6713c71ce72e2d94b71d82156c37b6a54e0930486f00/rpds_py-0.22.3-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8b63e29f8ee14fcf383574f73b6bbdcbec0fbc2e5fc36b4de44d1ac389b1de62",
                "md5": "2c6635d610467e9ab94f07962586d305",
                "sha256": "d48424e39c2611ee1b84ad0f44fb3b2b53d473e65de061e3f460fc0be5f1939d"
            },
            "downloads": -1,
            "filename": "rpds_py-0.22.3-pp310-pypy310_pp73-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2c6635d610467e9ab94f07962586d305",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 360786,
            "upload_time": "2024-12-04T15:33:33",
            "upload_time_iso_8601": "2024-12-04T15:33:33.635543Z",
            "url": "https://files.pythonhosted.org/packages/8b/63/e29f8ee14fcf383574f73b6bbdcbec0fbc2e5fc36b4de44d1ac389b1de62/rpds_py-0.22.3-pp310-pypy310_pp73-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d3e0771ee28b02a24e81c8c0e645796a371350a2bb6672753144f36ae2d2afc9",
                "md5": "6efc69fe15f30f7315c253eb537c312d",
                "sha256": "24e8abb5878e250f2eb0d7859a8e561846f98910326d06c0d51381fed59357bd"
            },
            "downloads": -1,
            "filename": "rpds_py-0.22.3-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "6efc69fe15f30f7315c253eb537c312d",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 350589,
            "upload_time": "2024-12-04T15:33:35",
            "upload_time_iso_8601": "2024-12-04T15:33:35.159248Z",
            "url": "https://files.pythonhosted.org/packages/d3/e0/771ee28b02a24e81c8c0e645796a371350a2bb6672753144f36ae2d2afc9/rpds_py-0.22.3-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cf49abad4c4a1e6f3adf04785a99c247bfabe55ed868133e2d1881200aa5d381",
                "md5": "fd7520bce9bc943775e1b679382d9952",
                "sha256": "4b232061ca880db21fa14defe219840ad9b74b6158adb52ddf0e87bead9e8493"
            },
            "downloads": -1,
            "filename": "rpds_py-0.22.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "fd7520bce9bc943775e1b679382d9952",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 381848,
            "upload_time": "2024-12-04T15:33:36",
            "upload_time_iso_8601": "2024-12-04T15:33:36.736603Z",
            "url": "https://files.pythonhosted.org/packages/cf/49/abad4c4a1e6f3adf04785a99c247bfabe55ed868133e2d1881200aa5d381/rpds_py-0.22.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3a7df4bc6d6fbe6af7a0d2b5f2ee77079efef7c8528712745659ec0026888998",
                "md5": "4cd18cabde3ab2c1c99c5db7c14408b5",
                "sha256": "ac0a03221cdb5058ce0167ecc92a8c89e8d0decdc9e99a2ec23380793c4dcb96"
            },
            "downloads": -1,
            "filename": "rpds_py-0.22.3-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "4cd18cabde3ab2c1c99c5db7c14408b5",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 387879,
            "upload_time": "2024-12-04T15:33:38",
            "upload_time_iso_8601": "2024-12-04T15:33:38.057953Z",
            "url": "https://files.pythonhosted.org/packages/3a/7d/f4bc6d6fbe6af7a0d2b5f2ee77079efef7c8528712745659ec0026888998/rpds_py-0.22.3-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "13b0575c797377fdcd26cedbb00a3324232e4cb2c5d121f6e4b0dbf8468b12ef",
                "md5": "012af1917613748784c511b64ca3dc51",
                "sha256": "eb0c341fa71df5a4595f9501df4ac5abfb5a09580081dffbd1ddd4654e6e9123"
            },
            "downloads": -1,
            "filename": "rpds_py-0.22.3-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "012af1917613748784c511b64ca3dc51",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 423916,
            "upload_time": "2024-12-04T15:33:39",
            "upload_time_iso_8601": "2024-12-04T15:33:39.696511Z",
            "url": "https://files.pythonhosted.org/packages/13/b0/575c797377fdcd26cedbb00a3324232e4cb2c5d121f6e4b0dbf8468b12ef/rpds_py-0.22.3-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "547887157fa39d58f32a68d3326f8a81ad8fb99f49fe2aa7ad9a1b7d544f9478",
                "md5": "f4a0b8c5ea93a57a035ccfb407d496c7",
                "sha256": "bf9db5488121b596dbfc6718c76092fda77b703c1f7533a226a5a9f65248f8ad"
            },
            "downloads": -1,
            "filename": "rpds_py-0.22.3-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "f4a0b8c5ea93a57a035ccfb407d496c7",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 448410,
            "upload_time": "2024-12-04T15:33:41",
            "upload_time_iso_8601": "2024-12-04T15:33:41.729110Z",
            "url": "https://files.pythonhosted.org/packages/54/78/87157fa39d58f32a68d3326f8a81ad8fb99f49fe2aa7ad9a1b7d544f9478/rpds_py-0.22.3-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5969860f89996065a88be1b6ff2d60e96a02b920a262d8aadab99e7903986597",
                "md5": "173f70460b4570963624b5312582c68a",
                "sha256": "0b8db6b5b2d4491ad5b6bdc2bc7c017eec108acbf4e6785f42a9eb0ba234f4c9"
            },
            "downloads": -1,
            "filename": "rpds_py-0.22.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "173f70460b4570963624b5312582c68a",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 382841,
            "upload_time": "2024-12-04T15:33:43",
            "upload_time_iso_8601": "2024-12-04T15:33:43.169132Z",
            "url": "https://files.pythonhosted.org/packages/59/69/860f89996065a88be1b6ff2d60e96a02b920a262d8aadab99e7903986597/rpds_py-0.22.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bdd7bc144e10d27e3cb350f98df2492a319edd3caaf52ddfe1293f37a9afbfd7",
                "md5": "f3547ebc3266b51db8276939f6c57897",
                "sha256": "b3d504047aba448d70cf6fa22e06cb09f7cbd761939fdd47604f5e007675c24e"
            },
            "downloads": -1,
            "filename": "rpds_py-0.22.3-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "f3547ebc3266b51db8276939f6c57897",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 409662,
            "upload_time": "2024-12-04T15:33:44",
            "upload_time_iso_8601": "2024-12-04T15:33:44.748220Z",
            "url": "https://files.pythonhosted.org/packages/bd/d7/bc144e10d27e3cb350f98df2492a319edd3caaf52ddfe1293f37a9afbfd7/rpds_py-0.22.3-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "142a6bed0b05233c291a94c7e89bc76ffa1c619d4e1979fbfe5d96024020c1fb",
                "md5": "0f6263b174b52566bd786ad8d35f828e",
                "sha256": "e61b02c3f7a1e0b75e20c3978f7135fd13cb6cf551bf4a6d29b999a88830a338"
            },
            "downloads": -1,
            "filename": "rpds_py-0.22.3-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "0f6263b174b52566bd786ad8d35f828e",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 558221,
            "upload_time": "2024-12-04T15:33:46",
            "upload_time_iso_8601": "2024-12-04T15:33:46.459779Z",
            "url": "https://files.pythonhosted.org/packages/14/2a/6bed0b05233c291a94c7e89bc76ffa1c619d4e1979fbfe5d96024020c1fb/rpds_py-0.22.3-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1123cd8f566de444a137bc1ee5795e47069a947e60810ba4152886fe5308e1b7",
                "md5": "d5a30947341fb938aeb9fd8d9109c14f",
                "sha256": "e35ba67d65d49080e8e5a1dd40101fccdd9798adb9b050ff670b7d74fa41c566"
            },
            "downloads": -1,
            "filename": "rpds_py-0.22.3-pp310-pypy310_pp73-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "d5a30947341fb938aeb9fd8d9109c14f",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 583780,
            "upload_time": "2024-12-04T15:33:48",
            "upload_time_iso_8601": "2024-12-04T15:33:48.247124Z",
            "url": "https://files.pythonhosted.org/packages/11/23/cd8f566de444a137bc1ee5795e47069a947e60810ba4152886fe5308e1b7/rpds_py-0.22.3-pp310-pypy310_pp73-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8d6379c3602afd14d501f751e615a74a59040328da5ef29ed5754ae80d236b84",
                "md5": "db22b6ee675b10080638166e200da65e",
                "sha256": "26fd7cac7dd51011a245f29a2cc6489c4608b5a8ce8d75661bb4a1066c52dfbe"
            },
            "downloads": -1,
            "filename": "rpds_py-0.22.3-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "db22b6ee675b10080638166e200da65e",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 553619,
            "upload_time": "2024-12-04T15:33:50",
            "upload_time_iso_8601": "2024-12-04T15:33:50.449936Z",
            "url": "https://files.pythonhosted.org/packages/8d/63/79c3602afd14d501f751e615a74a59040328da5ef29ed5754ae80d236b84/rpds_py-0.22.3-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9f2ec5c1689e80298d4e94c75b70faada4c25445739d91b94c211244a3ed7ed1",
                "md5": "c9330309c6bdd84c73bf818466bfa730",
                "sha256": "177c7c0fce2855833819c98e43c262007f42ce86651ffbb84f37883308cb0e7d"
            },
            "downloads": -1,
            "filename": "rpds_py-0.22.3-pp310-pypy310_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "c9330309c6bdd84c73bf818466bfa730",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 233338,
            "upload_time": "2024-12-04T15:33:51",
            "upload_time_iso_8601": "2024-12-04T15:33:51.954696Z",
            "url": "https://files.pythonhosted.org/packages/9f/2e/c5c1689e80298d4e94c75b70faada4c25445739d91b94c211244a3ed7ed1/rpds_py-0.22.3-pp310-pypy310_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bcb7d2c205723e3b4d75b03215694f0297a1b4b395bf834cb5896ad9bbb90f90",
                "md5": "6eb57760cdaeb9f5d3881193bb2063c6",
                "sha256": "bb47271f60660803ad11f4c61b42242b8c1312a31c98c578f79ef9387bbde21c"
            },
            "downloads": -1,
            "filename": "rpds_py-0.22.3-pp39-pypy39_pp73-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6eb57760cdaeb9f5d3881193bb2063c6",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 360594,
            "upload_time": "2024-12-04T15:33:53",
            "upload_time_iso_8601": "2024-12-04T15:33:53.482886Z",
            "url": "https://files.pythonhosted.org/packages/bc/b7/d2c205723e3b4d75b03215694f0297a1b4b395bf834cb5896ad9bbb90f90/rpds_py-0.22.3-pp39-pypy39_pp73-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d88fc3515f5234cf6055046d4cfe9c80a3742a20acfa7d0b1b290f0d7f56a8db",
                "md5": "d5a1a1b086aa86b88de2275022b69e8a",
                "sha256": "70fb28128acbfd264eda9bf47015537ba3fe86e40d046eb2963d75024be4d055"
            },
            "downloads": -1,
            "filename": "rpds_py-0.22.3-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "d5a1a1b086aa86b88de2275022b69e8a",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 349594,
            "upload_time": "2024-12-04T15:33:54",
            "upload_time_iso_8601": "2024-12-04T15:33:54.960203Z",
            "url": "https://files.pythonhosted.org/packages/d8/8f/c3515f5234cf6055046d4cfe9c80a3742a20acfa7d0b1b290f0d7f56a8db/rpds_py-0.22.3-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6b985b487cb06afc484befe350c87fda37f4ce11333f04f3380aba43dcf5bce2",
                "md5": "3ac7843f302aba891b4e5def500a1fd7",
                "sha256": "44d61b4b7d0c2c9ac019c314e52d7cbda0ae31078aabd0f22e583af3e0d79723"
            },
            "downloads": -1,
            "filename": "rpds_py-0.22.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "3ac7843f302aba891b4e5def500a1fd7",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 381138,
            "upload_time": "2024-12-04T15:33:57",
            "upload_time_iso_8601": "2024-12-04T15:33:57.074133Z",
            "url": "https://files.pythonhosted.org/packages/6b/98/5b487cb06afc484befe350c87fda37f4ce11333f04f3380aba43dcf5bce2/rpds_py-0.22.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5e3a12308d2c51b3fdfc173619943b7dc5ba41b4850c47112eeda38d9c54ed12",
                "md5": "bf91c3549404897d905a8f8406cd2306",
                "sha256": "5f0e260eaf54380380ac3808aa4ebe2d8ca28b9087cf411649f96bad6900c728"
            },
            "downloads": -1,
            "filename": "rpds_py-0.22.3-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "bf91c3549404897d905a8f8406cd2306",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 387828,
            "upload_time": "2024-12-04T15:33:59",
            "upload_time_iso_8601": "2024-12-04T15:33:59.232016Z",
            "url": "https://files.pythonhosted.org/packages/5e/3a/12308d2c51b3fdfc173619943b7dc5ba41b4850c47112eeda38d9c54ed12/rpds_py-0.22.3-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "17b2c242241ab5a2a206e093f24ccbfa519c4bbf10a762ac90bffe1766c225e0",
                "md5": "53f1b3d6fe2f369e01b86691d9b4a1b1",
                "sha256": "b25bc607423935079e05619d7de556c91fb6adeae9d5f80868dde3468657994b"
            },
            "downloads": -1,
            "filename": "rpds_py-0.22.3-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "53f1b3d6fe2f369e01b86691d9b4a1b1",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 424634,
            "upload_time": "2024-12-04T15:34:01",
            "upload_time_iso_8601": "2024-12-04T15:34:01.019676Z",
            "url": "https://files.pythonhosted.org/packages/17/b2/c242241ab5a2a206e093f24ccbfa519c4bbf10a762ac90bffe1766c225e0/rpds_py-0.22.3-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d5c752a1b15012139f3ba740f291f1d03c6b632938ba61bc605f24c101952493",
                "md5": "7394fefd12b5f76b208165f6572956ab",
                "sha256": "fb6116dfb8d1925cbdb52595560584db42a7f664617a1f7d7f6e32f138cdf37d"
            },
            "downloads": -1,
            "filename": "rpds_py-0.22.3-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "7394fefd12b5f76b208165f6572956ab",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 447862,
            "upload_time": "2024-12-04T15:34:03",
            "upload_time_iso_8601": "2024-12-04T15:34:03.302239Z",
            "url": "https://files.pythonhosted.org/packages/d5/c7/52a1b15012139f3ba740f291f1d03c6b632938ba61bc605f24c101952493/rpds_py-0.22.3-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "553e4d3ed8fd01bad77e8ed101116fe63b03f1011940d9596a8f4d82ac80cacd",
                "md5": "b701fe770f46a31ca66db4540c06518d",
                "sha256": "a63cbdd98acef6570c62b92a1e43266f9e8b21e699c363c0fef13bd530799c11"
            },
            "downloads": -1,
            "filename": "rpds_py-0.22.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b701fe770f46a31ca66db4540c06518d",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 382506,
            "upload_time": "2024-12-04T15:34:04",
            "upload_time_iso_8601": "2024-12-04T15:34:04.847461Z",
            "url": "https://files.pythonhosted.org/packages/55/3e/4d3ed8fd01bad77e8ed101116fe63b03f1011940d9596a8f4d82ac80cacd/rpds_py-0.22.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3078df59d6f92470a84369a3757abeae1cfd7f7239c8beb6d948949bf78317d2",
                "md5": "701f46fc1a01440bd4cab333ea4180ea",
                "sha256": "2b8f60e1b739a74bab7e01fcbe3dddd4657ec685caa04681df9d562ef15b625f"
            },
            "downloads": -1,
            "filename": "rpds_py-0.22.3-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "701f46fc1a01440bd4cab333ea4180ea",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 410534,
            "upload_time": "2024-12-04T15:34:06",
            "upload_time_iso_8601": "2024-12-04T15:34:06.506129Z",
            "url": "https://files.pythonhosted.org/packages/30/78/df59d6f92470a84369a3757abeae1cfd7f7239c8beb6d948949bf78317d2/rpds_py-0.22.3-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3897ea45d1edd9b753b20084b52dd5db6ee5e1ac3e036a27149972398a413858",
                "md5": "1a86984590b1f6353c2cea1ce2b19116",
                "sha256": "2e8b55d8517a2fda8d95cb45d62a5a8bbf9dd0ad39c5b25c8833efea07b880ca"
            },
            "downloads": -1,
            "filename": "rpds_py-0.22.3-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "1a86984590b1f6353c2cea1ce2b19116",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 557453,
            "upload_time": "2024-12-04T15:34:08",
            "upload_time_iso_8601": "2024-12-04T15:34:08.069714Z",
            "url": "https://files.pythonhosted.org/packages/38/97/ea45d1edd9b753b20084b52dd5db6ee5e1ac3e036a27149972398a413858/rpds_py-0.22.3-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "08cd3a1b35eb9da27ffbb981cfffd32a01c7655c4431ccb278cb3064f8887462",
                "md5": "44a98df12a0655eee3f342874580081a",
                "sha256": "2de29005e11637e7a2361fa151f780ff8eb2543a0da1413bb951e9f14b699ef3"
            },
            "downloads": -1,
            "filename": "rpds_py-0.22.3-pp39-pypy39_pp73-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "44a98df12a0655eee3f342874580081a",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 584412,
            "upload_time": "2024-12-04T15:34:09",
            "upload_time_iso_8601": "2024-12-04T15:34:09.616792Z",
            "url": "https://files.pythonhosted.org/packages/08/cd/3a1b35eb9da27ffbb981cfffd32a01c7655c4431ccb278cb3064f8887462/rpds_py-0.22.3-pp39-pypy39_pp73-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "879131d1c5aeb1606f71188259e0ba6ed6f5c21a3c72f58b51db6a8bd0aa2b5d",
                "md5": "04f39f5516d5f17e6b1251272a51f9a4",
                "sha256": "666ecce376999bf619756a24ce15bb14c5bfaf04bf00abc7e663ce17c3f34fe7"
            },
            "downloads": -1,
            "filename": "rpds_py-0.22.3-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "04f39f5516d5f17e6b1251272a51f9a4",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 553446,
            "upload_time": "2024-12-04T15:34:11",
            "upload_time_iso_8601": "2024-12-04T15:34:11.215421Z",
            "url": "https://files.pythonhosted.org/packages/87/91/31d1c5aeb1606f71188259e0ba6ed6f5c21a3c72f58b51db6a8bd0aa2b5d/rpds_py-0.22.3-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e7ad03b5ccd1ab492c9dece85b3bf1c96453ab8c47983936fae6880f688f60b3",
                "md5": "fd1327c4e90c7bc0b7a6958fc705cbd6",
                "sha256": "5246b14ca64a8675e0a7161f7af68fe3e910e6b90542b4bfb5439ba752191df6"
            },
            "downloads": -1,
            "filename": "rpds_py-0.22.3-pp39-pypy39_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "fd1327c4e90c7bc0b7a6958fc705cbd6",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 233013,
            "upload_time": "2024-12-04T15:34:12",
            "upload_time_iso_8601": "2024-12-04T15:34:12.743182Z",
            "url": "https://files.pythonhosted.org/packages/e7/ad/03b5ccd1ab492c9dece85b3bf1c96453ab8c47983936fae6880f688f60b3/rpds_py-0.22.3-pp39-pypy39_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0180cce854d0921ff2f0a9fa831ba3ad3c65cee3a46711addf39a2af52df2cfd",
                "md5": "461d6f4e753bfd1f26627f5520294b88",
                "sha256": "e32fee8ab45d3c2db6da19a5323bc3362237c8b653c70194414b892fd06a080d"
            },
            "downloads": -1,
            "filename": "rpds_py-0.22.3.tar.gz",
            "has_sig": false,
            "md5_digest": "461d6f4e753bfd1f26627f5520294b88",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.9",
            "size": 26771,
            "upload_time": "2024-12-04T15:34:14",
            "upload_time_iso_8601": "2024-12-04T15:34:14.949874Z",
            "url": "https://files.pythonhosted.org/packages/01/80/cce854d0921ff2f0a9fa831ba3ad3c65cee3a46711addf39a2af52df2cfd/rpds_py-0.22.3.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-12-04 15:34:14",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "sponsors",
    "github_project": "Julian",
    "github_not_found": true,
    "lcname": "rpds-py"
}
        
Elapsed time: 0.38463s