Skip to main content

jq is a lightweight and flexible JSON processor.

Project description

This project contains Python bindings for jq 1.8.2.

Installation

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

pip install jq

If a wheel is not available, the source for jq 1.8.2 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:

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:

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 and Homebrew. Once Homebrew is installed, you can install the remaining dependencies with:

brew install autoconf automake libtool

Usage

Using jq requires three steps:

  1. Call jq.compile() to compile a jq program.

  2. Call an input method on the compiled program to supply the input.

  3. Call an output method on the result to retrieve the output.

For instance:

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:

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:

import jq

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

Call .input_text() to supply unparsed JSON text:

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:

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:

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.

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:

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:

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

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

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:

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:

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:

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:

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

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

jq-1.12.0.tar.gz (2.0 MB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

jq-1.12.0-pp311-pypy311_pp73-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl (427.6 kB view details)

Uploaded PyPymanylinux: glibc 2.26+ x86-64manylinux: glibc 2.28+ x86-64

jq-1.12.0-pp311-pypy311_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (413.5 kB view details)

Uploaded PyPymanylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

jq-1.12.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl (413.2 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

jq-1.12.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl (403.7 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

jq-1.12.0-cp314-cp314t-win_amd64.whl (432.1 kB view details)

Uploaded CPython 3.14tWindows x86-64

jq-1.12.0-cp314-cp314t-musllinux_1_2_x86_64.whl (767.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

jq-1.12.0-cp314-cp314t-musllinux_1_2_aarch64.whl (759.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

jq-1.12.0-cp314-cp314t-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl (776.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.26+ x86-64manylinux: glibc 2.28+ x86-64

jq-1.12.0-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (780.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

jq-1.12.0-cp314-cp314t-macosx_11_0_arm64.whl (431.5 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

jq-1.12.0-cp314-cp314t-macosx_10_15_x86_64.whl (419.6 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

jq-1.12.0-cp314-cp314-win_amd64.whl (431.2 kB view details)

Uploaded CPython 3.14Windows x86-64

jq-1.12.0-cp314-cp314-musllinux_1_2_x86_64.whl (756.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

jq-1.12.0-cp314-cp314-musllinux_1_2_aarch64.whl (737.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

jq-1.12.0-cp314-cp314-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl (762.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.26+ x86-64manylinux: glibc 2.28+ x86-64

jq-1.12.0-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (748.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

jq-1.12.0-cp314-cp314-macosx_11_0_arm64.whl (425.2 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

jq-1.12.0-cp314-cp314-macosx_10_15_x86_64.whl (416.1 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

jq-1.12.0-cp313-cp313-win_amd64.whl (412.6 kB view details)

Uploaded CPython 3.13Windows x86-64

jq-1.12.0-cp313-cp313-musllinux_1_2_x86_64.whl (764.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

jq-1.12.0-cp313-cp313-musllinux_1_2_aarch64.whl (739.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

jq-1.12.0-cp313-cp313-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl (770.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.26+ x86-64manylinux: glibc 2.28+ x86-64

jq-1.12.0-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (750.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

jq-1.12.0-cp313-cp313-macosx_11_0_arm64.whl (424.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

jq-1.12.0-cp313-cp313-macosx_10_13_x86_64.whl (415.9 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

jq-1.12.0-cp312-cp312-win_amd64.whl (412.1 kB view details)

Uploaded CPython 3.12Windows x86-64

jq-1.12.0-cp312-cp312-musllinux_1_2_x86_64.whl (770.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

jq-1.12.0-cp312-cp312-musllinux_1_2_aarch64.whl (744.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

jq-1.12.0-cp312-cp312-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl (776.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.26+ x86-64manylinux: glibc 2.28+ x86-64

jq-1.12.0-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (757.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

jq-1.12.0-cp312-cp312-macosx_11_0_arm64.whl (424.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

jq-1.12.0-cp312-cp312-macosx_10_13_x86_64.whl (416.3 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

jq-1.12.0-cp311-cp311-win_amd64.whl (409.6 kB view details)

Uploaded CPython 3.11Windows x86-64

jq-1.12.0-cp311-cp311-musllinux_1_2_x86_64.whl (775.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

jq-1.12.0-cp311-cp311-musllinux_1_2_aarch64.whl (754.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

jq-1.12.0-cp311-cp311-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl (774.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.26+ x86-64manylinux: glibc 2.28+ x86-64

jq-1.12.0-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (764.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

jq-1.12.0-cp311-cp311-macosx_11_0_arm64.whl (424.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

jq-1.12.0-cp311-cp311-macosx_10_9_x86_64.whl (416.6 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

jq-1.12.0-cp310-cp310-win_amd64.whl (410.4 kB view details)

Uploaded CPython 3.10Windows x86-64

jq-1.12.0-cp310-cp310-musllinux_1_2_x86_64.whl (758.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

jq-1.12.0-cp310-cp310-musllinux_1_2_aarch64.whl (741.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

jq-1.12.0-cp310-cp310-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl (759.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.26+ x86-64manylinux: glibc 2.28+ x86-64

jq-1.12.0-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (747.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

jq-1.12.0-cp310-cp310-macosx_11_0_arm64.whl (425.1 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

jq-1.12.0-cp310-cp310-macosx_10_9_x86_64.whl (417.1 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

jq-1.12.0-cp39-cp39-win_amd64.whl (410.8 kB view details)

Uploaded CPython 3.9Windows x86-64

jq-1.12.0-cp39-cp39-musllinux_1_2_x86_64.whl (758.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

jq-1.12.0-cp39-cp39-musllinux_1_2_aarch64.whl (741.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

jq-1.12.0-cp39-cp39-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl (759.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.26+ x86-64manylinux: glibc 2.28+ x86-64

jq-1.12.0-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (747.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

jq-1.12.0-cp39-cp39-macosx_11_0_arm64.whl (425.7 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

jq-1.12.0-cp39-cp39-macosx_10_9_x86_64.whl (417.4 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

jq-1.12.0-cp38-cp38-win_amd64.whl (412.6 kB view details)

Uploaded CPython 3.8Windows x86-64

jq-1.12.0-cp38-cp38-musllinux_1_2_x86_64.whl (767.4 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

jq-1.12.0-cp38-cp38-musllinux_1_2_aarch64.whl (744.8 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

jq-1.12.0-cp38-cp38-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl (769.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.26+ x86-64manylinux: glibc 2.28+ x86-64

jq-1.12.0-cp38-cp38-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (757.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

jq-1.12.0-cp38-cp38-macosx_10_9_x86_64.whl (419.2 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

File details

Details for the file jq-1.12.0.tar.gz.

File metadata

  • Download URL: jq-1.12.0.tar.gz
  • Upload date:
  • Size: 2.0 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.5

File hashes

Hashes for jq-1.12.0.tar.gz
Algorithm Hash digest
SHA256 729b2d3418c8ca7dccfaa66b9fb7a98bec28474212650d27c5c04358ce26f55c
MD5 1f6eca94101cbcc3229e20d77e806008
BLAKE2b-256 95ec3da01457bbd3c6a2fc8fea6736c0b657ffc628e3decbfb1fafcf33dc7dbe

See more details on using hashes here.

File details

Details for the file jq-1.12.0-pp311-pypy311_pp73-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for jq-1.12.0-pp311-pypy311_pp73-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b405cbf325c21dbefaff0c78168b2d44b66fc1f181bbfc2c37a77924b8575dec
MD5 a276ec7f9b372342a0def1b1764ea15f
BLAKE2b-256 6e3dd828666e3d7ae3d5fd9da084e082d9ad649713d1eb7eb2cccd8ccb227c41

See more details on using hashes here.

File details

Details for the file jq-1.12.0-pp311-pypy311_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for jq-1.12.0-pp311-pypy311_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 acb27df2548e32f01c2f82f481e32b51f9ef4ee2642690f7d2053fd653109f4d
MD5 feb41ea8b432c5f38050587d6a19e6fe
BLAKE2b-256 0896a89124aa73556d030a178e88312cf6025ba16524017072470068a2968087

See more details on using hashes here.

File details

Details for the file jq-1.12.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for jq-1.12.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2f358c74f849168798d9f56df0706a207e7228cc595cc94825ed27f55074ffd5
MD5 a1623e296413a4a5db8382f359e65e35
BLAKE2b-256 da83c00ce9e3b6f98bf3edd005cf41c48be72d3e43e048228f69d92f89f74ebf

See more details on using hashes here.

File details

Details for the file jq-1.12.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for jq-1.12.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 0d80685f3d8e139142ddd4439104e2fde5f10e5a3db00cd84393ed1fe64ad73a
MD5 fd7a29d6f3e631f2b62ab45241006c23
BLAKE2b-256 28c8187b95f98267dde8e05b424412f3967adb4d61d551091c3842f2e901d4ab

See more details on using hashes here.

File details

Details for the file jq-1.12.0-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: jq-1.12.0-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 432.1 kB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.5

File hashes

Hashes for jq-1.12.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 de7aa00e1328fc3838dcccb9633035a7ea5fc7f716215941c517fead55f94695
MD5 48cf88344fd4bf64f57cefd6ff06b07c
BLAKE2b-256 2e55925c4df48f6e1a06cebe64007b98dc0bbdca227f22100279b1031aa928ff

See more details on using hashes here.

File details

Details for the file jq-1.12.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for jq-1.12.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7cf775589ad923609c3833668880712da44bf01d06508622aef6c47b67c05f98
MD5 161508d20adcb262d6a5bddd3b066f11
BLAKE2b-256 f09531ace4332bd17ee6a96f0b8323d7a24dd2164d1663049b78f8d2465e7281

See more details on using hashes here.

File details

Details for the file jq-1.12.0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for jq-1.12.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1dff708ccf14b425b733bf2b94398d95d2c697ace7678cf4e332fafb78e037f8
MD5 c22432cb70a3e3847eb8f649528ca7cf
BLAKE2b-256 c3e4f645c4dc5042f0de7473665d510040d702c079e3a40f9227d04e478d9c16

See more details on using hashes here.

File details

Details for the file jq-1.12.0-cp314-cp314t-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for jq-1.12.0-cp314-cp314t-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 60077506b0e5a68a821dcc237564adbf65b3f50d146b166e844d4a150f069222
MD5 cfe166896ef35ed88b3f13c9ce9eddc1
BLAKE2b-256 243e9d46758527dd5d27098fd27bd50a040e40e0b2c19cce3fc4fa96ac8e75f5

See more details on using hashes here.

File details

Details for the file jq-1.12.0-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for jq-1.12.0-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 97eb829997e96d079190729df23e6763b86cdbf260c8ceb0b3e0828996a66731
MD5 44a0365a6ebd4609d9569a1406b757b3
BLAKE2b-256 f6db23369956e8521233482fb818146415e40b980b3b24cc50a04c507b712c26

See more details on using hashes here.

File details

Details for the file jq-1.12.0-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for jq-1.12.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 02112ca560f90c6b1ea31829bb7777fbc5b1f1d13f78b2c6ce5cefa8233cee7e
MD5 b571e28574d59cc684f627056a24697c
BLAKE2b-256 70cdab3be753214d40ba4ecea7039948bb800e16cf2d31bfdfe519ca8cc0d484

See more details on using hashes here.

File details

Details for the file jq-1.12.0-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for jq-1.12.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 840fcc9805a6ac1df7aa221fadb43e8702105e0c47dbb30e791d5a3aa731f810
MD5 7020bfc242b040fd8ed5341a0287bb17
BLAKE2b-256 5c2efb9f3c34fea83b0202b059e2704df10dc8198077d7491f709cfb11f97937

See more details on using hashes here.

File details

Details for the file jq-1.12.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: jq-1.12.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 431.2 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.5

File hashes

Hashes for jq-1.12.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 97ca6233eacc643927aa629c44d358bcf265a923637754196c37dc4e0268ba6b
MD5 45f8c9fadc12a93c0652fe29f7f326af
BLAKE2b-256 b612ed1384d55e80c01dd76d45b7fb2cd926753a75edf3156b223d7f356b214c

See more details on using hashes here.

File details

Details for the file jq-1.12.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: jq-1.12.0-cp314-cp314-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 756.5 kB
  • Tags: CPython 3.14, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.5

File hashes

Hashes for jq-1.12.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0acceed1ea0d4c445d2f0fdb5f1e4c41b9897e29e3044ef14eb0387445552e37
MD5 8aa4d42f19e2801b7ef517faebcf734f
BLAKE2b-256 e7b473b4b49491a6bbb12c6db83d951dfb9477f893df3785e11e65c625e474cf

See more details on using hashes here.

File details

Details for the file jq-1.12.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for jq-1.12.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4034a13ad245319ad13086e19f07a864b4d5b306efb3f9874c705b05d930541c
MD5 d7fa72cd06edef7746af4b57518d084a
BLAKE2b-256 7fcf9322be5fd98de3d506623153025cd67788eede0227ef64bff19f75d010ba

See more details on using hashes here.

File details

Details for the file jq-1.12.0-cp314-cp314-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for jq-1.12.0-cp314-cp314-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4ba6d3d2632fe2c53f55cefe6b20a766a844c79a51744ecf27df1876d8b8f3f0
MD5 91791e5550b493af64c7efa6f1d36345
BLAKE2b-256 2052c3303aa411292160e7892e6572b89bd3a20fe65d780d005f7c92ca4ce630

See more details on using hashes here.

File details

Details for the file jq-1.12.0-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for jq-1.12.0-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ca19b0a295d35f9c2cc9b626961c04ab8af32e6f66b65e8bb0d0bb94d935d809
MD5 5f854e9eb9c18f822359d8e5ad51c8dc
BLAKE2b-256 9cbca77610a09c99d6ade3e054425332727c120b0a9a933431b5cf541a35a0b2

See more details on using hashes here.

File details

Details for the file jq-1.12.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

  • Download URL: jq-1.12.0-cp314-cp314-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 425.2 kB
  • Tags: CPython 3.14, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.5

File hashes

Hashes for jq-1.12.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 406cc8a9e94ee6ea83ea5b95e41a7cd5ed9d2038d50fe3a8beed4e11f8a8b661
MD5 dbd9d98cdf6060dd79f192629e54239c
BLAKE2b-256 89665a93431781558c7a0d947b24a473db146ca0c482f467b78091c0d584eb77

See more details on using hashes here.

File details

Details for the file jq-1.12.0-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for jq-1.12.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 2209588dc6acd473cac7e017c546ecb636851ad231e35fb7cd45415e503192e4
MD5 678787950c4a7b20294581093da05218
BLAKE2b-256 d84de7599083ceea8bfcc129d446b18f593d80021eff30fdb54eda4d4f0c9372

See more details on using hashes here.

File details

Details for the file jq-1.12.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: jq-1.12.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 412.6 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.5

File hashes

Hashes for jq-1.12.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 13650dfae6a74c7f411d2286dfc24f806e8575b02348528700ebc8abe320223b
MD5 873eaa520b13118fbdb6545a5148c2cd
BLAKE2b-256 af01736255a85948fdfc36cc702136be7b8b787cfe9b8443f359e734ccb7d256

See more details on using hashes here.

File details

Details for the file jq-1.12.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: jq-1.12.0-cp313-cp313-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 764.6 kB
  • Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.5

File hashes

Hashes for jq-1.12.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 53664049ad40e17b2314cf595badad280130ce560bace634773226e4b77caeaa
MD5 a1b8bbc608578146b0799540e9be0e61
BLAKE2b-256 5028d89d6f53af6c068d9aa26b62d1fc2e4ea4188481317388c0d7799c2f14f5

See more details on using hashes here.

File details

Details for the file jq-1.12.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for jq-1.12.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 becef68da44da901e60821d8fe7e2a38f07fe59a25447a2b8d8cbf3cfaabd04e
MD5 4f9962f0c4bc21dd09292f4f1f835257
BLAKE2b-256 bb90ff1ead648dc45090761c5bde1a01799a070349a03ddcccc6e5e8d4b48df9

See more details on using hashes here.

File details

Details for the file jq-1.12.0-cp313-cp313-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for jq-1.12.0-cp313-cp313-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 28e4ff0948e320223980ed0775e530c697be88fe4d8fa9ed06ac2de45128602d
MD5 ae6fc6927e85f01ad55f0c115efa63c6
BLAKE2b-256 c9bbebf3e334f1b5326c19dd567d467ee46f914eda20bab38ccc13b71c888c0b

See more details on using hashes here.

File details

Details for the file jq-1.12.0-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for jq-1.12.0-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0aa7f4e5ce5ae25f9621d0a7037a3bb141bfd7e0eef2f12887cdd88923b3dc0c
MD5 7c6074334d9e9bff8f179e2795723f1d
BLAKE2b-256 6fad2718eaf0aa8c6bf3161ea787fa760f3ae77feea9c2ffa759126941a2e06f

See more details on using hashes here.

File details

Details for the file jq-1.12.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

  • Download URL: jq-1.12.0-cp313-cp313-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 424.5 kB
  • Tags: CPython 3.13, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.5

File hashes

Hashes for jq-1.12.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7ae30d76711018c6d1516b945e7f4aeddcc83484ed681e44bae526371ed2283d
MD5 e31bb6db794abb4b528bbd45be845d33
BLAKE2b-256 05ad1e5d49d8ab0eca0453b6db2d38cd80a94c360884ff7bebf541e19f4334f0

See more details on using hashes here.

File details

Details for the file jq-1.12.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for jq-1.12.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 de62400d166593bcdd643b98283d3df728d87dc7415bd4fe5d8d252c5bc372e6
MD5 8df1c0ee1d625cce799fe73331ac84bd
BLAKE2b-256 b4a3683c738b9a2453b8f5cd55bdf2d923ce4c1d4208692673489e6b7e93a310

See more details on using hashes here.

File details

Details for the file jq-1.12.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: jq-1.12.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 412.1 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.5

File hashes

Hashes for jq-1.12.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b0920d06c7f115fc7ce461f246a58a2dd7594ac491f214974ab3e5b367ea70da
MD5 8067ae248d475ec7cb43dd6a3626bc21
BLAKE2b-256 05c1026afa899f3f5b475a2f715640c70f54323c8ac5f1964bff1e6d5f75cd8b

See more details on using hashes here.

File details

Details for the file jq-1.12.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: jq-1.12.0-cp312-cp312-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 770.6 kB
  • Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.5

File hashes

Hashes for jq-1.12.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 46cbcb69732dcbe582b8af2bf24f8982dd063c21319285db38c1a1948c540dac
MD5 bcd3aa4b9c5bb44577e9cb2aa911ee68
BLAKE2b-256 455175fb4883151152cc09a98091f2c4b0ec1e39686ab90a4a7453d0531bfb22

See more details on using hashes here.

File details

Details for the file jq-1.12.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for jq-1.12.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 73d91b05f83ad61e9af9b09588fb959742ca096d4c696b2685fd9daa716ed0b0
MD5 6f5d357eb14ac0d8980a861a3939ab2a
BLAKE2b-256 3de99e53b968add6455cd19acb5a01abdba6f06ee6dd8c3c45dd907ad1da7542

See more details on using hashes here.

File details

Details for the file jq-1.12.0-cp312-cp312-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for jq-1.12.0-cp312-cp312-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 59aeba4ce1a5b1a012025277d8266c769044cb33f0b1a1b6354bf5ee2987c408
MD5 5c990f639715f7073f98f16ebc451e98
BLAKE2b-256 ec5090f9c6f54a5e87e388b1837171be7c6ddd9d02be6eed4df5b2281d6f83ee

See more details on using hashes here.

File details

Details for the file jq-1.12.0-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for jq-1.12.0-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 860d71c12ae8ce3bd5210193e7ca2acf19d521bb0c2d8fddd3e7571fa66c4ada
MD5 0ba1bb3456fbc69a4b41485a9c013c9c
BLAKE2b-256 8af33982e172926699eb6c5d30d7004ee6cf922837c16adba9327d3321e88255

See more details on using hashes here.

File details

Details for the file jq-1.12.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

  • Download URL: jq-1.12.0-cp312-cp312-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 424.9 kB
  • Tags: CPython 3.12, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.5

File hashes

Hashes for jq-1.12.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 39cb15398a13c604051848c60598f1367f7dbb34c336ec495a5bd804429c9801
MD5 c53f67eafba6d6afd4c842efa9208b26
BLAKE2b-256 381019f037f1ff857e0398c0548803ce09dc9dd962978b83d7afeb25a6008986

See more details on using hashes here.

File details

Details for the file jq-1.12.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for jq-1.12.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 4df3d3feb9d9f2526416261c56a46808c07987283dbb3d272f0941839b9154a7
MD5 ec866d2a781998664c147702eedf0d80
BLAKE2b-256 e94b4c7510b06e2f1b59cb83b9cef71a756e4ae7cc868309be3a55a43fb64ffa

See more details on using hashes here.

File details

Details for the file jq-1.12.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: jq-1.12.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 409.6 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.5

File hashes

Hashes for jq-1.12.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 fa39d443121159ec90226ef0b1f93d2fb457bf1dd4a45479c7bf0a50b65b3c78
MD5 dbb2b4740872950b668a132e4b1a1f47
BLAKE2b-256 b1c613c8a89f4b39bcc7655a319bce9ab74fec787f51ed24d5681b428b13980a

See more details on using hashes here.

File details

Details for the file jq-1.12.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: jq-1.12.0-cp311-cp311-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 775.5 kB
  • Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.5

File hashes

Hashes for jq-1.12.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cade2d84187c45ee2ee47ad9c6c3862637f4a1d8eee13ccb4a5063720f659892
MD5 260fb6b1bd04a955ffe96da3c6daf84a
BLAKE2b-256 c8c7720c6aa9551f613a73dedfc20a29d2cdd5776a39094db0a31a5bdf226b89

See more details on using hashes here.

File details

Details for the file jq-1.12.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for jq-1.12.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bd7774c5f7601f8b0e140162460bfa5060b8e92b967b2c3d2721e531f915de19
MD5 835a2b1d7edb2aed635250638296439c
BLAKE2b-256 1d893d7aa493fc596b2c10173e28acd34511ade062c08f3f040d5a6303a00001

See more details on using hashes here.

File details

Details for the file jq-1.12.0-cp311-cp311-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for jq-1.12.0-cp311-cp311-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 06fdae6b0435a0e788ba92f40c42ddd0ef59d8effc83a680839f46fef641fd35
MD5 8c76de5a02949a47a48cb620b2c118f1
BLAKE2b-256 1fe77eed10295b86a7097c456c86ea9b923d0718b0267df1fccbaa69458293c9

See more details on using hashes here.

File details

Details for the file jq-1.12.0-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for jq-1.12.0-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a5553950332099fdb935093cb92d12ad89055cf3abc7a72c665ee941d70bac0f
MD5 8878c6daebf39649568099421989902b
BLAKE2b-256 e069d49ed4b3c3f718d6c60e8b2c795b11f0c5d1470cab5434a2839e8253466b

See more details on using hashes here.

File details

Details for the file jq-1.12.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

  • Download URL: jq-1.12.0-cp311-cp311-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 424.8 kB
  • Tags: CPython 3.11, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.5

File hashes

Hashes for jq-1.12.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8d834edc9fda230b5dcc6d4f25b9cd03b958d51d90b3421ae04ae2531cd8383b
MD5 a5dcea00de791a7b8446082457248409
BLAKE2b-256 52b36aea34dda1e71cd8cc5a85320a34eaf79f93480b3977ff9d5adee79f1f4e

See more details on using hashes here.

File details

Details for the file jq-1.12.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for jq-1.12.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3296f1fb00d8c14de1d7fac6fee92fbe8f630ad678ac30893cfbbe5181ba8e6c
MD5 49b9146c7ca38f300833ac8af722ed3b
BLAKE2b-256 e3708b73746d26bb588c6bdc111bf5f2147504300c8b526d38ba554cb1eb66d7

See more details on using hashes here.

File details

Details for the file jq-1.12.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: jq-1.12.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 410.4 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.5

File hashes

Hashes for jq-1.12.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 1b37866631de9ab0ccc40a208dc1337df2bad90591b7304fd09d9d4a544fd096
MD5 7d2942a3655d9bb7a0f95a2573a48f62
BLAKE2b-256 04d7149767847b15cdbb96cd9e10a68bcf846ff4b6b7bfeb5e329be9539bd490

See more details on using hashes here.

File details

Details for the file jq-1.12.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: jq-1.12.0-cp310-cp310-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 758.5 kB
  • Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.5

File hashes

Hashes for jq-1.12.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 86ffa2c09d0cbf0b48c91e300633e07761cb0277dc18f892797b083fad025f31
MD5 6ae7aa6bce91e0604b37406614e3f1fe
BLAKE2b-256 12812f57023af6c23ff73005a145e9811b794bba8eb9250ba0fa97700afc278f

See more details on using hashes here.

File details

Details for the file jq-1.12.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for jq-1.12.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f553f6f89530e6e0af1e87e24adbf9764787077fe7b7bee672eb152c93bfe71a
MD5 f66bb07b683ddf037e9f5185f57f23cf
BLAKE2b-256 58587adff9e0143771f7dfcb42c10a0fe791faf1b3af76096439d92ec3617eef

See more details on using hashes here.

File details

Details for the file jq-1.12.0-cp310-cp310-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for jq-1.12.0-cp310-cp310-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 67d72c28ed5d2efde569550ad323742155104c0d99af359ca421d4b1c19f3565
MD5 381b7338da17bb64c88f34c5592e1b7d
BLAKE2b-256 057b4ff36e9d7b50016b6fdcb5da416ba4e9e0ede8daa8d7934c2441d905f412

See more details on using hashes here.

File details

Details for the file jq-1.12.0-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for jq-1.12.0-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0d5104dc01c6bcdb253fb4c98ad2083ff44d75bce80b381dce4343cd12f69481
MD5 fcff28d77d96416cc8728d91b2426a0d
BLAKE2b-256 dcb6f06def029d0015e50bce9034fdd64fe48278b008b5d514d46fcb2f4a749d

See more details on using hashes here.

File details

Details for the file jq-1.12.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

  • Download URL: jq-1.12.0-cp310-cp310-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 425.1 kB
  • Tags: CPython 3.10, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.5

File hashes

Hashes for jq-1.12.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 961b5aec833eae2914aa9e25462d55695fb2572789ec387ce67ac97ac1291d39
MD5 e849537db625871ba3a604dc1bff1cdc
BLAKE2b-256 689a0891f05d4166c646464733c0a8c8cbe421a8ce787936246e59d5013a3d16

See more details on using hashes here.

File details

Details for the file jq-1.12.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for jq-1.12.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 670e87f00271d89dd0229f26eb323ab5e5a49d8b743321da15de55e0d976d07e
MD5 4cf507a3acb5ed3a544a9f85908e54cd
BLAKE2b-256 9b1e2efd9f247c53016e117d7e82765c08bce7e2c320f1563a99d1c62640c3ab

See more details on using hashes here.

File details

Details for the file jq-1.12.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: jq-1.12.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 410.8 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.5

File hashes

Hashes for jq-1.12.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 ef3d5285df122be262fac584d3a8667841d6216bdf67cf6623c1f61dc59d0a8e
MD5 e26940b0a1c00de4bdad056e4395160e
BLAKE2b-256 f1ef159d63f01ad5bdf78ebe4b5c498cda1faeb62005202c752202ba300f6824

See more details on using hashes here.

File details

Details for the file jq-1.12.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: jq-1.12.0-cp39-cp39-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 758.9 kB
  • Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.5

File hashes

Hashes for jq-1.12.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a0ea32f7ebe666fc165b2b3aa312f1fcee01933c5908fcf73b6cada15f1d400c
MD5 d5b57281df89937e2c597d58eb01f0a0
BLAKE2b-256 7025bff333fa55f9b1040c0284db9596737cb2f16fb478d69e2e609f3866440d

See more details on using hashes here.

File details

Details for the file jq-1.12.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: jq-1.12.0-cp39-cp39-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 741.1 kB
  • Tags: CPython 3.9, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.5

File hashes

Hashes for jq-1.12.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a77d81f7870173377e18c89302f42fd75f945859749ca22dff3040d145be5b38
MD5 31758fcf4e538e1792dd231bf0213d29
BLAKE2b-256 5a2455512ee9300a7b5eda9a10219557bb9c04fdc37131fe5f2a2e2260144409

See more details on using hashes here.

File details

Details for the file jq-1.12.0-cp39-cp39-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for jq-1.12.0-cp39-cp39-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 067ea0d3ee2cd7f7ba9c5d5c1925b9b0f83e1869c97a65ef11d8d76bd91ece6e
MD5 f3b5263ba01cf0448492ea4dcbfb1e9e
BLAKE2b-256 2960d1b70fe402ecb73aaed2d5343f897dd8e02d8b5a6b06d0c46d27ec5891af

See more details on using hashes here.

File details

Details for the file jq-1.12.0-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for jq-1.12.0-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 27da1421e83d6f295488ad2d5af01e259c052cec56c7f46fba0ed1e8632c5234
MD5 305c94635b6a7756ec3a3e9303c2c56b
BLAKE2b-256 a7696798e9204b25d6892dda87e5096226044f6fd7e6dcb650cbd4e1b0973208

See more details on using hashes here.

File details

Details for the file jq-1.12.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

  • Download URL: jq-1.12.0-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 425.7 kB
  • Tags: CPython 3.9, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.5

File hashes

Hashes for jq-1.12.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4408e8386f574dc85ccc2e9bfdc3c5763f238f9e7ba0a3bd19359d34c2e64ef7
MD5 ed5aa6a98d2e873aa4538c1714846329
BLAKE2b-256 cfe380cec970715e4c8d7d315497ff9cf74eecf6a4d71fdff29778b67674b092

See more details on using hashes here.

File details

Details for the file jq-1.12.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: jq-1.12.0-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 417.4 kB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.5

File hashes

Hashes for jq-1.12.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0e90f46ab1f21e08b540e22c4b990334a9703c34a8f20ae5d5644759ff3e042e
MD5 2fb79a6e6161b7178a62f14071b4aa17
BLAKE2b-256 20c4edc3730aa5888d020ec910266bbf01cfc1039996ae07ff276c3dafd00350

See more details on using hashes here.

File details

Details for the file jq-1.12.0-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: jq-1.12.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 412.6 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.5

File hashes

Hashes for jq-1.12.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 df73593572fd4a2f8894b720e278692312877ada93fa7c9ee64313c0a22b5a52
MD5 d9de8c5e5ba7225ad3cee2c475775e27
BLAKE2b-256 eb57f6a5ef2f0acfee5d3b2209df8b49f20fdf8a5bb0a273171ec257d8394b32

See more details on using hashes here.

File details

Details for the file jq-1.12.0-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: jq-1.12.0-cp38-cp38-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 767.4 kB
  • Tags: CPython 3.8, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.5

File hashes

Hashes for jq-1.12.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f981a1075318166ef008eda5dbd03a953c32ea7cc6cac6fa1fdd3f8ea4c618b3
MD5 c3aa05791b35e9e93cd8c37d32d3ba53
BLAKE2b-256 23061b770baf8f3a11dcf8981e37802dd65a22c11ad1590cb59a6b814a5058a5

See more details on using hashes here.

File details

Details for the file jq-1.12.0-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: jq-1.12.0-cp38-cp38-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 744.8 kB
  • Tags: CPython 3.8, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.5

File hashes

Hashes for jq-1.12.0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 69e692dc162e0149745ecaa9a97079aeb197976fd25e779831e9d0f8132857a9
MD5 92a9e3370f96f052e390e27d620ffa0d
BLAKE2b-256 34f0f271d213a3293f6c979b47be75e100d322b4b187c137644c65df5735c8b1

See more details on using hashes here.

File details

Details for the file jq-1.12.0-cp38-cp38-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for jq-1.12.0-cp38-cp38-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8f4dacf3f064032ea9c9b989dc15d58502ee93e3065653e6f4f07e70025e6542
MD5 0e95da3978be3901e60c1ed6e8450592
BLAKE2b-256 703a8a4e19d77aa12548bc31ae3d4217ce2ef7bc4147be9877c41da1f8baff67

See more details on using hashes here.

File details

Details for the file jq-1.12.0-cp38-cp38-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for jq-1.12.0-cp38-cp38-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 40727e605868cf272c62933ff5ea33eea2818aa585da236685aa5f581faa7712
MD5 b5c91e8413a80ad175a477fdcf2866e2
BLAKE2b-256 76707c7286c9096f27f0764833141a58410eeb2f99179a4679e9ab6e14e74abe

See more details on using hashes here.

File details

Details for the file jq-1.12.0-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: jq-1.12.0-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 419.2 kB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.5

File hashes

Hashes for jq-1.12.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3a7f7446fcab8fc78fd4671c55414b422678aa3f6a531caf3c6569a4a08b2898
MD5 48e2fccdd9a752eac5279241fd908120
BLAKE2b-256 d4efa6b6309828f2c75b37dd2c62f6d2c5e7df2519f4293c3d135befbd2b693b

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page