jq


Namejq JSON
Version 1.10.0 PyPI version JSON
download
home_pagehttps://github.com/mwilliamson/jq.py
Summaryjq is a lightweight and flexible JSON processor.
upload_time2025-07-14 18:54:53
maintainerNone
docs_urlNone
authorMichael Williamson
requires_python>=3.8
licenseBSD 2-Clause
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            jq.py: a lightweight and flexible JSON processor
================================================

This project contains Python bindings for
`jq <https://jqlang.github.io/jq/>`_ 1.8.1.

Installation
------------

Wheels are built for various Python versions and architectures on Linux and Mac OS X.
On these platforms, you should be able to install jq with a normal pip install:

.. code-block:: sh

    pip install jq

If a wheel is not available,
the source for jq 1.8.1 is built.
This requires:

* Autoreconf

* The normal C compiler toolchain, such as gcc and make.

* libtool

* Python headers.

Alternatively, set the environment variable ``JQPY_USE_SYSTEM_LIBS`` to ``1`` when installing the package
to use the libjq and libonig versions available on the system rather than building them.

Debian, Ubuntu or relatives
~~~~~~~~~~~~~~~~~~~~~~~~~~~

If on Debian, Ubuntu or relatives, running the following command should be sufficient:

.. code-block:: sh

    apt-get install autoconf automake build-essential libtool python-dev

Red Hat, Fedora, CentOS or relatives
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

If on Red Hat, Fedora, CentOS, or relatives, running the following command should be sufficient:

.. code-block:: sh

    yum groupinstall "Development Tools"
    yum install autoconf automake libtool python python-devel

Mac OS X
~~~~~~~~

If on Mac OS X, you probably want to install
`Xcode <https://developer.apple.com/xcode/>`_ and `Homebrew <http://brew.sh/>`_.
Once Homebrew is installed, you can install the remaining dependencies with:

.. code-block:: sh

    brew install autoconf automake libtool

Usage
-----

Using jq requires three steps:

#. Call ``jq.compile()`` to compile a jq program.
#. Call an input method on the compiled program to supply the input.
#. Call an output method on the result to retrieve the output.

For instance:

.. code-block:: python

    import jq

    assert jq.compile(".+5").input_value(42).first() == 47

Input methods
~~~~~~~~~~~~~

Call ``.input_value()`` to supply a valid JSON value, such as the values returned from ``json.load``:

.. code-block:: python

    import jq

    assert jq.compile(".").input_value(None).first() == None
    assert jq.compile(".").input_value(42).first() == 42
    assert jq.compile(".").input_value(0.42).first() == 0.42
    assert jq.compile(".").input_value(True).first() == True
    assert jq.compile(".").input_value("hello").first() == "hello"

Call ``.input_values()`` to supply multiple valid JSON values, such as the values returned from ``json.load``:

.. code-block:: python

    import jq

    assert jq.compile(".+5").input_values([1, 2, 3]).all() == [6, 7, 8]

Call ``.input_text()`` to supply unparsed JSON text:

.. code-block:: python

    import jq

    assert jq.compile(".").input_text("null").first() == None
    assert jq.compile(".").input_text("42").first() == 42
    assert jq.compile(".").input_text("0.42").first() == 0.42
    assert jq.compile(".").input_text("true").first() == True
    assert jq.compile(".").input_text('"hello"').first() == "hello"
    assert jq.compile(".").input_text("1\n2\n3").all() == [1, 2, 3]

Pass ``slurp=True`` to ``.input_text()`` to read the entire input into an array:

.. code-block:: python

    import jq

    assert jq.compile(".").input_text("1\n2\n3", slurp=True).first() == [1, 2, 3]

You can also call the older ``input()`` method by passing:

* a valid JSON value, such as the values returned from ``json.load``, as a positional argument
* unparsed JSON text as the keyword argument ``text``

For instance:

.. code-block:: python

    import jq

    assert jq.compile(".").input("hello").first() == "hello"
    assert jq.compile(".").input(text='"hello"').first() == "hello"

Output methods
~~~~~~~~~~~~~~

Calling ``first()`` on the result will run the program with the given input,
and return the first output element.

.. code-block:: python

    import jq

    assert jq.compile(".").input_value("hello").first() == "hello"
    assert jq.compile("[.[]+1]").input_value([1, 2, 3]).first() == [2, 3, 4]
    assert jq.compile(".[]+1").input_value([1, 2, 3]).first() == 2

Call ``text()`` instead of ``first()`` to serialise the output into JSON text:

.. code-block:: python

    assert jq.compile(".").input_value("42").text() == '"42"'

When calling ``text()``, if there are multiple output elements, each element is represented by a separate line:

.. code-block:: python

    assert jq.compile(".[]").input_value([1, 2, 3]).text() == "1\n2\n3"

Call ``all()`` to get all of the output elements in a list:

.. code-block:: python

    assert jq.compile(".[]+1").input_value([1, 2, 3]).all() == [2, 3, 4]

Call ``iter()`` to get all of the output elements as an iterator:

.. code-block:: python

    iterator = iter(jq.compile(".[]+1").input_value([1, 2, 3]))
    assert next(iterator, None) == 2
    assert next(iterator, None) == 3
    assert next(iterator, None) == 4
    assert next(iterator, None) == None

Arguments
~~~~~~~~~

Calling ``compile()`` with the ``args`` argument allows predefined variables to be used within the program:

.. code-block:: python

    program = jq.compile("$a + $b + .", args={"a": 100, "b": 20})
    assert program.input_value(3).first() == 123

Convenience functions
~~~~~~~~~~~~~~~~~~~~~

Convenience functions are available to get the output for a program and input in one call:

.. code-block:: python

    assert jq.first(".[] + 1", [1, 2, 3]) == 2
    assert jq.first(".[] + 1", text="[1, 2, 3]") == 2
    assert jq.text(".[] + 1", [1, 2, 3]) == "2\n3\n4"
    assert jq.all(".[] + 1", [1, 2, 3]) == [2, 3, 4]
    assert list(jq.iter(".[] + 1", [1, 2, 3])) == [2, 3, 4]

Original program string
~~~~~~~~~~~~~~~~~~~~~~~

The original program string is available on a compiled program as the ``program_string`` attribute:

.. code-block:: python

    program = jq.compile(".")
    assert program.program_string == "."

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/mwilliamson/jq.py",
    "name": "jq",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": null,
    "author": "Michael Williamson",
    "author_email": null,
    "download_url": "https://files.pythonhosted.org/packages/5c/86/6935afb6c1789d4c6ba5343607e2d2f473069eaac29fac555dbbd154c2d7/jq-1.10.0.tar.gz",
    "platform": null,
    "description": "jq.py: a lightweight and flexible JSON processor\n================================================\n\nThis project contains Python bindings for\n`jq <https://jqlang.github.io/jq/>`_ 1.8.1.\n\nInstallation\n------------\n\nWheels are built for various Python versions and architectures on Linux and Mac OS X.\nOn these platforms, you should be able to install jq with a normal pip install:\n\n.. code-block:: sh\n\n    pip install jq\n\nIf a wheel is not available,\nthe source for jq 1.8.1 is built.\nThis requires:\n\n* Autoreconf\n\n* The normal C compiler toolchain, such as gcc and make.\n\n* libtool\n\n* Python headers.\n\nAlternatively, set the environment variable ``JQPY_USE_SYSTEM_LIBS`` to ``1`` when installing the package\nto use the libjq and libonig versions available on the system rather than building them.\n\nDebian, Ubuntu or relatives\n~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\nIf on Debian, Ubuntu or relatives, running the following command should be sufficient:\n\n.. code-block:: sh\n\n    apt-get install autoconf automake build-essential libtool python-dev\n\nRed Hat, Fedora, CentOS or relatives\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\nIf on Red Hat, Fedora, CentOS, or relatives, running the following command should be sufficient:\n\n.. code-block:: sh\n\n    yum groupinstall \"Development Tools\"\n    yum install autoconf automake libtool python python-devel\n\nMac OS X\n~~~~~~~~\n\nIf on Mac OS X, you probably want to install\n`Xcode <https://developer.apple.com/xcode/>`_ and `Homebrew <http://brew.sh/>`_.\nOnce Homebrew is installed, you can install the remaining dependencies with:\n\n.. code-block:: sh\n\n    brew install autoconf automake libtool\n\nUsage\n-----\n\nUsing jq requires three steps:\n\n#. Call ``jq.compile()`` to compile a jq program.\n#. Call an input method on the compiled program to supply the input.\n#. Call an output method on the result to retrieve the output.\n\nFor instance:\n\n.. code-block:: python\n\n    import jq\n\n    assert jq.compile(\".+5\").input_value(42).first() == 47\n\nInput methods\n~~~~~~~~~~~~~\n\nCall ``.input_value()`` to supply a valid JSON value, such as the values returned from ``json.load``:\n\n.. code-block:: python\n\n    import jq\n\n    assert jq.compile(\".\").input_value(None).first() == None\n    assert jq.compile(\".\").input_value(42).first() == 42\n    assert jq.compile(\".\").input_value(0.42).first() == 0.42\n    assert jq.compile(\".\").input_value(True).first() == True\n    assert jq.compile(\".\").input_value(\"hello\").first() == \"hello\"\n\nCall ``.input_values()`` to supply multiple valid JSON values, such as the values returned from ``json.load``:\n\n.. code-block:: python\n\n    import jq\n\n    assert jq.compile(\".+5\").input_values([1, 2, 3]).all() == [6, 7, 8]\n\nCall ``.input_text()`` to supply unparsed JSON text:\n\n.. code-block:: python\n\n    import jq\n\n    assert jq.compile(\".\").input_text(\"null\").first() == None\n    assert jq.compile(\".\").input_text(\"42\").first() == 42\n    assert jq.compile(\".\").input_text(\"0.42\").first() == 0.42\n    assert jq.compile(\".\").input_text(\"true\").first() == True\n    assert jq.compile(\".\").input_text('\"hello\"').first() == \"hello\"\n    assert jq.compile(\".\").input_text(\"1\\n2\\n3\").all() == [1, 2, 3]\n\nPass ``slurp=True`` to ``.input_text()`` to read the entire input into an array:\n\n.. code-block:: python\n\n    import jq\n\n    assert jq.compile(\".\").input_text(\"1\\n2\\n3\", slurp=True).first() == [1, 2, 3]\n\nYou can also call the older ``input()`` method by passing:\n\n* a valid JSON value, such as the values returned from ``json.load``, as a positional argument\n* unparsed JSON text as the keyword argument ``text``\n\nFor instance:\n\n.. code-block:: python\n\n    import jq\n\n    assert jq.compile(\".\").input(\"hello\").first() == \"hello\"\n    assert jq.compile(\".\").input(text='\"hello\"').first() == \"hello\"\n\nOutput methods\n~~~~~~~~~~~~~~\n\nCalling ``first()`` on the result will run the program with the given input,\nand return the first output element.\n\n.. code-block:: python\n\n    import jq\n\n    assert jq.compile(\".\").input_value(\"hello\").first() == \"hello\"\n    assert jq.compile(\"[.[]+1]\").input_value([1, 2, 3]).first() == [2, 3, 4]\n    assert jq.compile(\".[]+1\").input_value([1, 2, 3]).first() == 2\n\nCall ``text()`` instead of ``first()`` to serialise the output into JSON text:\n\n.. code-block:: python\n\n    assert jq.compile(\".\").input_value(\"42\").text() == '\"42\"'\n\nWhen calling ``text()``, if there are multiple output elements, each element is represented by a separate line:\n\n.. code-block:: python\n\n    assert jq.compile(\".[]\").input_value([1, 2, 3]).text() == \"1\\n2\\n3\"\n\nCall ``all()`` to get all of the output elements in a list:\n\n.. code-block:: python\n\n    assert jq.compile(\".[]+1\").input_value([1, 2, 3]).all() == [2, 3, 4]\n\nCall ``iter()`` to get all of the output elements as an iterator:\n\n.. code-block:: python\n\n    iterator = iter(jq.compile(\".[]+1\").input_value([1, 2, 3]))\n    assert next(iterator, None) == 2\n    assert next(iterator, None) == 3\n    assert next(iterator, None) == 4\n    assert next(iterator, None) == None\n\nArguments\n~~~~~~~~~\n\nCalling ``compile()`` with the ``args`` argument allows predefined variables to be used within the program:\n\n.. code-block:: python\n\n    program = jq.compile(\"$a + $b + .\", args={\"a\": 100, \"b\": 20})\n    assert program.input_value(3).first() == 123\n\nConvenience functions\n~~~~~~~~~~~~~~~~~~~~~\n\nConvenience functions are available to get the output for a program and input in one call:\n\n.. code-block:: python\n\n    assert jq.first(\".[] + 1\", [1, 2, 3]) == 2\n    assert jq.first(\".[] + 1\", text=\"[1, 2, 3]\") == 2\n    assert jq.text(\".[] + 1\", [1, 2, 3]) == \"2\\n3\\n4\"\n    assert jq.all(\".[] + 1\", [1, 2, 3]) == [2, 3, 4]\n    assert list(jq.iter(\".[] + 1\", [1, 2, 3])) == [2, 3, 4]\n\nOriginal program string\n~~~~~~~~~~~~~~~~~~~~~~~\n\nThe original program string is available on a compiled program as the ``program_string`` attribute:\n\n.. code-block:: python\n\n    program = jq.compile(\".\")\n    assert program.program_string == \".\"\n",
    "bugtrack_url": null,
    "license": "BSD 2-Clause",
    "summary": "jq is a lightweight and flexible JSON processor.",
    "version": "1.10.0",
    "project_urls": {
        "Homepage": "https://github.com/mwilliamson/jq.py"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "13180611ddff443f826931c6a6e13a4d6213d159a66c9e4e82db1300b856870f",
                "md5": "8f54c28730eaac01b7eb844a7d722aac",
                "sha256": "9bba438d1813e537294e77f6f0ab3f4b23d3a0ae125187edf4827260a31341a0"
            },
            "downloads": -1,
            "filename": "jq-1.10.0-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8f54c28730eaac01b7eb844a7d722aac",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 420781,
            "upload_time": "2025-07-14T18:51:46",
            "upload_time_iso_8601": "2025-07-14T18:51:46.033703Z",
            "url": "https://files.pythonhosted.org/packages/13/18/0611ddff443f826931c6a6e13a4d6213d159a66c9e4e82db1300b856870f/jq-1.10.0-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1b0c7e53f3fe1c8d99fd19ea6d741f4268cb0efbd0800b4b25d5aa512c7b474d",
                "md5": "0d23da584b14d06674953380a36a1cf8",
                "sha256": "3eb6aed0d9882c43ae4c1757b72afc02063504f69d14eb12352c9b2813137c71"
            },
            "downloads": -1,
            "filename": "jq-1.10.0-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "0d23da584b14d06674953380a36a1cf8",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 426800,
            "upload_time": "2025-07-14T18:51:48",
            "upload_time_iso_8601": "2025-07-14T18:51:48.377272Z",
            "url": "https://files.pythonhosted.org/packages/1b/0c/7e53f3fe1c8d99fd19ea6d741f4268cb0efbd0800b4b25d5aa512c7b474d/jq-1.10.0-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3efd4eefc552dfefcd11aef2a4e4a018050ff174afa5841438a61bab171335eb",
                "md5": "17643586498dc5f3d77513df3a5e7192",
                "sha256": "8c2a6a83f8b59dcb0b9a09f1e6b042e667923916767d0bee869e217d067f5f25"
            },
            "downloads": -1,
            "filename": "jq-1.10.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "17643586498dc5f3d77513df3a5e7192",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 724351,
            "upload_time": "2025-07-14T18:51:51",
            "upload_time_iso_8601": "2025-07-14T18:51:51.679153Z",
            "url": "https://files.pythonhosted.org/packages/3e/fd/4eefc552dfefcd11aef2a4e4a018050ff174afa5841438a61bab171335eb/jq-1.10.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2be91748212f0e7d5d1424ae3246f3ca0ce18629b020a83454a9b18cc5d84152",
                "md5": "a4d4cf4fbb25f9098cf5d7177f755cf4",
                "sha256": "731fa11ce06276365c51fe2e23821d33acf6c66e501acfc4dd95507be840dd39"
            },
            "downloads": -1,
            "filename": "jq-1.10.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a4d4cf4fbb25f9098cf5d7177f755cf4",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 743455,
            "upload_time": "2025-07-14T18:51:54",
            "upload_time_iso_8601": "2025-07-14T18:51:54.644415Z",
            "url": "https://files.pythonhosted.org/packages/2b/e9/1748212f0e7d5d1424ae3246f3ca0ce18629b020a83454a9b18cc5d84152/jq-1.10.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1c20effb5ee6a9dbdd0fc2979ebfa2f29baca3aea09e528a0962dbef711721e4",
                "md5": "34d186bd761492d9fb080efa9e6a5f6b",
                "sha256": "cd313711ad4b6158662a65e1de9a4e34e6f297cacaa2a563b1d7c37fd453770e"
            },
            "downloads": -1,
            "filename": "jq-1.10.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "34d186bd761492d9fb080efa9e6a5f6b",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 732555,
            "upload_time": "2025-07-14T18:51:57",
            "upload_time_iso_8601": "2025-07-14T18:51:57.342650Z",
            "url": "https://files.pythonhosted.org/packages/1c/20/effb5ee6a9dbdd0fc2979ebfa2f29baca3aea09e528a0962dbef711721e4/jq-1.10.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f52ccb833cc9d61d8c67996d3568f4eb855175aa04b177f1915883148b7f962b",
                "md5": "27a7298889f8a8e98895c17222b2fd81",
                "sha256": "af859195c4a46adc52866cbc08a5d56fea86cbb8d18c9e02b95fea7d0b9c872d"
            },
            "downloads": -1,
            "filename": "jq-1.10.0-cp310-cp310-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "27a7298889f8a8e98895c17222b2fd81",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 714972,
            "upload_time": "2025-07-14T18:51:59",
            "upload_time_iso_8601": "2025-07-14T18:51:59.816973Z",
            "url": "https://files.pythonhosted.org/packages/f5/2c/cb833cc9d61d8c67996d3568f4eb855175aa04b177f1915883148b7f962b/jq-1.10.0-cp310-cp310-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6d352dff23341d12eee4b0b5fc0196529462320a540836062162c0b743435c0e",
                "md5": "33e6101dec939a9ed73d29dbee55ebe0",
                "sha256": "801d01e2c933fa3da70ce18d73adb29c4fd07ebe0e2da3f39f79719357a60014"
            },
            "downloads": -1,
            "filename": "jq-1.10.0-cp310-cp310-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "33e6101dec939a9ed73d29dbee55ebe0",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 739653,
            "upload_time": "2025-07-14T18:52:01",
            "upload_time_iso_8601": "2025-07-14T18:52:01.988410Z",
            "url": "https://files.pythonhosted.org/packages/6d/35/2dff23341d12eee4b0b5fc0196529462320a540836062162c0b743435c0e/jq-1.10.0-cp310-cp310-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ce09ffb7304ccd4a728f22ef6cbc8b6168143378524462ebc45900cd60d4af54",
                "md5": "4be293cda0c4321e27e617cf7aaee0bd",
                "sha256": "f6557f291f0b13db045b35401fa8b67b866fa1488e3a9703a1bcc5d156948c59"
            },
            "downloads": -1,
            "filename": "jq-1.10.0-cp310-cp310-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4be293cda0c4321e27e617cf7aaee0bd",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 739776,
            "upload_time": "2025-07-14T18:52:04",
            "upload_time_iso_8601": "2025-07-14T18:52:04.259645Z",
            "url": "https://files.pythonhosted.org/packages/ce/09/ffb7304ccd4a728f22ef6cbc8b6168143378524462ebc45900cd60d4af54/jq-1.10.0-cp310-cp310-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d5c348c47fd1276fd8c2ef6904a81f187b76bea8ef6876c99e5711e9dce385b6",
                "md5": "61196d271fea38d01c4c3d563a33a188",
                "sha256": "148a140c16c366c42c63e5a920dc8259ab62034c6f2c6b0f410df579fdf04654"
            },
            "downloads": -1,
            "filename": "jq-1.10.0-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "61196d271fea38d01c4c3d563a33a188",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 411525,
            "upload_time": "2025-07-14T18:52:05",
            "upload_time_iso_8601": "2025-07-14T18:52:05.816681Z",
            "url": "https://files.pythonhosted.org/packages/d5/c3/48c47fd1276fd8c2ef6904a81f187b76bea8ef6876c99e5711e9dce385b6/jq-1.10.0-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3ff270332d975fd5d1e722eef7ad3e40a96392dacbbc0b4024ef2384b3a1df7f",
                "md5": "704334957ee92ad2953cbed472bcc485",
                "sha256": "f8aa3f4eb6948be7b9b7c8eb19d4fbdaa2765227d21ea875898e2d20552ad749"
            },
            "downloads": -1,
            "filename": "jq-1.10.0-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "704334957ee92ad2953cbed472bcc485",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 422859,
            "upload_time": "2025-07-14T18:52:07",
            "upload_time_iso_8601": "2025-07-14T18:52:07.138395Z",
            "url": "https://files.pythonhosted.org/packages/3f/f2/70332d975fd5d1e722eef7ad3e40a96392dacbbc0b4024ef2384b3a1df7f/jq-1.10.0-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "51e5d460e048de611e8b455e1be98cba67fb70ecb194de3ba4486dc9dfba88cb",
                "md5": "3575df6f708f49cafdcbb383147d8b55",
                "sha256": "1363930e8efe63a76e6be93ffc6fea6d9201ba13a21f8a9c7943e9c6a4184cf7"
            },
            "downloads": -1,
            "filename": "jq-1.10.0-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3575df6f708f49cafdcbb383147d8b55",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 421078,
            "upload_time": "2025-07-14T18:52:10",
            "upload_time_iso_8601": "2025-07-14T18:52:10.487854Z",
            "url": "https://files.pythonhosted.org/packages/51/e5/d460e048de611e8b455e1be98cba67fb70ecb194de3ba4486dc9dfba88cb/jq-1.10.0-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b7f23183dd18746ef068c8798940683ff1a42397ee6519e1c1ee608843d376a1",
                "md5": "44be9f563100ed636afe88598be4a21c",
                "sha256": "850c99324fdb2e42a2056c27ec45af87b1bc764a14c94cdf011f6e21d885f032"
            },
            "downloads": -1,
            "filename": "jq-1.10.0-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "44be9f563100ed636afe88598be4a21c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 427232,
            "upload_time": "2025-07-14T18:52:14",
            "upload_time_iso_8601": "2025-07-14T18:52:14.539031Z",
            "url": "https://files.pythonhosted.org/packages/b7/f2/3183dd18746ef068c8798940683ff1a42397ee6519e1c1ee608843d376a1/jq-1.10.0-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "652ea566e4b254862f92be66365488bb78994110f32f8d60f255873fdaa429a7",
                "md5": "c148a46471e30a9c945da4047fce9e7d",
                "sha256": "75aabeae63f36fe421c25cb793f5e166500400e443e7f6ce509261d06d4f8b5d"
            },
            "downloads": -1,
            "filename": "jq-1.10.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "c148a46471e30a9c945da4047fce9e7d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 739810,
            "upload_time": "2025-07-14T18:52:17",
            "upload_time_iso_8601": "2025-07-14T18:52:17.557626Z",
            "url": "https://files.pythonhosted.org/packages/65/2e/a566e4b254862f92be66365488bb78994110f32f8d60f255873fdaa429a7/jq-1.10.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c9e2ad805b9a263a89c5fde75f2aa31d252c39732b55ead67d269e775eabe8a0",
                "md5": "0dd96fa5a6ea713fc61154898b854adc",
                "sha256": "4b6e1f04da95c5057346954b24e65cb401cf9c64566e68c4263454717fcf464d"
            },
            "downloads": -1,
            "filename": "jq-1.10.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0dd96fa5a6ea713fc61154898b854adc",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 754311,
            "upload_time": "2025-07-14T18:52:20",
            "upload_time_iso_8601": "2025-07-14T18:52:20.172897Z",
            "url": "https://files.pythonhosted.org/packages/c9/e2/ad805b9a263a89c5fde75f2aa31d252c39732b55ead67d269e775eabe8a0/jq-1.10.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a939403924bd41a2365bc1ba39c99b2922b8e3f97abe6405d0e0911018df045c",
                "md5": "482ae80e7d0926b79170e19c7596134d",
                "sha256": "3ff2ac703b1bde9209f124aa7948012b77e93a40f858c24cf0bbd48f150c15e8"
            },
            "downloads": -1,
            "filename": "jq-1.10.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "482ae80e7d0926b79170e19c7596134d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 745667,
            "upload_time": "2025-07-14T18:52:22",
            "upload_time_iso_8601": "2025-07-14T18:52:22.435333Z",
            "url": "https://files.pythonhosted.org/packages/a9/39/403924bd41a2365bc1ba39c99b2922b8e3f97abe6405d0e0911018df045c/jq-1.10.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d85b9f9d5e748b810bfe79f61f7dc36ed1c5d7d68feca3928659d6dfbba50e6b",
                "md5": "f7083111286bfe89cfc63dad7b573835",
                "sha256": "83ae246c191e6c5363cb7987af10c4c3071ec6995424eb749d225fbb985d9e47"
            },
            "downloads": -1,
            "filename": "jq-1.10.0-cp311-cp311-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "f7083111286bfe89cfc63dad7b573835",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 737610,
            "upload_time": "2025-07-14T18:52:24",
            "upload_time_iso_8601": "2025-07-14T18:52:24.268295Z",
            "url": "https://files.pythonhosted.org/packages/d8/5b/9f9d5e748b810bfe79f61f7dc36ed1c5d7d68feca3928659d6dfbba50e6b/jq-1.10.0-cp311-cp311-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "12d6799a9f8a1588c0275411b7754cf5939dec8003978e3a71c54fb68894fc5b",
                "md5": "3bdd01618424f666dd153de99bdc7bde",
                "sha256": "307ed7ac72c03843af46face4ec1b8238f6d0d68f5a37aab3b55d178c329ad34"
            },
            "downloads": -1,
            "filename": "jq-1.10.0-cp311-cp311-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "3bdd01618424f666dd153de99bdc7bde",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 762500,
            "upload_time": "2025-07-14T18:52:28",
            "upload_time_iso_8601": "2025-07-14T18:52:28.881976Z",
            "url": "https://files.pythonhosted.org/packages/12/d6/799a9f8a1588c0275411b7754cf5939dec8003978e3a71c54fb68894fc5b/jq-1.10.0-cp311-cp311-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "270418f406ba70f7f78f9576baed53d0d84f3f02420c124d0843c1e7b16567f5",
                "md5": "05cdf48decef3a9222e00b59ae04609a",
                "sha256": "ded278e64dad446667656f7144cefe20cea16bb57cf6912ef6d1ddf3bddc9861"
            },
            "downloads": -1,
            "filename": "jq-1.10.0-cp311-cp311-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "05cdf48decef3a9222e00b59ae04609a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 763614,
            "upload_time": "2025-07-14T18:52:32",
            "upload_time_iso_8601": "2025-07-14T18:52:32.381367Z",
            "url": "https://files.pythonhosted.org/packages/27/04/18f406ba70f7f78f9576baed53d0d84f3f02420c124d0843c1e7b16567f5/jq-1.10.0-cp311-cp311-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "dcf8accb3c72ece3164e7019910b387fd65fc1da805bc8b7dac4e676d48b852e",
                "md5": "3abda63b02a9563031494e8265c50818",
                "sha256": "5d5624d43c8597b06a4a2c5461d1577f29f23991472a5da88b742f7fa529c1d1"
            },
            "downloads": -1,
            "filename": "jq-1.10.0-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "3abda63b02a9563031494e8265c50818",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 410182,
            "upload_time": "2025-07-14T18:52:34",
            "upload_time_iso_8601": "2025-07-14T18:52:34.771990Z",
            "url": "https://files.pythonhosted.org/packages/dc/f8/accb3c72ece3164e7019910b387fd65fc1da805bc8b7dac4e676d48b852e/jq-1.10.0-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a51d2af863d11a5330b69af6cc875bb54ecf942da4909b75284afef7468e70b5",
                "md5": "bcffc5fd94413956e23e0f426d509308",
                "sha256": "08bf55484a20955264358823049ff8deb671bb0025d51707ec591b5eb18a94d7"
            },
            "downloads": -1,
            "filename": "jq-1.10.0-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "bcffc5fd94413956e23e0f426d509308",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 421735,
            "upload_time": "2025-07-14T18:52:37",
            "upload_time_iso_8601": "2025-07-14T18:52:37.026089Z",
            "url": "https://files.pythonhosted.org/packages/a5/1d/2af863d11a5330b69af6cc875bb54ecf942da4909b75284afef7468e70b5/jq-1.10.0-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3ed9b9e2b7004a2cb646507c082ea5e975ac37e6265353ec4c24779a1701c54a",
                "md5": "08c835e7840a201c457c843bfa595069",
                "sha256": "fe636cfa95b7027e7b43da83ecfd61431c0de80c3e0aa4946534b087149dcb4c"
            },
            "downloads": -1,
            "filename": "jq-1.10.0-cp312-cp312-macosx_10_13_x86_64.whl",
            "has_sig": false,
            "md5_digest": "08c835e7840a201c457c843bfa595069",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 420103,
            "upload_time": "2025-07-14T18:52:39",
            "upload_time_iso_8601": "2025-07-14T18:52:39.016712Z",
            "url": "https://files.pythonhosted.org/packages/3e/d9/b9e2b7004a2cb646507c082ea5e975ac37e6265353ec4c24779a1701c54a/jq-1.10.0-cp312-cp312-macosx_10_13_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "75add6780c218040789ed3ddbfa3b1743aaf824f80be5ebd7d5f885224c5bb08",
                "md5": "80143b10eb5c0b5ff45a368e2e4e0db9",
                "sha256": "947fc7e1baaa7e95833b950e5a66b3e13a5cff028bff2d009b8c320124d9e69b"
            },
            "downloads": -1,
            "filename": "jq-1.10.0-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "80143b10eb5c0b5ff45a368e2e4e0db9",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 426325,
            "upload_time": "2025-07-14T18:52:40",
            "upload_time_iso_8601": "2025-07-14T18:52:40.654066Z",
            "url": "https://files.pythonhosted.org/packages/75/ad/d6780c218040789ed3ddbfa3b1743aaf824f80be5ebd7d5f885224c5bb08/jq-1.10.0-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e9425cfc8de34e976112e1b835a83264c7a0bab2cf8f20dc703f1257aa9e07ea",
                "md5": "2b1ddcdc2e4563f746525c9b497010e3",
                "sha256": "9382f85a347623afa521c43f8f09439e68906fd5b3492016f969a29219796bb9"
            },
            "downloads": -1,
            "filename": "jq-1.10.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "2b1ddcdc2e4563f746525c9b497010e3",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 738212,
            "upload_time": "2025-07-14T18:52:42",
            "upload_time_iso_8601": "2025-07-14T18:52:42.637945Z",
            "url": "https://files.pythonhosted.org/packages/e9/42/5cfc8de34e976112e1b835a83264c7a0bab2cf8f20dc703f1257aa9e07ea/jq-1.10.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "840aeff78a2329967bda38a98580c6fb77c59696b2b7d589e97db232ca42f5c4",
                "md5": "29bf9daeac48d6ce1156df204a91f459",
                "sha256": "c376aab525d0a1debe403d3bc2f19fda9473696a1eda56bafc88248fc4ae6e7e"
            },
            "downloads": -1,
            "filename": "jq-1.10.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "29bf9daeac48d6ce1156df204a91f459",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 757068,
            "upload_time": "2025-07-14T18:52:44",
            "upload_time_iso_8601": "2025-07-14T18:52:44.709058Z",
            "url": "https://files.pythonhosted.org/packages/84/0a/eff78a2329967bda38a98580c6fb77c59696b2b7d589e97db232ca42f5c4/jq-1.10.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f362353d4c0a9f363ccb2a9b5ea205f079a4ee43642622c25250d95c0fafb7ca",
                "md5": "a0b3a7bf9c6eba62b47bc4e36709caf2",
                "sha256": "206f230c67a46776f848858c66b9c377a8e40c2b16195552edd96fd7b45f9a52"
            },
            "downloads": -1,
            "filename": "jq-1.10.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "a0b3a7bf9c6eba62b47bc4e36709caf2",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 744259,
            "upload_time": "2025-07-14T18:52:47",
            "upload_time_iso_8601": "2025-07-14T18:52:47.308491Z",
            "url": "https://files.pythonhosted.org/packages/f3/62/353d4c0a9f363ccb2a9b5ea205f079a4ee43642622c25250d95c0fafb7ca/jq-1.10.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4f460faead425cc3a720c7cd999146f4b5f50aaf394800457efb27746c10832c",
                "md5": "0da5e9452bf3009b6f7bbb3c90cd0aef",
                "sha256": "06986456ebc95ccb9e9c2a1f0e842bc9d441225a554a9f9d4370ad95a19ac000"
            },
            "downloads": -1,
            "filename": "jq-1.10.0-cp312-cp312-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "0da5e9452bf3009b6f7bbb3c90cd0aef",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 740075,
            "upload_time": "2025-07-14T18:52:50",
            "upload_time_iso_8601": "2025-07-14T18:52:50.038877Z",
            "url": "https://files.pythonhosted.org/packages/4f/46/0faead425cc3a720c7cd999146f4b5f50aaf394800457efb27746c10832c/jq-1.10.0-cp312-cp312-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "100c8e0823c5a329d735cff9f3746e0f7d74e7eea4ed9b0e75f90f942d1c455a",
                "md5": "d038490321674d8d9fa75999e1af0c45",
                "sha256": "d02c0be958ddb4d9254ff251b045df2f8ee5995137702eeab4ffa81158bcdbe0"
            },
            "downloads": -1,
            "filename": "jq-1.10.0-cp312-cp312-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "d038490321674d8d9fa75999e1af0c45",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 766475,
            "upload_time": "2025-07-14T18:52:53",
            "upload_time_iso_8601": "2025-07-14T18:52:53.047357Z",
            "url": "https://files.pythonhosted.org/packages/10/0c/8e0823c5a329d735cff9f3746e0f7d74e7eea4ed9b0e75f90f942d1c455a/jq-1.10.0-cp312-cp312-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "060c9b5aae9081fe6620915aa0e0ca76fd016e5b9d399b80c8615852413f4404",
                "md5": "83468ee810e918e27875d194e99f9f5d",
                "sha256": "37cf6fd2ebd2453e75ceef207d5a95a39fcbda371a9b8916db0bd42e8737a621"
            },
            "downloads": -1,
            "filename": "jq-1.10.0-cp312-cp312-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "83468ee810e918e27875d194e99f9f5d",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 770416,
            "upload_time": "2025-07-14T18:52:55",
            "upload_time_iso_8601": "2025-07-14T18:52:55.858357Z",
            "url": "https://files.pythonhosted.org/packages/06/0c/9b5aae9081fe6620915aa0e0ca76fd016e5b9d399b80c8615852413f4404/jq-1.10.0-cp312-cp312-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d4e78f4e1cc3102de31d71e6298bcbdb15d1439e2bc466f4dcf18bc3694ba61d",
                "md5": "f8259c19d637654114f21347f1eafe57",
                "sha256": "655d75d54a343944a9b011f568156cdc29ae0b35d2fdeefb001f459a4e4fc313"
            },
            "downloads": -1,
            "filename": "jq-1.10.0-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "f8259c19d637654114f21347f1eafe57",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 410113,
            "upload_time": "2025-07-14T18:52:57",
            "upload_time_iso_8601": "2025-07-14T18:52:57.736765Z",
            "url": "https://files.pythonhosted.org/packages/d4/e7/8f4e1cc3102de31d71e6298bcbdb15d1439e2bc466f4dcf18bc3694ba61d/jq-1.10.0-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "201f6efe0a2b69910643b80d7da39fbded8225749dee4b79ebe23d522109a310",
                "md5": "f89b38e472689fa03bccd70f013dea2c",
                "sha256": "1d67c2653ae41eab48f8888c213c9e1807b43167f26ac623c9f3e00989d3edee"
            },
            "downloads": -1,
            "filename": "jq-1.10.0-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "f89b38e472689fa03bccd70f013dea2c",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 422316,
            "upload_time": "2025-07-14T18:52:59",
            "upload_time_iso_8601": "2025-07-14T18:52:59.605448Z",
            "url": "https://files.pythonhosted.org/packages/20/1f/6efe0a2b69910643b80d7da39fbded8225749dee4b79ebe23d522109a310/jq-1.10.0-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f2feeeede83103e90e8f5fd9b610514a4c714957d6575e03987ebeb77aafeafa",
                "md5": "9f79ab399495f0ca9bee433c9c593a82",
                "sha256": "b11d6e115ebad15d738d49932c3a8b9bb302b928e0fb79acc80987598d147a43"
            },
            "downloads": -1,
            "filename": "jq-1.10.0-cp313-cp313-macosx_10_13_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9f79ab399495f0ca9bee433c9c593a82",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 419325,
            "upload_time": "2025-07-14T18:53:01",
            "upload_time_iso_8601": "2025-07-14T18:53:01.854139Z",
            "url": "https://files.pythonhosted.org/packages/f2/fe/eeede83103e90e8f5fd9b610514a4c714957d6575e03987ebeb77aafeafa/jq-1.10.0-cp313-cp313-macosx_10_13_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "09128b39293715d7721b2999facd4a05ca3328fe4a68cf1c094667789867aac1",
                "md5": "aa48ca6bce4896cf5b7ddeea7c98aa0d",
                "sha256": "df278904c5727dfe5bc678131a0636d731cd944879d890adf2fc6de35214b19b"
            },
            "downloads": -1,
            "filename": "jq-1.10.0-cp313-cp313-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "aa48ca6bce4896cf5b7ddeea7c98aa0d",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 425344,
            "upload_time": "2025-07-14T18:53:03",
            "upload_time_iso_8601": "2025-07-14T18:53:03.528715Z",
            "url": "https://files.pythonhosted.org/packages/09/12/8b39293715d7721b2999facd4a05ca3328fe4a68cf1c094667789867aac1/jq-1.10.0-cp313-cp313-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ecf4ace0c853d4462f1d28798d5696619d2fb68c8e1db228ef5517365a0f3c1c",
                "md5": "e2357498bfe81afdc4e86cb422a34570",
                "sha256": "ab4c1ec69fd7719fb1356e2ade7bd2b5a63d6f0eaf5a90fdc5c9f6145f0474ce"
            },
            "downloads": -1,
            "filename": "jq-1.10.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "e2357498bfe81afdc4e86cb422a34570",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 735874,
            "upload_time": "2025-07-14T18:53:05",
            "upload_time_iso_8601": "2025-07-14T18:53:05.406019Z",
            "url": "https://files.pythonhosted.org/packages/ec/f4/ace0c853d4462f1d28798d5696619d2fb68c8e1db228ef5517365a0f3c1c/jq-1.10.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2ab07882035062771686bd7e62db019fa0900fd9a3720b7ad8f7af65ee628484",
                "md5": "d2be390a4a5634d7009385b867beaedf",
                "sha256": "fd24dc21c8afcbe5aa812878251cfafa6f1dc6e1126c35d460cc7e67eb331018"
            },
            "downloads": -1,
            "filename": "jq-1.10.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d2be390a4a5634d7009385b867beaedf",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 754355,
            "upload_time": "2025-07-14T18:53:07",
            "upload_time_iso_8601": "2025-07-14T18:53:07.487048Z",
            "url": "https://files.pythonhosted.org/packages/2a/b0/7882035062771686bd7e62db019fa0900fd9a3720b7ad8f7af65ee628484/jq-1.10.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "df7db759a764c5d05c6829e95733a8b26f7e9b14df245ec2a325c0de049393ca",
                "md5": "58a1a0b613c6cb6a14fed9e4a1094494",
                "sha256": "8c0d3e89cd239c340c3a54e145ddf52fe63de31866cb73368d22a66bfe7e823f"
            },
            "downloads": -1,
            "filename": "jq-1.10.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "58a1a0b613c6cb6a14fed9e4a1094494",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 742546,
            "upload_time": "2025-07-14T18:53:11",
            "upload_time_iso_8601": "2025-07-14T18:53:11.756545Z",
            "url": "https://files.pythonhosted.org/packages/df/7d/b759a764c5d05c6829e95733a8b26f7e9b14df245ec2a325c0de049393ca/jq-1.10.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ad6b483ddb82939d4f2f9b0486887666c67a966434cc8bc72acd851fc8063f50",
                "md5": "6e50b548822989f2128772dee0577234",
                "sha256": "76710b280e4c464395c3d8e656b849e2704bd06e950a4ebd767860572bbf67df"
            },
            "downloads": -1,
            "filename": "jq-1.10.0-cp313-cp313-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "6e50b548822989f2128772dee0577234",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 738777,
            "upload_time": "2025-07-14T18:53:14",
            "upload_time_iso_8601": "2025-07-14T18:53:14.856420Z",
            "url": "https://files.pythonhosted.org/packages/ad/6b/483ddb82939d4f2f9b0486887666c67a966434cc8bc72acd851fc8063f50/jq-1.10.0-cp313-cp313-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0c724d0fc965a8e57f55291763bb236a5aee91430f97c844ee328667b34af19e",
                "md5": "85f732166da3bed5d0210e7ba8a2050b",
                "sha256": "b11a56f1fb6e2985fd3627dbd8a0637f62b1a704f7b19705733d461dafa26429"
            },
            "downloads": -1,
            "filename": "jq-1.10.0-cp313-cp313-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "85f732166da3bed5d0210e7ba8a2050b",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 765307,
            "upload_time": "2025-07-14T18:53:17",
            "upload_time_iso_8601": "2025-07-14T18:53:17.611253Z",
            "url": "https://files.pythonhosted.org/packages/0c/72/4d0fc965a8e57f55291763bb236a5aee91430f97c844ee328667b34af19e/jq-1.10.0-cp313-cp313-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0ba6aca82622d8d20ea02bbcac8aaa92daaadd55a18c2a3ca54b2e63d98336d2",
                "md5": "6bc2395378f6a13533092476a1771be2",
                "sha256": "ac05ae44d9aa1e462329e1510e0b5139ac4446de650c7bdfdab226aafdc978ec"
            },
            "downloads": -1,
            "filename": "jq-1.10.0-cp313-cp313-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6bc2395378f6a13533092476a1771be2",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 769830,
            "upload_time": "2025-07-14T18:53:19",
            "upload_time_iso_8601": "2025-07-14T18:53:19.937285Z",
            "url": "https://files.pythonhosted.org/packages/0b/a6/aca82622d8d20ea02bbcac8aaa92daaadd55a18c2a3ca54b2e63d98336d2/jq-1.10.0-cp313-cp313-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0ee3a19aeada32dde0839e3a4d77f2f0d63f2764c579b57f405ff4b91a58a8db",
                "md5": "24e6f5f73ad70a8db6d24260fadb2dde",
                "sha256": "0bad90f5734e2fc9d09c4116ae9102c357a4d75efa60a85758b0ba633774eddb"
            },
            "downloads": -1,
            "filename": "jq-1.10.0-cp313-cp313-win32.whl",
            "has_sig": false,
            "md5_digest": "24e6f5f73ad70a8db6d24260fadb2dde",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 410285,
            "upload_time": "2025-07-14T18:53:21",
            "upload_time_iso_8601": "2025-07-14T18:53:21.631492Z",
            "url": "https://files.pythonhosted.org/packages/0e/e3/a19aeada32dde0839e3a4d77f2f0d63f2764c579b57f405ff4b91a58a8db/jq-1.10.0-cp313-cp313-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d632df4eb81cf371654d91b6779d3f0005e86519977e19068638c266a9c88af7",
                "md5": "4bbd0666c0c3714220562cce301f18ff",
                "sha256": "4ec3fbca80a9dfb5349cdc2531faf14dd832e1847499513cf1fc477bcf46a479"
            },
            "downloads": -1,
            "filename": "jq-1.10.0-cp313-cp313-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "4bbd0666c0c3714220562cce301f18ff",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 423094,
            "upload_time": "2025-07-14T18:53:23",
            "upload_time_iso_8601": "2025-07-14T18:53:23.687211Z",
            "url": "https://files.pythonhosted.org/packages/d6/32/df4eb81cf371654d91b6779d3f0005e86519977e19068638c266a9c88af7/jq-1.10.0-cp313-cp313-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "14c0dc3b7d23b0624b6f038facc4959b0ad4587bbc4ab3c50148725169aa8928",
                "md5": "cf1be54e4549b5bb7fbb20738f64fce5",
                "sha256": "09e6ca3095a3be59353a262c75f680a0934ac03e81d10b78d7eabcb9fb746543"
            },
            "downloads": -1,
            "filename": "jq-1.10.0-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "cf1be54e4549b5bb7fbb20738f64fce5",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 420347,
            "upload_time": "2025-07-14T18:53:25",
            "upload_time_iso_8601": "2025-07-14T18:53:25.205976Z",
            "url": "https://files.pythonhosted.org/packages/14/c0/dc3b7d23b0624b6f038facc4959b0ad4587bbc4ab3c50148725169aa8928/jq-1.10.0-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b01b6aa5ec1e29d8d62105a998eb6ad73f0836a40cc4a08d8b25997261f9c5bb",
                "md5": "a6e41fce25cf03c015bce372585fd312",
                "sha256": "57e7b81b69700ad6003f6d068ae5432fa54169e2c5b15a1f9073400d83c0115a"
            },
            "downloads": -1,
            "filename": "jq-1.10.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "a6e41fce25cf03c015bce372585fd312",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 733865,
            "upload_time": "2025-07-14T18:53:29",
            "upload_time_iso_8601": "2025-07-14T18:53:29.297623Z",
            "url": "https://files.pythonhosted.org/packages/b0/1b/6aa5ec1e29d8d62105a998eb6ad73f0836a40cc4a08d8b25997261f9c5bb/jq-1.10.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "47cacc828c62ac2120945f54058392d2af0b55e63d92092596efe20ead3031c9",
                "md5": "3c1177be159ea8e8888966197f9b2161",
                "sha256": "36a959b8cff3796b42f51a0be5fa37126ee66fc822e29620485a229f6c9baec6"
            },
            "downloads": -1,
            "filename": "jq-1.10.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3c1177be159ea8e8888966197f9b2161",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 750619,
            "upload_time": "2025-07-14T18:53:32",
            "upload_time_iso_8601": "2025-07-14T18:53:32.494444Z",
            "url": "https://files.pythonhosted.org/packages/47/ca/cc828c62ac2120945f54058392d2af0b55e63d92092596efe20ead3031c9/jq-1.10.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8f4a2e91ad467bbfd4011514dbb7fdab00310091d8af0f923c485532b30859d3",
                "md5": "e8ef163d61462c8426590b32c52db0a0",
                "sha256": "f44bd6b9d03367a9e8a3f8f5c8343b572fbec9d148242f226e2a6f2eb459ba2b"
            },
            "downloads": -1,
            "filename": "jq-1.10.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "e8ef163d61462c8426590b32c52db0a0",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 743560,
            "upload_time": "2025-07-14T18:53:35",
            "upload_time_iso_8601": "2025-07-14T18:53:35.526180Z",
            "url": "https://files.pythonhosted.org/packages/8f/4a/2e91ad467bbfd4011514dbb7fdab00310091d8af0f923c485532b30859d3/jq-1.10.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "935432f890b039d9062952b6e1c69b333163b731a529f840f580f8326b7f3ecb",
                "md5": "6db8cb9cd4551aaac4b23cd63704d180",
                "sha256": "48fb2cfe083942e370876e865fad3836aedc1b06ef30a2376e53ab35d6a7f728"
            },
            "downloads": -1,
            "filename": "jq-1.10.0-cp38-cp38-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "6db8cb9cd4551aaac4b23cd63704d180",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 725282,
            "upload_time": "2025-07-14T18:53:37",
            "upload_time_iso_8601": "2025-07-14T18:53:37.798582Z",
            "url": "https://files.pythonhosted.org/packages/93/54/32f890b039d9062952b6e1c69b333163b731a529f840f580f8326b7f3ecb/jq-1.10.0-cp38-cp38-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cd8d38dbb2fa34770b670859fe5562b6aee98e9d841955bf360a391245a7c452",
                "md5": "c2996b41f19db984f510313e1727041d",
                "sha256": "d47fe013dc22c82b425ae5358729a3d38de4097dda28d63f591c8bdd97bae6cb"
            },
            "downloads": -1,
            "filename": "jq-1.10.0-cp38-cp38-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "c2996b41f19db984f510313e1727041d",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 751442,
            "upload_time": "2025-07-14T18:53:39",
            "upload_time_iso_8601": "2025-07-14T18:53:39.754901Z",
            "url": "https://files.pythonhosted.org/packages/cd/8d/38dbb2fa34770b670859fe5562b6aee98e9d841955bf360a391245a7c452/jq-1.10.0-cp38-cp38-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e887cad67a39df21520e80e22a1bfc512e6a713a1c047439791a0ec48b9c30b2",
                "md5": "ff512094532a85fd307282b60f7d9a01",
                "sha256": "2886606f40f2127ed4bea2aa2d30653d485ed26075dd5b52fb933aa7ec7b23d3"
            },
            "downloads": -1,
            "filename": "jq-1.10.0-cp38-cp38-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ff512094532a85fd307282b60f7d9a01",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 750454,
            "upload_time": "2025-07-14T18:53:43",
            "upload_time_iso_8601": "2025-07-14T18:53:43.234494Z",
            "url": "https://files.pythonhosted.org/packages/e8/87/cad67a39df21520e80e22a1bfc512e6a713a1c047439791a0ec48b9c30b2/jq-1.10.0-cp38-cp38-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ef825d3b645211466d078ff04736843ee36350b56c01e12f2eec11be90db9df6",
                "md5": "b9e36b0f71a74b07834b8053cac2439e",
                "sha256": "f1f277fd820246f0d80da2ddd39b6d5ea99b266c067abce34f1ff50bd3358477"
            },
            "downloads": -1,
            "filename": "jq-1.10.0-cp38-cp38-win32.whl",
            "has_sig": false,
            "md5_digest": "b9e36b0f71a74b07834b8053cac2439e",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 412424,
            "upload_time": "2025-07-14T18:53:45",
            "upload_time_iso_8601": "2025-07-14T18:53:45.853568Z",
            "url": "https://files.pythonhosted.org/packages/ef/82/5d3b645211466d078ff04736843ee36350b56c01e12f2eec11be90db9df6/jq-1.10.0-cp38-cp38-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "55f235d03dfff0bbf2370cee4290acc8659f132f32dfee8603807f67da3ea29f",
                "md5": "fb30a4515160a244bb8c76996879985a",
                "sha256": "ab050dc7a6c204dde3a3d28e340f937e00cf69c8d3f7dd17e8c3ffef916784df"
            },
            "downloads": -1,
            "filename": "jq-1.10.0-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "fb30a4515160a244bb8c76996879985a",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 424987,
            "upload_time": "2025-07-14T18:53:48",
            "upload_time_iso_8601": "2025-07-14T18:53:48.371814Z",
            "url": "https://files.pythonhosted.org/packages/55/f2/35d03dfff0bbf2370cee4290acc8659f132f32dfee8603807f67da3ea29f/jq-1.10.0-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "dc566dbb244c115464ac181ba1a5132e93142a8e085845593da020f627960a14",
                "md5": "b9af143e2b1bad8190f7ac3c5469f2e5",
                "sha256": "db746ec4f05a6622bca5785f58fa322f04c493de61c6761cbe5a61218babe3d9"
            },
            "downloads": -1,
            "filename": "jq-1.10.0-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b9af143e2b1bad8190f7ac3c5469f2e5",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 420974,
            "upload_time": "2025-07-14T18:53:50",
            "upload_time_iso_8601": "2025-07-14T18:53:50.659124Z",
            "url": "https://files.pythonhosted.org/packages/dc/56/6dbb244c115464ac181ba1a5132e93142a8e085845593da020f627960a14/jq-1.10.0-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9b432906fbe63662ad1af4deb71b2b9ce5e359b761a71d9c8f55a1f44aa51be6",
                "md5": "1164356978daa517c2faa2324f5a4558",
                "sha256": "bb9a6b5ff1e9d261ffae51aefbc66660bc1f5713339943aa95af7631062be163"
            },
            "downloads": -1,
            "filename": "jq-1.10.0-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "1164356978daa517c2faa2324f5a4558",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 427119,
            "upload_time": "2025-07-14T18:53:53",
            "upload_time_iso_8601": "2025-07-14T18:53:53.029485Z",
            "url": "https://files.pythonhosted.org/packages/9b/43/2906fbe63662ad1af4deb71b2b9ce5e359b761a71d9c8f55a1f44aa51be6/jq-1.10.0-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "254d640b203ac8771c79404a145c8cb21220a9f03f010a5c60e2e379f9c3dccc",
                "md5": "563d80f8da9c6fbea72039edbd547ec9",
                "sha256": "6690eda99a5be16f28c6931918769af0c2d066257d4efedc7c4108cfbf4e242f"
            },
            "downloads": -1,
            "filename": "jq-1.10.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "563d80f8da9c6fbea72039edbd547ec9",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 726303,
            "upload_time": "2025-07-14T18:53:55",
            "upload_time_iso_8601": "2025-07-14T18:53:55.333566Z",
            "url": "https://files.pythonhosted.org/packages/25/4d/640b203ac8771c79404a145c8cb21220a9f03f010a5c60e2e379f9c3dccc/jq-1.10.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d2b172ebcfc99f89cb3b96f9dc1da7cb8ce167a975f0b74aae461aa56c4735f0",
                "md5": "9e0f9504c9d96a45b28a794b68109a6c",
                "sha256": "3f4b28f04bb69eadb99c7ba3911246e6a200a886d82ae190a0af95037c427de6"
            },
            "downloads": -1,
            "filename": "jq-1.10.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9e0f9504c9d96a45b28a794b68109a6c",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 743462,
            "upload_time": "2025-07-14T18:53:57",
            "upload_time_iso_8601": "2025-07-14T18:53:57.391116Z",
            "url": "https://files.pythonhosted.org/packages/d2/b1/72ebcfc99f89cb3b96f9dc1da7cb8ce167a975f0b74aae461aa56c4735f0/jq-1.10.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5d1b410fae0e3d5d0a05707c2ee5bf4f7489196ab9de08957d2f4b70e6070d55",
                "md5": "d5e8b4f84e78da95e70080e6c5722cee",
                "sha256": "d7278f1dfc49387551e670133b363a3368eeac74672dd4b520b7da4f8e803058"
            },
            "downloads": -1,
            "filename": "jq-1.10.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "d5e8b4f84e78da95e70080e6c5722cee",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 734358,
            "upload_time": "2025-07-14T18:53:59",
            "upload_time_iso_8601": "2025-07-14T18:53:59.282620Z",
            "url": "https://files.pythonhosted.org/packages/5d/1b/410fae0e3d5d0a05707c2ee5bf4f7489196ab9de08957d2f4b70e6070d55/jq-1.10.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "56cf8f4390643072a6d5b05581aa582c91eb353ce549de50e3c88786786a1b5f",
                "md5": "91d666199c9339bb3a1a506cc52eaef8",
                "sha256": "28c16ca90940dfb8a2bd28b2d02cb2a546faa91db5b03f2cb71148b158fc098c"
            },
            "downloads": -1,
            "filename": "jq-1.10.0-cp39-cp39-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "91d666199c9339bb3a1a506cc52eaef8",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 715866,
            "upload_time": "2025-07-14T18:54:01",
            "upload_time_iso_8601": "2025-07-14T18:54:01.394270Z",
            "url": "https://files.pythonhosted.org/packages/56/cf/8f4390643072a6d5b05581aa582c91eb353ce549de50e3c88786786a1b5f/jq-1.10.0-cp39-cp39-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3b120f1c0802426128d40f50e9a341ea6173a6d0fc80e87c99914be126b62af2",
                "md5": "0f361d809f5f8d6d47b7579dcaf1b534",
                "sha256": "f700d2aa1ef2b58c33df0a06ba58e68196cc9f81d1b6eb6baaa34e81fc0dbe6d"
            },
            "downloads": -1,
            "filename": "jq-1.10.0-cp39-cp39-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "0f361d809f5f8d6d47b7579dcaf1b534",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 741175,
            "upload_time": "2025-07-14T18:54:05",
            "upload_time_iso_8601": "2025-07-14T18:54:05.567869Z",
            "url": "https://files.pythonhosted.org/packages/3b/12/0f1c0802426128d40f50e9a341ea6173a6d0fc80e87c99914be126b62af2/jq-1.10.0-cp39-cp39-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9e98546d1f0012b0d0f25a2cbaf32a7bcd92d995b3b7d387039bf5ac1807ee25",
                "md5": "75e7ab8367b20e00ff7fc888d78cc1c4",
                "sha256": "cf18f3031da9727245529e16ad13ab8859d73cfe0bc0e09a79696038658c25d5"
            },
            "downloads": -1,
            "filename": "jq-1.10.0-cp39-cp39-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "75e7ab8367b20e00ff7fc888d78cc1c4",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 740563,
            "upload_time": "2025-07-14T18:54:08",
            "upload_time_iso_8601": "2025-07-14T18:54:08.874820Z",
            "url": "https://files.pythonhosted.org/packages/9e/98/546d1f0012b0d0f25a2cbaf32a7bcd92d995b3b7d387039bf5ac1807ee25/jq-1.10.0-cp39-cp39-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f8f73436d12228b7bfb8d59cf20467dfd2bf261bc11d113fe454f340990694ba",
                "md5": "44ac4a677ec6394513a217045206e88f",
                "sha256": "31753d5b45b1806d1d7241a45cb262b1f3db8c0f1f4c618d5a02cbe227d2c436"
            },
            "downloads": -1,
            "filename": "jq-1.10.0-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "44ac4a677ec6394513a217045206e88f",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 411795,
            "upload_time": "2025-07-14T18:54:11",
            "upload_time_iso_8601": "2025-07-14T18:54:11.258325Z",
            "url": "https://files.pythonhosted.org/packages/f8/f7/3436d12228b7bfb8d59cf20467dfd2bf261bc11d113fe454f340990694ba/jq-1.10.0-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "dbd3b7e0b8b6057254618989f2c5883997f2545143295a07789f890c1cfa8625",
                "md5": "967672d50d0ce532d68e3690377a9d04",
                "sha256": "c4648684034ba5b975be9b0099ca230ef088c14eeffb3357b522d9cba02a05ea"
            },
            "downloads": -1,
            "filename": "jq-1.10.0-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "967672d50d0ce532d68e3690377a9d04",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 422907,
            "upload_time": "2025-07-14T18:54:13",
            "upload_time_iso_8601": "2025-07-14T18:54:13.139403Z",
            "url": "https://files.pythonhosted.org/packages/db/d3/b7e0b8b6057254618989f2c5883997f2545143295a07789f890c1cfa8625/jq-1.10.0-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f21a40c2ed6f0d27b283c46ac58047f2f7335c24c07a8ee6b01c36af7a73a0af",
                "md5": "f25feb57b8af63732b841448342aea27",
                "sha256": "591d81677336551fd9cf3b5e23c1929ae3cd039a5c2d5fb8042870ed5372fd8c"
            },
            "downloads": -1,
            "filename": "jq-1.10.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f25feb57b8af63732b841448342aea27",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 406595,
            "upload_time": "2025-07-14T18:54:15",
            "upload_time_iso_8601": "2025-07-14T18:54:15.239009Z",
            "url": "https://files.pythonhosted.org/packages/f2/1a/40c2ed6f0d27b283c46ac58047f2f7335c24c07a8ee6b01c36af7a73a0af/jq-1.10.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1db5bb7ac9bf5cd636eea94b8b7ae66bccb30c0baeb1234b7cf60f1c8c9f061a",
                "md5": "d3960ec3cbfad61b5b0bc26f777c2cc8",
                "sha256": "f7f68716e8533294d2f5152e8659288091ea705778a00e066ed3b418ed724d81"
            },
            "downloads": -1,
            "filename": "jq-1.10.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "d3960ec3cbfad61b5b0bc26f777c2cc8",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 414867,
            "upload_time": "2025-07-14T18:54:16",
            "upload_time_iso_8601": "2025-07-14T18:54:16.924894Z",
            "url": "https://files.pythonhosted.org/packages/1d/b5/bb7ac9bf5cd636eea94b8b7ae66bccb30c0baeb1234b7cf60f1c8c9f061a/jq-1.10.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d86255b0a9de733f38b77afb54782d2c55031e7de0922077e6ade563a6c450af",
                "md5": "f0c2d778d83a10c90b6e30916ff25b55",
                "sha256": "72658f31d5723e7b87eea929e81d5083fd4132636a9dcdbf56ba9ea0e30ecaa3"
            },
            "downloads": -1,
            "filename": "jq-1.10.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "f0c2d778d83a10c90b6e30916ff25b55",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 415155,
            "upload_time": "2025-07-14T18:54:18",
            "upload_time_iso_8601": "2025-07-14T18:54:18.501627Z",
            "url": "https://files.pythonhosted.org/packages/d8/62/55b0a9de733f38b77afb54782d2c55031e7de0922077e6ade563a6c450af/jq-1.10.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cc587fea03a5376f380aa85ada547e9c1fd5a9c14ba1cb037a66ac8df21977d5",
                "md5": "ee107a154742abd5a9eb72e821e4d62b",
                "sha256": "039e84e19306f94bf0d15291f6d358c4086c702de48e2309c3183fd866bf2785"
            },
            "downloads": -1,
            "filename": "jq-1.10.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ee107a154742abd5a9eb72e821e4d62b",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 430258,
            "upload_time": "2025-07-14T18:54:21",
            "upload_time_iso_8601": "2025-07-14T18:54:21.859177Z",
            "url": "https://files.pythonhosted.org/packages/cc/58/7fea03a5376f380aa85ada547e9c1fd5a9c14ba1cb037a66ac8df21977d5/jq-1.10.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9b6b09a130d0e9fbae0f8c5013f5a1bf77a8d760380177aa701c3bf6773c51aa",
                "md5": "32afd7f60577f67c44446c10946f3e4e",
                "sha256": "e985ded6dc2105707cb04e98ca6acbe6c24614824ed0a2fae442d2b2bc78fbc4"
            },
            "downloads": -1,
            "filename": "jq-1.10.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "32afd7f60577f67c44446c10946f3e4e",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 439087,
            "upload_time": "2025-07-14T18:54:25",
            "upload_time_iso_8601": "2025-07-14T18:54:25.374567Z",
            "url": "https://files.pythonhosted.org/packages/9b/6b/09a130d0e9fbae0f8c5013f5a1bf77a8d760380177aa701c3bf6773c51aa/jq-1.10.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a6bd03f20025366149cd93eba483f874511461d2c6ad3a13cfd5b9de1c0bab00",
                "md5": "14ebe98120d29abe7d6fa9e28cbc0b38",
                "sha256": "185d450fb45cd44ad5939ec5813f1ed0d057fa0cb12a1ba6a5fe0e49d8354958"
            },
            "downloads": -1,
            "filename": "jq-1.10.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "14ebe98120d29abe7d6fa9e28cbc0b38",
            "packagetype": "bdist_wheel",
            "python_version": "pp311",
            "requires_python": ">=3.8",
            "size": 406997,
            "upload_time": "2025-07-14T18:54:27",
            "upload_time_iso_8601": "2025-07-14T18:54:27.664328Z",
            "url": "https://files.pythonhosted.org/packages/a6/bd/03f20025366149cd93eba483f874511461d2c6ad3a13cfd5b9de1c0bab00/jq-1.10.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8328e2a57a342040f239b384a90dfb0ff2253d061411b07d816334862645404e",
                "md5": "4e9c1935a9956c96aca47e90ae2fdf1e",
                "sha256": "5e6649eb4ce390342e07c95c2fa10fed043410408620296122f0ac48a7576f1f"
            },
            "downloads": -1,
            "filename": "jq-1.10.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "4e9c1935a9956c96aca47e90ae2fdf1e",
            "packagetype": "bdist_wheel",
            "python_version": "pp311",
            "requires_python": ">=3.8",
            "size": 415060,
            "upload_time": "2025-07-14T18:54:29",
            "upload_time_iso_8601": "2025-07-14T18:54:29.880027Z",
            "url": "https://files.pythonhosted.org/packages/83/28/e2a57a342040f239b384a90dfb0ff2253d061411b07d816334862645404e/jq-1.10.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5930e62568fb245cd207cfd2d9c931a0dcc9cbbdfe171733b688dbbbc0575b14",
                "md5": "435d1d3bc0a1fffd512878e8abdd029d",
                "sha256": "002d93e50fab9d92035dfd79fd134052692be649e1b3835662a053016d9f2ee7"
            },
            "downloads": -1,
            "filename": "jq-1.10.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "435d1d3bc0a1fffd512878e8abdd029d",
            "packagetype": "bdist_wheel",
            "python_version": "pp311",
            "requires_python": ">=3.8",
            "size": 414979,
            "upload_time": "2025-07-14T18:54:31",
            "upload_time_iso_8601": "2025-07-14T18:54:31.929197Z",
            "url": "https://files.pythonhosted.org/packages/59/30/e62568fb245cd207cfd2d9c931a0dcc9cbbdfe171733b688dbbbc0575b14/jq-1.10.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "99fdd00bd8f4a58b34d7e646ba9e2c9b5f7d5386472a15ef0fa8d8e65df51dfb",
                "md5": "d7c06023aae4a20a820fe70db164ca51",
                "sha256": "1602f95ffaef7ee357b65f414b59d6284619bd3a0a588c15c3a1ae534811c1fb"
            },
            "downloads": -1,
            "filename": "jq-1.10.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d7c06023aae4a20a820fe70db164ca51",
            "packagetype": "bdist_wheel",
            "python_version": "pp311",
            "requires_python": ">=3.8",
            "size": 430400,
            "upload_time": "2025-07-14T18:54:33",
            "upload_time_iso_8601": "2025-07-14T18:54:33.716453Z",
            "url": "https://files.pythonhosted.org/packages/99/fd/d00bd8f4a58b34d7e646ba9e2c9b5f7d5386472a15ef0fa8d8e65df51dfb/jq-1.10.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "26759d93d9ae98858b60c2351a33e1e87e873c0ade56dd3c4f909669ca9cbaff",
                "md5": "6253cb458765c1b0ad68d480858010d6",
                "sha256": "4b28cfd1eac69e1dc14518ed9c33e497041e9f9310e5f6259fa9d18fe342fb50"
            },
            "downloads": -1,
            "filename": "jq-1.10.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "6253cb458765c1b0ad68d480858010d6",
            "packagetype": "bdist_wheel",
            "python_version": "pp311",
            "requires_python": ">=3.8",
            "size": 439222,
            "upload_time": "2025-07-14T18:54:35",
            "upload_time_iso_8601": "2025-07-14T18:54:35.695434Z",
            "url": "https://files.pythonhosted.org/packages/26/75/9d93d9ae98858b60c2351a33e1e87e873c0ade56dd3c4f909669ca9cbaff/jq-1.10.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ced6977392c4ead380e9331baa1998f6fdf3d8b5d891d505ddc36f9b10998649",
                "md5": "1e152640204c5bef78d25c08f0833289",
                "sha256": "061225bc6b45b399f4dfbece00f4fae78560c1d4e0f2af77203dde621c5f10be"
            },
            "downloads": -1,
            "filename": "jq-1.10.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "1e152640204c5bef78d25c08f0833289",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 414349,
            "upload_time": "2025-07-14T18:54:38",
            "upload_time_iso_8601": "2025-07-14T18:54:38.207860Z",
            "url": "https://files.pythonhosted.org/packages/ce/d6/977392c4ead380e9331baa1998f6fdf3d8b5d891d505ddc36f9b10998649/jq-1.10.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "90a180b6db61cd23d728ef0b6e77faa3286cc8abc64b30528c13a56e98acb115",
                "md5": "53e0ff983c5fcf781f77dddb10f27d0c",
                "sha256": "5dba7abfe55efe3f139247a30e1f13e94f33fddfea71245a18a817b619cb9fe9"
            },
            "downloads": -1,
            "filename": "jq-1.10.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "53e0ff983c5fcf781f77dddb10f27d0c",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 406150,
            "upload_time": "2025-07-14T18:54:40",
            "upload_time_iso_8601": "2025-07-14T18:54:40.839583Z",
            "url": "https://files.pythonhosted.org/packages/90/a1/80b6db61cd23d728ef0b6e77faa3286cc8abc64b30528c13a56e98acb115/jq-1.10.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ad0c47473931f2a1609aa37978b6dcc6565a1669dd8ff90ad353ec8d5dc5ed3c",
                "md5": "3e3a82c46db6a1ee14e4424474f7f1e6",
                "sha256": "c6f45acaad61c1947bf2fa172a2ccb2e882231c3cfbfc1ea4a2c4f032122a546"
            },
            "downloads": -1,
            "filename": "jq-1.10.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "3e3a82c46db6a1ee14e4424474f7f1e6",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 414736,
            "upload_time": "2025-07-14T18:54:43",
            "upload_time_iso_8601": "2025-07-14T18:54:43.094334Z",
            "url": "https://files.pythonhosted.org/packages/ad/0c/47473931f2a1609aa37978b6dcc6565a1669dd8ff90ad353ec8d5dc5ed3c/jq-1.10.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c0eb43b8ef1eea2ef02c0cc6e67ce665f07ac8d12d12f65f3c0d3ab73b8f304e",
                "md5": "3552f0204694448d8d20dae4f664c6c6",
                "sha256": "16c250cd0a708d45b9bb08fdf4cac415156274f7f3f8f026e75b5a330d2162dd"
            },
            "downloads": -1,
            "filename": "jq-1.10.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "3552f0204694448d8d20dae4f664c6c6",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 414996,
            "upload_time": "2025-07-14T18:54:45",
            "upload_time_iso_8601": "2025-07-14T18:54:45.536119Z",
            "url": "https://files.pythonhosted.org/packages/c0/eb/43b8ef1eea2ef02c0cc6e67ce665f07ac8d12d12f65f3c0d3ab73b8f304e/jq-1.10.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "509c325f7a4026d6ebbe40fe216eb13f9847c205c25fbbdd904bc49f90fc7b0b",
                "md5": "7aa6d8990c0e25aa0ecbfb32725d42b2",
                "sha256": "593551afc5f305c7d0adc840587350cb49c4ecba6464f4fc965cae87758621a7"
            },
            "downloads": -1,
            "filename": "jq-1.10.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7aa6d8990c0e25aa0ecbfb32725d42b2",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 429982,
            "upload_time": "2025-07-14T18:54:48",
            "upload_time_iso_8601": "2025-07-14T18:54:48.230542Z",
            "url": "https://files.pythonhosted.org/packages/50/9c/325f7a4026d6ebbe40fe216eb13f9847c205c25fbbdd904bc49f90fc7b0b/jq-1.10.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3ab2915a9c4af214023e60f6d66387f536bedce945d8885feaf7ea30d46deeab",
                "md5": "ef21e988a8afd13b662ba98df9d38e2f",
                "sha256": "c550705145480b616b6bc114ab7f421c0d9a3041ad3dcb9424f992954823f7c2"
            },
            "downloads": -1,
            "filename": "jq-1.10.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "ef21e988a8afd13b662ba98df9d38e2f",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 438909,
            "upload_time": "2025-07-14T18:54:50",
            "upload_time_iso_8601": "2025-07-14T18:54:50.289650Z",
            "url": "https://files.pythonhosted.org/packages/3a/b2/915a9c4af214023e60f6d66387f536bedce945d8885feaf7ea30d46deeab/jq-1.10.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5c866935afb6c1789d4c6ba5343607e2d2f473069eaac29fac555dbbd154c2d7",
                "md5": "3157ff91b3af67f18e4deb099d9e9d30",
                "sha256": "fc38803075dbf1867e1b4ed268fef501feecb0c50f3555985a500faedfa70f08"
            },
            "downloads": -1,
            "filename": "jq-1.10.0.tar.gz",
            "has_sig": false,
            "md5_digest": "3157ff91b3af67f18e4deb099d9e9d30",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 2031308,
            "upload_time": "2025-07-14T18:54:53",
            "upload_time_iso_8601": "2025-07-14T18:54:53.679623Z",
            "url": "https://files.pythonhosted.org/packages/5c/86/6935afb6c1789d4c6ba5343607e2d2f473069eaac29fac555dbbd154c2d7/jq-1.10.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-07-14 18:54:53",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "mwilliamson",
    "github_project": "jq.py",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "tox": true,
    "lcname": "jq"
}
        
Elapsed time: 2.75163s