Skip to main content

jq is a lightweight and flexible JSON processor.

Project description

This project contains Python bindings for jq 1.8.1.

Installation

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

pip install jq

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

  • Autoreconf

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

  • libtool

  • Python headers.

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

Debian, Ubuntu or relatives

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

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.10.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.10.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (430.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

jq-1.10.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (415.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

jq-1.10.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (439.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

jq-1.10.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl (415.1 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

jq-1.10.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl (407.0 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

jq-1.10.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (430.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

jq-1.10.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (415.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

jq-1.10.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (439.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

jq-1.10.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl (414.9 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

jq-1.10.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (406.6 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

jq-1.10.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (430.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

jq-1.10.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (415.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

jq-1.10.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (438.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

jq-1.10.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl (414.7 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

jq-1.10.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl (406.1 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

jq-1.10.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl (414.3 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

jq-1.10.0-cp313-cp313-win_amd64.whl (423.1 kB view details)

Uploaded CPython 3.13Windows x86-64

jq-1.10.0-cp313-cp313-win32.whl (410.3 kB view details)

Uploaded CPython 3.13Windows x86

jq-1.10.0-cp313-cp313-musllinux_1_2_x86_64.whl (769.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

jq-1.10.0-cp313-cp313-musllinux_1_2_i686.whl (765.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

jq-1.10.0-cp313-cp313-musllinux_1_2_aarch64.whl (738.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

jq-1.10.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (754.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

jq-1.10.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (735.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

jq-1.10.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (742.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

jq-1.10.0-cp313-cp313-macosx_11_0_arm64.whl (425.3 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

jq-1.10.0-cp313-cp313-macosx_10_13_x86_64.whl (419.3 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

jq-1.10.0-cp312-cp312-win_amd64.whl (422.3 kB view details)

Uploaded CPython 3.12Windows x86-64

jq-1.10.0-cp312-cp312-win32.whl (410.1 kB view details)

Uploaded CPython 3.12Windows x86

jq-1.10.0-cp312-cp312-musllinux_1_2_x86_64.whl (770.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

jq-1.10.0-cp312-cp312-musllinux_1_2_i686.whl (766.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

jq-1.10.0-cp312-cp312-musllinux_1_2_aarch64.whl (740.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

jq-1.10.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (757.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

jq-1.10.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (738.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

jq-1.10.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (744.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

jq-1.10.0-cp312-cp312-macosx_11_0_arm64.whl (426.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

jq-1.10.0-cp312-cp312-macosx_10_13_x86_64.whl (420.1 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

jq-1.10.0-cp311-cp311-win_amd64.whl (421.7 kB view details)

Uploaded CPython 3.11Windows x86-64

jq-1.10.0-cp311-cp311-win32.whl (410.2 kB view details)

Uploaded CPython 3.11Windows x86

jq-1.10.0-cp311-cp311-musllinux_1_2_x86_64.whl (763.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

jq-1.10.0-cp311-cp311-musllinux_1_2_i686.whl (762.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

jq-1.10.0-cp311-cp311-musllinux_1_2_aarch64.whl (737.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

jq-1.10.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (754.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

jq-1.10.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (739.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

jq-1.10.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (745.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

jq-1.10.0-cp311-cp311-macosx_11_0_arm64.whl (427.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

jq-1.10.0-cp311-cp311-macosx_10_9_x86_64.whl (421.1 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

jq-1.10.0-cp310-cp310-win_amd64.whl (422.9 kB view details)

Uploaded CPython 3.10Windows x86-64

jq-1.10.0-cp310-cp310-win32.whl (411.5 kB view details)

Uploaded CPython 3.10Windows x86

jq-1.10.0-cp310-cp310-musllinux_1_2_x86_64.whl (739.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

jq-1.10.0-cp310-cp310-musllinux_1_2_i686.whl (739.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

jq-1.10.0-cp310-cp310-musllinux_1_2_aarch64.whl (715.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

jq-1.10.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (743.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

jq-1.10.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (724.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

jq-1.10.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (732.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

jq-1.10.0-cp310-cp310-macosx_11_0_arm64.whl (426.8 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

jq-1.10.0-cp310-cp310-macosx_10_9_x86_64.whl (420.8 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

jq-1.10.0-cp39-cp39-win_amd64.whl (422.9 kB view details)

Uploaded CPython 3.9Windows x86-64

jq-1.10.0-cp39-cp39-win32.whl (411.8 kB view details)

Uploaded CPython 3.9Windows x86

jq-1.10.0-cp39-cp39-musllinux_1_2_x86_64.whl (740.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

jq-1.10.0-cp39-cp39-musllinux_1_2_i686.whl (741.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

jq-1.10.0-cp39-cp39-musllinux_1_2_aarch64.whl (715.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

jq-1.10.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (743.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

jq-1.10.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (726.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

jq-1.10.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (734.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

jq-1.10.0-cp39-cp39-macosx_11_0_arm64.whl (427.1 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

jq-1.10.0-cp39-cp39-macosx_10_9_x86_64.whl (421.0 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

jq-1.10.0-cp38-cp38-win_amd64.whl (425.0 kB view details)

Uploaded CPython 3.8Windows x86-64

jq-1.10.0-cp38-cp38-win32.whl (412.4 kB view details)

Uploaded CPython 3.8Windows x86

jq-1.10.0-cp38-cp38-musllinux_1_2_x86_64.whl (750.5 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

jq-1.10.0-cp38-cp38-musllinux_1_2_i686.whl (751.4 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

jq-1.10.0-cp38-cp38-musllinux_1_2_aarch64.whl (725.3 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

jq-1.10.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (750.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

jq-1.10.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (733.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

jq-1.10.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (743.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

jq-1.10.0-cp38-cp38-macosx_10_9_x86_64.whl (420.3 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for jq-1.10.0.tar.gz
Algorithm Hash digest
SHA256 fc38803075dbf1867e1b4ed268fef501feecb0c50f3555985a500faedfa70f08
MD5 3157ff91b3af67f18e4deb099d9e9d30
BLAKE2b-256 5c866935afb6c1789d4c6ba5343607e2d2f473069eaac29fac555dbbd154c2d7

See more details on using hashes here.

File details

Details for the file jq-1.10.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for jq-1.10.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1602f95ffaef7ee357b65f414b59d6284619bd3a0a588c15c3a1ae534811c1fb
MD5 d7c06023aae4a20a820fe70db164ca51
BLAKE2b-256 99fdd00bd8f4a58b34d7e646ba9e2c9b5f7d5386472a15ef0fa8d8e65df51dfb

See more details on using hashes here.

File details

Details for the file jq-1.10.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for jq-1.10.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 002d93e50fab9d92035dfd79fd134052692be649e1b3835662a053016d9f2ee7
MD5 435d1d3bc0a1fffd512878e8abdd029d
BLAKE2b-256 5930e62568fb245cd207cfd2d9c931a0dcc9cbbdfe171733b688dbbbc0575b14

See more details on using hashes here.

File details

Details for the file jq-1.10.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for jq-1.10.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4b28cfd1eac69e1dc14518ed9c33e497041e9f9310e5f6259fa9d18fe342fb50
MD5 6253cb458765c1b0ad68d480858010d6
BLAKE2b-256 26759d93d9ae98858b60c2351a33e1e87e873c0ade56dd3c4f909669ca9cbaff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jq-1.10.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5e6649eb4ce390342e07c95c2fa10fed043410408620296122f0ac48a7576f1f
MD5 4e9c1935a9956c96aca47e90ae2fdf1e
BLAKE2b-256 8328e2a57a342040f239b384a90dfb0ff2253d061411b07d816334862645404e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jq-1.10.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 185d450fb45cd44ad5939ec5813f1ed0d057fa0cb12a1ba6a5fe0e49d8354958
MD5 14ebe98120d29abe7d6fa9e28cbc0b38
BLAKE2b-256 a6bd03f20025366149cd93eba483f874511461d2c6ad3a13cfd5b9de1c0bab00

See more details on using hashes here.

File details

Details for the file jq-1.10.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for jq-1.10.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 039e84e19306f94bf0d15291f6d358c4086c702de48e2309c3183fd866bf2785
MD5 ee107a154742abd5a9eb72e821e4d62b
BLAKE2b-256 cc587fea03a5376f380aa85ada547e9c1fd5a9c14ba1cb037a66ac8df21977d5

See more details on using hashes here.

File details

Details for the file jq-1.10.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for jq-1.10.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 72658f31d5723e7b87eea929e81d5083fd4132636a9dcdbf56ba9ea0e30ecaa3
MD5 f0c2d778d83a10c90b6e30916ff25b55
BLAKE2b-256 d86255b0a9de733f38b77afb54782d2c55031e7de0922077e6ade563a6c450af

See more details on using hashes here.

File details

Details for the file jq-1.10.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for jq-1.10.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e985ded6dc2105707cb04e98ca6acbe6c24614824ed0a2fae442d2b2bc78fbc4
MD5 32afd7f60577f67c44446c10946f3e4e
BLAKE2b-256 9b6b09a130d0e9fbae0f8c5013f5a1bf77a8d760380177aa701c3bf6773c51aa

See more details on using hashes here.

File details

Details for the file jq-1.10.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for jq-1.10.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f7f68716e8533294d2f5152e8659288091ea705778a00e066ed3b418ed724d81
MD5 d3960ec3cbfad61b5b0bc26f777c2cc8
BLAKE2b-256 1db5bb7ac9bf5cd636eea94b8b7ae66bccb30c0baeb1234b7cf60f1c8c9f061a

See more details on using hashes here.

File details

Details for the file jq-1.10.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for jq-1.10.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 591d81677336551fd9cf3b5e23c1929ae3cd039a5c2d5fb8042870ed5372fd8c
MD5 f25feb57b8af63732b841448342aea27
BLAKE2b-256 f21a40c2ed6f0d27b283c46ac58047f2f7335c24c07a8ee6b01c36af7a73a0af

See more details on using hashes here.

File details

Details for the file jq-1.10.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for jq-1.10.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 593551afc5f305c7d0adc840587350cb49c4ecba6464f4fc965cae87758621a7
MD5 7aa6d8990c0e25aa0ecbfb32725d42b2
BLAKE2b-256 509c325f7a4026d6ebbe40fe216eb13f9847c205c25fbbdd904bc49f90fc7b0b

See more details on using hashes here.

File details

Details for the file jq-1.10.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for jq-1.10.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 16c250cd0a708d45b9bb08fdf4cac415156274f7f3f8f026e75b5a330d2162dd
MD5 3552f0204694448d8d20dae4f664c6c6
BLAKE2b-256 c0eb43b8ef1eea2ef02c0cc6e67ce665f07ac8d12d12f65f3c0d3ab73b8f304e

See more details on using hashes here.

File details

Details for the file jq-1.10.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for jq-1.10.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c550705145480b616b6bc114ab7f421c0d9a3041ad3dcb9424f992954823f7c2
MD5 ef21e988a8afd13b662ba98df9d38e2f
BLAKE2b-256 3ab2915a9c4af214023e60f6d66387f536bedce945d8885feaf7ea30d46deeab

See more details on using hashes here.

File details

Details for the file jq-1.10.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for jq-1.10.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c6f45acaad61c1947bf2fa172a2ccb2e882231c3cfbfc1ea4a2c4f032122a546
MD5 3e3a82c46db6a1ee14e4424474f7f1e6
BLAKE2b-256 ad0c47473931f2a1609aa37978b6dcc6565a1669dd8ff90ad353ec8d5dc5ed3c

See more details on using hashes here.

File details

Details for the file jq-1.10.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for jq-1.10.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 5dba7abfe55efe3f139247a30e1f13e94f33fddfea71245a18a817b619cb9fe9
MD5 53e0ff983c5fcf781f77dddb10f27d0c
BLAKE2b-256 90a180b6db61cd23d728ef0b6e77faa3286cc8abc64b30528c13a56e98acb115

See more details on using hashes here.

File details

Details for the file jq-1.10.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for jq-1.10.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 061225bc6b45b399f4dfbece00f4fae78560c1d4e0f2af77203dde621c5f10be
MD5 1e152640204c5bef78d25c08f0833289
BLAKE2b-256 ced6977392c4ead380e9331baa1998f6fdf3d8b5d891d505ddc36f9b10998649

See more details on using hashes here.

File details

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

File metadata

  • Download URL: jq-1.10.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 423.1 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.2

File hashes

Hashes for jq-1.10.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 4ec3fbca80a9dfb5349cdc2531faf14dd832e1847499513cf1fc477bcf46a479
MD5 4bbd0666c0c3714220562cce301f18ff
BLAKE2b-256 d632df4eb81cf371654d91b6779d3f0005e86519977e19068638c266a9c88af7

See more details on using hashes here.

File details

Details for the file jq-1.10.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: jq-1.10.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 410.3 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.2

File hashes

Hashes for jq-1.10.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 0bad90f5734e2fc9d09c4116ae9102c357a4d75efa60a85758b0ba633774eddb
MD5 24e6f5f73ad70a8db6d24260fadb2dde
BLAKE2b-256 0ee3a19aeada32dde0839e3a4d77f2f0d63f2764c579b57f405ff4b91a58a8db

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for jq-1.10.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ac05ae44d9aa1e462329e1510e0b5139ac4446de650c7bdfdab226aafdc978ec
MD5 6bc2395378f6a13533092476a1771be2
BLAKE2b-256 0ba6aca82622d8d20ea02bbcac8aaa92daaadd55a18c2a3ca54b2e63d98336d2

See more details on using hashes here.

File details

Details for the file jq-1.10.0-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

  • Download URL: jq-1.10.0-cp313-cp313-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 765.3 kB
  • Tags: CPython 3.13, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.2

File hashes

Hashes for jq-1.10.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b11a56f1fb6e2985fd3627dbd8a0637f62b1a704f7b19705733d461dafa26429
MD5 85f732166da3bed5d0210e7ba8a2050b
BLAKE2b-256 0c724d0fc965a8e57f55291763bb236a5aee91430f97c844ee328667b34af19e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jq-1.10.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 76710b280e4c464395c3d8e656b849e2704bd06e950a4ebd767860572bbf67df
MD5 6e50b548822989f2128772dee0577234
BLAKE2b-256 ad6b483ddb82939d4f2f9b0486887666c67a966434cc8bc72acd851fc8063f50

See more details on using hashes here.

File details

Details for the file jq-1.10.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for jq-1.10.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fd24dc21c8afcbe5aa812878251cfafa6f1dc6e1126c35d460cc7e67eb331018
MD5 d2be390a4a5634d7009385b867beaedf
BLAKE2b-256 2ab07882035062771686bd7e62db019fa0900fd9a3720b7ad8f7af65ee628484

See more details on using hashes here.

File details

Details for the file jq-1.10.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for jq-1.10.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ab4c1ec69fd7719fb1356e2ade7bd2b5a63d6f0eaf5a90fdc5c9f6145f0474ce
MD5 e2357498bfe81afdc4e86cb422a34570
BLAKE2b-256 ecf4ace0c853d4462f1d28798d5696619d2fb68c8e1db228ef5517365a0f3c1c

See more details on using hashes here.

File details

Details for the file jq-1.10.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for jq-1.10.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8c0d3e89cd239c340c3a54e145ddf52fe63de31866cb73368d22a66bfe7e823f
MD5 58a1a0b613c6cb6a14fed9e4a1094494
BLAKE2b-256 df7db759a764c5d05c6829e95733a8b26f7e9b14df245ec2a325c0de049393ca

See more details on using hashes here.

File details

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

File metadata

  • Download URL: jq-1.10.0-cp313-cp313-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 425.3 kB
  • Tags: CPython 3.13, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.2

File hashes

Hashes for jq-1.10.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 df278904c5727dfe5bc678131a0636d731cd944879d890adf2fc6de35214b19b
MD5 aa48ca6bce4896cf5b7ddeea7c98aa0d
BLAKE2b-256 09128b39293715d7721b2999facd4a05ca3328fe4a68cf1c094667789867aac1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jq-1.10.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 b11d6e115ebad15d738d49932c3a8b9bb302b928e0fb79acc80987598d147a43
MD5 9f79ab399495f0ca9bee433c9c593a82
BLAKE2b-256 f2feeeede83103e90e8f5fd9b610514a4c714957d6575e03987ebeb77aafeafa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: jq-1.10.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 422.3 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.2

File hashes

Hashes for jq-1.10.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 1d67c2653ae41eab48f8888c213c9e1807b43167f26ac623c9f3e00989d3edee
MD5 f89b38e472689fa03bccd70f013dea2c
BLAKE2b-256 201f6efe0a2b69910643b80d7da39fbded8225749dee4b79ebe23d522109a310

See more details on using hashes here.

File details

Details for the file jq-1.10.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: jq-1.10.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 410.1 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.2

File hashes

Hashes for jq-1.10.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 655d75d54a343944a9b011f568156cdc29ae0b35d2fdeefb001f459a4e4fc313
MD5 f8259c19d637654114f21347f1eafe57
BLAKE2b-256 d4e78f4e1cc3102de31d71e6298bcbdb15d1439e2bc466f4dcf18bc3694ba61d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for jq-1.10.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 37cf6fd2ebd2453e75ceef207d5a95a39fcbda371a9b8916db0bd42e8737a621
MD5 83468ee810e918e27875d194e99f9f5d
BLAKE2b-256 060c9b5aae9081fe6620915aa0e0ca76fd016e5b9d399b80c8615852413f4404

See more details on using hashes here.

File details

Details for the file jq-1.10.0-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

  • Download URL: jq-1.10.0-cp312-cp312-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 766.5 kB
  • Tags: CPython 3.12, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.2

File hashes

Hashes for jq-1.10.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d02c0be958ddb4d9254ff251b045df2f8ee5995137702eeab4ffa81158bcdbe0
MD5 d038490321674d8d9fa75999e1af0c45
BLAKE2b-256 100c8e0823c5a329d735cff9f3746e0f7d74e7eea4ed9b0e75f90f942d1c455a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jq-1.10.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 06986456ebc95ccb9e9c2a1f0e842bc9d441225a554a9f9d4370ad95a19ac000
MD5 0da5e9452bf3009b6f7bbb3c90cd0aef
BLAKE2b-256 4f460faead425cc3a720c7cd999146f4b5f50aaf394800457efb27746c10832c

See more details on using hashes here.

File details

Details for the file jq-1.10.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for jq-1.10.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c376aab525d0a1debe403d3bc2f19fda9473696a1eda56bafc88248fc4ae6e7e
MD5 29bf9daeac48d6ce1156df204a91f459
BLAKE2b-256 840aeff78a2329967bda38a98580c6fb77c59696b2b7d589e97db232ca42f5c4

See more details on using hashes here.

File details

Details for the file jq-1.10.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for jq-1.10.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9382f85a347623afa521c43f8f09439e68906fd5b3492016f969a29219796bb9
MD5 2b1ddcdc2e4563f746525c9b497010e3
BLAKE2b-256 e9425cfc8de34e976112e1b835a83264c7a0bab2cf8f20dc703f1257aa9e07ea

See more details on using hashes here.

File details

Details for the file jq-1.10.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for jq-1.10.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 206f230c67a46776f848858c66b9c377a8e40c2b16195552edd96fd7b45f9a52
MD5 a0b3a7bf9c6eba62b47bc4e36709caf2
BLAKE2b-256 f362353d4c0a9f363ccb2a9b5ea205f079a4ee43642622c25250d95c0fafb7ca

See more details on using hashes here.

File details

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

File metadata

  • Download URL: jq-1.10.0-cp312-cp312-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 426.3 kB
  • Tags: CPython 3.12, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.2

File hashes

Hashes for jq-1.10.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 947fc7e1baaa7e95833b950e5a66b3e13a5cff028bff2d009b8c320124d9e69b
MD5 80143b10eb5c0b5ff45a368e2e4e0db9
BLAKE2b-256 75add6780c218040789ed3ddbfa3b1743aaf824f80be5ebd7d5f885224c5bb08

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jq-1.10.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 fe636cfa95b7027e7b43da83ecfd61431c0de80c3e0aa4946534b087149dcb4c
MD5 08c835e7840a201c457c843bfa595069
BLAKE2b-256 3ed9b9e2b7004a2cb646507c082ea5e975ac37e6265353ec4c24779a1701c54a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: jq-1.10.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 421.7 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.2

File hashes

Hashes for jq-1.10.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 08bf55484a20955264358823049ff8deb671bb0025d51707ec591b5eb18a94d7
MD5 bcffc5fd94413956e23e0f426d509308
BLAKE2b-256 a51d2af863d11a5330b69af6cc875bb54ecf942da4909b75284afef7468e70b5

See more details on using hashes here.

File details

Details for the file jq-1.10.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: jq-1.10.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 410.2 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.2

File hashes

Hashes for jq-1.10.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 5d5624d43c8597b06a4a2c5461d1577f29f23991472a5da88b742f7fa529c1d1
MD5 3abda63b02a9563031494e8265c50818
BLAKE2b-256 dcf8accb3c72ece3164e7019910b387fd65fc1da805bc8b7dac4e676d48b852e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for jq-1.10.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ded278e64dad446667656f7144cefe20cea16bb57cf6912ef6d1ddf3bddc9861
MD5 05cdf48decef3a9222e00b59ae04609a
BLAKE2b-256 270418f406ba70f7f78f9576baed53d0d84f3f02420c124d0843c1e7b16567f5

See more details on using hashes here.

File details

Details for the file jq-1.10.0-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

  • Download URL: jq-1.10.0-cp311-cp311-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 762.5 kB
  • Tags: CPython 3.11, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.2

File hashes

Hashes for jq-1.10.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 307ed7ac72c03843af46face4ec1b8238f6d0d68f5a37aab3b55d178c329ad34
MD5 3bdd01618424f666dd153de99bdc7bde
BLAKE2b-256 12d6799a9f8a1588c0275411b7754cf5939dec8003978e3a71c54fb68894fc5b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jq-1.10.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 83ae246c191e6c5363cb7987af10c4c3071ec6995424eb749d225fbb985d9e47
MD5 f7083111286bfe89cfc63dad7b573835
BLAKE2b-256 d85b9f9d5e748b810bfe79f61f7dc36ed1c5d7d68feca3928659d6dfbba50e6b

See more details on using hashes here.

File details

Details for the file jq-1.10.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for jq-1.10.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4b6e1f04da95c5057346954b24e65cb401cf9c64566e68c4263454717fcf464d
MD5 0dd96fa5a6ea713fc61154898b854adc
BLAKE2b-256 c9e2ad805b9a263a89c5fde75f2aa31d252c39732b55ead67d269e775eabe8a0

See more details on using hashes here.

File details

Details for the file jq-1.10.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for jq-1.10.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 75aabeae63f36fe421c25cb793f5e166500400e443e7f6ce509261d06d4f8b5d
MD5 c148a46471e30a9c945da4047fce9e7d
BLAKE2b-256 652ea566e4b254862f92be66365488bb78994110f32f8d60f255873fdaa429a7

See more details on using hashes here.

File details

Details for the file jq-1.10.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for jq-1.10.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3ff2ac703b1bde9209f124aa7948012b77e93a40f858c24cf0bbd48f150c15e8
MD5 482ae80e7d0926b79170e19c7596134d
BLAKE2b-256 a939403924bd41a2365bc1ba39c99b2922b8e3f97abe6405d0e0911018df045c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: jq-1.10.0-cp311-cp311-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 427.2 kB
  • Tags: CPython 3.11, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.2

File hashes

Hashes for jq-1.10.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 850c99324fdb2e42a2056c27ec45af87b1bc764a14c94cdf011f6e21d885f032
MD5 44be9f563100ed636afe88598be4a21c
BLAKE2b-256 b7f23183dd18746ef068c8798940683ff1a42397ee6519e1c1ee608843d376a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jq-1.10.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1363930e8efe63a76e6be93ffc6fea6d9201ba13a21f8a9c7943e9c6a4184cf7
MD5 3575df6f708f49cafdcbb383147d8b55
BLAKE2b-256 51e5d460e048de611e8b455e1be98cba67fb70ecb194de3ba4486dc9dfba88cb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: jq-1.10.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 422.9 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.2

File hashes

Hashes for jq-1.10.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f8aa3f4eb6948be7b9b7c8eb19d4fbdaa2765227d21ea875898e2d20552ad749
MD5 704334957ee92ad2953cbed472bcc485
BLAKE2b-256 3ff270332d975fd5d1e722eef7ad3e40a96392dacbbc0b4024ef2384b3a1df7f

See more details on using hashes here.

File details

Details for the file jq-1.10.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: jq-1.10.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 411.5 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.2

File hashes

Hashes for jq-1.10.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 148a140c16c366c42c63e5a920dc8259ab62034c6f2c6b0f410df579fdf04654
MD5 61196d271fea38d01c4c3d563a33a188
BLAKE2b-256 d5c348c47fd1276fd8c2ef6904a81f187b76bea8ef6876c99e5711e9dce385b6

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for jq-1.10.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f6557f291f0b13db045b35401fa8b67b866fa1488e3a9703a1bcc5d156948c59
MD5 4be293cda0c4321e27e617cf7aaee0bd
BLAKE2b-256 ce09ffb7304ccd4a728f22ef6cbc8b6168143378524462ebc45900cd60d4af54

See more details on using hashes here.

File details

Details for the file jq-1.10.0-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

  • Download URL: jq-1.10.0-cp310-cp310-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 739.7 kB
  • Tags: CPython 3.10, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.2

File hashes

Hashes for jq-1.10.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 801d01e2c933fa3da70ce18d73adb29c4fd07ebe0e2da3f39f79719357a60014
MD5 33e6101dec939a9ed73d29dbee55ebe0
BLAKE2b-256 6d352dff23341d12eee4b0b5fc0196529462320a540836062162c0b743435c0e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jq-1.10.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 af859195c4a46adc52866cbc08a5d56fea86cbb8d18c9e02b95fea7d0b9c872d
MD5 27a7298889f8a8e98895c17222b2fd81
BLAKE2b-256 f52ccb833cc9d61d8c67996d3568f4eb855175aa04b177f1915883148b7f962b

See more details on using hashes here.

File details

Details for the file jq-1.10.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for jq-1.10.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 731fa11ce06276365c51fe2e23821d33acf6c66e501acfc4dd95507be840dd39
MD5 a4d4cf4fbb25f9098cf5d7177f755cf4
BLAKE2b-256 2be91748212f0e7d5d1424ae3246f3ca0ce18629b020a83454a9b18cc5d84152

See more details on using hashes here.

File details

Details for the file jq-1.10.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for jq-1.10.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8c2a6a83f8b59dcb0b9a09f1e6b042e667923916767d0bee869e217d067f5f25
MD5 17643586498dc5f3d77513df3a5e7192
BLAKE2b-256 3efd4eefc552dfefcd11aef2a4e4a018050ff174afa5841438a61bab171335eb

See more details on using hashes here.

File details

Details for the file jq-1.10.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for jq-1.10.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cd313711ad4b6158662a65e1de9a4e34e6f297cacaa2a563b1d7c37fd453770e
MD5 34d186bd761492d9fb080efa9e6a5f6b
BLAKE2b-256 1c20effb5ee6a9dbdd0fc2979ebfa2f29baca3aea09e528a0962dbef711721e4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: jq-1.10.0-cp310-cp310-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 426.8 kB
  • Tags: CPython 3.10, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.2

File hashes

Hashes for jq-1.10.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3eb6aed0d9882c43ae4c1757b72afc02063504f69d14eb12352c9b2813137c71
MD5 0d23da584b14d06674953380a36a1cf8
BLAKE2b-256 1b0c7e53f3fe1c8d99fd19ea6d741f4268cb0efbd0800b4b25d5aa512c7b474d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jq-1.10.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9bba438d1813e537294e77f6f0ab3f4b23d3a0ae125187edf4827260a31341a0
MD5 8f54c28730eaac01b7eb844a7d722aac
BLAKE2b-256 13180611ddff443f826931c6a6e13a4d6213d159a66c9e4e82db1300b856870f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: jq-1.10.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 422.9 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.2

File hashes

Hashes for jq-1.10.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 c4648684034ba5b975be9b0099ca230ef088c14eeffb3357b522d9cba02a05ea
MD5 967672d50d0ce532d68e3690377a9d04
BLAKE2b-256 dbd3b7e0b8b6057254618989f2c5883997f2545143295a07789f890c1cfa8625

See more details on using hashes here.

File details

Details for the file jq-1.10.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: jq-1.10.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 411.8 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.2

File hashes

Hashes for jq-1.10.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 31753d5b45b1806d1d7241a45cb262b1f3db8c0f1f4c618d5a02cbe227d2c436
MD5 44ac4a677ec6394513a217045206e88f
BLAKE2b-256 f8f73436d12228b7bfb8d59cf20467dfd2bf261bc11d113fe454f340990694ba

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for jq-1.10.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cf18f3031da9727245529e16ad13ab8859d73cfe0bc0e09a79696038658c25d5
MD5 75e7ab8367b20e00ff7fc888d78cc1c4
BLAKE2b-256 9e98546d1f0012b0d0f25a2cbaf32a7bcd92d995b3b7d387039bf5ac1807ee25

See more details on using hashes here.

File details

Details for the file jq-1.10.0-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

  • Download URL: jq-1.10.0-cp39-cp39-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 741.2 kB
  • Tags: CPython 3.9, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.2

File hashes

Hashes for jq-1.10.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f700d2aa1ef2b58c33df0a06ba58e68196cc9f81d1b6eb6baaa34e81fc0dbe6d
MD5 0f361d809f5f8d6d47b7579dcaf1b534
BLAKE2b-256 3b120f1c0802426128d40f50e9a341ea6173a6d0fc80e87c99914be126b62af2

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for jq-1.10.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 28c16ca90940dfb8a2bd28b2d02cb2a546faa91db5b03f2cb71148b158fc098c
MD5 91d666199c9339bb3a1a506cc52eaef8
BLAKE2b-256 56cf8f4390643072a6d5b05581aa582c91eb353ce549de50e3c88786786a1b5f

See more details on using hashes here.

File details

Details for the file jq-1.10.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for jq-1.10.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3f4b28f04bb69eadb99c7ba3911246e6a200a886d82ae190a0af95037c427de6
MD5 9e0f9504c9d96a45b28a794b68109a6c
BLAKE2b-256 d2b172ebcfc99f89cb3b96f9dc1da7cb8ce167a975f0b74aae461aa56c4735f0

See more details on using hashes here.

File details

Details for the file jq-1.10.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for jq-1.10.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6690eda99a5be16f28c6931918769af0c2d066257d4efedc7c4108cfbf4e242f
MD5 563d80f8da9c6fbea72039edbd547ec9
BLAKE2b-256 254d640b203ac8771c79404a145c8cb21220a9f03f010a5c60e2e379f9c3dccc

See more details on using hashes here.

File details

Details for the file jq-1.10.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for jq-1.10.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d7278f1dfc49387551e670133b363a3368eeac74672dd4b520b7da4f8e803058
MD5 d5e8b4f84e78da95e70080e6c5722cee
BLAKE2b-256 5d1b410fae0e3d5d0a05707c2ee5bf4f7489196ab9de08957d2f4b70e6070d55

See more details on using hashes here.

File details

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

File metadata

  • Download URL: jq-1.10.0-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 427.1 kB
  • Tags: CPython 3.9, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.2

File hashes

Hashes for jq-1.10.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bb9a6b5ff1e9d261ffae51aefbc66660bc1f5713339943aa95af7631062be163
MD5 1164356978daa517c2faa2324f5a4558
BLAKE2b-256 9b432906fbe63662ad1af4deb71b2b9ce5e359b761a71d9c8f55a1f44aa51be6

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for jq-1.10.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 db746ec4f05a6622bca5785f58fa322f04c493de61c6761cbe5a61218babe3d9
MD5 b9af143e2b1bad8190f7ac3c5469f2e5
BLAKE2b-256 dc566dbb244c115464ac181ba1a5132e93142a8e085845593da020f627960a14

See more details on using hashes here.

File details

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

File metadata

  • Download URL: jq-1.10.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 425.0 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.2

File hashes

Hashes for jq-1.10.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 ab050dc7a6c204dde3a3d28e340f937e00cf69c8d3f7dd17e8c3ffef916784df
MD5 fb30a4515160a244bb8c76996879985a
BLAKE2b-256 55f235d03dfff0bbf2370cee4290acc8659f132f32dfee8603807f67da3ea29f

See more details on using hashes here.

File details

Details for the file jq-1.10.0-cp38-cp38-win32.whl.

File metadata

  • Download URL: jq-1.10.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 412.4 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.2

File hashes

Hashes for jq-1.10.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 f1f277fd820246f0d80da2ddd39b6d5ea99b266c067abce34f1ff50bd3358477
MD5 b9e36b0f71a74b07834b8053cac2439e
BLAKE2b-256 ef825d3b645211466d078ff04736843ee36350b56c01e12f2eec11be90db9df6

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for jq-1.10.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2886606f40f2127ed4bea2aa2d30653d485ed26075dd5b52fb933aa7ec7b23d3
MD5 ff512094532a85fd307282b60f7d9a01
BLAKE2b-256 e887cad67a39df21520e80e22a1bfc512e6a713a1c047439791a0ec48b9c30b2

See more details on using hashes here.

File details

Details for the file jq-1.10.0-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

  • Download URL: jq-1.10.0-cp38-cp38-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 751.4 kB
  • Tags: CPython 3.8, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.2

File hashes

Hashes for jq-1.10.0-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d47fe013dc22c82b425ae5358729a3d38de4097dda28d63f591c8bdd97bae6cb
MD5 c2996b41f19db984f510313e1727041d
BLAKE2b-256 cd8d38dbb2fa34770b670859fe5562b6aee98e9d841955bf360a391245a7c452

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for jq-1.10.0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 48fb2cfe083942e370876e865fad3836aedc1b06ef30a2376e53ab35d6a7f728
MD5 6db8cb9cd4551aaac4b23cd63704d180
BLAKE2b-256 935432f890b039d9062952b6e1c69b333163b731a529f840f580f8326b7f3ecb

See more details on using hashes here.

File details

Details for the file jq-1.10.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for jq-1.10.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 36a959b8cff3796b42f51a0be5fa37126ee66fc822e29620485a229f6c9baec6
MD5 3c1177be159ea8e8888966197f9b2161
BLAKE2b-256 47cacc828c62ac2120945f54058392d2af0b55e63d92092596efe20ead3031c9

See more details on using hashes here.

File details

Details for the file jq-1.10.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for jq-1.10.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 57e7b81b69700ad6003f6d068ae5432fa54169e2c5b15a1f9073400d83c0115a
MD5 a6e41fce25cf03c015bce372585fd312
BLAKE2b-256 b01b6aa5ec1e29d8d62105a998eb6ad73f0836a40cc4a08d8b25997261f9c5bb

See more details on using hashes here.

File details

Details for the file jq-1.10.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for jq-1.10.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f44bd6b9d03367a9e8a3f8f5c8343b572fbec9d148242f226e2a6f2eb459ba2b
MD5 e8ef163d61462c8426590b32c52db0a0
BLAKE2b-256 8f4a2e91ad467bbfd4011514dbb7fdab00310091d8af0f923c485532b30859d3

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for jq-1.10.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 09e6ca3095a3be59353a262c75f680a0934ac03e81d10b78d7eabcb9fb746543
MD5 cf1be54e4549b5bb7fbb20738f64fce5
BLAKE2b-256 14c0dc3b7d23b0624b6f038facc4959b0ad4587bbc4ab3c50148725169aa8928

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