Skip to main content

jq is a lightweight and flexible JSON processor.

Project description

This project contains Python bindings for jq.

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.6 is downloaded over HTTPS and built. This requires:

  • Autoreconf

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

  • libtool

  • Python headers.

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.5.0.tar.gz (2.7 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.5.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (368.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

jq-1.5.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (358.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

jq-1.5.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (381.6 kB view details)

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

jq-1.5.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl (355.8 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

jq-1.5.0-pp310-pypy310_pp73-macosx_10_9_x86_64.whl (350.0 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

jq-1.5.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (368.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

jq-1.5.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (358.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

jq-1.5.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (381.6 kB view details)

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

jq-1.5.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl (355.8 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

jq-1.5.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (350.0 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

jq-1.5.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (367.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

jq-1.5.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (357.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

jq-1.5.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (381.0 kB view details)

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

jq-1.5.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl (355.0 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

jq-1.5.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (349.5 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

jq-1.5.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (373.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

jq-1.5.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (360.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

jq-1.5.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (385.2 kB view details)

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

jq-1.5.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (349.5 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

jq-1.5.0-cp312-cp312-musllinux_1_1_x86_64.whl (620.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

jq-1.5.0-cp312-cp312-musllinux_1_1_i686.whl (620.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ i686

jq-1.5.0-cp312-cp312-musllinux_1_1_aarch64.whl (599.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

jq-1.5.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (623.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

jq-1.5.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (604.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

jq-1.5.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (612.4 kB view details)

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

jq-1.5.0-cp312-cp312-macosx_11_0_arm64.whl (368.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

jq-1.5.0-cp312-cp312-macosx_10_9_x86_64.whl (365.7 kB view details)

Uploaded CPython 3.12macOS 10.9+ x86-64

jq-1.5.0-cp311-cp311-musllinux_1_1_x86_64.whl (624.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

jq-1.5.0-cp311-cp311-musllinux_1_1_i686.whl (629.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ i686

jq-1.5.0-cp311-cp311-musllinux_1_1_aarch64.whl (610.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

jq-1.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (627.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

jq-1.5.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (612.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

jq-1.5.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (623.5 kB view details)

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

jq-1.5.0-cp311-cp311-macosx_11_0_arm64.whl (369.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

jq-1.5.0-cp311-cp311-macosx_10_9_x86_64.whl (367.4 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

jq-1.5.0-cp310-cp310-musllinux_1_1_x86_64.whl (618.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

jq-1.5.0-cp310-cp310-musllinux_1_1_i686.whl (625.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ i686

jq-1.5.0-cp310-cp310-musllinux_1_1_aarch64.whl (601.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

jq-1.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (614.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

jq-1.5.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (598.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

jq-1.5.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (610.2 kB view details)

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

jq-1.5.0-cp310-cp310-macosx_11_0_arm64.whl (370.5 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

jq-1.5.0-cp310-cp310-macosx_10_9_x86_64.whl (370.0 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

jq-1.5.0-cp39-cp39-musllinux_1_1_x86_64.whl (624.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

jq-1.5.0-cp39-cp39-musllinux_1_1_i686.whl (629.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ i686

jq-1.5.0-cp39-cp39-musllinux_1_1_aarch64.whl (609.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

jq-1.5.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (618.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

jq-1.5.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (606.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

jq-1.5.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (615.9 kB view details)

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

jq-1.5.0-cp39-cp39-macosx_11_0_arm64.whl (367.7 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

jq-1.5.0-cp39-cp39-macosx_10_9_x86_64.whl (369.0 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

jq-1.5.0-cp38-cp38-musllinux_1_1_x86_64.whl (638.6 kB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ x86-64

jq-1.5.0-cp38-cp38-musllinux_1_1_i686.whl (645.8 kB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ i686

jq-1.5.0-cp38-cp38-musllinux_1_1_aarch64.whl (623.5 kB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ ARM64

jq-1.5.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (623.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

jq-1.5.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (611.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

jq-1.5.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (622.9 kB view details)

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

jq-1.5.0-cp38-cp38-macosx_10_9_x86_64.whl (366.6 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

jq-1.5.0-cp37-cp37m-musllinux_1_1_x86_64.whl (593.5 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ x86-64

jq-1.5.0-cp37-cp37m-musllinux_1_1_i686.whl (602.8 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ i686

jq-1.5.0-cp37-cp37m-musllinux_1_1_aarch64.whl (578.3 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ ARM64

jq-1.5.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (588.5 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

jq-1.5.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (574.8 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

jq-1.5.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (587.3 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

jq-1.5.0-cp37-cp37m-macosx_10_9_x86_64.whl (365.6 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

jq-1.5.0-cp36-cp36m-musllinux_1_1_x86_64.whl (593.8 kB view details)

Uploaded CPython 3.6mmusllinux: musl 1.1+ x86-64

jq-1.5.0-cp36-cp36m-musllinux_1_1_i686.whl (602.4 kB view details)

Uploaded CPython 3.6mmusllinux: musl 1.1+ i686

jq-1.5.0-cp36-cp36m-musllinux_1_1_aarch64.whl (578.0 kB view details)

Uploaded CPython 3.6mmusllinux: musl 1.1+ ARM64

jq-1.5.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (588.8 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ x86-64

jq-1.5.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (574.6 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ ARM64

jq-1.5.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (587.3 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

jq-1.5.0-cp36-cp36m-macosx_10_9_x86_64.whl (365.3 kB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: jq-1.5.0.tar.gz
  • Upload date:
  • Size: 2.7 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.2

File hashes

Hashes for jq-1.5.0.tar.gz
Algorithm Hash digest
SHA256 47695d97c300b6a5c36731d9cab12f6bf1cee35f01b3374063b87f868f2131d1
MD5 ce0de8006e7558574d87799ad4638d66
BLAKE2b-256 18fa560202b0ec4d0b49d312679797536207406862c9c8f50a82e4ad8b4664d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jq-1.5.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 df3334e3508722f6926f595a1d5f9785bb5bcf1cd6f6a52e6703512931e9c688
MD5 4ee5096ec29960599c3bb6af5cfc0dc2
BLAKE2b-256 976943ce3c6165826f12a6d90e470f5e3b8136699f1672f0b53ee27a169aeb33

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jq-1.5.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 01a63137a367feb02cbd76fc3b11c8a9c9420a6e78b3d77d3c3c5cce734223ab
MD5 fe0b5adfa8a64f70c8db7222188089f6
BLAKE2b-256 3a8f76daf163abb5a219d9c897d63b7ecf309c9d711ee75ca5399bcec2330993

See more details on using hashes here.

File details

Details for the file jq-1.5.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.5.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 596e75adc99fe78ffbdef038b69d8e4e71fc4dc4beb666b1a9aac6be4b2dfa83
MD5 1e43ef0dc99dfd12383336fae11bd707
BLAKE2b-256 2e5772c64639a01dc789771174fff8b024897edd62c24eb9ea3d2240a8f07824

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jq-1.5.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2b1c96c193facf97b0cc97d2371762daee8647f6d0b95c24ed4aba3334c91617
MD5 2e21c7477e040b037fe101547c8f3afd
BLAKE2b-256 8609c58f6eec09e76af2a9acd9a0c34759100b4e521b2a7d18032cca517c8f1b

See more details on using hashes here.

File details

Details for the file jq-1.5.0-pp310-pypy310_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for jq-1.5.0-pp310-pypy310_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 722c673e38a43841afa56b60e57c1d20e57da3ebdcdfb16d8a4282f111402132
MD5 ad88bd6b312cae7bc1c3841a209727ba
BLAKE2b-256 e55cab82ab763156ffceb83231899c98e40b58aa9451004f663fe39e38d519d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jq-1.5.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 314f05a52385e22b86fcc5fa24a394991f3f686867aff61ade11e0a6733494aa
MD5 ad65e166f63827f20cebee65f359f103
BLAKE2b-256 6dc773d8ef6ddd4a0794d3ec13779abb2af55440468554833d46155131c64251

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jq-1.5.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5c8442eaabd31e4771c864635518663f74e790218a6f783b277a60932ded8816
MD5 6f57e0ac1aad311857a3aaff6c3b0cb7
BLAKE2b-256 66106b5ba6d7824a4c5a4f724390c7d5d0ebf2fcf7fd64f3ded92949db6d2112

See more details on using hashes here.

File details

Details for the file jq-1.5.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.5.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5ae65cf2bba21106fb1062c81f44b1395e201250522fc85b64869e00542d3f59
MD5 e9b6936240ba74a6d420391bc8c3e1ce
BLAKE2b-256 a93d229f6543ba066e34f23e4efad6c166c2fe9474ceedffc873574b06b4cefe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jq-1.5.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 aae4e79d2492622daca09d5ff1f59ffd83108ad8b7ae751958f30bb75112a870
MD5 a031c805f67faeddac16a134aa55844d
BLAKE2b-256 070948fcba577131e4ad3746c65f3195db1eb8f7808ec458fb2c6ab3cbcd1cf9

See more details on using hashes here.

File details

Details for the file jq-1.5.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for jq-1.5.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d03205bf0e4895c2b2f946963af8e6c01c32359107832ebbf00cf8fa7f119489
MD5 98ec665d647c0fc9b18e9b5158cee09b
BLAKE2b-256 ede31f91442223367d61d2b4ddfa750f614ee11e4186bc34272bdda4e112f61c

See more details on using hashes here.

File details

Details for the file jq-1.5.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for jq-1.5.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 443e2b05d19b60a6a615e6509ad96af772bd23f40dbdf6982c6ca651fa95e5c3
MD5 d8f8a2b47b05f79c9d35fd30bc6c9de7
BLAKE2b-256 68402b5b31856e52cf22e27964e07b4bbb86981b6db5fb687b096c973e52a802

See more details on using hashes here.

File details

Details for the file jq-1.5.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for jq-1.5.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 de75c52529f3937da26f1980b17e545e1f685355b3f5644c8477daeed72b62b5
MD5 94c222158e30e5425d22aff5b7c6b48d
BLAKE2b-256 337244c70332168278ce0de8e2491c0384bac47893435c8c21a30400a273e885

See more details on using hashes here.

File details

Details for the file jq-1.5.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for jq-1.5.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 aee9d8cc64db2a86ce4122ef6984403286409b3ceb16cef89a24af3e479b7053
MD5 7d7c19b99378f88e56eaed1750f9ba7b
BLAKE2b-256 b5f00351861be76db745ac4b8a723eecde6625d5a84b34efc388ca365b184741

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jq-1.5.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bb0ffd9cea0a365f63589db0cb13d9943964f2439f4a639eb4711ad3cbcfb4ad
MD5 e88ed3a990bc4b3830159e79455b489c
BLAKE2b-256 4a7c833d5ed059c0a54c1deb72635b1d57b471eeb06c9fc7a0876c0d8e6a50b0

See more details on using hashes here.

File details

Details for the file jq-1.5.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for jq-1.5.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0388202601c4d7ab2bb3fe222d656cb5be14aad5298f21fac5bcb628e5d7fecd
MD5 bec07dbcde71aa9ad46478187947f7a9
BLAKE2b-256 5cfa6191a6a8662af32b82401146a8c238cc1a4f9d74dc1316eee0b27b808eac

See more details on using hashes here.

File details

Details for the file jq-1.5.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for jq-1.5.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a14cb4fa1aa82a83c6a018748c7d61039f70ae2d014f01d06bdbaaa3de2a45b5
MD5 38098042bbc7b78180f1bf1b7c2c6b9d
BLAKE2b-256 b6e842c14862da132d8beb3ed22b62670f2a67d6124cd15642cb0ea2f0f8ef4c

See more details on using hashes here.

File details

Details for the file jq-1.5.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for jq-1.5.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c0cc636285df64d5a4ba5254eeac128d95e1c89cc7dcf92ec734a380b815a846
MD5 04a0a955b25d30928970d761fe38faad
BLAKE2b-256 544e8046affd49ebe41fc1aa7eec9da9224a9170b07b56ffc177bb785f71dac2

See more details on using hashes here.

File details

Details for the file jq-1.5.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for jq-1.5.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 afd4cd9146d60aaa61c84ddeba75f571f8fdc4d8295670f159aab2d5a6e3c9ac
MD5 95a7dfae62de6dafcfc91745568ad654
BLAKE2b-256 a797d4ebc6b07ecca59321b0b0ae93eb132f382b114aa49c8d423e8423c59b61

See more details on using hashes here.

File details

Details for the file jq-1.5.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for jq-1.5.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d0146ee49414a2de37e16d5a5a3e5e1e4049c3d323e7080996a8d1e35466aab9
MD5 d301b19a77f00cb5b1e514ab375979a5
BLAKE2b-256 e17646781a29598bbff0a0328afa6b8c17c9bd4b2ed97e5b5a5e1618e1733472

See more details on using hashes here.

File details

Details for the file jq-1.5.0-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: jq-1.5.0-cp312-cp312-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 620.2 kB
  • Tags: CPython 3.12, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.2

File hashes

Hashes for jq-1.5.0-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 36e43692ab7a344907e02ed3152580f9fff61586e61b5f2a887fb7c0d233ed27
MD5 5d61e43e77db128f55960c1a66065018
BLAKE2b-256 43102491adcbc07754b6f8ac3b2bb6d5b573196a6a978bf4217bb26d403fef12

See more details on using hashes here.

File details

Details for the file jq-1.5.0-cp312-cp312-musllinux_1_1_i686.whl.

File metadata

  • Download URL: jq-1.5.0-cp312-cp312-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 620.0 kB
  • Tags: CPython 3.12, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.2

File hashes

Hashes for jq-1.5.0-cp312-cp312-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 6eaebbc9b7536f21302a9c1649f4d927301fe3d9b51cdcf4556e5de347b6a266
MD5 c8739dc3d0c108dbad31657f46581b51
BLAKE2b-256 f7140f7f10c99e77d660d87e17f3b60780a66972e4f19164c8f1918912f51078

See more details on using hashes here.

File details

Details for the file jq-1.5.0-cp312-cp312-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for jq-1.5.0-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 cb42418ac19eb4b83aea499585e39e9f6afc9cd7b88b97bff98fcb7b8226e363
MD5 58835030e587f24309b12955cbff4134
BLAKE2b-256 327232463b008ef2373768a64ba95d40b70117537bdb09d142443a3b0d110cb2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jq-1.5.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e78255d68734f5a4f42bfe003d6393b382031346d26611f788e73147d11bf3e4
MD5 14bc2ce5d00787d7bb86c83ec68cd691
BLAKE2b-256 6159bbc546bf215c7c419959e39e1076f16059c8e9f3512d0db4eb696abd8415

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jq-1.5.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0953069eed82f53bb079c4b5680d6049f28397989c5275f9b9b4583a4dacee58
MD5 7ea5381803e2c34dfbd9f936a9db427e
BLAKE2b-256 567743c86a1994aea92db5b5b182fbb7c1ea3b99c3d26fb7412b09c8580d93e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jq-1.5.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7f0940f33f16c7f388c88243b51a61c95e748a46a7cc37817ce75b96741b7b8e
MD5 da67c5408d5f02cddc8c0b99a1e2f208
BLAKE2b-256 ed2b40093b7538fa9ce97e21efd2a168e49cec5ec6c8058d396ce0bd634e939a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: jq-1.5.0-cp312-cp312-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 368.8 kB
  • Tags: CPython 3.12, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.2

File hashes

Hashes for jq-1.5.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ce2c1d23a12932bdc6c6b83f293d3a89b3dd0bbaa179d975ab630f2943be2b5f
MD5 a3a3c47cadd9709201d4d234f94e79f0
BLAKE2b-256 607ca5dfd1f49013a0e8af3fed81ba0f1afdfb99ad788b539ff30f27017d1b03

See more details on using hashes here.

File details

Details for the file jq-1.5.0-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: jq-1.5.0-cp312-cp312-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 365.7 kB
  • Tags: CPython 3.12, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.2

File hashes

Hashes for jq-1.5.0-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bc6abc8d1ae81dac4926625cde5e6ebc3cd9dfe7159337932dd3a0e68c107443
MD5 faae600d7bfbf58edf659ababaaa5e17
BLAKE2b-256 d439a6b033f74a1c708d070ff6bdf642a19e1b8b90ed5e1fb1d7502bdf2fa6e3

See more details on using hashes here.

File details

Details for the file jq-1.5.0-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: jq-1.5.0-cp311-cp311-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 624.7 kB
  • Tags: CPython 3.11, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.2

File hashes

Hashes for jq-1.5.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 ecb3a44559fdfdd0241cfade1cfce65fc53ae130a93711ae52e74a43bc65d34a
MD5 9743df936dbab05485658e54f2ec5707
BLAKE2b-256 657994460b24857086f6449e14b2a166edc958d1eed73958fb577a6f79bc1233

See more details on using hashes here.

File details

Details for the file jq-1.5.0-cp311-cp311-musllinux_1_1_i686.whl.

File metadata

  • Download URL: jq-1.5.0-cp311-cp311-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 629.2 kB
  • Tags: CPython 3.11, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.2

File hashes

Hashes for jq-1.5.0-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 9e935d899d453b59434cc091fe8c6821c3711665ae6c1e1b6f2e7df7dda78188
MD5 aafb4a03af393fb92d8164002d22afe8
BLAKE2b-256 89bc2659dc85ffe3bac3a5fafd2f67da90eb3240ea8879f59fb9734eb358618a

See more details on using hashes here.

File details

Details for the file jq-1.5.0-cp311-cp311-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for jq-1.5.0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 faa48f294934b996983ebf7d60cbd70c15694233a55ed0a630a75b514cccd1b1
MD5 8a44fdab9d73ec129790ab80628abc53
BLAKE2b-256 458cc70ceeeb053bb3e4ffbf521f8125a52d4adcd819882145aa8810d237df5d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jq-1.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5de12e277457b1de6b9b82ce450c537eb8c49a2b412572d2af27457cd6754040
MD5 fa98150140caaef1cfe7abe4b90b9d01
BLAKE2b-256 31941f18144dfa29d786c6a949d6463e6e78d609364e9af9e1b3c8245d9bf284

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jq-1.5.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 61e087132b9682548cc36a2700f304aafb0f46cfcd2b427debc38f9c236de821
MD5 9b8ebe73b9af357e9588ec2ca3ed19ad
BLAKE2b-256 4c117cee38af6370aab8759cda7ddbc861b6ab6d72ff242055bcdacbd6915564

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jq-1.5.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 00817a2c95ade48b96b45572a53c56e93dd59dcfac3e1d2ce318d856b78869b9
MD5 8c53086375cbd3b2c90a96bb0f554428
BLAKE2b-256 4595f1a01ff4ed373d2b17cf1c6ef467c1ccdd0859d0d43c41f658b445bcfd15

See more details on using hashes here.

File details

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

File metadata

  • Download URL: jq-1.5.0-cp311-cp311-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 369.4 kB
  • Tags: CPython 3.11, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.2

File hashes

Hashes for jq-1.5.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cb14b7cb700a7e309733d40288a85fd00e96c7b6b299110a94572643dbebadb3
MD5 be88b5ca8c7ecf11b7c800688d090dd1
BLAKE2b-256 98d0ed79183e39bc3f8cd4b704680ad182acbb463f7043da5748aa11130827e8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: jq-1.5.0-cp311-cp311-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 367.4 kB
  • Tags: CPython 3.11, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.2

File hashes

Hashes for jq-1.5.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 06697340b50143d024077628150cbc39ee0b49abf1572f830a0cf68982ae69e3
MD5 dd98fff50b64e6e93e7474a57d959b19
BLAKE2b-256 b34f863ca4b2b85f3e55428f362ff508df4c2fce7e47f205941ca7d6ee02457b

See more details on using hashes here.

File details

Details for the file jq-1.5.0-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: jq-1.5.0-cp310-cp310-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 618.8 kB
  • Tags: CPython 3.10, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.2

File hashes

Hashes for jq-1.5.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 b2f5e4810230f6c3bed8df527cf5af2de21a67241f5fcfbf83bd85d00e4a0751
MD5 efa28cec0cc6c1c99dea190da7ab85b0
BLAKE2b-256 b5711802bbd0e1cf0fbc2b0fdbe3c08f384eab5f1a5cfae7a5c9c81cd15bd6c3

See more details on using hashes here.

File details

Details for the file jq-1.5.0-cp310-cp310-musllinux_1_1_i686.whl.

File metadata

  • Download URL: jq-1.5.0-cp310-cp310-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 625.6 kB
  • Tags: CPython 3.10, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.2

File hashes

Hashes for jq-1.5.0-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 cf084a287b66c5a832d7e145de407bdb7e083a401858afb102bc386905ac3541
MD5 3d149ce2f3180bea12a0d7ed60a6acac
BLAKE2b-256 d50a719bd7426cc4e0322f5336470652ffd39a7c9fe4e6ae8680eda7ee210b8f

See more details on using hashes here.

File details

Details for the file jq-1.5.0-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for jq-1.5.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 09bfe937eebed29b411de27ae500a086653a928f6b0e5b93761bae1c88371831
MD5 11d4e6af0c0596669dd41170377c296f
BLAKE2b-256 28a0d3a6523af8357e1ce6078011455f61a362dd1d26012d3aa4c190c480dac7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jq-1.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5d94d51152185436457b6b1f3cb9ee673832427305d45cd93571ae91f384ef8b
MD5 e7f215ecfe8d03b4be94b79337fb6dca
BLAKE2b-256 336bb0019f33b8fcb247ad38f8778ae441eaf4e34b21e4af0125963c806959b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jq-1.5.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ae83d6f4a8ceb060034ceb88af64fecfd91299e053c4e8d88142d8e88e8d487a
MD5 3ecab73ae0b6fb29daacdabb1b9243c0
BLAKE2b-256 28a62e4725211b6ff06a9f153c9cff1c073d68c3b60318b5adc1464f95b2cc8e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jq-1.5.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9b8a53450cbbe750831748dfd1821c1962f0ecff8dace5939d2920e57177c7b0
MD5 8a076aeb7c3481b3cb396d4a524a6486
BLAKE2b-256 c797f5a40d66dc8d9183b2b261185262c2429c9031469d22422923f0daf69a59

See more details on using hashes here.

File details

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

File metadata

  • Download URL: jq-1.5.0-cp310-cp310-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 370.5 kB
  • Tags: CPython 3.10, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.2

File hashes

Hashes for jq-1.5.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bdb30ec3bbfe71c3c24c1592f866d7ebf203e17441499f0c6f192f7eb1b8e177
MD5 62b8f12c7c26e8be91191b33f17045fa
BLAKE2b-256 ab82967d56c9b04acb240b59012b0e53853ccba632ca77e773468bbe46a614f6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: jq-1.5.0-cp310-cp310-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 370.0 kB
  • Tags: CPython 3.10, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.2

File hashes

Hashes for jq-1.5.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8e8c1bdd81c6ece8b6c575ef1af8f527da27fbe2efd766b6df6298486fa61376
MD5 2bb5e7d2bc921d43871e682b0fdea8c4
BLAKE2b-256 11ea0cadb06e60d3fdd966801f3c6f97aa9195c9d80f104e2b9c8c6b6b12460d

See more details on using hashes here.

File details

Details for the file jq-1.5.0-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: jq-1.5.0-cp39-cp39-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 624.0 kB
  • Tags: CPython 3.9, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.2

File hashes

Hashes for jq-1.5.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c1d7218f64225e67c0d2e028f8c03a495a7322aa32b2536c454360aa399b41fc
MD5 4fdcc8cdf1e2a04108ca999ee59c5051
BLAKE2b-256 f5b4b7d986698229827337e790dd4a7f8eba1780e6d22fc4c6f59e7edeade1a7

See more details on using hashes here.

File details

Details for the file jq-1.5.0-cp39-cp39-musllinux_1_1_i686.whl.

File metadata

  • Download URL: jq-1.5.0-cp39-cp39-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 629.5 kB
  • Tags: CPython 3.9, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.2

File hashes

Hashes for jq-1.5.0-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 4d956d481231d967d2bb085b3c28ee6d331b8ab322773c64105d800299e7e550
MD5 e3ca9f7a22770ea1b0f2b50e02587818
BLAKE2b-256 04e751ca69f067f0faabd921d5a51916f710a7c844f4205e4208df9159614c52

See more details on using hashes here.

File details

Details for the file jq-1.5.0-cp39-cp39-musllinux_1_1_aarch64.whl.

File metadata

  • Download URL: jq-1.5.0-cp39-cp39-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 609.0 kB
  • Tags: CPython 3.9, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.2

File hashes

Hashes for jq-1.5.0-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 5211f65f2966c71ddd798808b05935b908c621a8feebe7bce82406df4207c503
MD5 4e1a16af0977b3461974c7a41c9e163e
BLAKE2b-256 1c3b09eab8b5991bc23c93ee955c18f8d894efffe8a023ba195495c31287a146

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jq-1.5.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 26c085fd6e90756180e994da5b80ff98e7f2d595a862cc5356698d42b3dc5de3
MD5 17577b171a32e75cdfbd1530a223196a
BLAKE2b-256 766a73a83b714ad4333b3b8b22c068da373b1fcc41dd4a47a18e6588429ecfc1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jq-1.5.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 73047a032eecca1754ba0ed1f2f527127070bdc533915d93a7fd89771bc274b8
MD5 06816dbf3fab4bc97c65c3bbcb7539fc
BLAKE2b-256 8e04ea2dce84f844d5a63df1a41f90a8a83f4c2ff344139c753730e4f0310f58

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jq-1.5.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 401e842eca76c2bdfb4843129c913a2bcfd03e40302a73446b56bedfe201d9da
MD5 24ca637b50aad33e41f020460b132db2
BLAKE2b-256 d3a6678f15eb03092f363e0633677bf49a14390910f575c6fe67a1520ecb03c2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: jq-1.5.0-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 367.7 kB
  • Tags: CPython 3.9, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.2

File hashes

Hashes for jq-1.5.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ad47e6f5447aae2fb8a54c2838b778229ee76f2a1d38df0a00ddc496138bb289
MD5 c3f915fadd634dd6df62262922cd6a90
BLAKE2b-256 b4c83306dd6a13378555b75115f4f0e6f4750ec86940e67525f83470cb827812

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for jq-1.5.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7d432826327f85bc69cc70f4e7a518cd04d81c7b5b076397715b3fc6fae7a346
MD5 fa52648aaaee2b4d097870ecc000105f
BLAKE2b-256 0352efc52386163a89057914f6087d0601ed07abdbf0c11e08b2aed6fd856cc3

See more details on using hashes here.

File details

Details for the file jq-1.5.0-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: jq-1.5.0-cp38-cp38-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 638.6 kB
  • Tags: CPython 3.8, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.2

File hashes

Hashes for jq-1.5.0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e9455f21c29c1de276e12f6fb542e56e5ab9907cc690b902bc4f81bf7aa8085a
MD5 85768eda6c82676e636689ddbfe88043
BLAKE2b-256 4bd8adac33760edfc3598a06e992f410305743803757f5685f8ce9ed04e05abc

See more details on using hashes here.

File details

Details for the file jq-1.5.0-cp38-cp38-musllinux_1_1_i686.whl.

File metadata

  • Download URL: jq-1.5.0-cp38-cp38-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 645.8 kB
  • Tags: CPython 3.8, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.2

File hashes

Hashes for jq-1.5.0-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 b9642b2f4da8bbee0bc1da9b565289109447080282a210533836755f70827a06
MD5 520c36494e2728df6c2d8427793afda3
BLAKE2b-256 af2b3d2638b114dd9dcb187765a7e067047eea4a6e07ea05d0b3091eba32f109

See more details on using hashes here.

File details

Details for the file jq-1.5.0-cp38-cp38-musllinux_1_1_aarch64.whl.

File metadata

  • Download URL: jq-1.5.0-cp38-cp38-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 623.5 kB
  • Tags: CPython 3.8, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.2

File hashes

Hashes for jq-1.5.0-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 7818a9eb8ee41b98fb66ec1bc303c042ea75b2fd008f17ec0b6b45bc0553cae5
MD5 07e344142332b8533509a43bfa29abec
BLAKE2b-256 d6bd85a83a75de4a89c574edb5d468ba76dbb31686606ac2452b5c3d1ac2add7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jq-1.5.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 917800b823e9e49583e59145536ef937e84a2df6ec57a2a4c8650d8be459070f
MD5 a44fb52a57ef3bfa8b406e91c8ae5354
BLAKE2b-256 210d57861a88d97ddd63f6bc7872b394e66b56bda633e95998f7c630dde33dff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jq-1.5.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 54e9526677449460ab85d4189677f0ec1475204a08f3d0b4e7136e2fbc9733f9
MD5 51faca2c109c1f43fea1c559cdba0613
BLAKE2b-256 158f59f7e61dbced9a1c8ff7503743a09d90db6f95e8c2247b3920b75d18fd2c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jq-1.5.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 845c3f51fbc7dc8f182b9b18bead60b83bcd85af143ee5c439c8677b21b004ba
MD5 d3e4be153073facf5f475b520e804f36
BLAKE2b-256 76587805ce12f8c745ef40639003e3a762b3c48a52b678ac1bc44ca071741693

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for jq-1.5.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 61f854e08e855de944a44290e3a8abdb203e7efd25f3604d19248b922d484206
MD5 d7825ec104f56848bc34e50d0a63e064
BLAKE2b-256 40d3223cdd21614a4952897aa414fb383a61a9731c8b35dcd7f906f7d43cf74e

See more details on using hashes here.

File details

Details for the file jq-1.5.0-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: jq-1.5.0-cp37-cp37m-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 593.5 kB
  • Tags: CPython 3.7m, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.2

File hashes

Hashes for jq-1.5.0-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 3fc1b28afffda07aecf1518bd2a4e6289da4e02116827953abb576daf1f14ccb
MD5 fc9713b8bc403999693bbaf955c9a52a
BLAKE2b-256 cea1442f07eaecea2963258ac48a7ee6cb727f592e984059aa7c9768cdea7a36

See more details on using hashes here.

File details

Details for the file jq-1.5.0-cp37-cp37m-musllinux_1_1_i686.whl.

File metadata

  • Download URL: jq-1.5.0-cp37-cp37m-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 602.8 kB
  • Tags: CPython 3.7m, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.2

File hashes

Hashes for jq-1.5.0-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 53dc6b1b33b1461c58ebd5c98c643fc42f3c1c0312df2261cb39adc55d39da83
MD5 1e1e6c66013dec3884cf230eea7719dc
BLAKE2b-256 fc461642d8e6d839c02fd7b72dd619d9decf66911c9f5206e689d2e5c6e6be94

See more details on using hashes here.

File details

Details for the file jq-1.5.0-cp37-cp37m-musllinux_1_1_aarch64.whl.

File metadata

  • Download URL: jq-1.5.0-cp37-cp37m-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 578.3 kB
  • Tags: CPython 3.7m, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.2

File hashes

Hashes for jq-1.5.0-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 f93f26c19451bdd849b5057ead13ef53849b70b989602ed2205f9fb072b8d5e8
MD5 400424641313cb6ceafdf428d8d44b3c
BLAKE2b-256 bfb497026cdc68e8805070931df20efb5653399a9fad1263ac9d552fce699db7

See more details on using hashes here.

File details

Details for the file jq-1.5.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for jq-1.5.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 16e1073f64f76cdef5100f5b542f46425fd394d257ef99e39f46b0dad3a9f223
MD5 58e005472a39dace60cc1a4c923ad4b7
BLAKE2b-256 298f069941589410fc55a43404460dc8d3def7f0320e79a9ef88e5302f5b1635

See more details on using hashes here.

File details

Details for the file jq-1.5.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for jq-1.5.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0d32ff6e62f3defa86bb8caef692e7e512a6b51b81386660606ff3ac495ec7e8
MD5 406b96452664da8174def597c0c17777
BLAKE2b-256 0a04fa3a66db5d38ca5ceb2c47e91ac251eaec0e44f34a09d115d3846ab45cd3

See more details on using hashes here.

File details

Details for the file jq-1.5.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for jq-1.5.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d97c40df8e084ab59121fa5fa649781d2b62a481ead47d97de8eb99b1d27fb57
MD5 b0077ea0d01f84f0c415111c87eeb826
BLAKE2b-256 2c5a46c1489a15b2d136d6cce637abda57b96c89c660204cbdf3611031d67e38

See more details on using hashes here.

File details

Details for the file jq-1.5.0-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: jq-1.5.0-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 365.6 kB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.2

File hashes

Hashes for jq-1.5.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1964acf2ce836cc51feb7e714571d6c20bc78dd1bf113425f0dc396723629d19
MD5 ff65499bb6e270d4cea7071c420e47cd
BLAKE2b-256 7d6e3e12eec3363d86083d52f01ec88d7482ffcdfb9237fb2a7f91b78ca46a6a

See more details on using hashes here.

File details

Details for the file jq-1.5.0-cp36-cp36m-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: jq-1.5.0-cp36-cp36m-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 593.8 kB
  • Tags: CPython 3.6m, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.2

File hashes

Hashes for jq-1.5.0-cp36-cp36m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 5e73e24009343c869582426e385477e389d735143a002dfb74d66ca9b2f23827
MD5 3d1e71a2ea6f7733f409ca5f7fefd8a9
BLAKE2b-256 a22a97ee811710cc51afdf22bb7de7a109ec68d2679a35ce8e3149a2fea414f5

See more details on using hashes here.

File details

Details for the file jq-1.5.0-cp36-cp36m-musllinux_1_1_i686.whl.

File metadata

  • Download URL: jq-1.5.0-cp36-cp36m-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 602.4 kB
  • Tags: CPython 3.6m, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.2

File hashes

Hashes for jq-1.5.0-cp36-cp36m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 b9954bcc189e25d3f30768badb5891646500d1c93b371fb09e3129e8abfe6d46
MD5 a4400ad17411fabb129f30eb4a00078e
BLAKE2b-256 deb294464967fdbb0499fc070b1a4c28d7a58c60922f2c8223e0df1c0825c1a9

See more details on using hashes here.

File details

Details for the file jq-1.5.0-cp36-cp36m-musllinux_1_1_aarch64.whl.

File metadata

  • Download URL: jq-1.5.0-cp36-cp36m-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 578.0 kB
  • Tags: CPython 3.6m, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.2

File hashes

Hashes for jq-1.5.0-cp36-cp36m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 d122d2ce3342a5594e76b6cbe6454346114bd077a6329a642fd10371ff0177e1
MD5 c11eb78e840b8a4dcb3affcb2f4382a5
BLAKE2b-256 26363802312db0fc3d9f6aef47acd7a4ec966e0e2f244d816197103eeb328df0

See more details on using hashes here.

File details

Details for the file jq-1.5.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for jq-1.5.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3766fde4feb4b8f6a74b99a1988f5befc4dde9b7d66ee01a402e0aeebf160d0b
MD5 f7eedf17930b4c93b9002bc6771919d8
BLAKE2b-256 809ca3bb9e0da204100133ad81410c4ec5059eae171e0ccee0ce9369bb00627c

See more details on using hashes here.

File details

Details for the file jq-1.5.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for jq-1.5.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0ffc746cb7f3c1a15f51671b8e47f06c491eda528365ceda584fe0c75d7a56bb
MD5 df4d79cd3a991539a880ef2651347eef
BLAKE2b-256 0f55332c820856505c39df9fde10ebc1318d2cdd00461f5122c0969767429fe5

See more details on using hashes here.

File details

Details for the file jq-1.5.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for jq-1.5.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4dedc4d8bdcf8f95a2f05927bc7ec24ce4528d94b30394f02638dce1dd694dc7
MD5 81998f511c51f4989d7737699314d624
BLAKE2b-256 7bd0353a93c313460204a762f0c879c6eed36ddce33cd2cfea641096316f13d6

See more details on using hashes here.

File details

Details for the file jq-1.5.0-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: jq-1.5.0-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 365.3 kB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.2

File hashes

Hashes for jq-1.5.0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1f4d50f7d89a18d9cfcea9d44433562379f1c03d6ea128ec5087497b359d298e
MD5 b4f4ae3b6b8f951b8ffa0dd7b254aae4
BLAKE2b-256 3f1d9ce6afefa6e83e7a3932728641d8f37189772ed41324e69faf0d445a2035

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