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": null,
"docs_url": null,
"requires_python": ">=3.6",
"maintainer_email": null,
"keywords": null,
"author": "Michael Williamson",
"author_email": null,
"download_url": "https://files.pythonhosted.org/packages/ba/32/3eaca3ac81c804d6849da2e9f536ac200f4ad46a696890854c1f73b2f749/jq-1.8.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.8.0",
"project_urls": {
"Homepage": "https://github.com/mwilliamson/jq.py"
},
"split_keywords": [],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "8decf72f8b0272b2d92c99cb33af70833e51af1bf673db39214948aa85699b48",
"md5": "35b5850cd4aaf63b3417bddcd3e70838",
"sha256": "628848f92a0f24f5ca50c879d271555a63bf28746c1efd3571ee49e9a357b602"
},
"downloads": -1,
"filename": "jq-1.8.0-cp310-cp310-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "35b5850cd4aaf63b3417bddcd3e70838",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.6",
"size": 416542,
"upload_time": "2024-08-17T08:13:42",
"upload_time_iso_8601": "2024-08-17T08:13:42.048738Z",
"url": "https://files.pythonhosted.org/packages/8d/ec/f72f8b0272b2d92c99cb33af70833e51af1bf673db39214948aa85699b48/jq-1.8.0-cp310-cp310-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d53c3b781ae9f4f0dd24e75c0005d3a886b0ae55a684562206a4fd33fdc318c3",
"md5": "7fa583e7aa88eaff212b50309671a47b",
"sha256": "d375b0f372df24087fd0688ef85fef43a44a3e382a82afcc0cdfdfe59e59d313"
},
"downloads": -1,
"filename": "jq-1.8.0-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "7fa583e7aa88eaff212b50309671a47b",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.6",
"size": 422189,
"upload_time": "2024-08-17T08:13:45",
"upload_time_iso_8601": "2024-08-17T08:13:45.096160Z",
"url": "https://files.pythonhosted.org/packages/d5/3c/3b781ae9f4f0dd24e75c0005d3a886b0ae55a684562206a4fd33fdc318c3/jq-1.8.0-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "adb82ea11152a3546803bfad5a8ef78b6f4cbfbfe75a7455c6f662728167c09f",
"md5": "7c1d9929c89f5473944064f8e78054a7",
"sha256": "cd0c30af5257ae0dccd27c5140726e24108a472e56dce8767b918905adfd9c99"
},
"downloads": -1,
"filename": "jq-1.8.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "7c1d9929c89f5473944064f8e78054a7",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.6",
"size": 719303,
"upload_time": "2024-08-17T08:13:48",
"upload_time_iso_8601": "2024-08-17T08:13:48.431355Z",
"url": "https://files.pythonhosted.org/packages/ad/b8/2ea11152a3546803bfad5a8ef78b6f4cbfbfe75a7455c6f662728167c09f/jq-1.8.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "715d3d252898f6163143b8def254b53e626b3f8cfb12c3dddcfacb796a7e396b",
"md5": "e276d8946e18776258a04172a42ea81e",
"sha256": "59bda8b62453967a32f418562309d0ffe0da73227e8c5800334ee0b515c5d2e2"
},
"downloads": -1,
"filename": "jq-1.8.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "e276d8946e18776258a04172a42ea81e",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.6",
"size": 737355,
"upload_time": "2024-08-17T08:13:51",
"upload_time_iso_8601": "2024-08-17T08:13:51.926023Z",
"url": "https://files.pythonhosted.org/packages/71/5d/3d252898f6163143b8def254b53e626b3f8cfb12c3dddcfacb796a7e396b/jq-1.8.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "746c85c477f133ee96de376070ee12991a81e7f83300d607203724633dd5ae69",
"md5": "700acb94415778fe65c17f7aff89ca54",
"sha256": "05e2c0a8944a3ff93de6353d60ed69fa85b155c08d6776ab20d4429197f50050"
},
"downloads": -1,
"filename": "jq-1.8.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "700acb94415778fe65c17f7aff89ca54",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.6",
"size": 727894,
"upload_time": "2024-08-17T08:13:55",
"upload_time_iso_8601": "2024-08-17T08:13:55.178879Z",
"url": "https://files.pythonhosted.org/packages/74/6c/85c477f133ee96de376070ee12991a81e7f83300d607203724633dd5ae69/jq-1.8.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": "07c2f0d8b7c9669ff17a57e54da469515e6d2badc6ed2b038792162b449aa168",
"md5": "dcba89c387603ce8af06fa4b5bf062cf",
"sha256": "2526368e5658eaeb47984b551e7178a0216cc8c5fdd6dd343964574cae513c89"
},
"downloads": -1,
"filename": "jq-1.8.0-cp310-cp310-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "dcba89c387603ce8af06fa4b5bf062cf",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.6",
"size": 697960,
"upload_time": "2024-08-17T08:13:57",
"upload_time_iso_8601": "2024-08-17T08:13:57.405735Z",
"url": "https://files.pythonhosted.org/packages/07/c2/f0d8b7c9669ff17a57e54da469515e6d2badc6ed2b038792162b449aa168/jq-1.8.0-cp310-cp310-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "261628b277d52125cbb2681063c875a178a1d11d8f0b7884f5f54b0418219587",
"md5": "3e65d81400b438acdceca4c8db3b7679",
"sha256": "881be44d8f804a97a1e37dc6360bf2deab43768d7fbb31cfb22ca8050dd6aed3"
},
"downloads": -1,
"filename": "jq-1.8.0-cp310-cp310-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "3e65d81400b438acdceca4c8db3b7679",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.6",
"size": 722986,
"upload_time": "2024-08-17T08:14:00",
"upload_time_iso_8601": "2024-08-17T08:14:00.140525Z",
"url": "https://files.pythonhosted.org/packages/26/16/28b277d52125cbb2681063c875a178a1d11d8f0b7884f5f54b0418219587/jq-1.8.0-cp310-cp310-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "feeb62b9f6e3bbc4f2a05b392b1d1a4603fc927746d9e33f5c8d24edcfd7d429",
"md5": "b9f080d2eb3c77d9e72d5f3b188417f1",
"sha256": "f057322a572fe2cf0cb9ea068dd4eec237bc15490e0944cd979aeb23b20db3ac"
},
"downloads": -1,
"filename": "jq-1.8.0-cp310-cp310-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "b9f080d2eb3c77d9e72d5f3b188417f1",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.6",
"size": 725489,
"upload_time": "2024-08-17T08:14:02",
"upload_time_iso_8601": "2024-08-17T08:14:02.488642Z",
"url": "https://files.pythonhosted.org/packages/fe/eb/62b9f6e3bbc4f2a05b392b1d1a4603fc927746d9e33f5c8d24edcfd7d429/jq-1.8.0-cp310-cp310-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4a2ed0eedabd00b0c30a98be50d894825adcc0d302514bad098b4bdcbc0e28f1",
"md5": "f6a49975e0f9317e00810abbf1e8ecee",
"sha256": "aaf6e17cd9bf26c076a9a6ff0b4bfac66fdaa37ed9e215683de58d657cc75f29"
},
"downloads": -1,
"filename": "jq-1.8.0-cp310-cp310-win32.whl",
"has_sig": false,
"md5_digest": "f6a49975e0f9317e00810abbf1e8ecee",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.6",
"size": 407142,
"upload_time": "2024-08-17T08:14:04",
"upload_time_iso_8601": "2024-08-17T08:14:04.463635Z",
"url": "https://files.pythonhosted.org/packages/4a/2e/d0eedabd00b0c30a98be50d894825adcc0d302514bad098b4bdcbc0e28f1/jq-1.8.0-cp310-cp310-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "15d5dd01e938759b48df628eb5eb3818bd404c54d2d41e93bfb3ee079dbf16e4",
"md5": "b2de73b33821fa0a2dbe61312a1bd87d",
"sha256": "53c87ef5491e484cdfb740303ccfc141af1d23275750569f539d4981524f4251"
},
"downloads": -1,
"filename": "jq-1.8.0-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "b2de73b33821fa0a2dbe61312a1bd87d",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.6",
"size": 417758,
"upload_time": "2024-08-17T08:14:06",
"upload_time_iso_8601": "2024-08-17T08:14:06.776691Z",
"url": "https://files.pythonhosted.org/packages/15/d5/dd01e938759b48df628eb5eb3818bd404c54d2d41e93bfb3ee079dbf16e4/jq-1.8.0-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "da95dcbef114d8b71d52def6f5ea7a04f892f18803d52e0aaf3d4e6393dcb7d4",
"md5": "836009588eb6540b91f10a111b67ba99",
"sha256": "f8441fe181af789a05b742930d095ee61fc251fdd2b975c68e359ac7e85a4c2d"
},
"downloads": -1,
"filename": "jq-1.8.0-cp311-cp311-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "836009588eb6540b91f10a111b67ba99",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.6",
"size": 416862,
"upload_time": "2024-08-17T08:14:08",
"upload_time_iso_8601": "2024-08-17T08:14:08.724804Z",
"url": "https://files.pythonhosted.org/packages/da/95/dcbef114d8b71d52def6f5ea7a04f892f18803d52e0aaf3d4e6393dcb7d4/jq-1.8.0-cp311-cp311-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3bc906f04189aa5265827228a31ab531712c5b6345c177988d7e1397b0cb18f7",
"md5": "baff52b681e2dc6ebff226c5e250462a",
"sha256": "8e687ef4b360e7436c3b5f15ee25f2570bcbcadccb940ebbc80ebe4b05b91ee2"
},
"downloads": -1,
"filename": "jq-1.8.0-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "baff52b681e2dc6ebff226c5e250462a",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.6",
"size": 422413,
"upload_time": "2024-08-17T08:14:11",
"upload_time_iso_8601": "2024-08-17T08:14:11.026782Z",
"url": "https://files.pythonhosted.org/packages/3b/c9/06f04189aa5265827228a31ab531712c5b6345c177988d7e1397b0cb18f7/jq-1.8.0-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0c776a55ae6d41f6298245dc45271a10b319c91eb3176a5fe0b6edd74e4031fb",
"md5": "d07ba82d881af4d88f6c3e23a8c76a7f",
"sha256": "aaf862d1bc1d0095aef0efc76f8cef0da7ab996f2b9d34c5067e48427a069ea3"
},
"downloads": -1,
"filename": "jq-1.8.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "d07ba82d881af4d88f6c3e23a8c76a7f",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.6",
"size": 731532,
"upload_time": "2024-08-17T08:14:15",
"upload_time_iso_8601": "2024-08-17T08:14:15.172458Z",
"url": "https://files.pythonhosted.org/packages/0c/77/6a55ae6d41f6298245dc45271a10b319c91eb3176a5fe0b6edd74e4031fb/jq-1.8.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d3feb7786c4cbf8ff4fd0a9b5273a30ee65a91c6f1bf38414e989a117ccd5c71",
"md5": "b0bb3ee8f99f557fe0de8871241061ce",
"sha256": "190fd2bf92b7abec3090a1f68db40cd001178e84c42754f75253ee1f9c17dfdf"
},
"downloads": -1,
"filename": "jq-1.8.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "b0bb3ee8f99f557fe0de8871241061ce",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.6",
"size": 746597,
"upload_time": "2024-08-17T08:14:19",
"upload_time_iso_8601": "2024-08-17T08:14:19.047059Z",
"url": "https://files.pythonhosted.org/packages/d3/fe/b7786c4cbf8ff4fd0a9b5273a30ee65a91c6f1bf38414e989a117ccd5c71/jq-1.8.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "431ba2ce5bed9984eb98953184f8b4fea99798996631166f06e60cd5a9db8c51",
"md5": "40733fc9977be776256eac60bf01a016",
"sha256": "3ecba9f181e7810a336a520f32df998e6ecc9fdebac80c6a636e402baa939e79"
},
"downloads": -1,
"filename": "jq-1.8.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "40733fc9977be776256eac60bf01a016",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.6",
"size": 739586,
"upload_time": "2024-08-17T08:14:22",
"upload_time_iso_8601": "2024-08-17T08:14:22.224358Z",
"url": "https://files.pythonhosted.org/packages/43/1b/a2ce5bed9984eb98953184f8b4fea99798996631166f06e60cd5a9db8c51/jq-1.8.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": "13e44b0cff04095fb40ba279beb10746a445fa55755784a2546017e6975e1280",
"md5": "0189d8460b3f85baa1b751d39754df11",
"sha256": "8b6322f647f9e1d7be7f6e8203106f4ff1b7c0e07c9023607c7414e1dc098b67"
},
"downloads": -1,
"filename": "jq-1.8.0-cp311-cp311-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "0189d8460b3f85baa1b751d39754df11",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.6",
"size": 722756,
"upload_time": "2024-08-17T08:14:25",
"upload_time_iso_8601": "2024-08-17T08:14:25.044392Z",
"url": "https://files.pythonhosted.org/packages/13/e4/4b0cff04095fb40ba279beb10746a445fa55755784a2546017e6975e1280/jq-1.8.0-cp311-cp311-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6363e93d730108fc0651fbe47ed7f3a52ba134292523ae5f162cfb30e3020b74",
"md5": "d464f21289ec9dd4d777f6db672f5d8b",
"sha256": "7bed3b9cc53d72383fc558cfe03345735e7532d1733a5ed3c2196f1eec1c26d7"
},
"downloads": -1,
"filename": "jq-1.8.0-cp311-cp311-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "d464f21289ec9dd4d777f6db672f5d8b",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.6",
"size": 746574,
"upload_time": "2024-08-17T08:14:27",
"upload_time_iso_8601": "2024-08-17T08:14:27.416849Z",
"url": "https://files.pythonhosted.org/packages/63/63/e93d730108fc0651fbe47ed7f3a52ba134292523ae5f162cfb30e3020b74/jq-1.8.0-cp311-cp311-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "05bcbc890164f63371dcf90ac1d3383d0f11eefc8ec1ff649407cbd3393f530d",
"md5": "89a08359a5b4f125eb3941f2b0ccb1a7",
"sha256": "1a01261e4df11d3a0fe42fece73bb458d2e4a33b481d67e5e817acec8b0e923d"
},
"downloads": -1,
"filename": "jq-1.8.0-cp311-cp311-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "89a08359a5b4f125eb3941f2b0ccb1a7",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.6",
"size": 749311,
"upload_time": "2024-08-17T08:14:29",
"upload_time_iso_8601": "2024-08-17T08:14:29.444416Z",
"url": "https://files.pythonhosted.org/packages/05/bc/bc890164f63371dcf90ac1d3383d0f11eefc8ec1ff649407cbd3393f530d/jq-1.8.0-cp311-cp311-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1b4031585bd330b4da8895cff6d963c685b3dd444a7d199de367347f89e3825a",
"md5": "357a60f9faa884416f27598bc131f399",
"sha256": "52cac82de5608f9174d22a1a805d61ba47ea182b10a934135904648c618ebe34"
},
"downloads": -1,
"filename": "jq-1.8.0-cp311-cp311-win32.whl",
"has_sig": false,
"md5_digest": "357a60f9faa884416f27598bc131f399",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.6",
"size": 405664,
"upload_time": "2024-08-17T08:14:32",
"upload_time_iso_8601": "2024-08-17T08:14:32.519163Z",
"url": "https://files.pythonhosted.org/packages/1b/40/31585bd330b4da8895cff6d963c685b3dd444a7d199de367347f89e3825a/jq-1.8.0-cp311-cp311-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1ddd492d74bbd0fb4aa1ed2539cf4b460f8bb1ff56073cf591fa91dbb399f488",
"md5": "87e8befe4d38e8718f94e50ff41937a2",
"sha256": "745d0f9786bd89eb9bff054ac08ce0e61877d28931857585e244e8674ac3727e"
},
"downloads": -1,
"filename": "jq-1.8.0-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "87e8befe4d38e8718f94e50ff41937a2",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.6",
"size": 416898,
"upload_time": "2024-08-17T08:14:35",
"upload_time_iso_8601": "2024-08-17T08:14:35.615425Z",
"url": "https://files.pythonhosted.org/packages/1d/dd/492d74bbd0fb4aa1ed2539cf4b460f8bb1ff56073cf591fa91dbb399f488/jq-1.8.0-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "45b3dd0d41cecb0d8712bc792b3c40b42a36c355d814d61f6bda4d61cbb188e5",
"md5": "f23cbb1ff1fbac181e4c5960e504e22c",
"sha256": "14f5988ae3604ebfdba2da398f9bd941bb3a72144a2831cfec2bc22bd23d5563"
},
"downloads": -1,
"filename": "jq-1.8.0-cp312-cp312-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "f23cbb1ff1fbac181e4c5960e504e22c",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.6",
"size": 415943,
"upload_time": "2024-08-17T08:14:38",
"upload_time_iso_8601": "2024-08-17T08:14:38.437196Z",
"url": "https://files.pythonhosted.org/packages/45/b3/dd0d41cecb0d8712bc792b3c40b42a36c355d814d61f6bda4d61cbb188e5/jq-1.8.0-cp312-cp312-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9b2c39df803632c7222e9cd6922101966ddbec05d1c4213e7923c95e4e442666",
"md5": "a2c8c3d78128b530259e9fcd84efbb13",
"sha256": "f8903b66fac9f46de72b3a2f69bfa3c638a7a8d52610d1894df87ef0a9e4d2d3"
},
"downloads": -1,
"filename": "jq-1.8.0-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "a2c8c3d78128b530259e9fcd84efbb13",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.6",
"size": 422267,
"upload_time": "2024-08-17T08:14:40",
"upload_time_iso_8601": "2024-08-17T08:14:40.746978Z",
"url": "https://files.pythonhosted.org/packages/9b/2c/39df803632c7222e9cd6922101966ddbec05d1c4213e7923c95e4e442666/jq-1.8.0-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3ab3ddc1e691b832c6aa0f5142935099c1f05a89ff2f337201e2dcfafc726ec9",
"md5": "4633cb7171b3b1ab0cd13be0246905bf",
"sha256": "cccda466f5722fa9be789099ce253bfc177e49f9a981cb7f5b6369ea37041104"
},
"downloads": -1,
"filename": "jq-1.8.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "4633cb7171b3b1ab0cd13be0246905bf",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.6",
"size": 729142,
"upload_time": "2024-08-17T08:14:44",
"upload_time_iso_8601": "2024-08-17T08:14:44.144848Z",
"url": "https://files.pythonhosted.org/packages/3a/b3/ddc1e691b832c6aa0f5142935099c1f05a89ff2f337201e2dcfafc726ec9/jq-1.8.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c5b942a55d08397d25b4b1f6580f58c59ba3e3e120270db2e75923644ccc0d29",
"md5": "26974fca34827348b9c1d0c9de1180fb",
"sha256": "95f57649e84a09b334eeb80d22ecc96ff7b31701f3f818ef14cb8bb162c84863"
},
"downloads": -1,
"filename": "jq-1.8.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "26974fca34827348b9c1d0c9de1180fb",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.6",
"size": 748871,
"upload_time": "2024-08-17T08:14:46",
"upload_time_iso_8601": "2024-08-17T08:14:46.816018Z",
"url": "https://files.pythonhosted.org/packages/c5/b9/42a55d08397d25b4b1f6580f58c59ba3e3e120270db2e75923644ccc0d29/jq-1.8.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "904f83639fdae641b7e8095b4a51d87a3da46737e70570d9df14d99ea15a0b16",
"md5": "ad9eddda16816d4754f66ba7cc9169bf",
"sha256": "7453731008eb7671725222781eb7bc5ed96e80fc9a652d177cb982276d3e08b4"
},
"downloads": -1,
"filename": "jq-1.8.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "ad9eddda16816d4754f66ba7cc9169bf",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.6",
"size": 735908,
"upload_time": "2024-08-17T08:14:48",
"upload_time_iso_8601": "2024-08-17T08:14:48.865923Z",
"url": "https://files.pythonhosted.org/packages/90/4f/83639fdae641b7e8095b4a51d87a3da46737e70570d9df14d99ea15a0b16/jq-1.8.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": "f79ff54c2050b21490201613a7328534d2cb0c34e5a547167849a1464d89ae3e",
"md5": "43f753a2b76e5a1d312dd4bebddb3554",
"sha256": "917812663613fc0542117bbe7ec43c8733b0c6bb174db6be06a15fc612de3b70"
},
"downloads": -1,
"filename": "jq-1.8.0-cp312-cp312-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "43f753a2b76e5a1d312dd4bebddb3554",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.6",
"size": 721970,
"upload_time": "2024-08-17T08:14:51",
"upload_time_iso_8601": "2024-08-17T08:14:51.442730Z",
"url": "https://files.pythonhosted.org/packages/f7/9f/f54c2050b21490201613a7328534d2cb0c34e5a547167849a1464d89ae3e/jq-1.8.0-cp312-cp312-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "24b06c9a14ef103df4208e032bce25e66293201dacac18689d2ec4c0e68c8b77",
"md5": "449eb0be2b9e19fc87fae0505ec7a0e3",
"sha256": "ec9e4db978237470e9d65f747eb459f4ffee576c9c9f8ca92ab32d5687a46e4a"
},
"downloads": -1,
"filename": "jq-1.8.0-cp312-cp312-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "449eb0be2b9e19fc87fae0505ec7a0e3",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.6",
"size": 746825,
"upload_time": "2024-08-17T08:14:53",
"upload_time_iso_8601": "2024-08-17T08:14:53.536464Z",
"url": "https://files.pythonhosted.org/packages/24/b0/6c9a14ef103df4208e032bce25e66293201dacac18689d2ec4c0e68c8b77/jq-1.8.0-cp312-cp312-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f4674eb836a9eac5f02983ed7caf76c4d0cad32fdd6ae08176be892b3a6b3d17",
"md5": "f46bd7b0d64592769ca5dc2bab081f70",
"sha256": "f9f2548c83473bbe88a32a0735cb949a5d01804f8d411efae5342b5d23be8a2f"
},
"downloads": -1,
"filename": "jq-1.8.0-cp312-cp312-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "f46bd7b0d64592769ca5dc2bab081f70",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.6",
"size": 751186,
"upload_time": "2024-08-17T08:14:57",
"upload_time_iso_8601": "2024-08-17T08:14:57.320367Z",
"url": "https://files.pythonhosted.org/packages/f4/67/4eb836a9eac5f02983ed7caf76c4d0cad32fdd6ae08176be892b3a6b3d17/jq-1.8.0-cp312-cp312-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2c8f66739f56ee1e3d144e7eef6453c5967275f75bf216e1915cdd9652a779aa",
"md5": "793a0dff6ed623957ee265d1a554c091",
"sha256": "e3da3538549d5bdc84e6282555be4ba5a50c3792db7d8d72d064cc6f48a2f722"
},
"downloads": -1,
"filename": "jq-1.8.0-cp312-cp312-win32.whl",
"has_sig": false,
"md5_digest": "793a0dff6ed623957ee265d1a554c091",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.6",
"size": 405483,
"upload_time": "2024-08-17T08:15:00",
"upload_time_iso_8601": "2024-08-17T08:15:00.532277Z",
"url": "https://files.pythonhosted.org/packages/2c/8f/66739f56ee1e3d144e7eef6453c5967275f75bf216e1915cdd9652a779aa/jq-1.8.0-cp312-cp312-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f69fe886c23b466fc41f105b715724c19dd6089585f2e34375f07c38c69ceaf1",
"md5": "bbf950d30b2ca0dc94ab921d094702bd",
"sha256": "049ba2978e61e593299edc6dd57b9cefd680272740ad1d4703f8784f5fab644d"
},
"downloads": -1,
"filename": "jq-1.8.0-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "bbf950d30b2ca0dc94ab921d094702bd",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.6",
"size": 417281,
"upload_time": "2024-08-17T08:15:03",
"upload_time_iso_8601": "2024-08-17T08:15:03.048317Z",
"url": "https://files.pythonhosted.org/packages/f6/9f/e886c23b466fc41f105b715724c19dd6089585f2e34375f07c38c69ceaf1/jq-1.8.0-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9c25c73afa16aedee3ae87b2e8ffb2d12bdb9c7a34a8c9ab5038318cb0b431fe",
"md5": "c6146f9f5d8698e918f3604e5f18e8a5",
"sha256": "76aea6161c4d975230e85735c0214c386e66035e96cfc4fd69159e87f46c09d4"
},
"downloads": -1,
"filename": "jq-1.8.0-cp313-cp313-macosx_10_13_x86_64.whl",
"has_sig": false,
"md5_digest": "c6146f9f5d8698e918f3604e5f18e8a5",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.6",
"size": 415000,
"upload_time": "2024-08-17T08:15:05",
"upload_time_iso_8601": "2024-08-17T08:15:05.250548Z",
"url": "https://files.pythonhosted.org/packages/9c/25/c73afa16aedee3ae87b2e8ffb2d12bdb9c7a34a8c9ab5038318cb0b431fe/jq-1.8.0-cp313-cp313-macosx_10_13_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0697d09338697ea0eb7386a3df0c6ca2a77ab090c19420a85acdc6f36971c6b8",
"md5": "34977fee64d500755e5df1e508c92e6c",
"sha256": "0c24a5f9e3807e277e19f305c8bcd0665b8b89251b053903f611969657680722"
},
"downloads": -1,
"filename": "jq-1.8.0-cp313-cp313-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "34977fee64d500755e5df1e508c92e6c",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.6",
"size": 421253,
"upload_time": "2024-08-17T08:15:07",
"upload_time_iso_8601": "2024-08-17T08:15:07.633828Z",
"url": "https://files.pythonhosted.org/packages/06/97/d09338697ea0eb7386a3df0c6ca2a77ab090c19420a85acdc6f36971c6b8/jq-1.8.0-cp313-cp313-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b8c3d020c19eca167b5085e74d2277bc3d9e35d1b4ee5bcb9076f1e26882514d",
"md5": "3b205375e3d05438abab40f7a7c4a44d",
"sha256": "eb484525dd801583ebd695d02f9165445a4d1b2fb560b187e6fc654911f0600e"
},
"downloads": -1,
"filename": "jq-1.8.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "3b205375e3d05438abab40f7a7c4a44d",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.6",
"size": 725885,
"upload_time": "2024-08-17T08:15:10",
"upload_time_iso_8601": "2024-08-17T08:15:10.647686Z",
"url": "https://files.pythonhosted.org/packages/b8/c3/d020c19eca167b5085e74d2277bc3d9e35d1b4ee5bcb9076f1e26882514d/jq-1.8.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "78b88f6b886856f52f3277663d2d7a199663c6ede589dd0714aac9491b82ba6e",
"md5": "dd57de09b5cc6b3326d6f6f79e8bf8ee",
"sha256": "ddd9abdf0c1b30be1bf853d8c52187c96a51b2cbc05f40c43a37bf6a9b956807"
},
"downloads": -1,
"filename": "jq-1.8.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "dd57de09b5cc6b3326d6f6f79e8bf8ee",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.6",
"size": 746334,
"upload_time": "2024-08-17T08:15:13",
"upload_time_iso_8601": "2024-08-17T08:15:13.183734Z",
"url": "https://files.pythonhosted.org/packages/78/b8/8f6b886856f52f3277663d2d7a199663c6ede589dd0714aac9491b82ba6e/jq-1.8.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "76c22fa34e480068863ab372ec91c59b10214e9f8f3ae8b6e2de61456e93bae1",
"md5": "afc744aa6afc5c0644b33235e2c3839c",
"sha256": "2c7464d9b88c74a7119b53f4bbf88028d07a9de9a1a279e45209b763b89d6582"
},
"downloads": -1,
"filename": "jq-1.8.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "afc744aa6afc5c0644b33235e2c3839c",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.6",
"size": 733716,
"upload_time": "2024-08-17T08:15:15",
"upload_time_iso_8601": "2024-08-17T08:15:15.836527Z",
"url": "https://files.pythonhosted.org/packages/76/c2/2fa34e480068863ab372ec91c59b10214e9f8f3ae8b6e2de61456e93bae1/jq-1.8.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2edb59cb84ec59247af7f7bedd2b5c88b3a4ca17253fd2cc0d40f08573f7ff72",
"md5": "0b95ec0d5f8732cd651671ea61620c2b",
"sha256": "b99761e8ec2cedb9906df4ceae33f467a377621019ef40a9a275689ac3577456"
},
"downloads": -1,
"filename": "jq-1.8.0-cp313-cp313-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "0b95ec0d5f8732cd651671ea61620c2b",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.6",
"size": 720978,
"upload_time": "2024-08-17T08:15:17",
"upload_time_iso_8601": "2024-08-17T08:15:17.759258Z",
"url": "https://files.pythonhosted.org/packages/2e/db/59cb84ec59247af7f7bedd2b5c88b3a4ca17253fd2cc0d40f08573f7ff72/jq-1.8.0-cp313-cp313-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e06fd04bdcc037ced716e2522ebf7a677541b8654d7855cd1404d894f1ecd144",
"md5": "d46ec195071284134ed33caa47ad86d7",
"sha256": "1be1638f9d5f38c83440fb9626d8f78905ed5d70e926e3a664d3de1198e1ef79"
},
"downloads": -1,
"filename": "jq-1.8.0-cp313-cp313-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "d46ec195071284134ed33caa47ad86d7",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.6",
"size": 746431,
"upload_time": "2024-08-17T08:15:19",
"upload_time_iso_8601": "2024-08-17T08:15:19.948521Z",
"url": "https://files.pythonhosted.org/packages/e0/6f/d04bdcc037ced716e2522ebf7a677541b8654d7855cd1404d894f1ecd144/jq-1.8.0-cp313-cp313-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8452f100fb2ccd467c17a2ecc186334aa7b512e49ca1a678ecc53dd4defd6e22",
"md5": "2716d350f15d6a6e7c32ca5f0221ffa1",
"sha256": "2d7e82d58bf3afe373afb3a01f866e473bbd34f38377a2f216c6222ec028eeea"
},
"downloads": -1,
"filename": "jq-1.8.0-cp313-cp313-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "2716d350f15d6a6e7c32ca5f0221ffa1",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.6",
"size": 750404,
"upload_time": "2024-08-17T08:15:22",
"upload_time_iso_8601": "2024-08-17T08:15:22.198774Z",
"url": "https://files.pythonhosted.org/packages/84/52/f100fb2ccd467c17a2ecc186334aa7b512e49ca1a678ecc53dd4defd6e22/jq-1.8.0-cp313-cp313-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "86b4e2459542207238d86727cf81af321ee4920497757092facf347726d64965",
"md5": "fd9a44cc640629a16ceb161fe288b3ea",
"sha256": "96cb0bb35d55b19b910b12aba3d72e333ad6348a703494c7738cc4664e4410f0"
},
"downloads": -1,
"filename": "jq-1.8.0-cp313-cp313-win32.whl",
"has_sig": false,
"md5_digest": "fd9a44cc640629a16ceb161fe288b3ea",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.6",
"size": 405691,
"upload_time": "2024-08-17T08:15:25",
"upload_time_iso_8601": "2024-08-17T08:15:25.346819Z",
"url": "https://files.pythonhosted.org/packages/86/b4/e2459542207238d86727cf81af321ee4920497757092facf347726d64965/jq-1.8.0-cp313-cp313-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ce4d6e1230f96052d578439eee4ea28069728f3ad4027de127a93b8c6da142f0",
"md5": "53dbc0071148ecf6200379a07d32d96d",
"sha256": "53e60a87657efc365a5d9ccfea2b536cddc1ffab190e823f8645ad933b272d51"
},
"downloads": -1,
"filename": "jq-1.8.0-cp313-cp313-win_amd64.whl",
"has_sig": false,
"md5_digest": "53dbc0071148ecf6200379a07d32d96d",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.6",
"size": 417930,
"upload_time": "2024-08-17T08:15:28",
"upload_time_iso_8601": "2024-08-17T08:15:28.487210Z",
"url": "https://files.pythonhosted.org/packages/ce/4d/6e1230f96052d578439eee4ea28069728f3ad4027de127a93b8c6da142f0/jq-1.8.0-cp313-cp313-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e32c2f12bb3a9672207ad21152277595405a2a40e589f9fc58e1b5024a27080a",
"md5": "39b7259a09664008bf9f5ba0a32d36b1",
"sha256": "a5c3a9e8fa0eedb600626719630ec3dc6018379075e10733d88899f147d26528"
},
"downloads": -1,
"filename": "jq-1.8.0-cp36-cp36m-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "39b7259a09664008bf9f5ba0a32d36b1",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": ">=3.6",
"size": 412889,
"upload_time": "2024-08-17T08:15:30",
"upload_time_iso_8601": "2024-08-17T08:15:30.821385Z",
"url": "https://files.pythonhosted.org/packages/e3/2c/2f12bb3a9672207ad21152277595405a2a40e589f9fc58e1b5024a27080a/jq-1.8.0-cp36-cp36m-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f2535fd2e73d2462f74b2744924c1e2c0e4151df8a6a5618c3c298199e64dbaa",
"md5": "20207c30d65062663f6f3bf3ad48906d",
"sha256": "8c86f0f9d496c6d51caa9597dae6bdb11b27c45cee820a3db3bb61303359d217"
},
"downloads": -1,
"filename": "jq-1.8.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "20207c30d65062663f6f3bf3ad48906d",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": ">=3.6",
"size": 668865,
"upload_time": "2024-08-17T08:15:33",
"upload_time_iso_8601": "2024-08-17T08:15:33.694803Z",
"url": "https://files.pythonhosted.org/packages/f2/53/5fd2e73d2462f74b2744924c1e2c0e4151df8a6a5618c3c298199e64dbaa/jq-1.8.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "39d60a2559db06226f478a9c401ab4f1df0dead45a85c67772750613f5858004",
"md5": "c68c0ad9b37ffbf92a2949538cd59975",
"sha256": "990116b7fcf3f37dd89cb12bbc5a09f85ca1fee368945501096470c71f1851de"
},
"downloads": -1,
"filename": "jq-1.8.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "c68c0ad9b37ffbf92a2949538cd59975",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": ">=3.6",
"size": 686814,
"upload_time": "2024-08-17T08:15:36",
"upload_time_iso_8601": "2024-08-17T08:15:36.610125Z",
"url": "https://files.pythonhosted.org/packages/39/d6/0a2559db06226f478a9c401ab4f1df0dead45a85c67772750613f5858004/jq-1.8.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "10f5671dab0826effed1abf1600abfe544f529addc1330b995bd56a01d5523d5",
"md5": "cdf7aeb11ae7d15d3af60aa3ed0b1bb0",
"sha256": "6f3cefb4b9dde8edeb2af0b108c8df1942e9352e83406491959e7dc145ccf20a"
},
"downloads": -1,
"filename": "jq-1.8.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "cdf7aeb11ae7d15d3af60aa3ed0b1bb0",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": ">=3.6",
"size": 678978,
"upload_time": "2024-08-17T08:15:39",
"upload_time_iso_8601": "2024-08-17T08:15:39.131413Z",
"url": "https://files.pythonhosted.org/packages/10/f5/671dab0826effed1abf1600abfe544f529addc1330b995bd56a01d5523d5/jq-1.8.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": "253a0b30d104e754c0787705991eb4144758ae27b238360610423d677d41a351",
"md5": "1019722ce93c514562abd3e60d687484",
"sha256": "aa70883dcbddb06bcb1510f5025f2709268d91ddbe23f31b297ffc73fec1ed3d"
},
"downloads": -1,
"filename": "jq-1.8.0-cp36-cp36m-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "1019722ce93c514562abd3e60d687484",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": ">=3.6",
"size": 662320,
"upload_time": "2024-08-17T08:15:41",
"upload_time_iso_8601": "2024-08-17T08:15:41.147664Z",
"url": "https://files.pythonhosted.org/packages/25/3a/0b30d104e754c0787705991eb4144758ae27b238360610423d677d41a351/jq-1.8.0-cp36-cp36m-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3dc145cf4ef64cc37ba05eaa987349333dd2c65f0450879fec2ab71ebf414c9b",
"md5": "ca00286030040dcbb0767ba10ca27ebf",
"sha256": "d302a987dabf2fbf7297bf32b1ed16e1232e85734d412c94abfa95bf7e4bf689"
},
"downloads": -1,
"filename": "jq-1.8.0-cp36-cp36m-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "ca00286030040dcbb0767ba10ca27ebf",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": ">=3.6",
"size": 685831,
"upload_time": "2024-08-17T08:15:43",
"upload_time_iso_8601": "2024-08-17T08:15:43.660663Z",
"url": "https://files.pythonhosted.org/packages/3d/c1/45cf4ef64cc37ba05eaa987349333dd2c65f0450879fec2ab71ebf414c9b/jq-1.8.0-cp36-cp36m-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f812419337c35e160b0bee89ab7bea20c99aa06c8c55247cb7e72c31bf0df984",
"md5": "ee240647352be289229ddaa508c24ad5",
"sha256": "69ee5e888bb7e6549f51f1148e78ae31e584297f496a68e258af1baca81d8785"
},
"downloads": -1,
"filename": "jq-1.8.0-cp36-cp36m-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "ee240647352be289229ddaa508c24ad5",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": ">=3.6",
"size": 688280,
"upload_time": "2024-08-17T08:15:45",
"upload_time_iso_8601": "2024-08-17T08:15:45.563379Z",
"url": "https://files.pythonhosted.org/packages/f8/12/419337c35e160b0bee89ab7bea20c99aa06c8c55247cb7e72c31bf0df984/jq-1.8.0-cp36-cp36m-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "fa782216cd6d07d04cdcba2f85b45d9a771d4342501f45d238d18941f898e76e",
"md5": "a7842ab70cf959d51e114c159c30a394",
"sha256": "a2528b279717339d3ca87fd263f1f38a66f79dabd3882fc8d73d68dd06db4260"
},
"downloads": -1,
"filename": "jq-1.8.0-cp37-cp37m-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "a7842ab70cf959d51e114c159c30a394",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.6",
"size": 415212,
"upload_time": "2024-08-17T08:15:47",
"upload_time_iso_8601": "2024-08-17T08:15:47.616215Z",
"url": "https://files.pythonhosted.org/packages/fa/78/2216cd6d07d04cdcba2f85b45d9a771d4342501f45d238d18941f898e76e/jq-1.8.0-cp37-cp37m-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "07c42684c85a7181c957027156888e453e1388080d0be949b88ee4c1bce937af",
"md5": "30fb7089beb92ebc6b7591fa3c3215cf",
"sha256": "88a0450b9e4b55f5e7c8fce00d6db7f5826334193f599daa27b8c44d6d5a3fd0"
},
"downloads": -1,
"filename": "jq-1.8.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "30fb7089beb92ebc6b7591fa3c3215cf",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.6",
"size": 688094,
"upload_time": "2024-08-17T08:15:49",
"upload_time_iso_8601": "2024-08-17T08:15:49.798643Z",
"url": "https://files.pythonhosted.org/packages/07/c4/2684c85a7181c957027156888e453e1388080d0be949b88ee4c1bce937af/jq-1.8.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "45c6cd404e19ba2a4044eb96adbcf0e812c0023f3b59b320f9a658c925ab624d",
"md5": "dd008277d1ba6217178085b3e7730c53",
"sha256": "f7262695b12039bdf66677b189bf0eb01c0d5b9b5ba905f1509984a1dbbc6505"
},
"downloads": -1,
"filename": "jq-1.8.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "dd008277d1ba6217178085b3e7730c53",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.6",
"size": 705527,
"upload_time": "2024-08-17T08:15:51",
"upload_time_iso_8601": "2024-08-17T08:15:51.909876Z",
"url": "https://files.pythonhosted.org/packages/45/c6/cd404e19ba2a4044eb96adbcf0e812c0023f3b59b320f9a658c925ab624d/jq-1.8.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "929a45decfe3e92fec5e5f5f4221a0313110b5147749b8f2911a015f426144a1",
"md5": "b9400aadf7a0beed990a30f88524343c",
"sha256": "76d66b230ec285c5a211899d6f75bb7ac22fcf5c14f420df534d8d4544f9aa97"
},
"downloads": -1,
"filename": "jq-1.8.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "b9400aadf7a0beed990a30f88524343c",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.6",
"size": 698354,
"upload_time": "2024-08-17T08:15:54",
"upload_time_iso_8601": "2024-08-17T08:15:54.125410Z",
"url": "https://files.pythonhosted.org/packages/92/9a/45decfe3e92fec5e5f5f4221a0313110b5147749b8f2911a015f426144a1/jq-1.8.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": "ddf0b8b693c06a1abe8219a7de76086c7c40fee06549bdd5d080a37dd4f0d40b",
"md5": "2315a5ddb40cf6ad546b9d00eee86527",
"sha256": "c757f4a2a08e98826875176bbc872da4913f5d64f8d3e27f3cf05fcf64cf6b92"
},
"downloads": -1,
"filename": "jq-1.8.0-cp37-cp37m-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "2315a5ddb40cf6ad546b9d00eee86527",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.6",
"size": 681694,
"upload_time": "2024-08-17T08:15:56",
"upload_time_iso_8601": "2024-08-17T08:15:56.545869Z",
"url": "https://files.pythonhosted.org/packages/dd/f0/b8b693c06a1abe8219a7de76086c7c40fee06549bdd5d080a37dd4f0d40b/jq-1.8.0-cp37-cp37m-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "28d73e4f6ad7f8c768f3b29ab2db019e962676a57320db9f64b05c37f0de4e2a",
"md5": "d78e7df5492752ae41ea8a5247d6ae20",
"sha256": "88416952dc41192736e8884e1465e2121401a39e8d2fdaf4190d88d70102e4ad"
},
"downloads": -1,
"filename": "jq-1.8.0-cp37-cp37m-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "d78e7df5492752ae41ea8a5247d6ae20",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.6",
"size": 701846,
"upload_time": "2024-08-17T08:15:58",
"upload_time_iso_8601": "2024-08-17T08:15:58.695345Z",
"url": "https://files.pythonhosted.org/packages/28/d7/3e4f6ad7f8c768f3b29ab2db019e962676a57320db9f64b05c37f0de4e2a/jq-1.8.0-cp37-cp37m-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "550b4230091525149e9741f09cf82282794152b9ad44eaa83f3cefafe170ed62",
"md5": "4e31c8f2fdfbd903aeee60d80acb6c24",
"sha256": "c73ce1672863e84b506865da342cb014c3af795e7670d267d8d61d061d4b59f7"
},
"downloads": -1,
"filename": "jq-1.8.0-cp37-cp37m-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "4e31c8f2fdfbd903aeee60d80acb6c24",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.6",
"size": 705210,
"upload_time": "2024-08-17T08:16:00",
"upload_time_iso_8601": "2024-08-17T08:16:00.628111Z",
"url": "https://files.pythonhosted.org/packages/55/0b/4230091525149e9741f09cf82282794152b9ad44eaa83f3cefafe170ed62/jq-1.8.0-cp37-cp37m-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "57402963d93971d02df3003d5b88b08b5d873b0d9b0e14ba839bb052ba2e04de",
"md5": "55eee6089afab1451e7db4c8c5c4f1e8",
"sha256": "5af7413dd18e7a448364a78a31739e0687d5fa00751e6d6acbbb5dde06e105b4"
},
"downloads": -1,
"filename": "jq-1.8.0-cp37-cp37m-win32.whl",
"has_sig": false,
"md5_digest": "55eee6089afab1451e7db4c8c5c4f1e8",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.6",
"size": 404775,
"upload_time": "2024-08-17T08:16:03",
"upload_time_iso_8601": "2024-08-17T08:16:03.719280Z",
"url": "https://files.pythonhosted.org/packages/57/40/2963d93971d02df3003d5b88b08b5d873b0d9b0e14ba839bb052ba2e04de/jq-1.8.0-cp37-cp37m-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b7e317f990b0f3affbff2fe792b4b2cccec8ad351c3b25434796abd484f967a1",
"md5": "2c822066ce4b26004d2206c183a07602",
"sha256": "3d2186049890f9e08a90f351c4ac34ac449123f78e729994d501ceb02add9829"
},
"downloads": -1,
"filename": "jq-1.8.0-cp37-cp37m-win_amd64.whl",
"has_sig": false,
"md5_digest": "2c822066ce4b26004d2206c183a07602",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.6",
"size": 414566,
"upload_time": "2024-08-17T08:16:06",
"upload_time_iso_8601": "2024-08-17T08:16:06.484420Z",
"url": "https://files.pythonhosted.org/packages/b7/e3/17f990b0f3affbff2fe792b4b2cccec8ad351c3b25434796abd484f967a1/jq-1.8.0-cp37-cp37m-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f16a3d3c4888c20e73113c652c4a053045e85b1fb49171dcd0eaabbf812605b1",
"md5": "7c00c2b178601f5edc12cdbb8237c7f3",
"sha256": "d24b8aa12ad7f465262ab0aeb0a7fa43df814ad3e50253ce454af40769da69d8"
},
"downloads": -1,
"filename": "jq-1.8.0-cp38-cp38-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "7c00c2b178601f5edc12cdbb8237c7f3",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.6",
"size": 416357,
"upload_time": "2024-08-17T08:16:09",
"upload_time_iso_8601": "2024-08-17T08:16:09.312732Z",
"url": "https://files.pythonhosted.org/packages/f1/6a/3d3c4888c20e73113c652c4a053045e85b1fb49171dcd0eaabbf812605b1/jq-1.8.0-cp38-cp38-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b1e20eb0bc1e342ff9b817e99793059301542ef4544dca19bbfc09e1f73accbf",
"md5": "46f78ad0ed38114140b93c81cb4e98e1",
"sha256": "9d055dc15f76c8d7f5c917d2bc4540582e21f1783f12149758751e4b760888d7"
},
"downloads": -1,
"filename": "jq-1.8.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "46f78ad0ed38114140b93c81cb4e98e1",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.6",
"size": 726309,
"upload_time": "2024-08-17T08:16:12",
"upload_time_iso_8601": "2024-08-17T08:16:12.198551Z",
"url": "https://files.pythonhosted.org/packages/b1/e2/0eb0bc1e342ff9b817e99793059301542ef4544dca19bbfc09e1f73accbf/jq-1.8.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "298f76efdb8c3512668ff70574929faae3dd61071d95181c4b2198201228b542",
"md5": "b456945d4eb9570e0dd25dc98453d3f5",
"sha256": "58e092e54e1b543352b1dfd0fbfac233c46b999b2dfdba2b604536ad777566ae"
},
"downloads": -1,
"filename": "jq-1.8.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "b456945d4eb9570e0dd25dc98453d3f5",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.6",
"size": 744169,
"upload_time": "2024-08-17T08:16:14",
"upload_time_iso_8601": "2024-08-17T08:16:14.681136Z",
"url": "https://files.pythonhosted.org/packages/29/8f/76efdb8c3512668ff70574929faae3dd61071d95181c4b2198201228b542/jq-1.8.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "60508f1003c2eecf68c12a7cb2bd1e4b7347944415afa007b0411772d8f248fe",
"md5": "1462c39ecea4509709b8207649dc2eb0",
"sha256": "415f8112a6f80a459d885e500f69ee510ca319fcc12e679ce5bf02c900f09118"
},
"downloads": -1,
"filename": "jq-1.8.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "1462c39ecea4509709b8207649dc2eb0",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.6",
"size": 735791,
"upload_time": "2024-08-17T08:16:16",
"upload_time_iso_8601": "2024-08-17T08:16:16.744176Z",
"url": "https://files.pythonhosted.org/packages/60/50/8f1003c2eecf68c12a7cb2bd1e4b7347944415afa007b0411772d8f248fe/jq-1.8.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": "410eaf36c4e47597015c9f5001490ca3f4557297b79ca43c24843bd993434922",
"md5": "07c4c95acd30e5ceff3fd9ad72ce7ed4",
"sha256": "1ddb23e26d7606040ee4ec8b3845dc34eb56d4a905f9d0dcad398e269786135d"
},
"downloads": -1,
"filename": "jq-1.8.0-cp38-cp38-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "07c4c95acd30e5ceff3fd9ad72ce7ed4",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.6",
"size": 707749,
"upload_time": "2024-08-17T08:16:18",
"upload_time_iso_8601": "2024-08-17T08:16:18.908037Z",
"url": "https://files.pythonhosted.org/packages/41/0e/af36c4e47597015c9f5001490ca3f4557297b79ca43c24843bd993434922/jq-1.8.0-cp38-cp38-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c2eab36d631c81d2d7a801c66bee96ee2430b2631e0916ddd8087f23a604efda",
"md5": "62598c1843f473b840ff56de6335af6a",
"sha256": "12a78b891113193de32fcfd822f82e2065beeb5479c8b39dc5312c35cac77a6e"
},
"downloads": -1,
"filename": "jq-1.8.0-cp38-cp38-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "62598c1843f473b840ff56de6335af6a",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.6",
"size": 734539,
"upload_time": "2024-08-17T08:16:21",
"upload_time_iso_8601": "2024-08-17T08:16:21.004769Z",
"url": "https://files.pythonhosted.org/packages/c2/ea/b36d631c81d2d7a801c66bee96ee2430b2631e0916ddd8087f23a604efda/jq-1.8.0-cp38-cp38-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3c2ead513032757d025471ecb0893f9044f9b08a72ebcf1b3ed5b607b4537c15",
"md5": "af0335a974e659147ca28369f2d741da",
"sha256": "c226c2b15c51efd0cbdd0470a2711dad3ead6a079052fbd4405e08f5e009449c"
},
"downloads": -1,
"filename": "jq-1.8.0-cp38-cp38-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "af0335a974e659147ca28369f2d741da",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.6",
"size": 734447,
"upload_time": "2024-08-17T08:16:23",
"upload_time_iso_8601": "2024-08-17T08:16:23.678455Z",
"url": "https://files.pythonhosted.org/packages/3c/2e/ad513032757d025471ecb0893f9044f9b08a72ebcf1b3ed5b607b4537c15/jq-1.8.0-cp38-cp38-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "745e318cd3414ec970e9d962d3ac2d5288285f364419f161c4073fa2f2a85f80",
"md5": "d00afc4bbb9e2603c9ed5fe6307dd833",
"sha256": "9fc84851be38bac073ab4a8dcd9966edef3f2a5bc69f6f85f7c5c1baf5d9bf6a"
},
"downloads": -1,
"filename": "jq-1.8.0-cp38-cp38-win32.whl",
"has_sig": false,
"md5_digest": "d00afc4bbb9e2603c9ed5fe6307dd833",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.6",
"size": 408306,
"upload_time": "2024-08-17T08:16:25",
"upload_time_iso_8601": "2024-08-17T08:16:25.745465Z",
"url": "https://files.pythonhosted.org/packages/74/5e/318cd3414ec970e9d962d3ac2d5288285f364419f161c4073fa2f2a85f80/jq-1.8.0-cp38-cp38-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0cc93392184a19c32b92081d082899543d3b7089b65e962cf08e512bf96d5fff",
"md5": "14aa7819299f983dec1a3769ee3de1ef",
"sha256": "4d86a99a72cef84ccd94905b1c10d8d4b9542e05cc94d2ae713a0f10ea1b52f6"
},
"downloads": -1,
"filename": "jq-1.8.0-cp38-cp38-win_amd64.whl",
"has_sig": false,
"md5_digest": "14aa7819299f983dec1a3769ee3de1ef",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.6",
"size": 420040,
"upload_time": "2024-08-17T08:16:28",
"upload_time_iso_8601": "2024-08-17T08:16:28.034481Z",
"url": "https://files.pythonhosted.org/packages/0c/c9/3392184a19c32b92081d082899543d3b7089b65e962cf08e512bf96d5fff/jq-1.8.0-cp38-cp38-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "881c0d12deba1b541ff66ae721066a6862b921cbb6dd0460d749c35ab2f8772f",
"md5": "a216f945b3611764601065742d9b65af",
"sha256": "1db31a68bf563a67579cc3c634f1676884ad29c9a43ce5d3858e989deafdc215"
},
"downloads": -1,
"filename": "jq-1.8.0-cp39-cp39-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "a216f945b3611764601065742d9b65af",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.6",
"size": 416726,
"upload_time": "2024-08-17T08:16:30",
"upload_time_iso_8601": "2024-08-17T08:16:30.353966Z",
"url": "https://files.pythonhosted.org/packages/88/1c/0d12deba1b541ff66ae721066a6862b921cbb6dd0460d749c35ab2f8772f/jq-1.8.0-cp39-cp39-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "980c2f25f858ee425cfdc9bcc9ec2ec771280d7f807caa81520d106e69f7b7a5",
"md5": "f65594165bc658e4d036cbea79589db8",
"sha256": "e3297cc2d2dfc9e7c92e119ba91ef30c7493b59d3528b9486b0c4dd819ff8d28"
},
"downloads": -1,
"filename": "jq-1.8.0-cp39-cp39-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "f65594165bc658e4d036cbea79589db8",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.6",
"size": 422279,
"upload_time": "2024-08-17T08:16:32",
"upload_time_iso_8601": "2024-08-17T08:16:32.311078Z",
"url": "https://files.pythonhosted.org/packages/98/0c/2f25f858ee425cfdc9bcc9ec2ec771280d7f807caa81520d106e69f7b7a5/jq-1.8.0-cp39-cp39-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "eb948e7760fa384dc9d35a929199a5f43cbc040c4037b9018e0064a34c4fbc10",
"md5": "bd660119906714903641940bb4338b5d",
"sha256": "361c5089b912e558932202e4b10a8dd3d986ae8eb08ff39d5d419eb30db1df08"
},
"downloads": -1,
"filename": "jq-1.8.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "bd660119906714903641940bb4338b5d",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.6",
"size": 719634,
"upload_time": "2024-08-17T08:16:36",
"upload_time_iso_8601": "2024-08-17T08:16:36.352265Z",
"url": "https://files.pythonhosted.org/packages/eb/94/8e7760fa384dc9d35a929199a5f43cbc040c4037b9018e0064a34c4fbc10/jq-1.8.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f2b847a22d6bbb21f6edd683e7146a33d88da677afa0e3e6b7c2a118a75ce386",
"md5": "b94d17adf57350fadc0082a72d12dd6e",
"sha256": "39b409e27cebc7d0323d966309ced5b46496a348475443f8ef38906f45bff7ff"
},
"downloads": -1,
"filename": "jq-1.8.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "b94d17adf57350fadc0082a72d12dd6e",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.6",
"size": 738129,
"upload_time": "2024-08-17T08:16:39",
"upload_time_iso_8601": "2024-08-17T08:16:39.878984Z",
"url": "https://files.pythonhosted.org/packages/f2/b8/47a22d6bbb21f6edd683e7146a33d88da677afa0e3e6b7c2a118a75ce386/jq-1.8.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5f1e5f77ca1059fd391e3b6a16a20c03f27015ba8f44c6101245ee557998dd82",
"md5": "147fc54a9704953e590351dbf3fa45be",
"sha256": "d9719abb172d40c01e4f42214db8b05cac4118ad6c6265f8b57ef14b86eedeaf"
},
"downloads": -1,
"filename": "jq-1.8.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "147fc54a9704953e590351dbf3fa45be",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.6",
"size": 728892,
"upload_time": "2024-08-17T08:16:42",
"upload_time_iso_8601": "2024-08-17T08:16:42.728819Z",
"url": "https://files.pythonhosted.org/packages/5f/1e/5f77ca1059fd391e3b6a16a20c03f27015ba8f44c6101245ee557998dd82/jq-1.8.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": "e00cf49d9db80ab3a9e920c5fbe1ee8a350b1f1e65e24736b929873c7a9ca6fa",
"md5": "76d7c635b0b1dd741bc4acf3ba0c21ad",
"sha256": "2f59a71c51417e9fe10cad76be2557635da1febcef925ab948b66471b8d72232"
},
"downloads": -1,
"filename": "jq-1.8.0-cp39-cp39-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "76d7c635b0b1dd741bc4acf3ba0c21ad",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.6",
"size": 698712,
"upload_time": "2024-08-17T08:16:45",
"upload_time_iso_8601": "2024-08-17T08:16:45.115017Z",
"url": "https://files.pythonhosted.org/packages/e0/0c/f49d9db80ab3a9e920c5fbe1ee8a350b1f1e65e24736b929873c7a9ca6fa/jq-1.8.0-cp39-cp39-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d087d2808ed2a2e25a2418aefeb70e680ec42c3c519d1f89f62770281d9ca62c",
"md5": "88eec9d9b4726a4836de17c231eee6f3",
"sha256": "0627d3dd67e73a754d9950f57d964a711658b1258ddd135cf8c1e845c5efb49e"
},
"downloads": -1,
"filename": "jq-1.8.0-cp39-cp39-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "88eec9d9b4726a4836de17c231eee6f3",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.6",
"size": 723802,
"upload_time": "2024-08-17T08:16:47",
"upload_time_iso_8601": "2024-08-17T08:16:47.328365Z",
"url": "https://files.pythonhosted.org/packages/d0/87/d2808ed2a2e25a2418aefeb70e680ec42c3c519d1f89f62770281d9ca62c/jq-1.8.0-cp39-cp39-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d8c9543fb8bdf3cc2b128bd34dc26abec492664ef96d2497cf7a3e6a1f5aab66",
"md5": "49eb843cd6548d342336a68ec514ee05",
"sha256": "cb90b618855e89c95396ab6aab09a1334df81fa4fbd1c0e939cab34a4993465f"
},
"downloads": -1,
"filename": "jq-1.8.0-cp39-cp39-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "49eb843cd6548d342336a68ec514ee05",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.6",
"size": 726099,
"upload_time": "2024-08-17T08:16:49",
"upload_time_iso_8601": "2024-08-17T08:16:49.387239Z",
"url": "https://files.pythonhosted.org/packages/d8/c9/543fb8bdf3cc2b128bd34dc26abec492664ef96d2497cf7a3e6a1f5aab66/jq-1.8.0-cp39-cp39-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "aae0613b9639885936cb7143e0e3d532795ad8e8559ac8eed3de883d7c0c090e",
"md5": "fb753649617dee7e01c53a6f6e8fbe66",
"sha256": "0aca31819d07377f9036ebdeb57c1ccb73e10c502badb5c8601572ccb4fa96e2"
},
"downloads": -1,
"filename": "jq-1.8.0-cp39-cp39-win32.whl",
"has_sig": false,
"md5_digest": "fb753649617dee7e01c53a6f6e8fbe66",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.6",
"size": 407369,
"upload_time": "2024-08-17T08:16:51",
"upload_time_iso_8601": "2024-08-17T08:16:51.244969Z",
"url": "https://files.pythonhosted.org/packages/aa/e0/613b9639885936cb7143e0e3d532795ad8e8559ac8eed3de883d7c0c090e/jq-1.8.0-cp39-cp39-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5fda6e8a21cacca38e3465fb54f4f85cd065dae75c4ca5eea68c3b33d26c5e07",
"md5": "bd2eaf2d37b017c8d44f1196bcdb54a2",
"sha256": "c30249ae524ac54ef73dabda6f2b5be077debb7847050e18f91d915f6b6f0208"
},
"downloads": -1,
"filename": "jq-1.8.0-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "bd2eaf2d37b017c8d44f1196bcdb54a2",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.6",
"size": 417717,
"upload_time": "2024-08-17T08:16:54",
"upload_time_iso_8601": "2024-08-17T08:16:54.167290Z",
"url": "https://files.pythonhosted.org/packages/5f/da/6e8a21cacca38e3465fb54f4f85cd065dae75c4ca5eea68c3b33d26c5e07/jq-1.8.0-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "103ad8350a87cf73e66d7252020c31e50e0a5fedc00b343676e0ec1075399312",
"md5": "8f4ea60bec88e57efe70c827b1de54ad",
"sha256": "e14aa012606470d1a21fdc39835b8eef395f7ea143c720940a48156de94752e9"
},
"downloads": -1,
"filename": "jq-1.8.0-pp310-pypy310_pp73-macosx_10_13_x86_64.whl",
"has_sig": false,
"md5_digest": "8f4ea60bec88e57efe70c827b1de54ad",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.6",
"size": 401438,
"upload_time": "2024-08-17T08:16:56",
"upload_time_iso_8601": "2024-08-17T08:16:56.721832Z",
"url": "https://files.pythonhosted.org/packages/10/3a/d8350a87cf73e66d7252020c31e50e0a5fedc00b343676e0ec1075399312/jq-1.8.0-pp310-pypy310_pp73-macosx_10_13_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "953f9f840980d6390b7eacb2a1d3e17c1edf9b0757571c93f801c48f5f494c58",
"md5": "c21407062b86dcf8aeb5e5181cd7ddf4",
"sha256": "353db01bbb964eff9e39c8966e7c123cbdad1ff59cc3bee773a7a2034e2b843b"
},
"downloads": -1,
"filename": "jq-1.8.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "c21407062b86dcf8aeb5e5181cd7ddf4",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.6",
"size": 410079,
"upload_time": "2024-08-17T08:16:59",
"upload_time_iso_8601": "2024-08-17T08:16:59.248336Z",
"url": "https://files.pythonhosted.org/packages/95/3f/9f840980d6390b7eacb2a1d3e17c1edf9b0757571c93f801c48f5f494c58/jq-1.8.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9f2e70c61f02fc6307bcb2e079c8aa950eba9caf654c52473955d541261cf091",
"md5": "bc320b3409c0abece61016c93f3a8979",
"sha256": "325480cba94f504b282f42912a16b32d94dd1e6347cf3a367ec3c97fe1dd1b3a"
},
"downloads": -1,
"filename": "jq-1.8.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "bc320b3409c0abece61016c93f3a8979",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.6",
"size": 409938,
"upload_time": "2024-08-17T08:17:01",
"upload_time_iso_8601": "2024-08-17T08:17:01.476338Z",
"url": "https://files.pythonhosted.org/packages/9f/2e/70c61f02fc6307bcb2e079c8aa950eba9caf654c52473955d541261cf091/jq-1.8.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ae7504cb177d21afdbe5e31e2e2e1ae9ef6df651dd5668187090121ca179d147",
"md5": "6f5bca66fa1868301fa4fbb078adc823",
"sha256": "b4a79e94c83ebde789ff54e609f19b1923b2f57b2bd17ccb4953713577d4c3dc"
},
"downloads": -1,
"filename": "jq-1.8.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "6f5bca66fa1868301fa4fbb078adc823",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.6",
"size": 424088,
"upload_time": "2024-08-17T08:17:03",
"upload_time_iso_8601": "2024-08-17T08:17:03.846815Z",
"url": "https://files.pythonhosted.org/packages/ae/75/04cb177d21afdbe5e31e2e2e1ae9ef6df651dd5668187090121ca179d147/jq-1.8.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1fb607b8ca4cd626eca4491c9f055f406d9a45375d7fcb75a877cb25bc88f023",
"md5": "85c6066988119ac1dd73dea45d2fa903",
"sha256": "dc7ebcc1037c8a82db30aff9177f17379bcc91734def09548e939326717fd82d"
},
"downloads": -1,
"filename": "jq-1.8.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "85c6066988119ac1dd73dea45d2fa903",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.6",
"size": 435591,
"upload_time": "2024-08-17T08:17:06",
"upload_time_iso_8601": "2024-08-17T08:17:06.220199Z",
"url": "https://files.pythonhosted.org/packages/1f/b6/07b8ca4cd626eca4491c9f055f406d9a45375d7fcb75a877cb25bc88f023/jq-1.8.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": "82892966e7120699e37eb03a70b53ff44da5a2ac023195f44803657a3f5e009c",
"md5": "ec0f4a2d66864eefcc9e65df90dfdf24",
"sha256": "8776c33c0b69ae8de50cde9a338ef69cc0db4122ff6763a18c5532d6a5eb86f4"
},
"downloads": -1,
"filename": "jq-1.8.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "ec0f4a2d66864eefcc9e65df90dfdf24",
"packagetype": "bdist_wheel",
"python_version": "pp37",
"requires_python": ">=3.6",
"size": 401562,
"upload_time": "2024-08-17T08:17:08",
"upload_time_iso_8601": "2024-08-17T08:17:08.808749Z",
"url": "https://files.pythonhosted.org/packages/82/89/2966e7120699e37eb03a70b53ff44da5a2ac023195f44803657a3f5e009c/jq-1.8.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5f60876fe542e3a3df57764aa6df9ba7782f6728d9f55cfc84ce0274d654ccc3",
"md5": "53899fb5d5748594ce330b3ead503500",
"sha256": "8ef1d313fec8820648879e7c167a3162ebbd711a5429a07427ac3f9c48ab8415"
},
"downloads": -1,
"filename": "jq-1.8.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "53899fb5d5748594ce330b3ead503500",
"packagetype": "bdist_wheel",
"python_version": "pp37",
"requires_python": ">=3.6",
"size": 414387,
"upload_time": "2024-08-17T08:17:11",
"upload_time_iso_8601": "2024-08-17T08:17:11.036278Z",
"url": "https://files.pythonhosted.org/packages/5f/60/876fe542e3a3df57764aa6df9ba7782f6728d9f55cfc84ce0274d654ccc3/jq-1.8.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e4d36d3804747d7f1416a2d0a1b1b97a3516c0b8c738dbff92346b015777f9f9",
"md5": "6b893ea13d5f3adbb028626493940918",
"sha256": "21a0a58482e8e6be03d7b280365d40c3c4c1cf36d3ba58f98b1e351c42d6483d"
},
"downloads": -1,
"filename": "jq-1.8.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "6b893ea13d5f3adbb028626493940918",
"packagetype": "bdist_wheel",
"python_version": "pp37",
"requires_python": ">=3.6",
"size": 430164,
"upload_time": "2024-08-17T08:17:12",
"upload_time_iso_8601": "2024-08-17T08:17:12.776470Z",
"url": "https://files.pythonhosted.org/packages/e4/d3/6d3804747d7f1416a2d0a1b1b97a3516c0b8c738dbff92346b015777f9f9/jq-1.8.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4cf5ac7e64f913d3820f6992a3bb25281da3365eee094cbf7d85d42f2b4294d1",
"md5": "42bd2aa7c8ea7f89b7a19b19d206b488",
"sha256": "04b2f964c5ad6ac3013b052099bfc0cf8bd2cf80cedca670153687681c013641"
},
"downloads": -1,
"filename": "jq-1.8.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "42bd2aa7c8ea7f89b7a19b19d206b488",
"packagetype": "bdist_wheel",
"python_version": "pp37",
"requires_python": ">=3.6",
"size": 439945,
"upload_time": "2024-08-17T08:17:14",
"upload_time_iso_8601": "2024-08-17T08:17:14.489412Z",
"url": "https://files.pythonhosted.org/packages/4c/f5/ac7e64f913d3820f6992a3bb25281da3365eee094cbf7d85d42f2b4294d1/jq-1.8.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": "1879a3a832445d988e53121e91d4f86e999042bfb3fd72b2028b65b109d5eb3f",
"md5": "94d46e32613d53d120198c3c52269e34",
"sha256": "b8004ba63facc31eecd09e86e02cf5e1a5cf491cf8856f30d70c3fa96b8c74f9"
},
"downloads": -1,
"filename": "jq-1.8.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "94d46e32613d53d120198c3c52269e34",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": ">=3.6",
"size": 401577,
"upload_time": "2024-08-17T08:17:16",
"upload_time_iso_8601": "2024-08-17T08:17:16.485327Z",
"url": "https://files.pythonhosted.org/packages/18/79/a3a832445d988e53121e91d4f86e999042bfb3fd72b2028b65b109d5eb3f/jq-1.8.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "cca03a758e50e9c2c1690f4f4991ef175de7e031552351ebd00929219f24c99d",
"md5": "70d387d372faf2e85362f53d5b55c004",
"sha256": "01cc78dbf56e75debc9d46ba85ef61ac37472e8d629d01dbea79d4c09ef6dd51"
},
"downloads": -1,
"filename": "jq-1.8.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "70d387d372faf2e85362f53d5b55c004",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": ">=3.6",
"size": 409685,
"upload_time": "2024-08-17T08:17:19",
"upload_time_iso_8601": "2024-08-17T08:17:19.613511Z",
"url": "https://files.pythonhosted.org/packages/cc/a0/3a758e50e9c2c1690f4f4991ef175de7e031552351ebd00929219f24c99d/jq-1.8.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b2ee4e66b4dc0d81810b1b2e938e371469500ee8e00ea79ccd90a04329f32619",
"md5": "ade3dcdaf6f06c2f9b44952ad30c6de3",
"sha256": "c049335a00f502b213376f67f651adc86cbe636468107190d08a4b1f77754fb5"
},
"downloads": -1,
"filename": "jq-1.8.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "ade3dcdaf6f06c2f9b44952ad30c6de3",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": ">=3.6",
"size": 411097,
"upload_time": "2024-08-17T08:17:22",
"upload_time_iso_8601": "2024-08-17T08:17:22.240082Z",
"url": "https://files.pythonhosted.org/packages/b2/ee/4e66b4dc0d81810b1b2e938e371469500ee8e00ea79ccd90a04329f32619/jq-1.8.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f696e14ef52e67eed82c501fabf9554e3f57ddcf3b1d59a9b5fdb98c48f31aa1",
"md5": "8f378f82ce05b22e225dcde3e1e37b31",
"sha256": "e433560001d59cfa3551f276d7b6c6943fa6b6e05019b2071ccb41c9b2dc0c3c"
},
"downloads": -1,
"filename": "jq-1.8.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "8f378f82ce05b22e225dcde3e1e37b31",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": ">=3.6",
"size": 425178,
"upload_time": "2024-08-17T08:17:24",
"upload_time_iso_8601": "2024-08-17T08:17:24.677139Z",
"url": "https://files.pythonhosted.org/packages/f6/96/e14ef52e67eed82c501fabf9554e3f57ddcf3b1d59a9b5fdb98c48f31aa1/jq-1.8.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4c8450a087b872ead92e162c16406982e57b1034ad55ab18c4744144ebd89505",
"md5": "975359460e26034d1d95cd3efea6b4a1",
"sha256": "dafdae5ccc2e75df69b32518805c8d9d7aa97d0388cd6dc89b83d7bd516ea2eb"
},
"downloads": -1,
"filename": "jq-1.8.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "975359460e26034d1d95cd3efea6b4a1",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": ">=3.6",
"size": 436517,
"upload_time": "2024-08-17T08:17:27",
"upload_time_iso_8601": "2024-08-17T08:17:27.087003Z",
"url": "https://files.pythonhosted.org/packages/4c/84/50a087b872ead92e162c16406982e57b1034ad55ab18c4744144ebd89505/jq-1.8.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": "8afa708d49ffd06c06c7b0b0e43d09d0126047851f3cc08b4348b21338c2ecb9",
"md5": "c767ac5c9dcb8f00b56a2262776969d0",
"sha256": "4b32381ebdf1b5870e32a90737aa7d91824eaf5c78586973845de80802eb035a"
},
"downloads": -1,
"filename": "jq-1.8.0-pp39-pypy39_pp73-macosx_10_13_x86_64.whl",
"has_sig": false,
"md5_digest": "c767ac5c9dcb8f00b56a2262776969d0",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.6",
"size": 401177,
"upload_time": "2024-08-17T08:17:29",
"upload_time_iso_8601": "2024-08-17T08:17:29.428257Z",
"url": "https://files.pythonhosted.org/packages/8a/fa/708d49ffd06c06c7b0b0e43d09d0126047851f3cc08b4348b21338c2ecb9/jq-1.8.0-pp39-pypy39_pp73-macosx_10_13_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c3d248d2355903106480569fe2dcab40f7ca48c2ae7edad19db260de3d305be3",
"md5": "c0d6efa02fc314f6cb0f432f291c5655",
"sha256": "c3c2ba32ea87d6f15a1e83af71d5af12c82814dac21809a3995fb8e5763968ff"
},
"downloads": -1,
"filename": "jq-1.8.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "c0d6efa02fc314f6cb0f432f291c5655",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.6",
"size": 409931,
"upload_time": "2024-08-17T08:17:31",
"upload_time_iso_8601": "2024-08-17T08:17:31.910703Z",
"url": "https://files.pythonhosted.org/packages/c3/d2/48d2355903106480569fe2dcab40f7ca48c2ae7edad19db260de3d305be3/jq-1.8.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ac289c0b9c1f33ad82a3fb84d67220599c47d14aeeb249457429f5afb55d3f99",
"md5": "621892dd85f6a63e1d916b8b63eefa22",
"sha256": "850540641b8e0ecebc8763ff660811bcf5834468fd2572ee3ef8d79dea67050d"
},
"downloads": -1,
"filename": "jq-1.8.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "621892dd85f6a63e1d916b8b63eefa22",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.6",
"size": 409760,
"upload_time": "2024-08-17T08:17:33",
"upload_time_iso_8601": "2024-08-17T08:17:33.780545Z",
"url": "https://files.pythonhosted.org/packages/ac/28/9c0b9c1f33ad82a3fb84d67220599c47d14aeeb249457429f5afb55d3f99/jq-1.8.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d0a9bc6b881c8896da87d275fbd280c435b93bd0c49e4b2bb9ef6cbfbff9e1d2",
"md5": "0c38a17df8c01d5a3d12e63f1717e1d9",
"sha256": "57e8bcdf2a744ee702542f3441fb2583db7f28602a6a2ff4a6d7009a11fafc86"
},
"downloads": -1,
"filename": "jq-1.8.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "0c38a17df8c01d5a3d12e63f1717e1d9",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.6",
"size": 424085,
"upload_time": "2024-08-17T08:17:35",
"upload_time_iso_8601": "2024-08-17T08:17:35.780879Z",
"url": "https://files.pythonhosted.org/packages/d0/a9/bc6b881c8896da87d275fbd280c435b93bd0c49e4b2bb9ef6cbfbff9e1d2/jq-1.8.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2a3299b24ec77f5ee3b1b51f900872529523890f97ffbb94299e26077c47734c",
"md5": "78cf0bd1d1bb879ef32ff2fe0a155ba5",
"sha256": "b6f61ea995c11dd1877f0452d12aad2b2a617b965e31033d2e62db4a530e87c0"
},
"downloads": -1,
"filename": "jq-1.8.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "78cf0bd1d1bb879ef32ff2fe0a155ba5",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.6",
"size": 435361,
"upload_time": "2024-08-17T08:17:37",
"upload_time_iso_8601": "2024-08-17T08:17:37.555863Z",
"url": "https://files.pythonhosted.org/packages/2a/32/99b24ec77f5ee3b1b51f900872529523890f97ffbb94299e26077c47734c/jq-1.8.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": "ba323eaca3ac81c804d6849da2e9f536ac200f4ad46a696890854c1f73b2f749",
"md5": "5d49eb91f9781dab5c3e80512e7cc523",
"sha256": "53141eebca4bf8b4f2da5e44271a8a3694220dfd22d2b4b2cfb4816b2b6c9057"
},
"downloads": -1,
"filename": "jq-1.8.0.tar.gz",
"has_sig": false,
"md5_digest": "5d49eb91f9781dab5c3e80512e7cc523",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.6",
"size": 2058265,
"upload_time": "2024-08-17T08:13:36",
"upload_time_iso_8601": "2024-08-17T08:13:36.301465Z",
"url": "https://files.pythonhosted.org/packages/ba/32/3eaca3ac81c804d6849da2e9f536ac200f4ad46a696890854c1f73b2f749/jq-1.8.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-08-17 08:13:36",
"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"
}