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

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

Call jq.compile to compile a jq program. Call .input() on the compiled program to supply an input value. The input must either be:

  • a valid JSON value, such as the values returned from json.load

  • unparsed JSON text passed as the keyword argument text.

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("hello").first() == "hello"
assert jq.compile(".").input(text='"hello"').first() == "hello"
assert jq.compile("[.[]+1]").input([1, 2, 3]).first() == [2, 3, 4]
assert jq.compile(".[]+1").input([1, 2, 3]).first() == 2

Call text() instead of first() to serialise the output into JSON text:

assert jq.compile(".").input("42").text() == '"42"'

When calling text(), if there are multiple output elements, each element is represented by a separate line:

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

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

assert jq.compile(".[]+1").input([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([1, 2, 3]))
assert next(iterator, None) == 2
assert next(iterator, None) == 3
assert next(iterator, None) == 4
assert next(iterator, None) == None

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]

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.0.0.tar.gz (59.2 kB view details)

Uploaded Source

Built Distributions

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

jq-1.0.0-pp36-pypy36_pp73-manylinux2010_x86_64.whl (368.2 kB view details)

Uploaded PyPymanylinux: glibc 2.12+ x86-64

jq-1.0.0-pp36-pypy36_pp73-manylinux1_x86_64.whl (368.2 kB view details)

Uploaded PyPy

jq-1.0.0-pp36-pypy36_pp73-macosx_10_7_x86_64.whl (368.0 kB view details)

Uploaded PyPymacOS 10.7+ x86-64

jq-1.0.0-pp27-pypy_73-manylinux2010_x86_64.whl (367.2 kB view details)

Uploaded PyPymanylinux: glibc 2.12+ x86-64

jq-1.0.0-pp27-pypy_73-manylinux1_x86_64.whl (367.2 kB view details)

Uploaded PyPy

jq-1.0.0-pp27-pypy_73-macosx_10_7_x86_64.whl (367.5 kB view details)

Uploaded PyPymacOS 10.7+ x86-64

jq-1.0.0-cp38-cp38-manylinux2010_x86_64.whl (566.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ x86-64

jq-1.0.0-cp38-cp38-manylinux2010_i686.whl (514.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ i686

jq-1.0.0-cp38-cp38-manylinux1_x86_64.whl (566.1 kB view details)

Uploaded CPython 3.8

jq-1.0.0-cp38-cp38-manylinux1_i686.whl (514.1 kB view details)

Uploaded CPython 3.8

jq-1.0.0-cp38-cp38-macosx_10_9_x86_64.whl (371.3 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

jq-1.0.0-cp37-cp37m-manylinux2010_x86_64.whl (529.3 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ x86-64

jq-1.0.0-cp37-cp37m-manylinux2010_i686.whl (487.4 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ i686

jq-1.0.0-cp37-cp37m-manylinux1_x86_64.whl (529.3 kB view details)

Uploaded CPython 3.7m

jq-1.0.0-cp37-cp37m-manylinux1_i686.whl (487.4 kB view details)

Uploaded CPython 3.7m

jq-1.0.0-cp37-cp37m-macosx_10_9_x86_64.whl (370.1 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

jq-1.0.0-cp36-cp36m-manylinux2010_x86_64.whl (529.1 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ x86-64

jq-1.0.0-cp36-cp36m-manylinux2010_i686.whl (487.0 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ i686

jq-1.0.0-cp36-cp36m-manylinux1_x86_64.whl (529.1 kB view details)

Uploaded CPython 3.6m

jq-1.0.0-cp36-cp36m-manylinux1_i686.whl (486.9 kB view details)

Uploaded CPython 3.6m

jq-1.0.0-cp36-cp36m-macosx_10_9_x86_64.whl (372.4 kB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

jq-1.0.0-cp35-cp35m-manylinux2010_x86_64.whl (521.3 kB view details)

Uploaded CPython 3.5mmanylinux: glibc 2.12+ x86-64

jq-1.0.0-cp35-cp35m-manylinux2010_i686.whl (480.7 kB view details)

Uploaded CPython 3.5mmanylinux: glibc 2.12+ i686

jq-1.0.0-cp35-cp35m-manylinux1_x86_64.whl (521.3 kB view details)

Uploaded CPython 3.5m

jq-1.0.0-cp35-cp35m-manylinux1_i686.whl (480.7 kB view details)

Uploaded CPython 3.5m

jq-1.0.0-cp35-cp35m-macosx_10_9_x86_64.whl (379.1 kB view details)

Uploaded CPython 3.5mmacOS 10.9+ x86-64

jq-1.0.0-cp27-cp27mu-manylinux2010_x86_64.whl (496.2 kB view details)

Uploaded CPython 2.7mumanylinux: glibc 2.12+ x86-64

jq-1.0.0-cp27-cp27mu-manylinux2010_i686.whl (463.7 kB view details)

Uploaded CPython 2.7mumanylinux: glibc 2.12+ i686

jq-1.0.0-cp27-cp27mu-manylinux1_x86_64.whl (496.2 kB view details)

Uploaded CPython 2.7mu

jq-1.0.0-cp27-cp27mu-manylinux1_i686.whl (463.7 kB view details)

Uploaded CPython 2.7mu

jq-1.0.0-cp27-cp27m-manylinux2010_x86_64.whl (496.1 kB view details)

Uploaded CPython 2.7mmanylinux: glibc 2.12+ x86-64

jq-1.0.0-cp27-cp27m-manylinux2010_i686.whl (463.6 kB view details)

Uploaded CPython 2.7mmanylinux: glibc 2.12+ i686

jq-1.0.0-cp27-cp27m-manylinux1_x86_64.whl (496.1 kB view details)

Uploaded CPython 2.7m

jq-1.0.0-cp27-cp27m-manylinux1_i686.whl (463.6 kB view details)

Uploaded CPython 2.7m

jq-1.0.0-cp27-cp27m-macosx_10_9_x86_64.whl (367.8 kB view details)

Uploaded CPython 2.7mmacOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: jq-1.0.0.tar.gz
  • Upload date:
  • Size: 59.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: Python-urllib/2.7

File hashes

Hashes for jq-1.0.0.tar.gz
Algorithm Hash digest
SHA256 5b41a65042845420b9f3e5c3f3df58dacbebb22ce1432f4a31ea8ad24125875f
MD5 29beda132f5aea6df8f1b96d1a79e46b
BLAKE2b-256 0414122814112fcfd332e6556feb9977836bccba5aa78382910f0b0464e1bd72

See more details on using hashes here.

File details

Details for the file jq-1.0.0-pp36-pypy36_pp73-manylinux2010_x86_64.whl.

File metadata

  • Download URL: jq-1.0.0-pp36-pypy36_pp73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 368.2 kB
  • Tags: PyPy, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.0

File hashes

Hashes for jq-1.0.0-pp36-pypy36_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 be862d9b84cc4c8493afb1979b015e07ffb17d87f61bffe8e6c08b28eb420cdb
MD5 5279a657829d262ca1adb28a59755a2a
BLAKE2b-256 d704a923668e0893ef4e3eaf66cb4172c75d09a1e3b5c9cca15983c728a0fcc1

See more details on using hashes here.

File details

Details for the file jq-1.0.0-pp36-pypy36_pp73-manylinux1_x86_64.whl.

File metadata

  • Download URL: jq-1.0.0-pp36-pypy36_pp73-manylinux1_x86_64.whl
  • Upload date:
  • Size: 368.2 kB
  • Tags: PyPy
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.0

File hashes

Hashes for jq-1.0.0-pp36-pypy36_pp73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 e4ee11308d5f1e0f6ec9e70e1e4cea0324d9ae0b5a0704943c720964a0477c66
MD5 9df4dbf57a724b7664e54bac793b00c8
BLAKE2b-256 3fb688fb167721c236b7d03fd4ecf050caea78acae6e5fbc18208710a08ac1cf

See more details on using hashes here.

File details

Details for the file jq-1.0.0-pp36-pypy36_pp73-macosx_10_7_x86_64.whl.

File metadata

  • Download URL: jq-1.0.0-pp36-pypy36_pp73-macosx_10_7_x86_64.whl
  • Upload date:
  • Size: 368.0 kB
  • Tags: PyPy, macOS 10.7+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.0.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.7.7

File hashes

Hashes for jq-1.0.0-pp36-pypy36_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 b0870d72e5444f7151592af6760d1c7634ef4cb302dcb483e3977a084fef024b
MD5 df1f68ec281aebc7f6eaa0478e1c3996
BLAKE2b-256 16e335dea5b576a07d0fe25bb1af305bb7a33be774c7840f5b8c42e7ceeaaffa

See more details on using hashes here.

File details

Details for the file jq-1.0.0-pp27-pypy_73-manylinux2010_x86_64.whl.

File metadata

  • Download URL: jq-1.0.0-pp27-pypy_73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 367.2 kB
  • Tags: PyPy, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.0

File hashes

Hashes for jq-1.0.0-pp27-pypy_73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 047044e24db2c4d423afd436a8a44b6fdb7e29b94e2053317003e6d5d7af8466
MD5 0d4f966c6304dcc134c90bf0022672fd
BLAKE2b-256 4556332926cf8f53aa7e025ea61f55a0669dfbbc1aa4ebe722b38d9c0d16dfc9

See more details on using hashes here.

File details

Details for the file jq-1.0.0-pp27-pypy_73-manylinux1_x86_64.whl.

File metadata

  • Download URL: jq-1.0.0-pp27-pypy_73-manylinux1_x86_64.whl
  • Upload date:
  • Size: 367.2 kB
  • Tags: PyPy
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.0

File hashes

Hashes for jq-1.0.0-pp27-pypy_73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 166b9a8745acf0ccbd2e262a53a9af0546f3a4eca9356891f723cc390677af02
MD5 ec90b509027cc54719825c747399943d
BLAKE2b-256 a2459a1751f91c6a6708abb8948bd350e3a5a070b5db6e95f4c081040bfbda06

See more details on using hashes here.

File details

Details for the file jq-1.0.0-pp27-pypy_73-macosx_10_7_x86_64.whl.

File metadata

  • Download URL: jq-1.0.0-pp27-pypy_73-macosx_10_7_x86_64.whl
  • Upload date:
  • Size: 367.5 kB
  • Tags: PyPy, macOS 10.7+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.0.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.7.7

File hashes

Hashes for jq-1.0.0-pp27-pypy_73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 4d84e52501924d1d3bf92337750095edbd3b582b1ccb6eb010bb506ae15bb4f6
MD5 8e201d545511f95685469125927f8f84
BLAKE2b-256 1004a96ada25aa456c0e1f676a3e0e5e71364fd1f63a696da2182dd995d4816b

See more details on using hashes here.

File details

Details for the file jq-1.0.0-cp38-cp38-manylinux2010_x86_64.whl.

File metadata

  • Download URL: jq-1.0.0-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 566.1 kB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.0

File hashes

Hashes for jq-1.0.0-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 998a6147b3f68f44dbfa56ace0d90daa168c29e2fa635f6aa31c016088523e83
MD5 8356f69e3bc876db3d4ba2f0030e2535
BLAKE2b-256 4c9251d1621fa533ac5f3615544a52ddea78b5dc345327a93ef8ccdd44c3b1f4

See more details on using hashes here.

File details

Details for the file jq-1.0.0-cp38-cp38-manylinux2010_i686.whl.

File metadata

  • Download URL: jq-1.0.0-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 514.1 kB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.0

File hashes

Hashes for jq-1.0.0-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 cd2ba7a0dfa5a64716afb84354abf11ccdd8506433570209f66c169bbb2b1ca2
MD5 adacc1bf6288c14d3404ee5bcb87594f
BLAKE2b-256 d403b259ccafbd3a2d479822d8a876aeafd72e2986721b91b8d78d5639c291f9

See more details on using hashes here.

File details

Details for the file jq-1.0.0-cp38-cp38-manylinux1_x86_64.whl.

File metadata

  • Download URL: jq-1.0.0-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 566.1 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.0

File hashes

Hashes for jq-1.0.0-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 f20ff009aa3cd8dac1ed61f803eb45c1b6c3f8bef0cc1ac9b7138c9514730726
MD5 5675e7bd32980ea651d3a7c1c4ca440d
BLAKE2b-256 a97193179fea7c318c9a39381f693899154f9b26d99a3eac26e416179543703f

See more details on using hashes here.

File details

Details for the file jq-1.0.0-cp38-cp38-manylinux1_i686.whl.

File metadata

  • Download URL: jq-1.0.0-cp38-cp38-manylinux1_i686.whl
  • Upload date:
  • Size: 514.1 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.0

File hashes

Hashes for jq-1.0.0-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 9c62a62ab314de2a825c038f7faaa96c5e9778b3767fe9cb96bd225cc6983887
MD5 e0180610db526bbfee203ffb051853f5
BLAKE2b-256 7753123ce724f9cf82c10c00a96aaf2011b04b6865f47d448eb7987d7cb2c96d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: jq-1.0.0-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 371.3 kB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.0.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.7.7

File hashes

Hashes for jq-1.0.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 62d3c762d06f630e4c649acaffcbc1a164652027bf3529de7ac255646283e741
MD5 470a1e34f5746bbdb584334c9eb24645
BLAKE2b-256 d44db923b541a0519b4b24726e8a167ddf9c0024ad00768ea829f4e518c50e0d

See more details on using hashes here.

File details

Details for the file jq-1.0.0-cp37-cp37m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: jq-1.0.0-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 529.3 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.0

File hashes

Hashes for jq-1.0.0-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 23a7cfea7af5ffd48b022a00b2cb3de852009e9b06ab8cb8373c70aa7b0e39b2
MD5 a5c7c782a8c2e5bbb268875670a71a92
BLAKE2b-256 b352e0eaddb55aa245fa0ce5e2c76daa94dda9544859fa60e575ad8c24c936d8

See more details on using hashes here.

File details

Details for the file jq-1.0.0-cp37-cp37m-manylinux2010_i686.whl.

File metadata

  • Download URL: jq-1.0.0-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 487.4 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.0

File hashes

Hashes for jq-1.0.0-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 5b5b08e03103483c1542b9f508614c801bc2a040de4fe09cf977e047c7c79994
MD5 647a7e572cd381effa15e035efdb76ce
BLAKE2b-256 cc4d0464dd80ae0d30abfd86fb216c9ca7a68aa4d270b2f3fbf4fcf708e317a4

See more details on using hashes here.

File details

Details for the file jq-1.0.0-cp37-cp37m-manylinux1_x86_64.whl.

File metadata

  • Download URL: jq-1.0.0-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 529.3 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.0

File hashes

Hashes for jq-1.0.0-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 c890a14a685f44eb777ac47face9f27e91a2174a906584346a0114e52135a758
MD5 6040cac19a8e2694cc93159639dd7462
BLAKE2b-256 c753b4438adb2f71d7b52c5c423fa8996738b5104969555601f9a1b5d7ed2f9e

See more details on using hashes here.

File details

Details for the file jq-1.0.0-cp37-cp37m-manylinux1_i686.whl.

File metadata

  • Download URL: jq-1.0.0-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 487.4 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.0

File hashes

Hashes for jq-1.0.0-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 d7b1143220f73b6337ac3214409b187ffab8920c5eb043af35e05283748fe479
MD5 92593133f519c3deffb36fcd7059ca22
BLAKE2b-256 ec49bd96d6cf902e4f0a6f40b78096ebe5562416bef70a179061713bd99c3807

See more details on using hashes here.

File details

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

File metadata

  • Download URL: jq-1.0.0-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 370.1 kB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.0.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.7.7

File hashes

Hashes for jq-1.0.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 85c5485073bdc0da21afaa821f7d68d0d500a21d4e99780de8ac35fee7a276b9
MD5 158fd4b8936a3b86298f2e79f141f6b9
BLAKE2b-256 9460e0a3aabace878ddb0117465b26d9a39da22dff9203ab6bcc32cc54169f02

See more details on using hashes here.

File details

Details for the file jq-1.0.0-cp36-cp36m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: jq-1.0.0-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 529.1 kB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.0

File hashes

Hashes for jq-1.0.0-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 7c31e9a626f6107b9bffe6882ea85882fdf18dbda5181f5f39db71fa0e238e88
MD5 aed89c9df9c653ff42efd5abc9cb9b3d
BLAKE2b-256 65fabef4ccdba9aa0e5b3df35e32e7a453257ff1f6fec3ffddc955f6d8158605

See more details on using hashes here.

File details

Details for the file jq-1.0.0-cp36-cp36m-manylinux2010_i686.whl.

File metadata

  • Download URL: jq-1.0.0-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 487.0 kB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.0

File hashes

Hashes for jq-1.0.0-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 296383232d097d11e2c29e871ca9133cc29f3253d83f2b6912d2d191d2d1c935
MD5 f2e5956497dc75719ebf83280500fa3d
BLAKE2b-256 7510d9d171160fce37fc9d6f73709967ee3f459fae367adce89c37094b666716

See more details on using hashes here.

File details

Details for the file jq-1.0.0-cp36-cp36m-manylinux1_x86_64.whl.

File metadata

  • Download URL: jq-1.0.0-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 529.1 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.0

File hashes

Hashes for jq-1.0.0-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 e1da3842d838de5c41b511e3147d351f323daff58bcfb22e80f24715132d439d
MD5 0562e4014016eb08b9b24125553d87e3
BLAKE2b-256 e69ab7d252c4378ec66f14dfa3b28358cf4aab40f5a10b465a24c9a3df620b4c

See more details on using hashes here.

File details

Details for the file jq-1.0.0-cp36-cp36m-manylinux1_i686.whl.

File metadata

  • Download URL: jq-1.0.0-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 486.9 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.0

File hashes

Hashes for jq-1.0.0-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 1ea86a01b86193b4df071e7fbc1011b853e61a8bdf9859053f254692d5bf31a0
MD5 c585536c0f3095b8f1aa77355ce034d9
BLAKE2b-256 8d2be7fb9c94c95afb560b6b97186b783212f9a42133c8504776674a1c00f399

See more details on using hashes here.

File details

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

File metadata

  • Download URL: jq-1.0.0-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 372.4 kB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.0.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.7.7

File hashes

Hashes for jq-1.0.0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9f0a85ab3a2d9271ce6775a6f9a93f1b668f2e202830a063683301e53ce382a8
MD5 4701fb04c2a8f7d9db22bf5477581d40
BLAKE2b-256 7b7815d03471a9dc91726446be3f956883f45fe7def44e45afed76a2b4afc179

See more details on using hashes here.

File details

Details for the file jq-1.0.0-cp35-cp35m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: jq-1.0.0-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 521.3 kB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.0

File hashes

Hashes for jq-1.0.0-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 e7993662689e3c2affb04a14c127489f0fddac534e7a5df3235001e4dd7295f1
MD5 83158adcda316c3609514185483b9606
BLAKE2b-256 5e9605a0b48c283f7b2d351e5b1de35fd97b22d98d72ebe18847cf1c5b0a9942

See more details on using hashes here.

File details

Details for the file jq-1.0.0-cp35-cp35m-manylinux2010_i686.whl.

File metadata

  • Download URL: jq-1.0.0-cp35-cp35m-manylinux2010_i686.whl
  • Upload date:
  • Size: 480.7 kB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.0

File hashes

Hashes for jq-1.0.0-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 0c74c972cfe65f566775eaff781eb25a837d2b013e913d15b751bb48babb64a3
MD5 3a3be17dbe4f266a4db6d8b96eb48bf6
BLAKE2b-256 7c548acfb73e4504aae33f70ad7bc92f97083c53706129fafcfe4083d2a88d79

See more details on using hashes here.

File details

Details for the file jq-1.0.0-cp35-cp35m-manylinux1_x86_64.whl.

File metadata

  • Download URL: jq-1.0.0-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 521.3 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.0

File hashes

Hashes for jq-1.0.0-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 2cd92a34e4d87bdecab86b4da45a1c5fd8caf025d81d4f52f7e4dee310723d12
MD5 627b138807517102eb57fd5d7d4b77d2
BLAKE2b-256 31245a1921da212232a3566ad61cbf3e0d35b017bc70e99e580eca4de8bc8e2a

See more details on using hashes here.

File details

Details for the file jq-1.0.0-cp35-cp35m-manylinux1_i686.whl.

File metadata

  • Download URL: jq-1.0.0-cp35-cp35m-manylinux1_i686.whl
  • Upload date:
  • Size: 480.7 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.0

File hashes

Hashes for jq-1.0.0-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 e3ed2b65dae86b66c56d9a19cdd00ad117ed01e812fd383e89a2ae423f572d3a
MD5 52782fb1ba1ea44f0810c57f6aa38e89
BLAKE2b-256 e69d0a0f8af9cad51e66b807d522f66518ffa942dac5d4a3f8fccc8762adb14a

See more details on using hashes here.

File details

Details for the file jq-1.0.0-cp35-cp35m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: jq-1.0.0-cp35-cp35m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 379.1 kB
  • Tags: CPython 3.5m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.0.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.7.7

File hashes

Hashes for jq-1.0.0-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 43928bfb4755021d23381320d1ca2b9da9f237abee42cd9cbe32dd70675ad914
MD5 e37a1a1c6550870bce3ae76d2946bf23
BLAKE2b-256 dfdbc52dfb47d8ed9463ab689476fcbb92dbe9af6564f7b25380cda532036d99

See more details on using hashes here.

File details

Details for the file jq-1.0.0-cp27-cp27mu-manylinux2010_x86_64.whl.

File metadata

  • Download URL: jq-1.0.0-cp27-cp27mu-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 496.2 kB
  • Tags: CPython 2.7mu, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.0

File hashes

Hashes for jq-1.0.0-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 4232274bb2081ac05446d3d9a133c95e8f7266c17d126f73e16efd695bd79812
MD5 9e752e5013ba7f8908169b175b4b4018
BLAKE2b-256 3ed8e1cac5dbc5fdf7a56b8820cb2656cfa7dbb97d4af54578d292b4c2c89798

See more details on using hashes here.

File details

Details for the file jq-1.0.0-cp27-cp27mu-manylinux2010_i686.whl.

File metadata

  • Download URL: jq-1.0.0-cp27-cp27mu-manylinux2010_i686.whl
  • Upload date:
  • Size: 463.7 kB
  • Tags: CPython 2.7mu, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.0

File hashes

Hashes for jq-1.0.0-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 3135d53b638d34f4e626f7d246d6bf693d802ae151101e699f130856048be0be
MD5 10576fea7338b5201cbc4c2e1c82e983
BLAKE2b-256 9f2dd13715238f079406024d3b91e1649c8234c7458f11ab55ebe536a4fc5e91

See more details on using hashes here.

File details

Details for the file jq-1.0.0-cp27-cp27mu-manylinux1_x86_64.whl.

File metadata

  • Download URL: jq-1.0.0-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 496.2 kB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.0

File hashes

Hashes for jq-1.0.0-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 1dfe6e98faa8f1e16033ac57083a3071c10179d699b63a08fc46126a8fb19db2
MD5 b72558b920540bdc18ed494390347ba1
BLAKE2b-256 ba81b47c05a45621a6b51f0920a2e6c72bf6fe5f706c9e651816f54576662511

See more details on using hashes here.

File details

Details for the file jq-1.0.0-cp27-cp27mu-manylinux1_i686.whl.

File metadata

  • Download URL: jq-1.0.0-cp27-cp27mu-manylinux1_i686.whl
  • Upload date:
  • Size: 463.7 kB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.0

File hashes

Hashes for jq-1.0.0-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 b16e6aea4a9c21cf33d649ad88e8034f919f6b3ab78fc9efff72e9aae5065ce5
MD5 cc468b07ee6e27fd51ab311aa2d26586
BLAKE2b-256 c3b2bef2fe78e6151dee5ff079e9676983560dac310025ad53ba163ee4a61a8c

See more details on using hashes here.

File details

Details for the file jq-1.0.0-cp27-cp27m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: jq-1.0.0-cp27-cp27m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 496.1 kB
  • Tags: CPython 2.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.0

File hashes

Hashes for jq-1.0.0-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 e80cc502e5b30b1d9113fea571918039918275e96549b816155be2720e00a25b
MD5 08d80b754913c7aba828c22a6bfe99e2
BLAKE2b-256 76b38c2783789c2054b9132b64a08e8692f64c8920f87711f34086be6cfa8bab

See more details on using hashes here.

File details

Details for the file jq-1.0.0-cp27-cp27m-manylinux2010_i686.whl.

File metadata

  • Download URL: jq-1.0.0-cp27-cp27m-manylinux2010_i686.whl
  • Upload date:
  • Size: 463.6 kB
  • Tags: CPython 2.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.0

File hashes

Hashes for jq-1.0.0-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 5904db44ca285800a75d4f0438c5193fb752ed8bfd894ccf4c2115d11765a733
MD5 131ce2cb748efb5fdb9cbbb3691ea089
BLAKE2b-256 9b07287555da2a789fbeab4507faf136df2b5153abb3264d06424fb2538006f8

See more details on using hashes here.

File details

Details for the file jq-1.0.0-cp27-cp27m-manylinux1_x86_64.whl.

File metadata

  • Download URL: jq-1.0.0-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 496.1 kB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.0

File hashes

Hashes for jq-1.0.0-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 5c8117f0c461e5a6a1c026d4a5786ae03d3f9115fe72944a7360e5f4407b20f1
MD5 1f1c3f10b96dc0b376c26c11a8d6b0cc
BLAKE2b-256 6f62d78524a5ffccb16839efd3aa12c7a4d9d6dec55b0e24260fb63e3471d694

See more details on using hashes here.

File details

Details for the file jq-1.0.0-cp27-cp27m-manylinux1_i686.whl.

File metadata

  • Download URL: jq-1.0.0-cp27-cp27m-manylinux1_i686.whl
  • Upload date:
  • Size: 463.6 kB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.0

File hashes

Hashes for jq-1.0.0-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 5bae379cf13c2257f6828332822c026689f65638a88854fbfa5d78fd2afc1422
MD5 12e6a543d5fe34c3ed959657f6ac03f3
BLAKE2b-256 c00699b8afd543f1f7edb83329819cd7c393bc125687c8e6d28c3a725586c5cb

See more details on using hashes here.

File details

Details for the file jq-1.0.0-cp27-cp27m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: jq-1.0.0-cp27-cp27m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 367.8 kB
  • Tags: CPython 2.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.0.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.7.7

File hashes

Hashes for jq-1.0.0-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b20b0f6f8dea4feb05eaeedac128d16ca92982edfa6446db81e13c678559cbf8
MD5 64eddecc7335048636728221afe4afcf
BLAKE2b-256 8fc29809d62b4794232823a1467d7c25b637194d49ca10212b941ca3feb16f16

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