Skip to main content

jq is a lightweight and flexible JSON processor.

Project description

This project contains Python bindings for jq 1.7.1.

Installation

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

pip install jq

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

  • Autoreconf

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

  • libtool

  • Python headers.

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

Debian, Ubuntu or relatives

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

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.8.0.tar.gz (2.1 MB view details)

Uploaded Source

Built Distributions

jq-1.8.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (424.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

jq-1.8.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (409.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

jq-1.8.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (435.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

jq-1.8.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl (410.1 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

jq-1.8.0-pp310-pypy310_pp73-macosx_10_13_x86_64.whl (401.4 kB view details)

Uploaded PyPy macOS 10.13+ x86-64

jq-1.8.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (424.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

jq-1.8.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (409.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

jq-1.8.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (435.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

jq-1.8.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl (409.9 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

jq-1.8.0-pp39-pypy39_pp73-macosx_10_13_x86_64.whl (401.2 kB view details)

Uploaded PyPy macOS 10.13+ x86-64

jq-1.8.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (425.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

jq-1.8.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (411.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

jq-1.8.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (436.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

jq-1.8.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl (409.7 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

jq-1.8.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (401.6 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

jq-1.8.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (430.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

jq-1.8.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (414.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

jq-1.8.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (439.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

jq-1.8.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (401.6 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

jq-1.8.0-cp313-cp313-win_amd64.whl (417.9 kB view details)

Uploaded CPython 3.13 Windows x86-64

jq-1.8.0-cp313-cp313-win32.whl (405.7 kB view details)

Uploaded CPython 3.13 Windows x86

jq-1.8.0-cp313-cp313-musllinux_1_2_x86_64.whl (750.4 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ x86-64

jq-1.8.0-cp313-cp313-musllinux_1_2_i686.whl (746.4 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ i686

jq-1.8.0-cp313-cp313-musllinux_1_2_aarch64.whl (721.0 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ ARM64

jq-1.8.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (746.3 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

jq-1.8.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (725.9 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

jq-1.8.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (733.7 kB view details)

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

jq-1.8.0-cp313-cp313-macosx_11_0_arm64.whl (421.3 kB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

jq-1.8.0-cp313-cp313-macosx_10_13_x86_64.whl (415.0 kB view details)

Uploaded CPython 3.13 macOS 10.13+ x86-64

jq-1.8.0-cp312-cp312-win_amd64.whl (417.3 kB view details)

Uploaded CPython 3.12 Windows x86-64

jq-1.8.0-cp312-cp312-win32.whl (405.5 kB view details)

Uploaded CPython 3.12 Windows x86

jq-1.8.0-cp312-cp312-musllinux_1_2_x86_64.whl (751.2 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

jq-1.8.0-cp312-cp312-musllinux_1_2_i686.whl (746.8 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

jq-1.8.0-cp312-cp312-musllinux_1_2_aarch64.whl (722.0 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

jq-1.8.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (748.9 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

jq-1.8.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (729.1 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

jq-1.8.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (735.9 kB view details)

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

jq-1.8.0-cp312-cp312-macosx_11_0_arm64.whl (422.3 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

jq-1.8.0-cp312-cp312-macosx_10_9_x86_64.whl (415.9 kB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

jq-1.8.0-cp311-cp311-win_amd64.whl (416.9 kB view details)

Uploaded CPython 3.11 Windows x86-64

jq-1.8.0-cp311-cp311-win32.whl (405.7 kB view details)

Uploaded CPython 3.11 Windows x86

jq-1.8.0-cp311-cp311-musllinux_1_2_x86_64.whl (749.3 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

jq-1.8.0-cp311-cp311-musllinux_1_2_i686.whl (746.6 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

jq-1.8.0-cp311-cp311-musllinux_1_2_aarch64.whl (722.8 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

jq-1.8.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (746.6 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

jq-1.8.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (731.5 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

jq-1.8.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (739.6 kB view details)

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

jq-1.8.0-cp311-cp311-macosx_11_0_arm64.whl (422.4 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

jq-1.8.0-cp311-cp311-macosx_10_9_x86_64.whl (416.9 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

jq-1.8.0-cp310-cp310-win_amd64.whl (417.8 kB view details)

Uploaded CPython 3.10 Windows x86-64

jq-1.8.0-cp310-cp310-win32.whl (407.1 kB view details)

Uploaded CPython 3.10 Windows x86

jq-1.8.0-cp310-cp310-musllinux_1_2_x86_64.whl (725.5 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

jq-1.8.0-cp310-cp310-musllinux_1_2_i686.whl (723.0 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

jq-1.8.0-cp310-cp310-musllinux_1_2_aarch64.whl (698.0 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

jq-1.8.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (737.4 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

jq-1.8.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (719.3 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

jq-1.8.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (727.9 kB view details)

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

jq-1.8.0-cp310-cp310-macosx_11_0_arm64.whl (422.2 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

jq-1.8.0-cp310-cp310-macosx_10_9_x86_64.whl (416.5 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

jq-1.8.0-cp39-cp39-win_amd64.whl (417.7 kB view details)

Uploaded CPython 3.9 Windows x86-64

jq-1.8.0-cp39-cp39-win32.whl (407.4 kB view details)

Uploaded CPython 3.9 Windows x86

jq-1.8.0-cp39-cp39-musllinux_1_2_x86_64.whl (726.1 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

jq-1.8.0-cp39-cp39-musllinux_1_2_i686.whl (723.8 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

jq-1.8.0-cp39-cp39-musllinux_1_2_aarch64.whl (698.7 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

jq-1.8.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (738.1 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

jq-1.8.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (719.6 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

jq-1.8.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (728.9 kB view details)

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

jq-1.8.0-cp39-cp39-macosx_11_0_arm64.whl (422.3 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

jq-1.8.0-cp39-cp39-macosx_10_9_x86_64.whl (416.7 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

jq-1.8.0-cp38-cp38-win_amd64.whl (420.0 kB view details)

Uploaded CPython 3.8 Windows x86-64

jq-1.8.0-cp38-cp38-win32.whl (408.3 kB view details)

Uploaded CPython 3.8 Windows x86

jq-1.8.0-cp38-cp38-musllinux_1_2_x86_64.whl (734.4 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

jq-1.8.0-cp38-cp38-musllinux_1_2_i686.whl (734.5 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

jq-1.8.0-cp38-cp38-musllinux_1_2_aarch64.whl (707.7 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

jq-1.8.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (744.2 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

jq-1.8.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (726.3 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

jq-1.8.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (735.8 kB view details)

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

jq-1.8.0-cp38-cp38-macosx_10_9_x86_64.whl (416.4 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

jq-1.8.0-cp37-cp37m-win_amd64.whl (414.6 kB view details)

Uploaded CPython 3.7m Windows x86-64

jq-1.8.0-cp37-cp37m-win32.whl (404.8 kB view details)

Uploaded CPython 3.7m Windows x86

jq-1.8.0-cp37-cp37m-musllinux_1_2_x86_64.whl (705.2 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.2+ x86-64

jq-1.8.0-cp37-cp37m-musllinux_1_2_i686.whl (701.8 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.2+ i686

jq-1.8.0-cp37-cp37m-musllinux_1_2_aarch64.whl (681.7 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.2+ ARM64

jq-1.8.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (705.5 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

jq-1.8.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (688.1 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

jq-1.8.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (698.4 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

jq-1.8.0-cp37-cp37m-macosx_10_9_x86_64.whl (415.2 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

jq-1.8.0-cp36-cp36m-musllinux_1_2_x86_64.whl (688.3 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.2+ x86-64

jq-1.8.0-cp36-cp36m-musllinux_1_2_i686.whl (685.8 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.2+ i686

jq-1.8.0-cp36-cp36m-musllinux_1_2_aarch64.whl (662.3 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.2+ ARM64

jq-1.8.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (686.8 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ x86-64

jq-1.8.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (668.9 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ ARM64

jq-1.8.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (679.0 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

jq-1.8.0-cp36-cp36m-macosx_10_9_x86_64.whl (412.9 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for jq-1.8.0.tar.gz
Algorithm Hash digest
SHA256 53141eebca4bf8b4f2da5e44271a8a3694220dfd22d2b4b2cfb4816b2b6c9057
MD5 5d49eb91f9781dab5c3e80512e7cc523
BLAKE2b-256 ba323eaca3ac81c804d6849da2e9f536ac200f4ad46a696890854c1f73b2f749

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jq-1.8.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b4a79e94c83ebde789ff54e609f19b1923b2f57b2bd17ccb4953713577d4c3dc
MD5 6f5bca66fa1868301fa4fbb078adc823
BLAKE2b-256 ae7504cb177d21afdbe5e31e2e2e1ae9ef6df651dd5668187090121ca179d147

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jq-1.8.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 325480cba94f504b282f42912a16b32d94dd1e6347cf3a367ec3c97fe1dd1b3a
MD5 bc320b3409c0abece61016c93f3a8979
BLAKE2b-256 9f2e70c61f02fc6307bcb2e079c8aa950eba9caf654c52473955d541261cf091

See more details on using hashes here.

File details

Details for the file jq-1.8.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.8.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 dc7ebcc1037c8a82db30aff9177f17379bcc91734def09548e939326717fd82d
MD5 85c6066988119ac1dd73dea45d2fa903
BLAKE2b-256 1fb607b8ca4cd626eca4491c9f055f406d9a45375d7fcb75a877cb25bc88f023

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jq-1.8.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 353db01bbb964eff9e39c8966e7c123cbdad1ff59cc3bee773a7a2034e2b843b
MD5 c21407062b86dcf8aeb5e5181cd7ddf4
BLAKE2b-256 953f9f840980d6390b7eacb2a1d3e17c1edf9b0757571c93f801c48f5f494c58

See more details on using hashes here.

File details

Details for the file jq-1.8.0-pp310-pypy310_pp73-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for jq-1.8.0-pp310-pypy310_pp73-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 e14aa012606470d1a21fdc39835b8eef395f7ea143c720940a48156de94752e9
MD5 8f4ea60bec88e57efe70c827b1de54ad
BLAKE2b-256 103ad8350a87cf73e66d7252020c31e50e0a5fedc00b343676e0ec1075399312

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jq-1.8.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 57e8bcdf2a744ee702542f3441fb2583db7f28602a6a2ff4a6d7009a11fafc86
MD5 0c38a17df8c01d5a3d12e63f1717e1d9
BLAKE2b-256 d0a9bc6b881c8896da87d275fbd280c435b93bd0c49e4b2bb9ef6cbfbff9e1d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jq-1.8.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 850540641b8e0ecebc8763ff660811bcf5834468fd2572ee3ef8d79dea67050d
MD5 621892dd85f6a63e1d916b8b63eefa22
BLAKE2b-256 ac289c0b9c1f33ad82a3fb84d67220599c47d14aeeb249457429f5afb55d3f99

See more details on using hashes here.

File details

Details for the file jq-1.8.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.8.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b6f61ea995c11dd1877f0452d12aad2b2a617b965e31033d2e62db4a530e87c0
MD5 78cf0bd1d1bb879ef32ff2fe0a155ba5
BLAKE2b-256 2a3299b24ec77f5ee3b1b51f900872529523890f97ffbb94299e26077c47734c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jq-1.8.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c3c2ba32ea87d6f15a1e83af71d5af12c82814dac21809a3995fb8e5763968ff
MD5 c0d6efa02fc314f6cb0f432f291c5655
BLAKE2b-256 c3d248d2355903106480569fe2dcab40f7ca48c2ae7edad19db260de3d305be3

See more details on using hashes here.

File details

Details for the file jq-1.8.0-pp39-pypy39_pp73-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for jq-1.8.0-pp39-pypy39_pp73-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 4b32381ebdf1b5870e32a90737aa7d91824eaf5c78586973845de80802eb035a
MD5 c767ac5c9dcb8f00b56a2262776969d0
BLAKE2b-256 8afa708d49ffd06c06c7b0b0e43d09d0126047851f3cc08b4348b21338c2ecb9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jq-1.8.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e433560001d59cfa3551f276d7b6c6943fa6b6e05019b2071ccb41c9b2dc0c3c
MD5 8f378f82ce05b22e225dcde3e1e37b31
BLAKE2b-256 f696e14ef52e67eed82c501fabf9554e3f57ddcf3b1d59a9b5fdb98c48f31aa1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jq-1.8.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c049335a00f502b213376f67f651adc86cbe636468107190d08a4b1f77754fb5
MD5 ade3dcdaf6f06c2f9b44952ad30c6de3
BLAKE2b-256 b2ee4e66b4dc0d81810b1b2e938e371469500ee8e00ea79ccd90a04329f32619

See more details on using hashes here.

File details

Details for the file jq-1.8.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.8.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 dafdae5ccc2e75df69b32518805c8d9d7aa97d0388cd6dc89b83d7bd516ea2eb
MD5 975359460e26034d1d95cd3efea6b4a1
BLAKE2b-256 4c8450a087b872ead92e162c16406982e57b1034ad55ab18c4744144ebd89505

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jq-1.8.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 01cc78dbf56e75debc9d46ba85ef61ac37472e8d629d01dbea79d4c09ef6dd51
MD5 70d387d372faf2e85362f53d5b55c004
BLAKE2b-256 cca03a758e50e9c2c1690f4f4991ef175de7e031552351ebd00929219f24c99d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jq-1.8.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b8004ba63facc31eecd09e86e02cf5e1a5cf491cf8856f30d70c3fa96b8c74f9
MD5 94d46e32613d53d120198c3c52269e34
BLAKE2b-256 1879a3a832445d988e53121e91d4f86e999042bfb3fd72b2028b65b109d5eb3f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jq-1.8.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 21a0a58482e8e6be03d7b280365d40c3c4c1cf36d3ba58f98b1e351c42d6483d
MD5 6b893ea13d5f3adbb028626493940918
BLAKE2b-256 e4d36d3804747d7f1416a2d0a1b1b97a3516c0b8c738dbff92346b015777f9f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jq-1.8.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8ef1d313fec8820648879e7c167a3162ebbd711a5429a07427ac3f9c48ab8415
MD5 53899fb5d5748594ce330b3ead503500
BLAKE2b-256 5f60876fe542e3a3df57764aa6df9ba7782f6728d9f55cfc84ce0274d654ccc3

See more details on using hashes here.

File details

Details for the file jq-1.8.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.8.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 04b2f964c5ad6ac3013b052099bfc0cf8bd2cf80cedca670153687681c013641
MD5 42bd2aa7c8ea7f89b7a19b19d206b488
BLAKE2b-256 4cf5ac7e64f913d3820f6992a3bb25281da3365eee094cbf7d85d42f2b4294d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jq-1.8.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8776c33c0b69ae8de50cde9a338ef69cc0db4122ff6763a18c5532d6a5eb86f4
MD5 ec0f4a2d66864eefcc9e65df90dfdf24
BLAKE2b-256 82892966e7120699e37eb03a70b53ff44da5a2ac023195f44803657a3f5e009c

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for jq-1.8.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 53e60a87657efc365a5d9ccfea2b536cddc1ffab190e823f8645ad933b272d51
MD5 53dbc0071148ecf6200379a07d32d96d
BLAKE2b-256 ce4d6e1230f96052d578439eee4ea28069728f3ad4027de127a93b8c6da142f0

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for jq-1.8.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 96cb0bb35d55b19b910b12aba3d72e333ad6348a703494c7738cc4664e4410f0
MD5 fd9a44cc640629a16ceb161fe288b3ea
BLAKE2b-256 86b4e2459542207238d86727cf81af321ee4920497757092facf347726d64965

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jq-1.8.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2d7e82d58bf3afe373afb3a01f866e473bbd34f38377a2f216c6222ec028eeea
MD5 2716d350f15d6a6e7c32ca5f0221ffa1
BLAKE2b-256 8452f100fb2ccd467c17a2ecc186334aa7b512e49ca1a678ecc53dd4defd6e22

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for jq-1.8.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1be1638f9d5f38c83440fb9626d8f78905ed5d70e926e3a664d3de1198e1ef79
MD5 d46ec195071284134ed33caa47ad86d7
BLAKE2b-256 e06fd04bdcc037ced716e2522ebf7a677541b8654d7855cd1404d894f1ecd144

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jq-1.8.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b99761e8ec2cedb9906df4ceae33f467a377621019ef40a9a275689ac3577456
MD5 0b95ec0d5f8732cd651671ea61620c2b
BLAKE2b-256 2edb59cb84ec59247af7f7bedd2b5c88b3a4ca17253fd2cc0d40f08573f7ff72

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jq-1.8.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ddd9abdf0c1b30be1bf853d8c52187c96a51b2cbc05f40c43a37bf6a9b956807
MD5 dd57de09b5cc6b3326d6f6f79e8bf8ee
BLAKE2b-256 78b88f6b886856f52f3277663d2d7a199663c6ede589dd0714aac9491b82ba6e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jq-1.8.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 eb484525dd801583ebd695d02f9165445a4d1b2fb560b187e6fc654911f0600e
MD5 3b205375e3d05438abab40f7a7c4a44d
BLAKE2b-256 b8c3d020c19eca167b5085e74d2277bc3d9e35d1b4ee5bcb9076f1e26882514d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jq-1.8.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2c7464d9b88c74a7119b53f4bbf88028d07a9de9a1a279e45209b763b89d6582
MD5 afc744aa6afc5c0644b33235e2c3839c
BLAKE2b-256 76c22fa34e480068863ab372ec91c59b10214e9f8f3ae8b6e2de61456e93bae1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jq-1.8.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0c24a5f9e3807e277e19f305c8bcd0665b8b89251b053903f611969657680722
MD5 34977fee64d500755e5df1e508c92e6c
BLAKE2b-256 0697d09338697ea0eb7386a3df0c6ca2a77ab090c19420a85acdc6f36971c6b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jq-1.8.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 76aea6161c4d975230e85735c0214c386e66035e96cfc4fd69159e87f46c09d4
MD5 c6146f9f5d8698e918f3604e5f18e8a5
BLAKE2b-256 9c25c73afa16aedee3ae87b2e8ffb2d12bdb9c7a34a8c9ab5038318cb0b431fe

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for jq-1.8.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 049ba2978e61e593299edc6dd57b9cefd680272740ad1d4703f8784f5fab644d
MD5 bbf950d30b2ca0dc94ab921d094702bd
BLAKE2b-256 f69fe886c23b466fc41f105b715724c19dd6089585f2e34375f07c38c69ceaf1

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for jq-1.8.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 e3da3538549d5bdc84e6282555be4ba5a50c3792db7d8d72d064cc6f48a2f722
MD5 793a0dff6ed623957ee265d1a554c091
BLAKE2b-256 2c8f66739f56ee1e3d144e7eef6453c5967275f75bf216e1915cdd9652a779aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jq-1.8.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f9f2548c83473bbe88a32a0735cb949a5d01804f8d411efae5342b5d23be8a2f
MD5 f46bd7b0d64592769ca5dc2bab081f70
BLAKE2b-256 f4674eb836a9eac5f02983ed7caf76c4d0cad32fdd6ae08176be892b3a6b3d17

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for jq-1.8.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ec9e4db978237470e9d65f747eb459f4ffee576c9c9f8ca92ab32d5687a46e4a
MD5 449eb0be2b9e19fc87fae0505ec7a0e3
BLAKE2b-256 24b06c9a14ef103df4208e032bce25e66293201dacac18689d2ec4c0e68c8b77

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jq-1.8.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 917812663613fc0542117bbe7ec43c8733b0c6bb174db6be06a15fc612de3b70
MD5 43f753a2b76e5a1d312dd4bebddb3554
BLAKE2b-256 f79ff54c2050b21490201613a7328534d2cb0c34e5a547167849a1464d89ae3e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jq-1.8.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 95f57649e84a09b334eeb80d22ecc96ff7b31701f3f818ef14cb8bb162c84863
MD5 26974fca34827348b9c1d0c9de1180fb
BLAKE2b-256 c5b942a55d08397d25b4b1f6580f58c59ba3e3e120270db2e75923644ccc0d29

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jq-1.8.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cccda466f5722fa9be789099ce253bfc177e49f9a981cb7f5b6369ea37041104
MD5 4633cb7171b3b1ab0cd13be0246905bf
BLAKE2b-256 3ab3ddc1e691b832c6aa0f5142935099c1f05a89ff2f337201e2dcfafc726ec9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jq-1.8.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7453731008eb7671725222781eb7bc5ed96e80fc9a652d177cb982276d3e08b4
MD5 ad9eddda16816d4754f66ba7cc9169bf
BLAKE2b-256 904f83639fdae641b7e8095b4a51d87a3da46737e70570d9df14d99ea15a0b16

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jq-1.8.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f8903b66fac9f46de72b3a2f69bfa3c638a7a8d52610d1894df87ef0a9e4d2d3
MD5 a2c8c3d78128b530259e9fcd84efbb13
BLAKE2b-256 9b2c39df803632c7222e9cd6922101966ddbec05d1c4213e7923c95e4e442666

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jq-1.8.0-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 14f5988ae3604ebfdba2da398f9bd941bb3a72144a2831cfec2bc22bd23d5563
MD5 f23cbb1ff1fbac181e4c5960e504e22c
BLAKE2b-256 45b3dd0d41cecb0d8712bc792b3c40b42a36c355d814d61f6bda4d61cbb188e5

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for jq-1.8.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 745d0f9786bd89eb9bff054ac08ce0e61877d28931857585e244e8674ac3727e
MD5 87e8befe4d38e8718f94e50ff41937a2
BLAKE2b-256 1ddd492d74bbd0fb4aa1ed2539cf4b460f8bb1ff56073cf591fa91dbb399f488

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for jq-1.8.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 52cac82de5608f9174d22a1a805d61ba47ea182b10a934135904648c618ebe34
MD5 357a60f9faa884416f27598bc131f399
BLAKE2b-256 1b4031585bd330b4da8895cff6d963c685b3dd444a7d199de367347f89e3825a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jq-1.8.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1a01261e4df11d3a0fe42fece73bb458d2e4a33b481d67e5e817acec8b0e923d
MD5 89a08359a5b4f125eb3941f2b0ccb1a7
BLAKE2b-256 05bcbc890164f63371dcf90ac1d3383d0f11eefc8ec1ff649407cbd3393f530d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for jq-1.8.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7bed3b9cc53d72383fc558cfe03345735e7532d1733a5ed3c2196f1eec1c26d7
MD5 d464f21289ec9dd4d777f6db672f5d8b
BLAKE2b-256 6363e93d730108fc0651fbe47ed7f3a52ba134292523ae5f162cfb30e3020b74

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jq-1.8.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8b6322f647f9e1d7be7f6e8203106f4ff1b7c0e07c9023607c7414e1dc098b67
MD5 0189d8460b3f85baa1b751d39754df11
BLAKE2b-256 13e44b0cff04095fb40ba279beb10746a445fa55755784a2546017e6975e1280

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jq-1.8.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 190fd2bf92b7abec3090a1f68db40cd001178e84c42754f75253ee1f9c17dfdf
MD5 b0bb3ee8f99f557fe0de8871241061ce
BLAKE2b-256 d3feb7786c4cbf8ff4fd0a9b5273a30ee65a91c6f1bf38414e989a117ccd5c71

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jq-1.8.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 aaf862d1bc1d0095aef0efc76f8cef0da7ab996f2b9d34c5067e48427a069ea3
MD5 d07ba82d881af4d88f6c3e23a8c76a7f
BLAKE2b-256 0c776a55ae6d41f6298245dc45271a10b319c91eb3176a5fe0b6edd74e4031fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jq-1.8.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3ecba9f181e7810a336a520f32df998e6ecc9fdebac80c6a636e402baa939e79
MD5 40733fc9977be776256eac60bf01a016
BLAKE2b-256 431ba2ce5bed9984eb98953184f8b4fea99798996631166f06e60cd5a9db8c51

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jq-1.8.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8e687ef4b360e7436c3b5f15ee25f2570bcbcadccb940ebbc80ebe4b05b91ee2
MD5 baff52b681e2dc6ebff226c5e250462a
BLAKE2b-256 3bc906f04189aa5265827228a31ab531712c5b6345c177988d7e1397b0cb18f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jq-1.8.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f8441fe181af789a05b742930d095ee61fc251fdd2b975c68e359ac7e85a4c2d
MD5 836009588eb6540b91f10a111b67ba99
BLAKE2b-256 da95dcbef114d8b71d52def6f5ea7a04f892f18803d52e0aaf3d4e6393dcb7d4

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for jq-1.8.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 53c87ef5491e484cdfb740303ccfc141af1d23275750569f539d4981524f4251
MD5 b2de73b33821fa0a2dbe61312a1bd87d
BLAKE2b-256 15d5dd01e938759b48df628eb5eb3818bd404c54d2d41e93bfb3ee079dbf16e4

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for jq-1.8.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 aaf6e17cd9bf26c076a9a6ff0b4bfac66fdaa37ed9e215683de58d657cc75f29
MD5 f6a49975e0f9317e00810abbf1e8ecee
BLAKE2b-256 4a2ed0eedabd00b0c30a98be50d894825adcc0d302514bad098b4bdcbc0e28f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jq-1.8.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f057322a572fe2cf0cb9ea068dd4eec237bc15490e0944cd979aeb23b20db3ac
MD5 b9f080d2eb3c77d9e72d5f3b188417f1
BLAKE2b-256 feeb62b9f6e3bbc4f2a05b392b1d1a4603fc927746d9e33f5c8d24edcfd7d429

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for jq-1.8.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 881be44d8f804a97a1e37dc6360bf2deab43768d7fbb31cfb22ca8050dd6aed3
MD5 3e65d81400b438acdceca4c8db3b7679
BLAKE2b-256 261628b277d52125cbb2681063c875a178a1d11d8f0b7884f5f54b0418219587

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jq-1.8.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2526368e5658eaeb47984b551e7178a0216cc8c5fdd6dd343964574cae513c89
MD5 dcba89c387603ce8af06fa4b5bf062cf
BLAKE2b-256 07c2f0d8b7c9669ff17a57e54da469515e6d2badc6ed2b038792162b449aa168

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jq-1.8.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 59bda8b62453967a32f418562309d0ffe0da73227e8c5800334ee0b515c5d2e2
MD5 e276d8946e18776258a04172a42ea81e
BLAKE2b-256 715d3d252898f6163143b8def254b53e626b3f8cfb12c3dddcfacb796a7e396b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jq-1.8.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cd0c30af5257ae0dccd27c5140726e24108a472e56dce8767b918905adfd9c99
MD5 7c1d9929c89f5473944064f8e78054a7
BLAKE2b-256 adb82ea11152a3546803bfad5a8ef78b6f4cbfbfe75a7455c6f662728167c09f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jq-1.8.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 05e2c0a8944a3ff93de6353d60ed69fa85b155c08d6776ab20d4429197f50050
MD5 700acb94415778fe65c17f7aff89ca54
BLAKE2b-256 746c85c477f133ee96de376070ee12991a81e7f83300d607203724633dd5ae69

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jq-1.8.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d375b0f372df24087fd0688ef85fef43a44a3e382a82afcc0cdfdfe59e59d313
MD5 7fa583e7aa88eaff212b50309671a47b
BLAKE2b-256 d53c3b781ae9f4f0dd24e75c0005d3a886b0ae55a684562206a4fd33fdc318c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jq-1.8.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 628848f92a0f24f5ca50c879d271555a63bf28746c1efd3571ee49e9a357b602
MD5 35b5850cd4aaf63b3417bddcd3e70838
BLAKE2b-256 8decf72f8b0272b2d92c99cb33af70833e51af1bf673db39214948aa85699b48

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for jq-1.8.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 c30249ae524ac54ef73dabda6f2b5be077debb7847050e18f91d915f6b6f0208
MD5 bd2eaf2d37b017c8d44f1196bcdb54a2
BLAKE2b-256 5fda6e8a21cacca38e3465fb54f4f85cd065dae75c4ca5eea68c3b33d26c5e07

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for jq-1.8.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 0aca31819d07377f9036ebdeb57c1ccb73e10c502badb5c8601572ccb4fa96e2
MD5 fb753649617dee7e01c53a6f6e8fbe66
BLAKE2b-256 aae0613b9639885936cb7143e0e3d532795ad8e8559ac8eed3de883d7c0c090e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for jq-1.8.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cb90b618855e89c95396ab6aab09a1334df81fa4fbd1c0e939cab34a4993465f
MD5 49eb843cd6548d342336a68ec514ee05
BLAKE2b-256 d8c9543fb8bdf3cc2b128bd34dc26abec492664ef96d2497cf7a3e6a1f5aab66

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for jq-1.8.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0627d3dd67e73a754d9950f57d964a711658b1258ddd135cf8c1e845c5efb49e
MD5 88eec9d9b4726a4836de17c231eee6f3
BLAKE2b-256 d087d2808ed2a2e25a2418aefeb70e680ec42c3c519d1f89f62770281d9ca62c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jq-1.8.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2f59a71c51417e9fe10cad76be2557635da1febcef925ab948b66471b8d72232
MD5 76d7c635b0b1dd741bc4acf3ba0c21ad
BLAKE2b-256 e00cf49d9db80ab3a9e920c5fbe1ee8a350b1f1e65e24736b929873c7a9ca6fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jq-1.8.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 39b409e27cebc7d0323d966309ced5b46496a348475443f8ef38906f45bff7ff
MD5 b94d17adf57350fadc0082a72d12dd6e
BLAKE2b-256 f2b847a22d6bbb21f6edd683e7146a33d88da677afa0e3e6b7c2a118a75ce386

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jq-1.8.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 361c5089b912e558932202e4b10a8dd3d986ae8eb08ff39d5d419eb30db1df08
MD5 bd660119906714903641940bb4338b5d
BLAKE2b-256 eb948e7760fa384dc9d35a929199a5f43cbc040c4037b9018e0064a34c4fbc10

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jq-1.8.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d9719abb172d40c01e4f42214db8b05cac4118ad6c6265f8b57ef14b86eedeaf
MD5 147fc54a9704953e590351dbf3fa45be
BLAKE2b-256 5f1e5f77ca1059fd391e3b6a16a20c03f27015ba8f44c6101245ee557998dd82

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for jq-1.8.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e3297cc2d2dfc9e7c92e119ba91ef30c7493b59d3528b9486b0c4dd819ff8d28
MD5 f65594165bc658e4d036cbea79589db8
BLAKE2b-256 980c2f25f858ee425cfdc9bcc9ec2ec771280d7f807caa81520d106e69f7b7a5

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for jq-1.8.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1db31a68bf563a67579cc3c634f1676884ad29c9a43ce5d3858e989deafdc215
MD5 a216f945b3611764601065742d9b65af
BLAKE2b-256 881c0d12deba1b541ff66ae721066a6862b921cbb6dd0460d749c35ab2f8772f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for jq-1.8.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 4d86a99a72cef84ccd94905b1c10d8d4b9542e05cc94d2ae713a0f10ea1b52f6
MD5 14aa7819299f983dec1a3769ee3de1ef
BLAKE2b-256 0cc93392184a19c32b92081d082899543d3b7089b65e962cf08e512bf96d5fff

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for jq-1.8.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 9fc84851be38bac073ab4a8dcd9966edef3f2a5bc69f6f85f7c5c1baf5d9bf6a
MD5 d00afc4bbb9e2603c9ed5fe6307dd833
BLAKE2b-256 745e318cd3414ec970e9d962d3ac2d5288285f364419f161c4073fa2f2a85f80

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for jq-1.8.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c226c2b15c51efd0cbdd0470a2711dad3ead6a079052fbd4405e08f5e009449c
MD5 af0335a974e659147ca28369f2d741da
BLAKE2b-256 3c2ead513032757d025471ecb0893f9044f9b08a72ebcf1b3ed5b607b4537c15

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for jq-1.8.0-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 12a78b891113193de32fcfd822f82e2065beeb5479c8b39dc5312c35cac77a6e
MD5 62598c1843f473b840ff56de6335af6a
BLAKE2b-256 c2eab36d631c81d2d7a801c66bee96ee2430b2631e0916ddd8087f23a604efda

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jq-1.8.0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1ddb23e26d7606040ee4ec8b3845dc34eb56d4a905f9d0dcad398e269786135d
MD5 07c4c95acd30e5ceff3fd9ad72ce7ed4
BLAKE2b-256 410eaf36c4e47597015c9f5001490ca3f4557297b79ca43c24843bd993434922

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jq-1.8.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 58e092e54e1b543352b1dfd0fbfac233c46b999b2dfdba2b604536ad777566ae
MD5 b456945d4eb9570e0dd25dc98453d3f5
BLAKE2b-256 298f76efdb8c3512668ff70574929faae3dd61071d95181c4b2198201228b542

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jq-1.8.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9d055dc15f76c8d7f5c917d2bc4540582e21f1783f12149758751e4b760888d7
MD5 46f78ad0ed38114140b93c81cb4e98e1
BLAKE2b-256 b1e20eb0bc1e342ff9b817e99793059301542ef4544dca19bbfc09e1f73accbf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jq-1.8.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 415f8112a6f80a459d885e500f69ee510ca319fcc12e679ce5bf02c900f09118
MD5 1462c39ecea4509709b8207649dc2eb0
BLAKE2b-256 60508f1003c2eecf68c12a7cb2bd1e4b7347944415afa007b0411772d8f248fe

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for jq-1.8.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d24b8aa12ad7f465262ab0aeb0a7fa43df814ad3e50253ce454af40769da69d8
MD5 7c00c2b178601f5edc12cdbb8237c7f3
BLAKE2b-256 f16a3d3c4888c20e73113c652c4a053045e85b1fb49171dcd0eaabbf812605b1

See more details on using hashes here.

File details

Details for the file jq-1.8.0-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: jq-1.8.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 414.6 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.11.2

File hashes

Hashes for jq-1.8.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 3d2186049890f9e08a90f351c4ac34ac449123f78e729994d501ceb02add9829
MD5 2c822066ce4b26004d2206c183a07602
BLAKE2b-256 b7e317f990b0f3affbff2fe792b4b2cccec8ad351c3b25434796abd484f967a1

See more details on using hashes here.

File details

Details for the file jq-1.8.0-cp37-cp37m-win32.whl.

File metadata

  • Download URL: jq-1.8.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 404.8 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.11.2

File hashes

Hashes for jq-1.8.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 5af7413dd18e7a448364a78a31739e0687d5fa00751e6d6acbbb5dde06e105b4
MD5 55eee6089afab1451e7db4c8c5c4f1e8
BLAKE2b-256 57402963d93971d02df3003d5b88b08b5d873b0d9b0e14ba839bb052ba2e04de

See more details on using hashes here.

File details

Details for the file jq-1.8.0-cp37-cp37m-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for jq-1.8.0-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c73ce1672863e84b506865da342cb014c3af795e7670d267d8d61d061d4b59f7
MD5 4e31c8f2fdfbd903aeee60d80acb6c24
BLAKE2b-256 550b4230091525149e9741f09cf82282794152b9ad44eaa83f3cefafe170ed62

See more details on using hashes here.

File details

Details for the file jq-1.8.0-cp37-cp37m-musllinux_1_2_i686.whl.

File metadata

  • Download URL: jq-1.8.0-cp37-cp37m-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 701.8 kB
  • Tags: CPython 3.7m, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.11.2

File hashes

Hashes for jq-1.8.0-cp37-cp37m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 88416952dc41192736e8884e1465e2121401a39e8d2fdaf4190d88d70102e4ad
MD5 d78e7df5492752ae41ea8a5247d6ae20
BLAKE2b-256 28d73e4f6ad7f8c768f3b29ab2db019e962676a57320db9f64b05c37f0de4e2a

See more details on using hashes here.

File details

Details for the file jq-1.8.0-cp37-cp37m-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for jq-1.8.0-cp37-cp37m-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c757f4a2a08e98826875176bbc872da4913f5d64f8d3e27f3cf05fcf64cf6b92
MD5 2315a5ddb40cf6ad546b9d00eee86527
BLAKE2b-256 ddf0b8b693c06a1abe8219a7de76086c7c40fee06549bdd5d080a37dd4f0d40b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jq-1.8.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f7262695b12039bdf66677b189bf0eb01c0d5b9b5ba905f1509984a1dbbc6505
MD5 dd008277d1ba6217178085b3e7730c53
BLAKE2b-256 45c6cd404e19ba2a4044eb96adbcf0e812c0023f3b59b320f9a658c925ab624d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jq-1.8.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 88a0450b9e4b55f5e7c8fce00d6db7f5826334193f599daa27b8c44d6d5a3fd0
MD5 30fb7089beb92ebc6b7591fa3c3215cf
BLAKE2b-256 07c42684c85a7181c957027156888e453e1388080d0be949b88ee4c1bce937af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jq-1.8.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 76d66b230ec285c5a211899d6f75bb7ac22fcf5c14f420df534d8d4544f9aa97
MD5 b9400aadf7a0beed990a30f88524343c
BLAKE2b-256 929a45decfe3e92fec5e5f5f4221a0313110b5147749b8f2911a015f426144a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jq-1.8.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a2528b279717339d3ca87fd263f1f38a66f79dabd3882fc8d73d68dd06db4260
MD5 a7842ab70cf959d51e114c159c30a394
BLAKE2b-256 fa782216cd6d07d04cdcba2f85b45d9a771d4342501f45d238d18941f898e76e

See more details on using hashes here.

File details

Details for the file jq-1.8.0-cp36-cp36m-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for jq-1.8.0-cp36-cp36m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 69ee5e888bb7e6549f51f1148e78ae31e584297f496a68e258af1baca81d8785
MD5 ee240647352be289229ddaa508c24ad5
BLAKE2b-256 f812419337c35e160b0bee89ab7bea20c99aa06c8c55247cb7e72c31bf0df984

See more details on using hashes here.

File details

Details for the file jq-1.8.0-cp36-cp36m-musllinux_1_2_i686.whl.

File metadata

  • Download URL: jq-1.8.0-cp36-cp36m-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 685.8 kB
  • Tags: CPython 3.6m, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.11.2

File hashes

Hashes for jq-1.8.0-cp36-cp36m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d302a987dabf2fbf7297bf32b1ed16e1232e85734d412c94abfa95bf7e4bf689
MD5 ca00286030040dcbb0767ba10ca27ebf
BLAKE2b-256 3dc145cf4ef64cc37ba05eaa987349333dd2c65f0450879fec2ab71ebf414c9b

See more details on using hashes here.

File details

Details for the file jq-1.8.0-cp36-cp36m-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for jq-1.8.0-cp36-cp36m-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 aa70883dcbddb06bcb1510f5025f2709268d91ddbe23f31b297ffc73fec1ed3d
MD5 1019722ce93c514562abd3e60d687484
BLAKE2b-256 253a0b30d104e754c0787705991eb4144758ae27b238360610423d677d41a351

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jq-1.8.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 990116b7fcf3f37dd89cb12bbc5a09f85ca1fee368945501096470c71f1851de
MD5 c68c0ad9b37ffbf92a2949538cd59975
BLAKE2b-256 39d60a2559db06226f478a9c401ab4f1df0dead45a85c67772750613f5858004

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jq-1.8.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8c86f0f9d496c6d51caa9597dae6bdb11b27c45cee820a3db3bb61303359d217
MD5 20207c30d65062663f6f3bf3ad48906d
BLAKE2b-256 f2535fd2e73d2462f74b2744924c1e2c0e4151df8a6a5618c3c298199e64dbaa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jq-1.8.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6f3cefb4b9dde8edeb2af0b108c8df1942e9352e83406491959e7dc145ccf20a
MD5 cdf7aeb11ae7d15d3af60aa3ed0b1bb0
BLAKE2b-256 10f5671dab0826effed1abf1600abfe544f529addc1330b995bd56a01d5523d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for jq-1.8.0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a5c3a9e8fa0eedb600626719630ec3dc6018379075e10733d88899f147d26528
MD5 39b7259a09664008bf9f5ba0a32d36b1
BLAKE2b-256 e32c2f12bb3a9672207ad21152277595405a2a40e589f9fc58e1b5024a27080a

See more details on using hashes here.

Supported by

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