jq


Namejq JSON
Version 1.7.0 PyPI version JSON
download
home_pagehttps://github.com/mwilliamson/jq.py
Summaryjq is a lightweight and flexible JSON processor.
upload_time2024-03-17 09:40:58
maintainer
docs_urlNone
authorMichael Williamson
requires_python>=3.5
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.7.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.7.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": "",
    "docs_url": null,
    "requires_python": ">=3.5",
    "maintainer_email": "",
    "keywords": "",
    "author": "Michael Williamson",
    "author_email": "",
    "download_url": "https://files.pythonhosted.org/packages/16/f7/8f4945533929fc72b8c114fc8fd1a77d8e26980492283a10c37bf2fbcc03/jq-1.7.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.7.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.7.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.7.0",
    "project_urls": {
        "Homepage": "https://github.com/mwilliamson/jq.py"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4c94e390c0058c90d54e27a116e54301ea94fdbb3f8a0b9eaa5a2a1abfd9a468",
                "md5": "aee133d1d184b0659a1ec21bf0c798e7",
                "sha256": "d8fae014fa8b2704322a5baa39c112176d9acb71e22ebdb8e21c1c864ecff654"
            },
            "downloads": -1,
            "filename": "jq-1.7.0-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "aee133d1d184b0659a1ec21bf0c798e7",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.5",
            "size": 407918,
            "upload_time": "2024-03-17T09:37:11",
            "upload_time_iso_8601": "2024-03-17T09:37:11.547310Z",
            "url": "https://files.pythonhosted.org/packages/4c/94/e390c0058c90d54e27a116e54301ea94fdbb3f8a0b9eaa5a2a1abfd9a468/jq-1.7.0-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "679424635d78b2240d28d27fefd172114b532152e4b3bcabb9bdb7ea6d258848",
                "md5": "302f4a6cda4db0f31b3942639c88992e",
                "sha256": "40fe068d1fdf2c712885b69be90ddb3e61bca3e4346ab3994641a4fbbeb7be82"
            },
            "downloads": -1,
            "filename": "jq-1.7.0-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "302f4a6cda4db0f31b3942639c88992e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.5",
            "size": 412702,
            "upload_time": "2024-03-17T09:37:14",
            "upload_time_iso_8601": "2024-03-17T09:37:14.023669Z",
            "url": "https://files.pythonhosted.org/packages/67/94/24635d78b2240d28d27fefd172114b532152e4b3bcabb9bdb7ea6d258848/jq-1.7.0-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1281d3aa0764bf63b76854f8fb3cbdef404ad658e5cd1f56cfc9945d794557e0",
                "md5": "a34b39c840f5ac6ff836dfad8d393436",
                "sha256": "8ec105a0057f2f922d195e1d75d4b0ae41c4b38655ead04d1a3a47988fcb1939"
            },
            "downloads": -1,
            "filename": "jq-1.7.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "a34b39c840f5ac6ff836dfad8d393436",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.5",
            "size": 642427,
            "upload_time": "2024-03-17T09:37:16",
            "upload_time_iso_8601": "2024-03-17T09:37:16.611803Z",
            "url": "https://files.pythonhosted.org/packages/12/81/d3aa0764bf63b76854f8fb3cbdef404ad658e5cd1f56cfc9945d794557e0/jq-1.7.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ad518a80debc5ea98b1ee3aaffc6c6913a511b814bb2dde3054d29525b32eaf4",
                "md5": "fd0098b690badf70be2b88f0a4287dea",
                "sha256": "38e2041ca578275334eff9e1d913ae386210345e5ae71cd9c16e3f208dc81deb"
            },
            "downloads": -1,
            "filename": "jq-1.7.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fd0098b690badf70be2b88f0a4287dea",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.5",
            "size": 657595,
            "upload_time": "2024-03-17T09:37:19",
            "upload_time_iso_8601": "2024-03-17T09:37:19.293529Z",
            "url": "https://files.pythonhosted.org/packages/ad/51/8a80debc5ea98b1ee3aaffc6c6913a511b814bb2dde3054d29525b32eaf4/jq-1.7.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e91981354af495313b6dd93da3393df56f055b742eabb38cb903dd04f0f82c82",
                "md5": "c59ae1a6e6bbb134ecf7eebd73743de3",
                "sha256": "ce1df1b6fffeeeb265d4ea3397e9875ab170ba5a7af6b7997c2fd755934df065"
            },
            "downloads": -1,
            "filename": "jq-1.7.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "c59ae1a6e6bbb134ecf7eebd73743de3",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.5",
            "size": 652711,
            "upload_time": "2024-03-17T09:37:21",
            "upload_time_iso_8601": "2024-03-17T09:37:21.888727Z",
            "url": "https://files.pythonhosted.org/packages/e9/19/81354af495313b6dd93da3393df56f055b742eabb38cb903dd04f0f82c82/jq-1.7.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2a8f8feca22048bf90daf25b506ebe0a76093620c86f3809c48abdc0b7547848",
                "md5": "2549eb0dd3fbf0896962ccb89a6ddd43",
                "sha256": "05ebdaa868f068967d9e7cbf76e59e61fbdafa565dbc3579c387fb1f248592bb"
            },
            "downloads": -1,
            "filename": "jq-1.7.0-cp310-cp310-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "2549eb0dd3fbf0896962ccb89a6ddd43",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.5",
            "size": 644207,
            "upload_time": "2024-03-17T09:37:24",
            "upload_time_iso_8601": "2024-03-17T09:37:24.499319Z",
            "url": "https://files.pythonhosted.org/packages/2a/8f/8feca22048bf90daf25b506ebe0a76093620c86f3809c48abdc0b7547848/jq-1.7.0-cp310-cp310-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "66e72df0caba934f7b1b6ac41a8ddd105998dc914dfb882b4585e011e8fa90a9",
                "md5": "8153b6990352568bd7f7d6c01f45589b",
                "sha256": "b3f916cb812fcd26bb1b006634d9c0eff240090196ca0ebb5d229b344f624e53"
            },
            "downloads": -1,
            "filename": "jq-1.7.0-cp310-cp310-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "8153b6990352568bd7f7d6c01f45589b",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.5",
            "size": 670391,
            "upload_time": "2024-03-17T09:37:27",
            "upload_time_iso_8601": "2024-03-17T09:37:27.210518Z",
            "url": "https://files.pythonhosted.org/packages/66/e7/2df0caba934f7b1b6ac41a8ddd105998dc914dfb882b4585e011e8fa90a9/jq-1.7.0-cp310-cp310-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "79dcef5a3add8e2cd002faf6b7b860dcf263d1c16d935b6396d53717a9c4d89d",
                "md5": "3acbe5fa672581fba7bdbc3b52f3093a",
                "sha256": "9ad7749a16a16bafd6cebafd5e40990b641b4b6b7b661326864677effc44a500"
            },
            "downloads": -1,
            "filename": "jq-1.7.0-cp310-cp310-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3acbe5fa672581fba7bdbc3b52f3093a",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.5",
            "size": 663398,
            "upload_time": "2024-03-17T09:37:30",
            "upload_time_iso_8601": "2024-03-17T09:37:30.075336Z",
            "url": "https://files.pythonhosted.org/packages/79/dc/ef5a3add8e2cd002faf6b7b860dcf263d1c16d935b6396d53717a9c4d89d/jq-1.7.0-cp310-cp310-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "978a01f9999549f18b33bd36ce167207f945a80498c2967042daa77b6f731044",
                "md5": "de32394ade5f72f84fb7d3450e364991",
                "sha256": "2e99ea17b708f55e8bed2f4f68c022119184b17eb15987b384db12e8b6702bd5"
            },
            "downloads": -1,
            "filename": "jq-1.7.0-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "de32394ade5f72f84fb7d3450e364991",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.5",
            "size": 407195,
            "upload_time": "2024-03-17T09:37:32",
            "upload_time_iso_8601": "2024-03-17T09:37:32.198217Z",
            "url": "https://files.pythonhosted.org/packages/97/8a/01f9999549f18b33bd36ce167207f945a80498c2967042daa77b6f731044/jq-1.7.0-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "196b900476c47d2b8d7a666d1680b58a49fa39af22e1bceba1390ac65f27ff0a",
                "md5": "496f0b0e4e19efc27dab5d077e9c976f",
                "sha256": "76735cd19de65c15964d330adbc2c84add8e55dea35ebfe17b9acf88a06a7d57"
            },
            "downloads": -1,
            "filename": "jq-1.7.0-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "496f0b0e4e19efc27dab5d077e9c976f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.5",
            "size": 412001,
            "upload_time": "2024-03-17T09:37:34",
            "upload_time_iso_8601": "2024-03-17T09:37:34.468853Z",
            "url": "https://files.pythonhosted.org/packages/19/6b/900476c47d2b8d7a666d1680b58a49fa39af22e1bceba1390ac65f27ff0a/jq-1.7.0-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "eb376a1dbc11bf74355a7b76dca0a0273c6de177538650c783cd4aa12a7099bc",
                "md5": "5350a0237f6e1e32bfeedc066e3123c2",
                "sha256": "c6b841ddd9089429fc0621d07d1c34ff24f7d6a6245c10125b82806f61e36ae8"
            },
            "downloads": -1,
            "filename": "jq-1.7.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "5350a0237f6e1e32bfeedc066e3123c2",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.5",
            "size": 652949,
            "upload_time": "2024-03-17T09:37:37",
            "upload_time_iso_8601": "2024-03-17T09:37:37.031289Z",
            "url": "https://files.pythonhosted.org/packages/eb/37/6a1dbc11bf74355a7b76dca0a0273c6de177538650c783cd4aa12a7099bc/jq-1.7.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9a7cd8e6ae1f01da2c958798b0cc56c6d99f1ddfd11f8d4cbd02d2e0212a1b0b",
                "md5": "f45908d0bd1eb08fff07514f80f20e9b",
                "sha256": "1d6b1fc2515b7be92195d50b68f82329cc0250c7fbca790b887d74902ba33870"
            },
            "downloads": -1,
            "filename": "jq-1.7.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f45908d0bd1eb08fff07514f80f20e9b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.5",
            "size": 668122,
            "upload_time": "2024-03-17T09:37:39",
            "upload_time_iso_8601": "2024-03-17T09:37:39.780593Z",
            "url": "https://files.pythonhosted.org/packages/9a/7c/d8e6ae1f01da2c958798b0cc56c6d99f1ddfd11f8d4cbd02d2e0212a1b0b/jq-1.7.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f7505cba1224af9d8426dfc1b007a194df724962de150656cb80139b88f98ac1",
                "md5": "4624ae0e84153d84585425b5d1a50b81",
                "sha256": "eb6546a57a3ceeed41961be2f1417b4e7a5b3170cca7bb82f5974d2ba9acaab6"
            },
            "downloads": -1,
            "filename": "jq-1.7.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "4624ae0e84153d84585425b5d1a50b81",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.5",
            "size": 664309,
            "upload_time": "2024-03-17T09:37:42",
            "upload_time_iso_8601": "2024-03-17T09:37:42.120502Z",
            "url": "https://files.pythonhosted.org/packages/f7/50/5cba1224af9d8426dfc1b007a194df724962de150656cb80139b88f98ac1/jq-1.7.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0ffefc0f6164b15bb6565408c3846b44c86b2d238a1c4b931d289600a829d271",
                "md5": "fa78b2bdd71a41392c3a8ff8e9c60334",
                "sha256": "3427ad0f377f188953958e36b76167c8d11b8c8c61575c22deafa4aba58d601f"
            },
            "downloads": -1,
            "filename": "jq-1.7.0-cp311-cp311-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "fa78b2bdd71a41392c3a8ff8e9c60334",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.5",
            "size": 650235,
            "upload_time": "2024-03-17T09:37:45",
            "upload_time_iso_8601": "2024-03-17T09:37:45.044490Z",
            "url": "https://files.pythonhosted.org/packages/0f/fe/fc0f6164b15bb6565408c3846b44c86b2d238a1c4b931d289600a829d271/jq-1.7.0-cp311-cp311-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "75288361ff5b47070fba9ca1ed9329ae0e700b920dba87f878310a7514861153",
                "md5": "5068cca7d2db29090fd3337c96f130e7",
                "sha256": "79b9603219fa5082df97d265d71c426613286bd0e5378a8739ce39056fa1e2dc"
            },
            "downloads": -1,
            "filename": "jq-1.7.0-cp311-cp311-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "5068cca7d2db29090fd3337c96f130e7",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.5",
            "size": 674537,
            "upload_time": "2024-03-17T09:37:47",
            "upload_time_iso_8601": "2024-03-17T09:37:47.746747Z",
            "url": "https://files.pythonhosted.org/packages/75/28/8361ff5b47070fba9ca1ed9329ae0e700b920dba87f878310a7514861153/jq-1.7.0-cp311-cp311-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "43f246fcf601be2a8d69140107cda5462916fd1e112fac97c0575033956e35b8",
                "md5": "552d1ddad0632ebe07f3695cda9a2e68",
                "sha256": "a2981a24765a747163e0daa23648372b72a006e727895b95d032632aa51094bd"
            },
            "downloads": -1,
            "filename": "jq-1.7.0-cp311-cp311-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "552d1ddad0632ebe07f3695cda9a2e68",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.5",
            "size": 668077,
            "upload_time": "2024-03-17T09:37:49",
            "upload_time_iso_8601": "2024-03-17T09:37:49.921652Z",
            "url": "https://files.pythonhosted.org/packages/43/f2/46fcf601be2a8d69140107cda5462916fd1e112fac97c0575033956e35b8/jq-1.7.0-cp311-cp311-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1818be5b7b04d0f7c8b1568be4b992642817caeaf9161f38d1d10ad82292295b",
                "md5": "185a0b344b014278cc7475c100a35798",
                "sha256": "a0cc15b2ed511a1a8784c7c7dc07781e28d84a65934062de52487578732e0514"
            },
            "downloads": -1,
            "filename": "jq-1.7.0-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "185a0b344b014278cc7475c100a35798",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.5",
            "size": 405986,
            "upload_time": "2024-03-17T09:37:51",
            "upload_time_iso_8601": "2024-03-17T09:37:51.884838Z",
            "url": "https://files.pythonhosted.org/packages/18/18/be5b7b04d0f7c8b1568be4b992642817caeaf9161f38d1d10ad82292295b/jq-1.7.0-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bfbb579fa205ce3c774b031d971f99c602372657a44600c9086d9f603e1367ac",
                "md5": "3883bb8d3667f2f4b8fca208986b66b7",
                "sha256": "90032c2c4e710157d333d166818ede8b9c8ef0f697e59c9427304edc47146f3d"
            },
            "downloads": -1,
            "filename": "jq-1.7.0-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "3883bb8d3667f2f4b8fca208986b66b7",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.5",
            "size": 411386,
            "upload_time": "2024-03-17T09:37:54",
            "upload_time_iso_8601": "2024-03-17T09:37:54.540585Z",
            "url": "https://files.pythonhosted.org/packages/bf/bb/579fa205ce3c774b031d971f99c602372657a44600c9086d9f603e1367ac/jq-1.7.0-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7de36f18c913fce74c8c4dca0aed267440f8244cbbeab3400b9873eb3abebab3",
                "md5": "46746951818ad6e8440f7ffd20c0d06c",
                "sha256": "e715d5f0bdfc0be0ff33cd0a3f6f51f8bc5ad464fab737e2048a1b46b45bb582"
            },
            "downloads": -1,
            "filename": "jq-1.7.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "46746951818ad6e8440f7ffd20c0d06c",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.5",
            "size": 645237,
            "upload_time": "2024-03-17T09:37:57",
            "upload_time_iso_8601": "2024-03-17T09:37:57.158249Z",
            "url": "https://files.pythonhosted.org/packages/7d/e3/6f18c913fce74c8c4dca0aed267440f8244cbbeab3400b9873eb3abebab3/jq-1.7.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ddbe41f1167ff20ac044e0cf07b6c6da3be23606fc56cae46f8f1f7e0b28cfe5",
                "md5": "21144dedfe854e715211d0ac38cf5428",
                "sha256": "76cc5a1ca3a540a5753dbd592f701c1ec7c9cc256becba604490283c055f3f1c"
            },
            "downloads": -1,
            "filename": "jq-1.7.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "21144dedfe854e715211d0ac38cf5428",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.5",
            "size": 664657,
            "upload_time": "2024-03-17T09:37:59",
            "upload_time_iso_8601": "2024-03-17T09:37:59.936307Z",
            "url": "https://files.pythonhosted.org/packages/dd/be/41f1167ff20ac044e0cf07b6c6da3be23606fc56cae46f8f1f7e0b28cfe5/jq-1.7.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a1691f8fb35cf2e3c2f11bb1ee5704a2def079d5f3ebca202ff960cc888fadad",
                "md5": "8087ed24c00f7108f4c5d599507dd225",
                "sha256": "293b6e8e4b652d96fdeae7dd5ffb1644199d8b6fc1f95d528c16451925c0482e"
            },
            "downloads": -1,
            "filename": "jq-1.7.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "8087ed24c00f7108f4c5d599507dd225",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.5",
            "size": 654133,
            "upload_time": "2024-03-17T09:38:03",
            "upload_time_iso_8601": "2024-03-17T09:38:03.049477Z",
            "url": "https://files.pythonhosted.org/packages/a1/69/1f8fb35cf2e3c2f11bb1ee5704a2def079d5f3ebca202ff960cc888fadad/jq-1.7.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "feedfa58cffe1848e7d1ee4e9ff01fd1654a0940a1332055b56c77a8c7f816e5",
                "md5": "48d9bd76d38377e43b1e4f5540cf80fb",
                "sha256": "f103868b8902d4ee7f643248bdd7a2de9f9396e4b262f42745b9f624c834d07a"
            },
            "downloads": -1,
            "filename": "jq-1.7.0-cp312-cp312-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "48d9bd76d38377e43b1e4f5540cf80fb",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.5",
            "size": 640890,
            "upload_time": "2024-03-17T09:38:05",
            "upload_time_iso_8601": "2024-03-17T09:38:05.287592Z",
            "url": "https://files.pythonhosted.org/packages/fe/ed/fa58cffe1848e7d1ee4e9ff01fd1654a0940a1332055b56c77a8c7f816e5/jq-1.7.0-cp312-cp312-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d00221aba1be657d24d29abfa1dd748139f3c6f5f5e44d8670b74fdbfcd349af",
                "md5": "3982b3bd1e21e882c28e65ce90865da6",
                "sha256": "e9c5ccfa3cf65f92b60c5805ef725f7cd799f2dc16e8601c6e8f12f38a9f48f3"
            },
            "downloads": -1,
            "filename": "jq-1.7.0-cp312-cp312-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "3982b3bd1e21e882c28e65ce90865da6",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.5",
            "size": 664057,
            "upload_time": "2024-03-17T09:38:08",
            "upload_time_iso_8601": "2024-03-17T09:38:08.051021Z",
            "url": "https://files.pythonhosted.org/packages/d0/02/21aba1be657d24d29abfa1dd748139f3c6f5f5e44d8670b74fdbfcd349af/jq-1.7.0-cp312-cp312-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1dc157a005a5e4b12d797c7d78f24ab6a54305d609859103f5563674549d87f7",
                "md5": "e2ff76ece9802fb90a5b8c503c286c83",
                "sha256": "0ca25608d51fdbf8bd5c682b433e1cb9f497155a7c1ea5901524df099f1ceff3"
            },
            "downloads": -1,
            "filename": "jq-1.7.0-cp312-cp312-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e2ff76ece9802fb90a5b8c503c286c83",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.5",
            "size": 663509,
            "upload_time": "2024-03-17T09:38:10",
            "upload_time_iso_8601": "2024-03-17T09:38:10.240102Z",
            "url": "https://files.pythonhosted.org/packages/1d/c1/57a005a5e4b12d797c7d78f24ab6a54305d609859103f5563674549d87f7/jq-1.7.0-cp312-cp312-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1dc315ebabc004d9346b25f9562e4e31f8b046a86cec1ef475478e391b9720f7",
                "md5": "9db7353877a382586bd67a55ee4a63d9",
                "sha256": "6a2d34d962ce2da5136dab2664fc7efad9f71024d0dc328702f2dc70b4e2735c"
            },
            "downloads": -1,
            "filename": "jq-1.7.0-cp36-cp36m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9db7353877a382586bd67a55ee4a63d9",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3.5",
            "size": 403480,
            "upload_time": "2024-03-17T09:38:12",
            "upload_time_iso_8601": "2024-03-17T09:38:12.867405Z",
            "url": "https://files.pythonhosted.org/packages/1d/c3/15ebabc004d9346b25f9562e4e31f8b046a86cec1ef475478e391b9720f7/jq-1.7.0-cp36-cp36m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2ff6ab6a5a91c6b8f3abd3abb6d187cba5b6722c6bea6cd0e93c3780b16c54a9",
                "md5": "21c8d08bdf5712391d62a2e0d57b1152",
                "sha256": "757e8c4cb0cb1175f0aaa227f0a26e4765ba5da04d0bc875b0bd933eff6bd0a0"
            },
            "downloads": -1,
            "filename": "jq-1.7.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "21c8d08bdf5712391d62a2e0d57b1152",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3.5",
            "size": 616639,
            "upload_time": "2024-03-17T09:38:15",
            "upload_time_iso_8601": "2024-03-17T09:38:15.129917Z",
            "url": "https://files.pythonhosted.org/packages/2f/f6/ab6a5a91c6b8f3abd3abb6d187cba5b6722c6bea6cd0e93c3780b16c54a9/jq-1.7.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bda76fbf3ec38b7abe7d24d717cb355bca8ded0c30cdb12d52a10766ab494bfc",
                "md5": "d00144ab49369dc03edbf1119ea9cb4c",
                "sha256": "2d097098a628171b87961fb0400117ac340b1eb40cbbee2e58208c4254c23c20"
            },
            "downloads": -1,
            "filename": "jq-1.7.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d00144ab49369dc03edbf1119ea9cb4c",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3.5",
            "size": 631330,
            "upload_time": "2024-03-17T09:38:17",
            "upload_time_iso_8601": "2024-03-17T09:38:17.918563Z",
            "url": "https://files.pythonhosted.org/packages/bd/a7/6fbf3ec38b7abe7d24d717cb355bca8ded0c30cdb12d52a10766ab494bfc/jq-1.7.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dd05bf222194c604537c5790309ed6601b479f11da61e863fac5c4c9838859db",
                "md5": "535e4498e88747ad7e77c7c2de2dfc8d",
                "sha256": "45bc842806d71bd5839c190a88fd071ac5a0a8a1dd601e83228494a19f14559c"
            },
            "downloads": -1,
            "filename": "jq-1.7.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "535e4498e88747ad7e77c7c2de2dfc8d",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3.5",
            "size": 629017,
            "upload_time": "2024-03-17T09:38:19",
            "upload_time_iso_8601": "2024-03-17T09:38:19.977405Z",
            "url": "https://files.pythonhosted.org/packages/dd/05/bf222194c604537c5790309ed6601b479f11da61e863fac5c4c9838859db/jq-1.7.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "17bae4c98a17f50e4c67e2714f942b83983bc7f10dc7df71279a1449c40c9429",
                "md5": "7939de6e9c610b72216252abae33a1a5",
                "sha256": "f0629743417f8709305d1f77d3929493912efdc3fd1cce3a7fcc76b81bc6b82d"
            },
            "downloads": -1,
            "filename": "jq-1.7.0-cp36-cp36m-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "7939de6e9c610b72216252abae33a1a5",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3.5",
            "size": 620293,
            "upload_time": "2024-03-17T09:38:22",
            "upload_time_iso_8601": "2024-03-17T09:38:22.197011Z",
            "url": "https://files.pythonhosted.org/packages/17/ba/e4c98a17f50e4c67e2714f942b83983bc7f10dc7df71279a1449c40c9429/jq-1.7.0-cp36-cp36m-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6e0bbd4cf37e75a2f7210cc2f9797cfa3206407a93c3ca7c9ce250b60d40a405",
                "md5": "4f2d5394cdb40763618f5b4ef287ea6d",
                "sha256": "9b9a49e8b14d3a368011ed1412c8c3e193a7135d5eb4310d77ee643470112b47"
            },
            "downloads": -1,
            "filename": "jq-1.7.0-cp36-cp36m-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "4f2d5394cdb40763618f5b4ef287ea6d",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3.5",
            "size": 647080,
            "upload_time": "2024-03-17T09:38:24",
            "upload_time_iso_8601": "2024-03-17T09:38:24.360221Z",
            "url": "https://files.pythonhosted.org/packages/6e/0b/bd4cf37e75a2f7210cc2f9797cfa3206407a93c3ca7c9ce250b60d40a405/jq-1.7.0-cp36-cp36m-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5517fdc9310018a2d3d0d576101bfffeb19c484655f5dcabd82235064a087847",
                "md5": "b40bac21099d775db084103bc0ba3f03",
                "sha256": "a10e3f88b6d2bbb4c47b368f919ec7b648196bf9c60a5cc921d04239d68240c2"
            },
            "downloads": -1,
            "filename": "jq-1.7.0-cp36-cp36m-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b40bac21099d775db084103bc0ba3f03",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3.5",
            "size": 638512,
            "upload_time": "2024-03-17T09:38:26",
            "upload_time_iso_8601": "2024-03-17T09:38:26.657275Z",
            "url": "https://files.pythonhosted.org/packages/55/17/fdc9310018a2d3d0d576101bfffeb19c484655f5dcabd82235064a087847/jq-1.7.0-cp36-cp36m-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "03861ee3d966f4284823f08d0bcf8ef1453fba9dbac6b2bcb0f6ecf1781f4c2f",
                "md5": "6af9aa7122330f1f1385fcf23902765b",
                "sha256": "aa85b47effb4152e1cf1120607f475a1c11395d072323ff23e8bb59ce6752713"
            },
            "downloads": -1,
            "filename": "jq-1.7.0-cp37-cp37m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6af9aa7122330f1f1385fcf23902765b",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.5",
            "size": 403875,
            "upload_time": "2024-03-17T09:38:29",
            "upload_time_iso_8601": "2024-03-17T09:38:29.110046Z",
            "url": "https://files.pythonhosted.org/packages/03/86/1ee3d966f4284823f08d0bcf8ef1453fba9dbac6b2bcb0f6ecf1781f4c2f/jq-1.7.0-cp37-cp37m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c04ecda51241cff39e11d807d0e1d95de124a61ba0bf213ed90270c8b713bff8",
                "md5": "a640e295f93549334a3450a3e292deeb",
                "sha256": "9413f67ea28037e37ccf8951f9f0b380f31d79162f33e216faa6bd0d8eca0dc7"
            },
            "downloads": -1,
            "filename": "jq-1.7.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "a640e295f93549334a3450a3e292deeb",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.5",
            "size": 616894,
            "upload_time": "2024-03-17T09:38:31",
            "upload_time_iso_8601": "2024-03-17T09:38:31.995189Z",
            "url": "https://files.pythonhosted.org/packages/c0/4e/cda51241cff39e11d807d0e1d95de124a61ba0bf213ed90270c8b713bff8/jq-1.7.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b06e459950c6b86775803a9afb33a42b0fdacf6d7bac38cc1b92218982a57068",
                "md5": "2a4e26d5022dc7ca4de7c4207366b703",
                "sha256": "3daf3b3443c4e871c23ac1e698eb70d1225b46a4ac79c73968234adcd70f3ed8"
            },
            "downloads": -1,
            "filename": "jq-1.7.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2a4e26d5022dc7ca4de7c4207366b703",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.5",
            "size": 631143,
            "upload_time": "2024-03-17T09:38:34",
            "upload_time_iso_8601": "2024-03-17T09:38:34.284971Z",
            "url": "https://files.pythonhosted.org/packages/b0/6e/459950c6b86775803a9afb33a42b0fdacf6d7bac38cc1b92218982a57068/jq-1.7.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2e7038d01acce4a13d3d4fff22376ac0fe51b089c78b395f4cf808c69be3d5bf",
                "md5": "6d81c02f6417e71257f59bd9cf55cb00",
                "sha256": "dbe03f95ab02dc045691c3b5c7da8d8c2128e60450fb2124ea8b49034c74f158"
            },
            "downloads": -1,
            "filename": "jq-1.7.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "6d81c02f6417e71257f59bd9cf55cb00",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.5",
            "size": 629093,
            "upload_time": "2024-03-17T09:38:37",
            "upload_time_iso_8601": "2024-03-17T09:38:37.057098Z",
            "url": "https://files.pythonhosted.org/packages/2e/70/38d01acce4a13d3d4fff22376ac0fe51b089c78b395f4cf808c69be3d5bf/jq-1.7.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e9981a448a473b749c64af6fbec06db2cce7f5c2dd519817c65bb6af215034e8",
                "md5": "f14100d909ea2e720af90206ab4bf6bb",
                "sha256": "a6b2e9f4e63644a30726c58c25d80015f9b83325b125615a46e10d4439b9dc99"
            },
            "downloads": -1,
            "filename": "jq-1.7.0-cp37-cp37m-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "f14100d909ea2e720af90206ab4bf6bb",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.5",
            "size": 620575,
            "upload_time": "2024-03-17T09:38:39",
            "upload_time_iso_8601": "2024-03-17T09:38:39.118003Z",
            "url": "https://files.pythonhosted.org/packages/e9/98/1a448a473b749c64af6fbec06db2cce7f5c2dd519817c65bb6af215034e8/jq-1.7.0-cp37-cp37m-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "462a661ae5a2642123febf7c59726be2d4c8c61fd133f22ad97a148b592b79ce",
                "md5": "a6325a9751d16e538ca9d5c48ef7c588",
                "sha256": "9fffcffc8e56585223878edd7c5d719eb8547281d64af2bac43911f1bb9e7029"
            },
            "downloads": -1,
            "filename": "jq-1.7.0-cp37-cp37m-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "a6325a9751d16e538ca9d5c48ef7c588",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.5",
            "size": 647601,
            "upload_time": "2024-03-17T09:38:41",
            "upload_time_iso_8601": "2024-03-17T09:38:41.472153Z",
            "url": "https://files.pythonhosted.org/packages/46/2a/661ae5a2642123febf7c59726be2d4c8c61fd133f22ad97a148b592b79ce/jq-1.7.0-cp37-cp37m-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "445bf37c2c58a98541823f37f94ccec55fc7faac8c831e9ba3d88f0655f406c9",
                "md5": "66b0a6aa248800f0784ea0007421f628",
                "sha256": "95d4bcd5a999ce0aaadaadcaca967989f0efc96c1097a81746b21b6126cf7aaf"
            },
            "downloads": -1,
            "filename": "jq-1.7.0-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "66b0a6aa248800f0784ea0007421f628",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.5",
            "size": 638426,
            "upload_time": "2024-03-17T09:38:43",
            "upload_time_iso_8601": "2024-03-17T09:38:43.732953Z",
            "url": "https://files.pythonhosted.org/packages/44/5b/f37c2c58a98541823f37f94ccec55fc7faac8c831e9ba3d88f0655f406c9/jq-1.7.0-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "08b2f2f235441f41d4573143753b3e22ed2f1229401570e15e3b7fdb6fd450b6",
                "md5": "62c1a605a3b8ceb179c65cca6918efa2",
                "sha256": "0137445eb67c43eb0eb46933aff7e8afbbd6c5aaf8574efd5df536dc9d177d1d"
            },
            "downloads": -1,
            "filename": "jq-1.7.0-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "62c1a605a3b8ceb179c65cca6918efa2",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.5",
            "size": 405534,
            "upload_time": "2024-03-17T09:38:46",
            "upload_time_iso_8601": "2024-03-17T09:38:46.539502Z",
            "url": "https://files.pythonhosted.org/packages/08/b2/f2f235441f41d4573143753b3e22ed2f1229401570e15e3b7fdb6fd450b6/jq-1.7.0-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d8cc703b4ca5f0a6cebb15f4da0e6ed23038e7121a611c3e3014a184fc427589",
                "md5": "0ef7ff578f862e4023610c85c5d7a21a",
                "sha256": "4ee0e9307b6d4fe89a8556a92c1db65e0d66218bcc13fdeb92a09645a55ff87a"
            },
            "downloads": -1,
            "filename": "jq-1.7.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "0ef7ff578f862e4023610c85c5d7a21a",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.5",
            "size": 651964,
            "upload_time": "2024-03-17T09:38:49",
            "upload_time_iso_8601": "2024-03-17T09:38:49.131617Z",
            "url": "https://files.pythonhosted.org/packages/d8/cc/703b4ca5f0a6cebb15f4da0e6ed23038e7121a611c3e3014a184fc427589/jq-1.7.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "526a9b9174478c2cf13ab40f5722254b49c657bc6fb48e235655bfc1d67e612e",
                "md5": "5860793988168548de1219bdfc25c370",
                "sha256": "4e0f95cecb690df66f23a8d76c746d2ed15671de3f6101140e3fe2b98b97e0a8"
            },
            "downloads": -1,
            "filename": "jq-1.7.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5860793988168548de1219bdfc25c370",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.5",
            "size": 665551,
            "upload_time": "2024-03-17T09:38:51",
            "upload_time_iso_8601": "2024-03-17T09:38:51.337411Z",
            "url": "https://files.pythonhosted.org/packages/52/6a/9b9174478c2cf13ab40f5722254b49c657bc6fb48e235655bfc1d67e612e/jq-1.7.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2ea3697204bb7214cc147a88a8017b4f888a13aec679d1070d872dfd21061375",
                "md5": "3546d5523a2d3b89a8c2d2f2af6f88f5",
                "sha256": "95e472aa54efe418d3627dcd2a369ac0b21e1a5e352550144fd5f0c40585a5b7"
            },
            "downloads": -1,
            "filename": "jq-1.7.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "3546d5523a2d3b89a8c2d2f2af6f88f5",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.5",
            "size": 663994,
            "upload_time": "2024-03-17T09:38:54",
            "upload_time_iso_8601": "2024-03-17T09:38:54.137726Z",
            "url": "https://files.pythonhosted.org/packages/2e/a3/697204bb7214cc147a88a8017b4f888a13aec679d1070d872dfd21061375/jq-1.7.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "54497d44460c47b8d882adc113444aad2e62325600e3aef1cf9021b79b1a7fab",
                "md5": "2fa0a6e8012b57aaaf80ea3f3cc11622",
                "sha256": "4be2a2b56fa139f3235cdb8422ea16eccdd48d62bf91d9fac10761cd55d26c84"
            },
            "downloads": -1,
            "filename": "jq-1.7.0-cp38-cp38-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "2fa0a6e8012b57aaaf80ea3f3cc11622",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.5",
            "size": 666332,
            "upload_time": "2024-03-17T09:38:56",
            "upload_time_iso_8601": "2024-03-17T09:38:56.391498Z",
            "url": "https://files.pythonhosted.org/packages/54/49/7d44460c47b8d882adc113444aad2e62325600e3aef1cf9021b79b1a7fab/jq-1.7.0-cp38-cp38-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d8534b370901ec816b487c754019f995859f88710e271505135f1465f5084f96",
                "md5": "3d1c4e385cc2ad7b8e375a7c496ca097",
                "sha256": "7db8260ecb57827bb3fb6f44d4a6f0db0570ded990eee95a5fd3ac9ba14f60d7"
            },
            "downloads": -1,
            "filename": "jq-1.7.0-cp38-cp38-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "3d1c4e385cc2ad7b8e375a7c496ca097",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.5",
            "size": 688937,
            "upload_time": "2024-03-17T09:38:58",
            "upload_time_iso_8601": "2024-03-17T09:38:58.502671Z",
            "url": "https://files.pythonhosted.org/packages/d8/53/4b370901ec816b487c754019f995859f88710e271505135f1465f5084f96/jq-1.7.0-cp38-cp38-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b044c39bc42265dd3e2aabc729fe3716525c560e58d01e45fb924af0fface548",
                "md5": "e6924ac933a473cbedcac5ae1825a6b5",
                "sha256": "fdbb7ff2dfce2cc0f421f498dcb64176997bd9d9e6cab474e59577e7bff3090d"
            },
            "downloads": -1,
            "filename": "jq-1.7.0-cp38-cp38-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e6924ac933a473cbedcac5ae1825a6b5",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.5",
            "size": 683109,
            "upload_time": "2024-03-17T09:39:01",
            "upload_time_iso_8601": "2024-03-17T09:39:01.312325Z",
            "url": "https://files.pythonhosted.org/packages/b0/44/c39bc42265dd3e2aabc729fe3716525c560e58d01e45fb924af0fface548/jq-1.7.0-cp38-cp38-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4f51259d005d2d6b269009b5ad3d4502bb40003cbab6ccead31e16a67629c47b",
                "md5": "bd827cde63def7e9ba5bbbd9022d3ab9",
                "sha256": "396bef4b4c9c1ebe3e0e04e287bc79a861b991e12db45681c398d3906ee85468"
            },
            "downloads": -1,
            "filename": "jq-1.7.0-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "bd827cde63def7e9ba5bbbd9022d3ab9",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.5",
            "size": 403817,
            "upload_time": "2024-03-17T09:39:03",
            "upload_time_iso_8601": "2024-03-17T09:39:03.769636Z",
            "url": "https://files.pythonhosted.org/packages/4f/51/259d005d2d6b269009b5ad3d4502bb40003cbab6ccead31e16a67629c47b/jq-1.7.0-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "878ac3be7dc6b0ee54bf493931a15c56757eb37d3a658b13057184cbb4eb3ced",
                "md5": "7a85ed4420bcbd8f8e3f2c1df7d5785a",
                "sha256": "18d8a81c6e241585a0bf748903082d65c4eaa6ba80248f507e5cebda36e05c6c"
            },
            "downloads": -1,
            "filename": "jq-1.7.0-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "7a85ed4420bcbd8f8e3f2c1df7d5785a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.5",
            "size": 410373,
            "upload_time": "2024-03-17T09:39:06",
            "upload_time_iso_8601": "2024-03-17T09:39:06.079468Z",
            "url": "https://files.pythonhosted.org/packages/87/8a/c3be7dc6b0ee54bf493931a15c56757eb37d3a658b13057184cbb4eb3ced/jq-1.7.0-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7097e542eac0eb02712236c02269cd901df087c2736df359c69f6c8e0c9326af",
                "md5": "2c531e1afb7a1165068ab7e1aa086d38",
                "sha256": "ade00a39990fdfe0acc7d2a900e3e5e6b11a71eb5289954ff0df31ac0afae25b"
            },
            "downloads": -1,
            "filename": "jq-1.7.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "2c531e1afb7a1165068ab7e1aa086d38",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.5",
            "size": 648412,
            "upload_time": "2024-03-17T09:39:08",
            "upload_time_iso_8601": "2024-03-17T09:39:08.250711Z",
            "url": "https://files.pythonhosted.org/packages/70/97/e542eac0eb02712236c02269cd901df087c2736df359c69f6c8e0c9326af/jq-1.7.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "595380b9325c0fe5b03d457723dd9f77d2c6a744a3940d3d5345d62622d33993",
                "md5": "a68142fe164881ff32c3d644844bc5ff",
                "sha256": "0c777e88f3cce496c17f5c3bdbc7d74ff12b5cbdaea30f3a374f3cc92e5bba8d"
            },
            "downloads": -1,
            "filename": "jq-1.7.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a68142fe164881ff32c3d644844bc5ff",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.5",
            "size": 662124,
            "upload_time": "2024-03-17T09:39:10",
            "upload_time_iso_8601": "2024-03-17T09:39:10.489875Z",
            "url": "https://files.pythonhosted.org/packages/59/53/80b9325c0fe5b03d457723dd9f77d2c6a744a3940d3d5345d62622d33993/jq-1.7.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2e24104a9f10bf8671d956ef2d83cfae7748ff00af9c80dd7bfa1ff58726ea0d",
                "md5": "a55393ce2562888ba076561e7a95be6a",
                "sha256": "79957008c67d8f1d9134cd0e01044bff5d795f7e94db9532a9fe9212e1f88a77"
            },
            "downloads": -1,
            "filename": "jq-1.7.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "a55393ce2562888ba076561e7a95be6a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.5",
            "size": 656581,
            "upload_time": "2024-03-17T09:39:13",
            "upload_time_iso_8601": "2024-03-17T09:39:13.252403Z",
            "url": "https://files.pythonhosted.org/packages/2e/24/104a9f10bf8671d956ef2d83cfae7748ff00af9c80dd7bfa1ff58726ea0d/jq-1.7.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "eaef0b773c3f733bac169fe3d3f7d2ae0c41c1ea12f7c9bae3bf5a18324b7533",
                "md5": "ed3d68162de7674843ff1b31672068d5",
                "sha256": "2bc5cb77dd12e861296cfa69587aa6797ccfee4f5f3aa571b02f0273ab1efec1"
            },
            "downloads": -1,
            "filename": "jq-1.7.0-cp39-cp39-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "ed3d68162de7674843ff1b31672068d5",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.5",
            "size": 650222,
            "upload_time": "2024-03-17T09:39:16",
            "upload_time_iso_8601": "2024-03-17T09:39:16.539917Z",
            "url": "https://files.pythonhosted.org/packages/ea/ef/0b773c3f733bac169fe3d3f7d2ae0c41c1ea12f7c9bae3bf5a18324b7533/jq-1.7.0-cp39-cp39-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "11099330731aa49c1272ba09fce9017cb404d60fc1b3a8c5af0fb5506f363ac0",
                "md5": "3d382bd45c9989d3b8aacb94d5b75942",
                "sha256": "8e10a5937aab9c383632ab151f73d43dc0c4be99f62221a7044988dc8ddd4bdc"
            },
            "downloads": -1,
            "filename": "jq-1.7.0-cp39-cp39-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "3d382bd45c9989d3b8aacb94d5b75942",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.5",
            "size": 674662,
            "upload_time": "2024-03-17T09:39:19",
            "upload_time_iso_8601": "2024-03-17T09:39:19.312439Z",
            "url": "https://files.pythonhosted.org/packages/11/09/9330731aa49c1272ba09fce9017cb404d60fc1b3a8c5af0fb5506f363ac0/jq-1.7.0-cp39-cp39-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a27f7a00872e2622241f063e522c0be704632a0b21c8aedcbaeb0b2aad794a63",
                "md5": "4b2c44201e7c3ef249ba028fe5791bad",
                "sha256": "1e6e13e0f8d3204aefe861159160116e822c90bae773a3ccdd4d9e79a06e086e"
            },
            "downloads": -1,
            "filename": "jq-1.7.0-cp39-cp39-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4b2c44201e7c3ef249ba028fe5791bad",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.5",
            "size": 667224,
            "upload_time": "2024-03-17T09:39:22",
            "upload_time_iso_8601": "2024-03-17T09:39:22.193299Z",
            "url": "https://files.pythonhosted.org/packages/a2/7f/7a00872e2622241f063e522c0be704632a0b21c8aedcbaeb0b2aad794a63/jq-1.7.0-cp39-cp39-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d662bcebf5beb8dea8541301dbbf220865e27cd71914fd2cad217c686e322c26",
                "md5": "1d9521c1a2d86903a71a2ce5b6eea5dd",
                "sha256": "0cdbd32463ef632b0b4ca6dab434e2387342bc5c895b411ec6b2a14bbf4b2c12"
            },
            "downloads": -1,
            "filename": "jq-1.7.0-pp310-pypy310_pp73-macosx_10_13_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1d9521c1a2d86903a71a2ce5b6eea5dd",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.5",
            "size": 389421,
            "upload_time": "2024-03-17T09:39:24",
            "upload_time_iso_8601": "2024-03-17T09:39:24.386569Z",
            "url": "https://files.pythonhosted.org/packages/d6/62/bcebf5beb8dea8541301dbbf220865e27cd71914fd2cad217c686e322c26/jq-1.7.0-pp310-pypy310_pp73-macosx_10_13_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a1eb7a6cd6f49bf1cdd53bca8f9cec84c6d6a73767f688e5d14adb39c1386884",
                "md5": "580d9e7b73911c5aa87a845b733956af",
                "sha256": "558a5c6b4430e05fa59c4b5631c0d3fc0f163100390c03edc1993663f59d8a9b"
            },
            "downloads": -1,
            "filename": "jq-1.7.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "580d9e7b73911c5aa87a845b733956af",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.5",
            "size": 398110,
            "upload_time": "2024-03-17T09:39:26",
            "upload_time_iso_8601": "2024-03-17T09:39:26.865579Z",
            "url": "https://files.pythonhosted.org/packages/a1/eb/7a6cd6f49bf1cdd53bca8f9cec84c6d6a73767f688e5d14adb39c1386884/jq-1.7.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9bbe5c8917657a87070733638f98fd3515134f1ed2455097fcca7848ea4bddea",
                "md5": "486f9bf166bc8e36effa34a9d1d2bd60",
                "sha256": "4bbf77138cdd8d306bf335d998525a0477e4cb6f00eb6f361288f5b82274e84c"
            },
            "downloads": -1,
            "filename": "jq-1.7.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "486f9bf166bc8e36effa34a9d1d2bd60",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.5",
            "size": 398389,
            "upload_time": "2024-03-17T09:39:28",
            "upload_time_iso_8601": "2024-03-17T09:39:28.809612Z",
            "url": "https://files.pythonhosted.org/packages/9b/be/5c8917657a87070733638f98fd3515134f1ed2455097fcca7848ea4bddea/jq-1.7.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "938612b82dd0b3f8a799c587644995401b0917cdff8ed9567e4b36fed86e0c43",
                "md5": "ef186e799da6956507a155ce290ecc4c",
                "sha256": "a2e6919481ff43754ae9b17a98c877995d5e1346be114c71cd0dfd8ff7d0cd60"
            },
            "downloads": -1,
            "filename": "jq-1.7.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ef186e799da6956507a155ce290ecc4c",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.5",
            "size": 412352,
            "upload_time": "2024-03-17T09:39:31",
            "upload_time_iso_8601": "2024-03-17T09:39:31.274724Z",
            "url": "https://files.pythonhosted.org/packages/93/86/12b82dd0b3f8a799c587644995401b0917cdff8ed9567e4b36fed86e0c43/jq-1.7.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "773cf266542b61bae7b5b6400aa3fa07ead65946dba9103cbd6b75be26af4e7d",
                "md5": "4ca2130e87edeabe4f07d67ab299d1ab",
                "sha256": "0b0584ff33b2a9cc021edec325af4e0fa9fbd54cce80c1f7b8e0ba4cf2d75508"
            },
            "downloads": -1,
            "filename": "jq-1.7.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "4ca2130e87edeabe4f07d67ab299d1ab",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.5",
            "size": 422165,
            "upload_time": "2024-03-17T09:39:33",
            "upload_time_iso_8601": "2024-03-17T09:39:33.451559Z",
            "url": "https://files.pythonhosted.org/packages/77/3c/f266542b61bae7b5b6400aa3fa07ead65946dba9103cbd6b75be26af4e7d/jq-1.7.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "95a6fb7fcaf5a56f0f3a6905140c949d594439791d48861f87f8ac412b648b44",
                "md5": "e7614a52f098b181e50c80c53d5d39e9",
                "sha256": "a6e7259880ab7e75e845fb4d56c6d18922c68789d25d7cdbb6f433d9e714613a"
            },
            "downloads": -1,
            "filename": "jq-1.7.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e7614a52f098b181e50c80c53d5d39e9",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.5",
            "size": 388697,
            "upload_time": "2024-03-17T09:39:35",
            "upload_time_iso_8601": "2024-03-17T09:39:35.521346Z",
            "url": "https://files.pythonhosted.org/packages/95/a6/fb7fcaf5a56f0f3a6905140c949d594439791d48861f87f8ac412b648b44/jq-1.7.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8eab8a5b93a65459a74f7eb22d0154d6d495a15afe84e5dd1ed5de7f52738658",
                "md5": "ecd3a1585f85bd1c93e1fd64840dec8f",
                "sha256": "2d472cdd0bcb3d47c87b00ff841edff41c79fe4422523c4a7c8bf913fb950f7f"
            },
            "downloads": -1,
            "filename": "jq-1.7.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "ecd3a1585f85bd1c93e1fd64840dec8f",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.5",
            "size": 400628,
            "upload_time": "2024-03-17T09:39:37",
            "upload_time_iso_8601": "2024-03-17T09:39:37.666244Z",
            "url": "https://files.pythonhosted.org/packages/8e/ab/8a5b93a65459a74f7eb22d0154d6d495a15afe84e5dd1ed5de7f52738658/jq-1.7.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "11c025680e66a6ecd30489c059367bf6863e6f0a5645883d15bd3b90a0e4fbb0",
                "md5": "e80de512945650dc339d67c3e47dc4f6",
                "sha256": "2a3430de179f8a7b0baf5675d5ee400f97344085d79f190a90fc0c7df990cbcc"
            },
            "downloads": -1,
            "filename": "jq-1.7.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e80de512945650dc339d67c3e47dc4f6",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.5",
            "size": 415912,
            "upload_time": "2024-03-17T09:39:39",
            "upload_time_iso_8601": "2024-03-17T09:39:39.930272Z",
            "url": "https://files.pythonhosted.org/packages/11/c0/25680e66a6ecd30489c059367bf6863e6f0a5645883d15bd3b90a0e4fbb0/jq-1.7.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6423582c4ff21d898b1a63b781678d74b3711dd7b091e17726d783cd9806d57c",
                "md5": "731e5e78f408400bd122dc7502536dab",
                "sha256": "acbb375bdb2a44f1a643123b8ec57563bb5542673f0399799ab5662ce90bf4a5"
            },
            "downloads": -1,
            "filename": "jq-1.7.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "731e5e78f408400bd122dc7502536dab",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.5",
            "size": 426939,
            "upload_time": "2024-03-17T09:39:42",
            "upload_time_iso_8601": "2024-03-17T09:39:42.332617Z",
            "url": "https://files.pythonhosted.org/packages/64/23/582c4ff21d898b1a63b781678d74b3711dd7b091e17726d783cd9806d57c/jq-1.7.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "305ad026cd7a02d44a8e8dc030007ed552ade288f73466b8979b155a91eaf3f1",
                "md5": "477b11b710fcbcc01bcb6360be881f5d",
                "sha256": "39a0c71ed2f1ec0462d54678333f1b14d9f25fd62a9f46df140d68552f79d204"
            },
            "downloads": -1,
            "filename": "jq-1.7.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "477b11b710fcbcc01bcb6360be881f5d",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.5",
            "size": 388659,
            "upload_time": "2024-03-17T09:39:44",
            "upload_time_iso_8601": "2024-03-17T09:39:44.628002Z",
            "url": "https://files.pythonhosted.org/packages/30/5a/d026cd7a02d44a8e8dc030007ed552ade288f73466b8979b155a91eaf3f1/jq-1.7.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8fcbd87e924155eca0468b7258b6067e8a7bd9ab40baaca52ef0b49964ad0f58",
                "md5": "5bf91a9fb55d8e4e832e5506cbc545ec",
                "sha256": "306c1e3ba531d7dc3284e128689f0b75409a4e8e8a3bdac2c51cc26f2d3cca58"
            },
            "downloads": -1,
            "filename": "jq-1.7.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "5bf91a9fb55d8e4e832e5506cbc545ec",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.5",
            "size": 397194,
            "upload_time": "2024-03-17T09:39:47",
            "upload_time_iso_8601": "2024-03-17T09:39:47.097995Z",
            "url": "https://files.pythonhosted.org/packages/8f/cb/d87e924155eca0468b7258b6067e8a7bd9ab40baaca52ef0b49964ad0f58/jq-1.7.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "499b4c7e11580c422bc15b5e6d7cc8498a89756afcabefa1f67adaebe025f63f",
                "md5": "78313110dced7277c7deed270d52c236",
                "sha256": "88b8b0cc838c7387dc5e8c45b192c7504acd0510514658d2d5cd1716fcf15fe3"
            },
            "downloads": -1,
            "filename": "jq-1.7.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "78313110dced7277c7deed270d52c236",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.5",
            "size": 398031,
            "upload_time": "2024-03-17T09:39:49",
            "upload_time_iso_8601": "2024-03-17T09:39:49.122625Z",
            "url": "https://files.pythonhosted.org/packages/49/9b/4c7e11580c422bc15b5e6d7cc8498a89756afcabefa1f67adaebe025f63f/jq-1.7.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7cab61070c2f700c7a9dc36070ff025cf9a68f9320fbaa9fc1997726c1aeb994",
                "md5": "6b36293cca8a6a0282765ec302947e90",
                "sha256": "9c75e16e542f4abaae25727b9fc4eeaf69cb07122be8a2a7672d02feb3a1cc9a"
            },
            "downloads": -1,
            "filename": "jq-1.7.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6b36293cca8a6a0282765ec302947e90",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.5",
            "size": 411831,
            "upload_time": "2024-03-17T09:39:51",
            "upload_time_iso_8601": "2024-03-17T09:39:51.251165Z",
            "url": "https://files.pythonhosted.org/packages/7c/ab/61070c2f700c7a9dc36070ff025cf9a68f9320fbaa9fc1997726c1aeb994/jq-1.7.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4631e0437b80b40728decde18ac2277e42a1b0e940d594df9b700a99ad919cab",
                "md5": "c1dd61d4e847dc19bb27ec442b821d18",
                "sha256": "b4828ac689a67fd9c021796bcacd95811bab806939dd6316eb0c2d3de016c584"
            },
            "downloads": -1,
            "filename": "jq-1.7.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "c1dd61d4e847dc19bb27ec442b821d18",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.5",
            "size": 421171,
            "upload_time": "2024-03-17T09:39:53",
            "upload_time_iso_8601": "2024-03-17T09:39:53.497253Z",
            "url": "https://files.pythonhosted.org/packages/46/31/e0437b80b40728decde18ac2277e42a1b0e940d594df9b700a99ad919cab/jq-1.7.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "45e64f647dd050cd3c851cc7dcdb8e6916ff2f0675536c8f7d7f4585a63a6fc0",
                "md5": "6872e0c5c98314f82564991f808a1ade",
                "sha256": "c94f95b27720d2db7f1039fdd371f70bc0cac8e204cbfd0626176d7b8a3053d6"
            },
            "downloads": -1,
            "filename": "jq-1.7.0-pp39-pypy39_pp73-macosx_10_13_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6872e0c5c98314f82564991f808a1ade",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.5",
            "size": 389382,
            "upload_time": "2024-03-17T09:39:56",
            "upload_time_iso_8601": "2024-03-17T09:39:56.163407Z",
            "url": "https://files.pythonhosted.org/packages/45/e6/4f647dd050cd3c851cc7dcdb8e6916ff2f0675536c8f7d7f4585a63a6fc0/jq-1.7.0-pp39-pypy39_pp73-macosx_10_13_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "aa5190ea1174da4f099f76ac7653afd60fec7809342654abb55df6308df42e2a",
                "md5": "4efa2378f802ef763e470ecd79a71d01",
                "sha256": "d5ff445fc9b1eb4623a914e04bea9511e654e9143cde82b039383af4f7dc36f2"
            },
            "downloads": -1,
            "filename": "jq-1.7.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "4efa2378f802ef763e470ecd79a71d01",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.5",
            "size": 398016,
            "upload_time": "2024-03-17T09:39:58",
            "upload_time_iso_8601": "2024-03-17T09:39:58.181061Z",
            "url": "https://files.pythonhosted.org/packages/aa/51/90ea1174da4f099f76ac7653afd60fec7809342654abb55df6308df42e2a/jq-1.7.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c9ccec7e02a23e8b9de98cde08495ccc99a63e4b8f91e69740a0c79a3f5f1b0e",
                "md5": "13c06de0f0c3fa6a38f5872b143ab8f6",
                "sha256": "07e369ff021fad38a29d6a7a3fc24f7d313e9a239b15ce4eefaffee637466400"
            },
            "downloads": -1,
            "filename": "jq-1.7.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "13c06de0f0c3fa6a38f5872b143ab8f6",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.5",
            "size": 398318,
            "upload_time": "2024-03-17T09:40:00",
            "upload_time_iso_8601": "2024-03-17T09:40:00.281162Z",
            "url": "https://files.pythonhosted.org/packages/c9/cc/ec7e02a23e8b9de98cde08495ccc99a63e4b8f91e69740a0c79a3f5f1b0e/jq-1.7.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9d209ec0979152d0fa4d635aabaf6b593e51ecfdc7d5d6081b7406c6544828ac",
                "md5": "8dd587414f42f757ecdb74258adb5c27",
                "sha256": "553dfbf674069cb20533d7d74cd8a9d7982bab8e4a5b473fde105d99278df09f"
            },
            "downloads": -1,
            "filename": "jq-1.7.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8dd587414f42f757ecdb74258adb5c27",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.5",
            "size": 412230,
            "upload_time": "2024-03-17T09:40:02",
            "upload_time_iso_8601": "2024-03-17T09:40:02.905390Z",
            "url": "https://files.pythonhosted.org/packages/9d/20/9ec0979152d0fa4d635aabaf6b593e51ecfdc7d5d6081b7406c6544828ac/jq-1.7.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "06cffbffb6d9642d6f55ef5d56a2a59c03f21309d541548873c98620c71b69d6",
                "md5": "58f0875992eb3df517a557ad9dd9260c",
                "sha256": "e9fbc76f6fec66e5e58cc84f20a5de80addd3c64ad87a748f5c5f6b4ef01bc8c"
            },
            "downloads": -1,
            "filename": "jq-1.7.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "58f0875992eb3df517a557ad9dd9260c",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.5",
            "size": 422019,
            "upload_time": "2024-03-17T09:40:05",
            "upload_time_iso_8601": "2024-03-17T09:40:05.660614Z",
            "url": "https://files.pythonhosted.org/packages/06/cf/fbffb6d9642d6f55ef5d56a2a59c03f21309d541548873c98620c71b69d6/jq-1.7.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "16f78f4945533929fc72b8c114fc8fd1a77d8e26980492283a10c37bf2fbcc03",
                "md5": "0270547ec224a4448ea4e80e546e2615",
                "sha256": "f460d1f2c3791617e4fb339fa24efbdbebe672b02c861f057358553642047040"
            },
            "downloads": -1,
            "filename": "jq-1.7.0.tar.gz",
            "has_sig": false,
            "md5_digest": "0270547ec224a4448ea4e80e546e2615",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.5",
            "size": 2023790,
            "upload_time": "2024-03-17T09:40:58",
            "upload_time_iso_8601": "2024-03-17T09:40:58.096344Z",
            "url": "https://files.pythonhosted.org/packages/16/f7/8f4945533929fc72b8c114fc8fd1a77d8e26980492283a10c37bf2fbcc03/jq-1.7.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-03-17 09:40:58",
    "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: 0.20698s