{
  "result": {
    "6.7.1": {
      "name": "multidict",
      "version": "6.7.1",
      "metadata_version": "2.4",
      "summary": "multidict implementation",
      "home_page": "https://github.com/aio-libs/multidict",
      "author": "Andrew Svetlov",
      "author_email": "andrew.svetlov@gmail.com",
      "maintainer": "",
      "maintainer_email": "",
      "license": "Apache License 2.0",
      "description": "=========\nmultidict\n=========\n\n.. image:: https://github.com/aio-libs/multidict/actions/workflows/ci-cd.yml/badge.svg\n   :target: https://github.com/aio-libs/multidict/actions\n   :alt: GitHub status for master branch\n\n.. image:: https://codecov.io/gh/aio-libs/multidict/branch/master/graph/badge.svg?flag=pytest\n   :target: https://codecov.io/gh/aio-libs/multidict?flags[]=pytest\n   :alt: Coverage metrics\n\n.. image:: https://img.shields.io/pypi/v/multidict.svg\n   :target: https://pypi.org/project/multidict\n   :alt: PyPI\n\n.. image:: https://readthedocs.org/projects/multidict/badge/?version=latest\n   :target: https://multidict.aio-libs.org\n   :alt: Read The Docs build status badge\n\n.. image:: https://img.shields.io/endpoint?url=https://codspeed.io/badge.json\n   :target: https://codspeed.io/aio-libs/multidict\n   :alt: CodSpeed\n\n.. image:: https://img.shields.io/pypi/pyversions/multidict.svg\n   :target: https://pypi.org/project/multidict\n   :alt: Python versions\n\n.. image:: https://img.shields.io/matrix/aio-libs:matrix.org?label=Discuss%20on%20Matrix%20at%20%23aio-libs%3Amatrix.org&logo=matrix&server_fqdn=matrix.org&style=flat\n   :target: https://matrix.to/#/%23aio-libs:matrix.org\n   :alt: Matrix Room \u2014 #aio-libs:matrix.org\n\n.. image:: https://img.shields.io/matrix/aio-libs-space:matrix.org?label=Discuss%20on%20Matrix%20at%20%23aio-libs-space%3Amatrix.org&logo=matrix&server_fqdn=matrix.org&style=flat\n   :target: https://matrix.to/#/%23aio-libs-space:matrix.org\n   :alt: Matrix Space \u2014 #aio-libs-space:matrix.org\n\nMultidict is dict-like collection of *key-value pairs* where key\nmight occur more than once in the container.\n\nIntroduction\n------------\n\n*HTTP Headers* and *URL query string* require specific data structure:\n*multidict*. It behaves mostly like a regular ``dict`` but it may have\nseveral *values* for the same *key* and *preserves insertion ordering*.\n\nThe *key* is ``str`` (or ``istr`` for case-insensitive dictionaries).\n\n``multidict`` has four multidict classes:\n``MultiDict``, ``MultiDictProxy``, ``CIMultiDict``\nand ``CIMultiDictProxy``.\n\nImmutable proxies (``MultiDictProxy`` and\n``CIMultiDictProxy``) provide a dynamic view for the\nproxied multidict, the view reflects underlying collection changes. They\nimplement the ``collections.abc.Mapping`` interface.\n\nRegular mutable (``MultiDict`` and ``CIMultiDict``) classes\nimplement ``collections.abc.MutableMapping`` and allows them to change\ntheir own content.\n\n\n*Case insensitive* (``CIMultiDict`` and\n``CIMultiDictProxy``) assume the *keys* are case\ninsensitive, e.g.::\n\n   >>> dct = CIMultiDict(key='val')\n   >>> 'Key' in dct\n   True\n   >>> dct['Key']\n   'val'\n\n*Keys* should be ``str`` or ``istr`` instances.\n\nThe library has optional C Extensions for speed.\n\n\nLicense\n-------\n\nApache 2\n\nLibrary Installation\n--------------------\n\n.. code-block:: bash\n\n   $ pip install multidict\n\nThe library is Python 3 only!\n\nPyPI contains binary wheels for Linux, Windows and MacOS.  If you want to install\n``multidict`` on another operating system (or *Alpine Linux* inside a Docker) the\ntarball will be used to compile the library from source.  It requires a C compiler and\nPython headers to be installed.\n\nTo skip the compilation, please use the `MULTIDICT_NO_EXTENSIONS` environment variable,\ne.g.:\n\n.. code-block:: bash\n\n   $ MULTIDICT_NO_EXTENSIONS=1 pip install multidict\n\nPlease note, the pure Python (uncompiled) version is about 20-50 times slower depending on\nthe usage scenario!!!\n\nFor extension development, set the ``MULTIDICT_DEBUG_BUILD`` environment variable to compile\nthe extensions in debug mode:\n\n.. code-block:: console\n\n   $ MULTIDICT_DEBUG_BUILD=1 pip install multidict\n\nChangelog\n---------\nSee `RTD page <http://multidict.aio-libs.org/en/latest/changes>`_.\n",
      "keywords": "",
      "platform": [],
      "classifiers": [
        "Development Status :: 5 - Production/Stable",
        "Intended Audience :: Developers",
        "Programming Language :: Python",
        "Programming Language :: Python :: 3",
        "Programming Language :: Python :: 3.9",
        "Programming Language :: Python :: 3.10",
        "Programming Language :: Python :: 3.11",
        "Programming Language :: Python :: 3.12",
        "Programming Language :: Python :: 3.13",
        "Programming Language :: Python :: 3.14",
        "Environment :: MetaData :: IBM Python Ecosystem"
      ],
      "download_url": "",
      "supported_platform": [],
      "comment": "",
      "provides": [],
      "requires": [],
      "obsoletes": [],
      "project_urls": [
        "Chat: Matrix, https://matrix.to/#/#aio-libs:matrix.org",
        "Chat: Matrix Space, https://matrix.to/#/#aio-libs-space:matrix.org",
        "CI: GitHub, https://github.com/aio-libs/multidict/actions",
        "Code of Conduct, https://github.com/aio-libs/.github/blob/master/CODE_OF_CONDUCT.md",
        "Coverage: codecov, https://codecov.io/github/aio-libs/multidict",
        "Docs: Changelog, https://multidict.aio-libs.org/en/latest/changes/",
        "Docs: RTD, https://multidict.aio-libs.org",
        "GitHub: issues, https://github.com/aio-libs/multidict/issues",
        "GitHub: repo, https://github.com/aio-libs/multidict"
      ],
      "provides_dist": [],
      "obsoletes_dist": [],
      "requires_dist": [
        "typing-extensions>=4.1.0; python_version < \"3.11\""
      ],
      "requires_external": [],
      "requires_python": ">=3.9",
      "description_content_type": "text/x-rst",
      "provides_extras": [],
      "dynamic": [
        "license-file"
      ],
      "license_expression": "",
      "license_file": [
        "LICENSE"
      ],
      "+links": [
        {
          "rel": "releasefile",
          "hash_spec": "sha256=14afc44387f27d1ec3550b16f77697f7c3fa79b045b333096aeeba618e36fb9a",
          "hashes": {
            "sha256": "14afc44387f27d1ec3550b16f77697f7c3fa79b045b333096aeeba618e36fb9a"
          },
          "href": "https://wheels.developerfirst.ibm.com/ppc64le/linux/+f/14a/fc44387f27d1e/multidict-6.7.1-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl",
          "log": [
            {
              "what": "upload",
              "who": "ppc64le",
              "when": [
                2026,
                7,
                27,
                12,
                50,
                47
              ],
              "dst": "ppc64le/linux"
            }
          ]
        },
        {
          "rel": "releasefile",
          "hash_spec": "sha256=95950dfd6f06fae2d366c8b713db80f8000b39cf593e0af02615b320e8b8228d",
          "hashes": {
            "sha256": "95950dfd6f06fae2d366c8b713db80f8000b39cf593e0af02615b320e8b8228d"
          },
          "href": "https://wheels.developerfirst.ibm.com/ppc64le/linux/+f/959/50dfd6f06fae2/multidict-6.7.1-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl",
          "log": [
            {
              "what": "upload",
              "who": "ppc64le",
              "when": [
                2026,
                7,
                27,
                12,
                50,
                48
              ],
              "dst": "ppc64le/linux"
            }
          ]
        },
        {
          "rel": "releasefile",
          "hash_spec": "sha256=abe218c1d9296c8a43118c8a8d6eb14351725604831e7dd82af3fadba9018cb3",
          "hashes": {
            "sha256": "abe218c1d9296c8a43118c8a8d6eb14351725604831e7dd82af3fadba9018cb3"
          },
          "href": "https://wheels.developerfirst.ibm.com/ppc64le/linux/+f/abe/218c1d9296c8a/multidict-6.7.1-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl",
          "log": [
            {
              "what": "upload",
              "who": "ppc64le",
              "when": [
                2026,
                7,
                27,
                12,
                50,
                48
              ],
              "dst": "ppc64le/linux"
            }
          ]
        },
        {
          "rel": "releasefile",
          "hash_spec": "sha256=8904577016feac3f2da85c8c9d841f1676ada2066a6057fc20a5deaed5d41a60",
          "hashes": {
            "sha256": "8904577016feac3f2da85c8c9d841f1676ada2066a6057fc20a5deaed5d41a60"
          },
          "href": "https://wheels.developerfirst.ibm.com/ppc64le/linux/+f/890/4577016feac3f/multidict-6.7.1-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl",
          "log": [
            {
              "what": "upload",
              "who": "ppc64le",
              "when": [
                2026,
                7,
                27,
                12,
                50,
                49
              ],
              "dst": "ppc64le/linux"
            }
          ]
        },
        {
          "rel": "releasefile",
          "hash_spec": "sha256=fab61de647c7c8b888b1e60f506bf361d1c5628131949ab92b27fb742ede4a69",
          "hashes": {
            "sha256": "fab61de647c7c8b888b1e60f506bf361d1c5628131949ab92b27fb742ede4a69"
          },
          "href": "https://wheels.developerfirst.ibm.com/ppc64le/linux/+f/fab/61de647c7c8b8/multidict-6.7.1-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl",
          "log": [
            {
              "what": "upload",
              "who": "ppc64le",
              "when": [
                2026,
                7,
                27,
                12,
                50,
                49
              ],
              "dst": "ppc64le/linux"
            }
          ]
        },
        {
          "rel": "releasefile",
          "hash_spec": "sha256=5212709cd254753a254ea287f17d283e7fd15d70220c9d46f7e297c07b018e3d",
          "hashes": {
            "sha256": "5212709cd254753a254ea287f17d283e7fd15d70220c9d46f7e297c07b018e3d"
          },
          "href": "https://wheels.developerfirst.ibm.com/ppc64le/linux/+f/521/2709cd254753a/multidict-6.7.1-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl",
          "log": [
            {
              "what": "upload",
              "who": "ppc64le",
              "when": [
                2026,
                7,
                27,
                12,
                50,
                50
              ],
              "dst": "ppc64le/linux"
            }
          ]
        }
      ]
    },
    "6.0.2+ppc64le2": {
      "name": "multidict",
      "version": "6.0.2+ppc64le2",
      "metadata_version": "2.4",
      "summary": "multidict implementation",
      "home_page": "https://github.com/aio-libs/multidict",
      "author": "Andrew Svetlov",
      "author_email": "andrew.svetlov@gmail.com",
      "maintainer": "",
      "maintainer_email": "",
      "license": "Apache 2",
      "description": "=========\nmultidict\n=========\n\n.. image:: https://github.com/aio-libs/multidict/workflows/CI/badge.svg\n   :target: https://github.com/aio-libs/multidict/actions?query=workflow%3ACI\n   :alt: GitHub status for master branch\n\n.. image:: https://codecov.io/gh/aio-libs/multidict/branch/master/graph/badge.svg\n   :target: https://codecov.io/gh/aio-libs/multidict\n   :alt: Coverage metrics\n\n.. image:: https://img.shields.io/pypi/v/multidict.svg\n   :target: https://pypi.org/project/multidict\n   :alt: PyPI\n\n.. image:: https://readthedocs.org/projects/multidict/badge/?version=latest\n   :target: http://multidict.readthedocs.org/en/latest/?badge=latest\n   :alt: Documentationb\n\n.. image:: https://img.shields.io/pypi/pyversions/multidict.svg\n   :target: https://pypi.org/project/multidict\n   :alt: Python versions\n\n.. image:: https://badges.gitter.im/Join%20Chat.svg\n   :target: https://gitter.im/aio-libs/Lobby\n   :alt: Chat on Gitter\n\nMultidict is dict-like collection of *key-value pairs* where key\nmight be occurred more than once in the container.\n\nIntroduction\n------------\n\n*HTTP Headers* and *URL query string* require specific data structure:\n*multidict*. It behaves mostly like a regular ``dict`` but it may have\nseveral *values* for the same *key* and *preserves insertion ordering*.\n\nThe *key* is ``str`` (or ``istr`` for case-insensitive dictionaries).\n\n``multidict`` has four multidict classes:\n``MultiDict``, ``MultiDictProxy``, ``CIMultiDict``\nand ``CIMultiDictProxy``.\n\nImmutable proxies (``MultiDictProxy`` and\n``CIMultiDictProxy``) provide a dynamic view for the\nproxied multidict, the view reflects underlying collection changes. They\nimplement the ``collections.abc.Mapping`` interface.\n\nRegular mutable (``MultiDict`` and ``CIMultiDict``) classes\nimplement ``collections.abc.MutableMapping`` and allows to change\ntheir own content.\n\n\n*Case insensitive* (``CIMultiDict`` and\n``CIMultiDictProxy``) ones assume the *keys* are case\ninsensitive, e.g.::\n\n   >>> dct = CIMultiDict(key='val')\n   >>> 'Key' in dct\n   True\n   >>> dct['Key']\n   'val'\n\n*Keys* should be ``str`` or ``istr`` instances.\n\nThe library has optional C Extensions for sake of speed.\n\n\nLicense\n-------\n\nApache 2\n\nLibrary Installation\n--------------------\n\n.. code-block:: bash\n\n   $ pip install multidict\n\nThe library is Python 3 only!\n\nPyPI contains binary wheels for Linux, Windows and MacOS.  If you want to install\n``multidict`` on another operation system (or *Alpine Linux* inside a Docker) the\nTarball will be used to compile the library from sources.  It requires C compiler and\nPython headers installed.\n\nTo skip the compilation please use `MULTIDICT_NO_EXTENSIONS` environment variable,\ne.g.:\n\n.. code-block:: bash\n\n   $ MULTIDICT_NO_EXTENSIONS=1 pip install multidict\n\nPlease note, Pure Python (uncompiled) version is about 20-50 times slower depending on\nthe usage scenario!!!\n\n\n\nChangelog\n---------\nSee `RTD page <http://multidict.readthedocs.org/en/latest/changes.html>`_.\n",
      "keywords": "",
      "platform": [],
      "classifiers": [
        "License :: OSI Approved :: Apache Software License",
        "Intended Audience :: Developers",
        "Programming Language :: Python",
        "Programming Language :: Python :: 3",
        "Programming Language :: Python :: 3.7",
        "Programming Language :: Python :: 3.8",
        "Programming Language :: Python :: 3.9",
        "Programming Language :: Python :: 3.10",
        "Development Status :: 5 - Production/Stable",
        "Environment :: MetaData :: IBM Python Ecosystem"
      ],
      "download_url": "",
      "supported_platform": [],
      "comment": "",
      "provides": [],
      "requires": [],
      "obsoletes": [],
      "project_urls": [
        "Chat: Gitter, https://gitter.im/aio-libs/Lobby",
        "CI: GitHub, https://github.com/aio-libs/multidict/actions",
        "Coverage: codecov, https://codecov.io/github/aio-libs/multidict",
        "Docs: RTD, https://multidict.readthedocs.io",
        "GitHub: issues, https://github.com/aio-libs/multidict/issues",
        "GitHub: repo, https://github.com/aio-libs/multidict"
      ],
      "provides_dist": [],
      "obsoletes_dist": [],
      "requires_dist": [],
      "requires_external": [],
      "requires_python": ">=3.7",
      "description_content_type": "",
      "provides_extras": [],
      "dynamic": [
        "author",
        "author-email",
        "classifier",
        "description",
        "home-page",
        "license",
        "license-file",
        "project-url",
        "requires-python",
        "summary"
      ],
      "license_expression": "",
      "license_file": [
        "LICENSE"
      ],
      "+links": [
        {
          "rel": "releasefile",
          "hash_spec": "sha256=31ab2ad1dfff47ea019d713bac16257f236371a99267e80e7630bb2c5d45e075",
          "hashes": {
            "sha256": "31ab2ad1dfff47ea019d713bac16257f236371a99267e80e7630bb2c5d45e075"
          },
          "href": "https://wheels.developerfirst.ibm.com/ppc64le/linux/+f/31a/b2ad1dfff47ea/multidict-6.0.2+ppc64le2-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl",
          "log": [
            {
              "what": "upload",
              "who": "ppc64le",
              "when": [
                2026,
                5,
                29,
                12,
                45,
                40
              ],
              "dst": "ppc64le/linux"
            }
          ]
        },
        {
          "rel": "releasefile",
          "hash_spec": "sha256=55972186905993b0df3c033c9760c0400cc1e767e314f845680d7b41c7328b63",
          "hashes": {
            "sha256": "55972186905993b0df3c033c9760c0400cc1e767e314f845680d7b41c7328b63"
          },
          "href": "https://wheels.developerfirst.ibm.com/ppc64le/linux/+f/559/72186905993b0/multidict-6.0.2+ppc64le2-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl",
          "log": [
            {
              "what": "upload",
              "who": "ppc64le",
              "when": [
                2026,
                5,
                29,
                12,
                45,
                40
              ],
              "dst": "ppc64le/linux"
            }
          ]
        },
        {
          "rel": "releasefile",
          "hash_spec": "sha256=3724b6977af3f69c59a91f3f917cda49c0d7e0eb731114cfb1b9d7410b274065",
          "hashes": {
            "sha256": "3724b6977af3f69c59a91f3f917cda49c0d7e0eb731114cfb1b9d7410b274065"
          },
          "href": "https://wheels.developerfirst.ibm.com/ppc64le/linux/+f/372/4b6977af3f69c/multidict-6.0.2+ppc64le2-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl",
          "log": [
            {
              "what": "upload",
              "who": "ppc64le",
              "when": [
                2026,
                5,
                29,
                12,
                45,
                41
              ],
              "dst": "ppc64le/linux"
            }
          ]
        },
        {
          "rel": "releasefile",
          "hash_spec": "sha256=4c30de98111c878765f83ac8a7b8e3cfe4b0d6204383f1f7b34eef2cfaed5916",
          "hashes": {
            "sha256": "4c30de98111c878765f83ac8a7b8e3cfe4b0d6204383f1f7b34eef2cfaed5916"
          },
          "href": "https://wheels.developerfirst.ibm.com/ppc64le/linux/+f/4c3/0de98111c8787/multidict-6.0.2+ppc64le2-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl",
          "log": [
            {
              "what": "upload",
              "who": "ppc64le",
              "when": [
                2026,
                5,
                29,
                12,
                45,
                41
              ],
              "dst": "ppc64le/linux"
            }
          ]
        }
      ]
    },
    "6.0.2+ppc64le1": {
      "name": "multidict",
      "version": "6.0.2+ppc64le1",
      "metadata_version": "2.4",
      "summary": "multidict implementation",
      "home_page": "https://github.com/aio-libs/multidict",
      "author": "Andrew Svetlov",
      "author_email": "andrew.svetlov@gmail.com",
      "maintainer": "",
      "maintainer_email": "",
      "license": "Apache 2",
      "description": "=========\nmultidict\n=========\n\n.. image:: https://github.com/aio-libs/multidict/workflows/CI/badge.svg\n   :target: https://github.com/aio-libs/multidict/actions?query=workflow%3ACI\n   :alt: GitHub status for master branch\n\n.. image:: https://codecov.io/gh/aio-libs/multidict/branch/master/graph/badge.svg\n   :target: https://codecov.io/gh/aio-libs/multidict\n   :alt: Coverage metrics\n\n.. image:: https://img.shields.io/pypi/v/multidict.svg\n   :target: https://pypi.org/project/multidict\n   :alt: PyPI\n\n.. image:: https://readthedocs.org/projects/multidict/badge/?version=latest\n   :target: http://multidict.readthedocs.org/en/latest/?badge=latest\n   :alt: Documentationb\n\n.. image:: https://img.shields.io/pypi/pyversions/multidict.svg\n   :target: https://pypi.org/project/multidict\n   :alt: Python versions\n\n.. image:: https://badges.gitter.im/Join%20Chat.svg\n   :target: https://gitter.im/aio-libs/Lobby\n   :alt: Chat on Gitter\n\nMultidict is dict-like collection of *key-value pairs* where key\nmight be occurred more than once in the container.\n\nIntroduction\n------------\n\n*HTTP Headers* and *URL query string* require specific data structure:\n*multidict*. It behaves mostly like a regular ``dict`` but it may have\nseveral *values* for the same *key* and *preserves insertion ordering*.\n\nThe *key* is ``str`` (or ``istr`` for case-insensitive dictionaries).\n\n``multidict`` has four multidict classes:\n``MultiDict``, ``MultiDictProxy``, ``CIMultiDict``\nand ``CIMultiDictProxy``.\n\nImmutable proxies (``MultiDictProxy`` and\n``CIMultiDictProxy``) provide a dynamic view for the\nproxied multidict, the view reflects underlying collection changes. They\nimplement the ``collections.abc.Mapping`` interface.\n\nRegular mutable (``MultiDict`` and ``CIMultiDict``) classes\nimplement ``collections.abc.MutableMapping`` and allows to change\ntheir own content.\n\n\n*Case insensitive* (``CIMultiDict`` and\n``CIMultiDictProxy``) ones assume the *keys* are case\ninsensitive, e.g.::\n\n   >>> dct = CIMultiDict(key='val')\n   >>> 'Key' in dct\n   True\n   >>> dct['Key']\n   'val'\n\n*Keys* should be ``str`` or ``istr`` instances.\n\nThe library has optional C Extensions for sake of speed.\n\n\nLicense\n-------\n\nApache 2\n\nLibrary Installation\n--------------------\n\n.. code-block:: bash\n\n   $ pip install multidict\n\nThe library is Python 3 only!\n\nPyPI contains binary wheels for Linux, Windows and MacOS.  If you want to install\n``multidict`` on another operation system (or *Alpine Linux* inside a Docker) the\nTarball will be used to compile the library from sources.  It requires C compiler and\nPython headers installed.\n\nTo skip the compilation please use `MULTIDICT_NO_EXTENSIONS` environment variable,\ne.g.:\n\n.. code-block:: bash\n\n   $ MULTIDICT_NO_EXTENSIONS=1 pip install multidict\n\nPlease note, Pure Python (uncompiled) version is about 20-50 times slower depending on\nthe usage scenario!!!\n\n\n\nChangelog\n---------\nSee `RTD page <http://multidict.readthedocs.org/en/latest/changes.html>`_.\n",
      "keywords": "",
      "platform": [],
      "classifiers": [
        "License :: OSI Approved :: Apache Software License",
        "Intended Audience :: Developers",
        "Programming Language :: Python",
        "Programming Language :: Python :: 3",
        "Programming Language :: Python :: 3.7",
        "Programming Language :: Python :: 3.8",
        "Programming Language :: Python :: 3.9",
        "Programming Language :: Python :: 3.10",
        "Development Status :: 5 - Production/Stable",
        "Environment :: MetaData :: IBM Python Ecosystem"
      ],
      "download_url": "",
      "supported_platform": [],
      "comment": "",
      "provides": [],
      "requires": [],
      "obsoletes": [],
      "project_urls": [
        "Chat: Gitter, https://gitter.im/aio-libs/Lobby",
        "CI: GitHub, https://github.com/aio-libs/multidict/actions",
        "Coverage: codecov, https://codecov.io/github/aio-libs/multidict",
        "Docs: RTD, https://multidict.readthedocs.io",
        "GitHub: issues, https://github.com/aio-libs/multidict/issues",
        "GitHub: repo, https://github.com/aio-libs/multidict"
      ],
      "provides_dist": [],
      "obsoletes_dist": [],
      "requires_dist": [],
      "requires_external": [],
      "requires_python": ">=3.7",
      "description_content_type": "",
      "provides_extras": "",
      "dynamic": [
        "author",
        "author-email",
        "classifier",
        "description",
        "home-page",
        "license",
        "license-file",
        "project-url",
        "requires-python",
        "summary"
      ],
      "license_expression": "",
      "license_file": [
        "LICENSE"
      ],
      "+links": [
        {
          "rel": "releasefile",
          "hash_spec": "sha256=3dc16923d88928e47bff3e2724ea19c545c16daa7c0391b716163b24f0303432",
          "href": "https://wheels.developerfirst.ibm.com/ppc64le/linux/+f/3dc/16923d88928e4/multidict-6.0.2+ppc64le1-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl",
          "log": [
            {
              "what": "upload",
              "who": "ppc64le",
              "when": [
                2026,
                3,
                16,
                9,
                24,
                29
              ],
              "dst": "ppc64le/linux"
            }
          ]
        },
        {
          "rel": "releasefile",
          "hash_spec": "sha256=dd28896e81ec5b27de04c1f493c6e85733b58e792c4c4c486d149585a2f57d5f",
          "href": "https://wheels.developerfirst.ibm.com/ppc64le/linux/+f/dd2/8896e81ec5b27/multidict-6.0.2+ppc64le1-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl",
          "log": [
            {
              "what": "upload",
              "who": "ppc64le",
              "when": [
                2026,
                3,
                16,
                9,
                24,
                30
              ],
              "dst": "ppc64le/linux"
            }
          ]
        },
        {
          "rel": "releasefile",
          "hash_spec": "sha256=b55b36c15e1271173b20adfe6dcdcd063eb9966299820651a7b2ec6c64c0f7b5",
          "href": "https://wheels.developerfirst.ibm.com/ppc64le/linux/+f/b55/b36c15e127117/multidict-6.0.2+ppc64le1-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl",
          "log": [
            {
              "what": "upload",
              "who": "ppc64le",
              "when": [
                2026,
                3,
                16,
                9,
                24,
                30
              ],
              "dst": "ppc64le/linux"
            }
          ]
        },
        {
          "rel": "releasefile",
          "hash_spec": "sha256=2f98ad595859d21c78441082ef560bd2f8903b7bf5c4c76673cd56073df86f1f",
          "href": "https://wheels.developerfirst.ibm.com/ppc64le/linux/+f/2f9/8ad595859d21c/multidict-6.0.2+ppc64le1-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl",
          "log": [
            {
              "what": "upload",
              "who": "ppc64le",
              "when": [
                2026,
                3,
                16,
                9,
                24,
                31
              ],
              "dst": "ppc64le/linux"
            }
          ]
        },
        {
          "rel": "releasefile",
          "hash_spec": "sha256=2665718a363356167378412b1d8652f7a7ae45a3e3564a1c6cc146f682bf9b3d",
          "href": "https://wheels.developerfirst.ibm.com/ppc64le/linux/+f/266/5718a36335616/multidict-6.0.2+ppc64le1-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl",
          "log": [
            {
              "what": "upload",
              "who": "ppc64le",
              "when": [
                2026,
                3,
                16,
                9,
                24,
                31
              ],
              "dst": "ppc64le/linux"
            }
          ]
        },
        {
          "rel": "releasefile",
          "hash_spec": "sha256=857da51f00f35001618adbea7a450ff12794f9b2e91e84694bf80675641e8dae",
          "hashes": {
            "sha256": "857da51f00f35001618adbea7a450ff12794f9b2e91e84694bf80675641e8dae"
          },
          "href": "https://wheels.developerfirst.ibm.com/ppc64le/linux/+f/857/da51f00f35001/multidict-6.0.2+ppc64le1-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl",
          "log": [
            {
              "what": "upload",
              "who": "ppc64le",
              "when": [
                2026,
                5,
                11,
                11,
                44,
                53
              ],
              "dst": "ppc64le/linux"
            }
          ]
        }
      ]
    },
    "6.0.2": {
      "name": "multidict",
      "version": "6.0.2",
      "metadata_version": "2.4",
      "summary": "multidict implementation",
      "home_page": "https://github.com/aio-libs/multidict",
      "author": "Andrew Svetlov",
      "author_email": "andrew.svetlov@gmail.com",
      "maintainer": "",
      "maintainer_email": "",
      "license": "Apache 2",
      "description": "=========\nmultidict\n=========\n\n.. image:: https://github.com/aio-libs/multidict/workflows/CI/badge.svg\n   :target: https://github.com/aio-libs/multidict/actions?query=workflow%3ACI\n   :alt: GitHub status for master branch\n\n.. image:: https://codecov.io/gh/aio-libs/multidict/branch/master/graph/badge.svg\n   :target: https://codecov.io/gh/aio-libs/multidict\n   :alt: Coverage metrics\n\n.. image:: https://img.shields.io/pypi/v/multidict.svg\n   :target: https://pypi.org/project/multidict\n   :alt: PyPI\n\n.. image:: https://readthedocs.org/projects/multidict/badge/?version=latest\n   :target: http://multidict.readthedocs.org/en/latest/?badge=latest\n   :alt: Documentationb\n\n.. image:: https://img.shields.io/pypi/pyversions/multidict.svg\n   :target: https://pypi.org/project/multidict\n   :alt: Python versions\n\n.. image:: https://badges.gitter.im/Join%20Chat.svg\n   :target: https://gitter.im/aio-libs/Lobby\n   :alt: Chat on Gitter\n\nMultidict is dict-like collection of *key-value pairs* where key\nmight be occurred more than once in the container.\n\nIntroduction\n------------\n\n*HTTP Headers* and *URL query string* require specific data structure:\n*multidict*. It behaves mostly like a regular ``dict`` but it may have\nseveral *values* for the same *key* and *preserves insertion ordering*.\n\nThe *key* is ``str`` (or ``istr`` for case-insensitive dictionaries).\n\n``multidict`` has four multidict classes:\n``MultiDict``, ``MultiDictProxy``, ``CIMultiDict``\nand ``CIMultiDictProxy``.\n\nImmutable proxies (``MultiDictProxy`` and\n``CIMultiDictProxy``) provide a dynamic view for the\nproxied multidict, the view reflects underlying collection changes. They\nimplement the ``collections.abc.Mapping`` interface.\n\nRegular mutable (``MultiDict`` and ``CIMultiDict``) classes\nimplement ``collections.abc.MutableMapping`` and allows to change\ntheir own content.\n\n\n*Case insensitive* (``CIMultiDict`` and\n``CIMultiDictProxy``) ones assume the *keys* are case\ninsensitive, e.g.::\n\n   >>> dct = CIMultiDict(key='val')\n   >>> 'Key' in dct\n   True\n   >>> dct['Key']\n   'val'\n\n*Keys* should be ``str`` or ``istr`` instances.\n\nThe library has optional C Extensions for sake of speed.\n\n\nLicense\n-------\n\nApache 2\n\nLibrary Installation\n--------------------\n\n.. code-block:: bash\n\n   $ pip install multidict\n\nThe library is Python 3 only!\n\nPyPI contains binary wheels for Linux, Windows and MacOS.  If you want to install\n``multidict`` on another operation system (or *Alpine Linux* inside a Docker) the\nTarball will be used to compile the library from sources.  It requires C compiler and\nPython headers installed.\n\nTo skip the compilation please use `MULTIDICT_NO_EXTENSIONS` environment variable,\ne.g.:\n\n.. code-block:: bash\n\n   $ MULTIDICT_NO_EXTENSIONS=1 pip install multidict\n\nPlease note, Pure Python (uncompiled) version is about 20-50 times slower depending on\nthe usage scenario!!!\n\n\n\nChangelog\n---------\nSee `RTD page <http://multidict.readthedocs.org/en/latest/changes.html>`_.\n",
      "keywords": "",
      "platform": [],
      "classifiers": [
        "License :: OSI Approved :: Apache Software License",
        "Intended Audience :: Developers",
        "Programming Language :: Python",
        "Programming Language :: Python :: 3",
        "Programming Language :: Python :: 3.7",
        "Programming Language :: Python :: 3.8",
        "Programming Language :: Python :: 3.9",
        "Programming Language :: Python :: 3.10",
        "Development Status :: 5 - Production/Stable",
        "Environment :: MetaData :: IBM Python Ecosystem"
      ],
      "download_url": "",
      "supported_platform": [],
      "comment": "",
      "provides": [],
      "requires": [],
      "obsoletes": [],
      "project_urls": [
        "Chat: Gitter, https://gitter.im/aio-libs/Lobby",
        "CI: GitHub, https://github.com/aio-libs/multidict/actions",
        "Coverage: codecov, https://codecov.io/github/aio-libs/multidict",
        "Docs: RTD, https://multidict.readthedocs.io",
        "GitHub: issues, https://github.com/aio-libs/multidict/issues",
        "GitHub: repo, https://github.com/aio-libs/multidict"
      ],
      "provides_dist": [],
      "obsoletes_dist": [],
      "requires_dist": [],
      "requires_external": [],
      "requires_python": ">=3.7",
      "description_content_type": "",
      "provides_extras": [],
      "dynamic": [
        "author",
        "author-email",
        "classifier",
        "description",
        "home-page",
        "license",
        "license-file",
        "project-url",
        "requires-python",
        "summary"
      ],
      "license_expression": "",
      "license_file": [
        "LICENSE"
      ],
      "+links": [
        {
          "rel": "releasefile",
          "hash_spec": "sha256=35684a08e52e3b525b9709d0bd1dae670557e3b66fc7a5a47a19b5553d4dc049",
          "hashes": {
            "sha256": "35684a08e52e3b525b9709d0bd1dae670557e3b66fc7a5a47a19b5553d4dc049"
          },
          "href": "https://wheels.developerfirst.ibm.com/ppc64le/linux/+f/356/84a08e52e3b52/multidict-6.0.2-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl",
          "log": [
            {
              "what": "upload",
              "who": "ppc64le",
              "when": [
                2026,
                7,
                27,
                12,
                50,
                46
              ],
              "dst": "ppc64le/linux"
            }
          ]
        },
        {
          "rel": "releasefile",
          "hash_spec": "sha256=2971fc830a1ccb743c24311461061fb22af8c46a024fdf2a5b74cfd7aae7b28e",
          "hashes": {
            "sha256": "2971fc830a1ccb743c24311461061fb22af8c46a024fdf2a5b74cfd7aae7b28e"
          },
          "href": "https://wheels.developerfirst.ibm.com/ppc64le/linux/+f/297/1fc830a1ccb74/multidict-6.0.2-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl",
          "log": [
            {
              "what": "upload",
              "who": "ppc64le",
              "when": [
                2026,
                7,
                27,
                12,
                50,
                46
              ],
              "dst": "ppc64le/linux"
            }
          ]
        },
        {
          "rel": "releasefile",
          "hash_spec": "sha256=bce26b0bdeb165c4c2c5fb77111aedfbd08f179b2ba6be7f79888dafc453a394",
          "hashes": {
            "sha256": "bce26b0bdeb165c4c2c5fb77111aedfbd08f179b2ba6be7f79888dafc453a394"
          },
          "href": "https://wheels.developerfirst.ibm.com/ppc64le/linux/+f/bce/26b0bdeb165c4/multidict-6.0.2-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl",
          "log": [
            {
              "what": "upload",
              "who": "ppc64le",
              "when": [
                2026,
                7,
                27,
                12,
                50,
                46
              ],
              "dst": "ppc64le/linux"
            }
          ]
        },
        {
          "rel": "releasefile",
          "hash_spec": "sha256=4114180941a75aadde8268f3071f5838a957d9c8ec6f7f39afacb4e8df7c2c56",
          "hashes": {
            "sha256": "4114180941a75aadde8268f3071f5838a957d9c8ec6f7f39afacb4e8df7c2c56"
          },
          "href": "https://wheels.developerfirst.ibm.com/ppc64le/linux/+f/411/4180941a75aad/multidict-6.0.2-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl",
          "log": [
            {
              "what": "upload",
              "who": "ppc64le",
              "when": [
                2026,
                7,
                27,
                12,
                50,
                46
              ],
              "dst": "ppc64le/linux"
            }
          ]
        },
        {
          "rel": "releasefile",
          "hash_spec": "sha256=8bb6cde1e9f844d8a9d449bbf551ab2a535a9374bcc0e7b3efeb4320b6e81636",
          "hashes": {
            "sha256": "8bb6cde1e9f844d8a9d449bbf551ab2a535a9374bcc0e7b3efeb4320b6e81636"
          },
          "href": "https://wheels.developerfirst.ibm.com/ppc64le/linux/+f/8bb/6cde1e9f844d8/multidict-6.0.2-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl",
          "log": [
            {
              "what": "upload",
              "who": "ppc64le",
              "when": [
                2026,
                7,
                27,
                12,
                50,
                47
              ],
              "dst": "ppc64le/linux"
            }
          ]
        },
        {
          "rel": "releasefile",
          "hash_spec": "sha256=0344508fc45e66d0f4a137626df78778c241aa1a7a3456d7810ca84da641cdb2",
          "hashes": {
            "sha256": "0344508fc45e66d0f4a137626df78778c241aa1a7a3456d7810ca84da641cdb2"
          },
          "href": "https://wheels.developerfirst.ibm.com/ppc64le/linux/+f/034/4508fc45e66d0/multidict-6.0.2-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl",
          "log": [
            {
              "what": "upload",
              "who": "ppc64le",
              "when": [
                2026,
                7,
                27,
                12,
                50,
                47
              ],
              "dst": "ppc64le/linux"
            }
          ]
        }
      ]
    },
    "6.7.1+ppc64le1": {
      "name": "multidict",
      "version": "6.7.1+ppc64le1",
      "metadata_version": "2.4",
      "summary": "multidict implementation",
      "home_page": "https://github.com/aio-libs/multidict",
      "author": "Andrew Svetlov",
      "author_email": "andrew.svetlov@gmail.com",
      "maintainer": "",
      "maintainer_email": "",
      "license": "Apache License 2.0",
      "description": "=========\nmultidict\n=========\n\n.. image:: https://github.com/aio-libs/multidict/actions/workflows/ci-cd.yml/badge.svg\n   :target: https://github.com/aio-libs/multidict/actions\n   :alt: GitHub status for master branch\n\n.. image:: https://codecov.io/gh/aio-libs/multidict/branch/master/graph/badge.svg?flag=pytest\n   :target: https://codecov.io/gh/aio-libs/multidict?flags[]=pytest\n   :alt: Coverage metrics\n\n.. image:: https://img.shields.io/pypi/v/multidict.svg\n   :target: https://pypi.org/project/multidict\n   :alt: PyPI\n\n.. image:: https://readthedocs.org/projects/multidict/badge/?version=latest\n   :target: https://multidict.aio-libs.org\n   :alt: Read The Docs build status badge\n\n.. image:: https://img.shields.io/endpoint?url=https://codspeed.io/badge.json\n   :target: https://codspeed.io/aio-libs/multidict\n   :alt: CodSpeed\n\n.. image:: https://img.shields.io/pypi/pyversions/multidict.svg\n   :target: https://pypi.org/project/multidict\n   :alt: Python versions\n\n.. image:: https://img.shields.io/matrix/aio-libs:matrix.org?label=Discuss%20on%20Matrix%20at%20%23aio-libs%3Amatrix.org&logo=matrix&server_fqdn=matrix.org&style=flat\n   :target: https://matrix.to/#/%23aio-libs:matrix.org\n   :alt: Matrix Room \u2014 #aio-libs:matrix.org\n\n.. image:: https://img.shields.io/matrix/aio-libs-space:matrix.org?label=Discuss%20on%20Matrix%20at%20%23aio-libs-space%3Amatrix.org&logo=matrix&server_fqdn=matrix.org&style=flat\n   :target: https://matrix.to/#/%23aio-libs-space:matrix.org\n   :alt: Matrix Space \u2014 #aio-libs-space:matrix.org\n\nMultidict is dict-like collection of *key-value pairs* where key\nmight occur more than once in the container.\n\nIntroduction\n------------\n\n*HTTP Headers* and *URL query string* require specific data structure:\n*multidict*. It behaves mostly like a regular ``dict`` but it may have\nseveral *values* for the same *key* and *preserves insertion ordering*.\n\nThe *key* is ``str`` (or ``istr`` for case-insensitive dictionaries).\n\n``multidict`` has four multidict classes:\n``MultiDict``, ``MultiDictProxy``, ``CIMultiDict``\nand ``CIMultiDictProxy``.\n\nImmutable proxies (``MultiDictProxy`` and\n``CIMultiDictProxy``) provide a dynamic view for the\nproxied multidict, the view reflects underlying collection changes. They\nimplement the ``collections.abc.Mapping`` interface.\n\nRegular mutable (``MultiDict`` and ``CIMultiDict``) classes\nimplement ``collections.abc.MutableMapping`` and allows them to change\ntheir own content.\n\n\n*Case insensitive* (``CIMultiDict`` and\n``CIMultiDictProxy``) assume the *keys* are case\ninsensitive, e.g.::\n\n   >>> dct = CIMultiDict(key='val')\n   >>> 'Key' in dct\n   True\n   >>> dct['Key']\n   'val'\n\n*Keys* should be ``str`` or ``istr`` instances.\n\nThe library has optional C Extensions for speed.\n\n\nLicense\n-------\n\nApache 2\n\nLibrary Installation\n--------------------\n\n.. code-block:: bash\n\n   $ pip install multidict\n\nThe library is Python 3 only!\n\nPyPI contains binary wheels for Linux, Windows and MacOS.  If you want to install\n``multidict`` on another operating system (or *Alpine Linux* inside a Docker) the\ntarball will be used to compile the library from source.  It requires a C compiler and\nPython headers to be installed.\n\nTo skip the compilation, please use the `MULTIDICT_NO_EXTENSIONS` environment variable,\ne.g.:\n\n.. code-block:: bash\n\n   $ MULTIDICT_NO_EXTENSIONS=1 pip install multidict\n\nPlease note, the pure Python (uncompiled) version is about 20-50 times slower depending on\nthe usage scenario!!!\n\nFor extension development, set the ``MULTIDICT_DEBUG_BUILD`` environment variable to compile\nthe extensions in debug mode:\n\n.. code-block:: console\n\n   $ MULTIDICT_DEBUG_BUILD=1 pip install multidict\n\nChangelog\n---------\nSee `RTD page <http://multidict.aio-libs.org/en/latest/changes>`_.\n",
      "keywords": "",
      "platform": [],
      "classifiers": [
        "Development Status :: 5 - Production/Stable",
        "Intended Audience :: Developers",
        "Programming Language :: Python",
        "Programming Language :: Python :: 3",
        "Programming Language :: Python :: 3.9",
        "Programming Language :: Python :: 3.10",
        "Programming Language :: Python :: 3.11",
        "Programming Language :: Python :: 3.12",
        "Programming Language :: Python :: 3.13",
        "Programming Language :: Python :: 3.14",
        "Environment :: MetaData :: IBM Python Ecosystem"
      ],
      "download_url": "",
      "supported_platform": [],
      "comment": "",
      "provides": [],
      "requires": [],
      "obsoletes": [],
      "project_urls": [
        "Chat: Matrix, https://matrix.to/#/#aio-libs:matrix.org",
        "Chat: Matrix Space, https://matrix.to/#/#aio-libs-space:matrix.org",
        "CI: GitHub, https://github.com/aio-libs/multidict/actions",
        "Code of Conduct, https://github.com/aio-libs/.github/blob/master/CODE_OF_CONDUCT.md",
        "Coverage: codecov, https://codecov.io/github/aio-libs/multidict",
        "Docs: Changelog, https://multidict.aio-libs.org/en/latest/changes/",
        "Docs: RTD, https://multidict.aio-libs.org",
        "GitHub: issues, https://github.com/aio-libs/multidict/issues",
        "GitHub: repo, https://github.com/aio-libs/multidict"
      ],
      "provides_dist": [],
      "obsoletes_dist": [],
      "requires_dist": [
        "typing-extensions>=4.1.0; python_version < \"3.11\""
      ],
      "requires_external": [],
      "requires_python": ">=3.9",
      "description_content_type": "text/x-rst",
      "provides_extras": [],
      "dynamic": [
        "license-file"
      ],
      "license_expression": "",
      "license_file": [
        "LICENSE"
      ],
      "+links": [
        {
          "rel": "releasefile",
          "hash_spec": "sha256=0d01b6edb6f735b087e6256887d51c255f65898bdcf4875190d3ba82c6b749fa",
          "hashes": {
            "sha256": "0d01b6edb6f735b087e6256887d51c255f65898bdcf4875190d3ba82c6b749fa"
          },
          "href": "https://wheels.developerfirst.ibm.com/ppc64le/linux/+f/0d0/1b6edb6f735b0/multidict-6.7.1+ppc64le1-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl",
          "log": [
            {
              "what": "upload",
              "who": "ppc64le",
              "when": [
                2026,
                5,
                11,
                11,
                44,
                53
              ],
              "dst": "ppc64le/linux"
            }
          ]
        },
        {
          "rel": "releasefile",
          "hash_spec": "sha256=aa9d69dd062a981dcf0cca354a1995b40e6da998d8a00830d6ecfc18c6feb005",
          "hashes": {
            "sha256": "aa9d69dd062a981dcf0cca354a1995b40e6da998d8a00830d6ecfc18c6feb005"
          },
          "href": "https://wheels.developerfirst.ibm.com/ppc64le/linux/+f/aa9/d69dd062a981d/multidict-6.7.1+ppc64le1-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl",
          "log": [
            {
              "what": "upload",
              "who": "ppc64le",
              "when": [
                2026,
                5,
                11,
                11,
                44,
                54
              ],
              "dst": "ppc64le/linux"
            }
          ]
        },
        {
          "rel": "releasefile",
          "hash_spec": "sha256=a8fe9cbf54d94b24010921c4cadee6478e64b64602a79cc2c5a1848e6ce14a38",
          "hashes": {
            "sha256": "a8fe9cbf54d94b24010921c4cadee6478e64b64602a79cc2c5a1848e6ce14a38"
          },
          "href": "https://wheels.developerfirst.ibm.com/ppc64le/linux/+f/a8f/e9cbf54d94b24/multidict-6.7.1+ppc64le1-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl",
          "log": [
            {
              "what": "upload",
              "who": "ppc64le",
              "when": [
                2026,
                5,
                11,
                11,
                44,
                55
              ],
              "dst": "ppc64le/linux"
            }
          ]
        },
        {
          "rel": "releasefile",
          "hash_spec": "sha256=4db80fe9cf4a0eba8707d0a3ef25139f32a0190613a4894983bb858836910ceb",
          "hashes": {
            "sha256": "4db80fe9cf4a0eba8707d0a3ef25139f32a0190613a4894983bb858836910ceb"
          },
          "href": "https://wheels.developerfirst.ibm.com/ppc64le/linux/+f/4db/80fe9cf4a0eba/multidict-6.7.1+ppc64le1-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl",
          "log": [
            {
              "what": "upload",
              "who": "ppc64le",
              "when": [
                2026,
                5,
                11,
                11,
                44,
                55
              ],
              "dst": "ppc64le/linux"
            }
          ]
        },
        {
          "rel": "releasefile",
          "hash_spec": "sha256=545bcb803dfb0a0306be24336689e5f37d2ffb5a59f48efe767b93b5c1babf47",
          "hashes": {
            "sha256": "545bcb803dfb0a0306be24336689e5f37d2ffb5a59f48efe767b93b5c1babf47"
          },
          "href": "https://wheels.developerfirst.ibm.com/ppc64le/linux/+f/545/bcb803dfb0a03/multidict-6.7.1+ppc64le1-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl",
          "log": [
            {
              "what": "upload",
              "who": "ppc64le",
              "when": [
                2026,
                5,
                11,
                11,
                44,
                56
              ],
              "dst": "ppc64le/linux"
            }
          ]
        },
        {
          "rel": "releasefile",
          "hash_spec": "sha256=03ba1865460d3dad99197f9770493d25048d5b0b604f1b0f69df261867735733",
          "hashes": {
            "sha256": "03ba1865460d3dad99197f9770493d25048d5b0b604f1b0f69df261867735733"
          },
          "href": "https://wheels.developerfirst.ibm.com/ppc64le/linux/+f/03b/a1865460d3dad/multidict-6.7.1+ppc64le1-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl",
          "log": [
            {
              "what": "upload",
              "who": "ppc64le",
              "when": [
                2026,
                5,
                11,
                11,
                44,
                56
              ],
              "dst": "ppc64le/linux"
            }
          ]
        }
      ]
    }
  },
  "type": "projectconfig"
}
