Skip to main content

jq is a lightweight and flexible JSON processor.

Project description

This project contains Python bindings for jq.

Installation

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

pip install jq

If a wheel is not available, the source for jq 1.6 is downloaded over HTTPS and built. This requires:

  • Autoreconf

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

  • libtool

  • Python headers.

Debian, Ubuntu or relatives

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

apt-get install autoconf automake build-essential libtool python-dev

Red Hat, Fedora, CentOS or relatives

If on Red Hat, Fedora, CentOS, or relatives, running the following command should be sufficient:

yum groupinstall "Development Tools"
yum install autoconf automake libtool python python-devel

Mac OS X

If on Mac OS X, you probably want to install Xcode and Homebrew. Once Homebrew is installed, you can install the remaining dependencies with:

brew install autoconf automake libtool

Usage

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

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(3).first() == 123

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.1.3.tar.gz (71.4 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.1.3-pp37-pypy37_pp73-manylinux2010_x86_64.whl (374.4 kB view details)

Uploaded PyPymanylinux: glibc 2.12+ x86-64

jq-1.1.3-pp37-pypy37_pp73-manylinux1_x86_64.whl (374.4 kB view details)

Uploaded PyPy

jq-1.1.3-pp37-pypy37_pp73-macosx_10_7_x86_64.whl (369.0 kB view details)

Uploaded PyPymacOS 10.7+ x86-64

jq-1.1.3-pp36-pypy36_pp73-manylinux2010_x86_64.whl (374.4 kB view details)

Uploaded PyPymanylinux: glibc 2.12+ x86-64

jq-1.1.3-pp36-pypy36_pp73-manylinux1_x86_64.whl (374.4 kB view details)

Uploaded PyPy

jq-1.1.3-pp36-pypy36_pp73-macosx_10_7_x86_64.whl (369.0 kB view details)

Uploaded PyPymacOS 10.7+ x86-64

jq-1.1.3-pp27-pypy_73-manylinux2010_x86_64.whl (373.9 kB view details)

Uploaded PyPymanylinux: glibc 2.12+ x86-64

jq-1.1.3-pp27-pypy_73-manylinux1_x86_64.whl (373.9 kB view details)

Uploaded PyPy

jq-1.1.3-pp27-pypy_73-macosx_10_7_x86_64.whl (369.3 kB view details)

Uploaded PyPymacOS 10.7+ x86-64

jq-1.1.3-cp39-cp39-manylinux2010_x86_64.whl (568.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.12+ x86-64

jq-1.1.3-cp39-cp39-manylinux2010_i686.whl (564.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.12+ i686

jq-1.1.3-cp39-cp39-manylinux1_x86_64.whl (568.6 kB view details)

Uploaded CPython 3.9

jq-1.1.3-cp39-cp39-manylinux1_i686.whl (564.6 kB view details)

Uploaded CPython 3.9

jq-1.1.3-cp39-cp39-macosx_10_9_x86_64.whl (374.6 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

jq-1.1.3-cp38-cp38-manylinux2010_x86_64.whl (582.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ x86-64

jq-1.1.3-cp38-cp38-manylinux2010_i686.whl (579.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ i686

jq-1.1.3-cp38-cp38-manylinux1_x86_64.whl (582.6 kB view details)

Uploaded CPython 3.8

jq-1.1.3-cp38-cp38-manylinux1_i686.whl (579.5 kB view details)

Uploaded CPython 3.8

jq-1.1.3-cp38-cp38-macosx_10_9_x86_64.whl (371.6 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

jq-1.1.3-cp37-cp37m-manylinux2010_x86_64.whl (544.4 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ x86-64

jq-1.1.3-cp37-cp37m-manylinux2010_i686.whl (540.4 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ i686

jq-1.1.3-cp37-cp37m-manylinux1_x86_64.whl (544.4 kB view details)

Uploaded CPython 3.7m

jq-1.1.3-cp37-cp37m-manylinux1_i686.whl (540.4 kB view details)

Uploaded CPython 3.7m

jq-1.1.3-cp37-cp37m-macosx_10_9_x86_64.whl (370.4 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

jq-1.1.3-cp36-cp36m-manylinux2010_x86_64.whl (543.1 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ x86-64

jq-1.1.3-cp36-cp36m-manylinux2010_i686.whl (539.6 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ i686

jq-1.1.3-cp36-cp36m-manylinux1_x86_64.whl (543.1 kB view details)

Uploaded CPython 3.6m

jq-1.1.3-cp36-cp36m-manylinux1_i686.whl (539.6 kB view details)

Uploaded CPython 3.6m

jq-1.1.3-cp36-cp36m-macosx_10_9_x86_64.whl (372.8 kB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

jq-1.1.3-cp35-cp35m-manylinux2010_x86_64.whl (538.4 kB view details)

Uploaded CPython 3.5mmanylinux: glibc 2.12+ x86-64

jq-1.1.3-cp35-cp35m-manylinux2010_i686.whl (533.5 kB view details)

Uploaded CPython 3.5mmanylinux: glibc 2.12+ i686

jq-1.1.3-cp35-cp35m-manylinux1_x86_64.whl (538.4 kB view details)

Uploaded CPython 3.5m

jq-1.1.3-cp35-cp35m-manylinux1_i686.whl (533.4 kB view details)

Uploaded CPython 3.5m

jq-1.1.3-cp35-cp35m-macosx_10_9_x86_64.whl (380.4 kB view details)

Uploaded CPython 3.5mmacOS 10.9+ x86-64

jq-1.1.3-cp27-cp27mu-manylinux2010_x86_64.whl (510.1 kB view details)

Uploaded CPython 2.7mumanylinux: glibc 2.12+ x86-64

jq-1.1.3-cp27-cp27mu-manylinux2010_i686.whl (507.4 kB view details)

Uploaded CPython 2.7mumanylinux: glibc 2.12+ i686

jq-1.1.3-cp27-cp27mu-manylinux1_x86_64.whl (510.1 kB view details)

Uploaded CPython 2.7mu

jq-1.1.3-cp27-cp27mu-manylinux1_i686.whl (507.4 kB view details)

Uploaded CPython 2.7mu

jq-1.1.3-cp27-cp27m-manylinux2010_x86_64.whl (510.1 kB view details)

Uploaded CPython 2.7mmanylinux: glibc 2.12+ x86-64

jq-1.1.3-cp27-cp27m-manylinux2010_i686.whl (507.4 kB view details)

Uploaded CPython 2.7mmanylinux: glibc 2.12+ i686

jq-1.1.3-cp27-cp27m-manylinux1_x86_64.whl (510.1 kB view details)

Uploaded CPython 2.7m

jq-1.1.3-cp27-cp27m-manylinux1_i686.whl (507.4 kB view details)

Uploaded CPython 2.7m

jq-1.1.3-cp27-cp27m-macosx_10_9_x86_64.whl (371.2 kB view details)

Uploaded CPython 2.7mmacOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: jq-1.1.3.tar.gz
  • Upload date:
  • Size: 71.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.7.0 requests/2.24.0 setuptools/44.1.1 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/2.7.16

File hashes

Hashes for jq-1.1.3.tar.gz
Algorithm Hash digest
SHA256 f9ec1dfa7f9875b04495f3e08e85ee96f37a3b843e5bca738a3300732865dde7
MD5 85892eabebd0131da7e63e3168b28806
BLAKE2b-256 7f4001981da0534839a7c9a0116318f404738c8add70272a45b57478b6a6bf78

See more details on using hashes here.

File details

Details for the file jq-1.1.3-pp37-pypy37_pp73-manylinux2010_x86_64.whl.

File metadata

  • Download URL: jq-1.1.3-pp37-pypy37_pp73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 374.4 kB
  • Tags: PyPy, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.7.0 requests/2.24.0 setuptools/44.1.1 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/2.7.16

File hashes

Hashes for jq-1.1.3-pp37-pypy37_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 bae856359ad00306424c026767fef6843dc680ce5c1d3352f762bb2432e49513
MD5 1b3b55f0a216c74c6891aee124cb87d5
BLAKE2b-256 bbc6fb67344032f399ccc776d626fb2f39db43afde24ab09edd72165ed77a562

See more details on using hashes here.

File details

Details for the file jq-1.1.3-pp37-pypy37_pp73-manylinux1_x86_64.whl.

File metadata

  • Download URL: jq-1.1.3-pp37-pypy37_pp73-manylinux1_x86_64.whl
  • Upload date:
  • Size: 374.4 kB
  • Tags: PyPy
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.7.0 requests/2.24.0 setuptools/44.1.1 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/2.7.16

File hashes

Hashes for jq-1.1.3-pp37-pypy37_pp73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 5efccce1c9653ef8893b4b9cdbfe8049dbe8b0c80fc143eb3cd3503056dbc9a0
MD5 72b781bbb91ea73aad8c0b5fe79b922f
BLAKE2b-256 1ac31273226f0e8c5489d9e2d7a3c8f77abee05ac1d2b7e38fcc24c740dacd86

See more details on using hashes here.

File details

Details for the file jq-1.1.3-pp37-pypy37_pp73-macosx_10_7_x86_64.whl.

File metadata

  • Download URL: jq-1.1.3-pp37-pypy37_pp73-macosx_10_7_x86_64.whl
  • Upload date:
  • Size: 369.0 kB
  • Tags: PyPy, macOS 10.7+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.7.0 requests/2.24.0 setuptools/44.1.1 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/2.7.16

File hashes

Hashes for jq-1.1.3-pp37-pypy37_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 be94ac6eabad84fedc198380fcad04adfe879d8b64ca09e0dab9a6770b55c583
MD5 eae9972b06e6ce50dce8f0822d1be4dc
BLAKE2b-256 e56684594f51ae9e324bff4f1c53c5b63d1dfcfbd92c509202bc00eb265e0981

See more details on using hashes here.

File details

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

File metadata

  • Download URL: jq-1.1.3-pp36-pypy36_pp73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 374.4 kB
  • Tags: PyPy, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.7.0 requests/2.24.0 setuptools/44.1.1 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/2.7.16

File hashes

Hashes for jq-1.1.3-pp36-pypy36_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 f628b1fc32e3c5121aa15e1d72827fd167e404b9a53372c8fb94b2b72c919c30
MD5 ec2775a486862cfbb602e78d46b061b5
BLAKE2b-256 89b390ceffe2c933f997f19d472bf3eaaeb0e0100c5c71aa42efc77513587bba

See more details on using hashes here.

File details

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

File metadata

  • Download URL: jq-1.1.3-pp36-pypy36_pp73-manylinux1_x86_64.whl
  • Upload date:
  • Size: 374.4 kB
  • Tags: PyPy
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.7.0 requests/2.24.0 setuptools/44.1.1 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/2.7.16

File hashes

Hashes for jq-1.1.3-pp36-pypy36_pp73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 fac8e8a20415469470d38e209cf7c87ac91cac9d5234b2ea3e22e83ca97ed7ef
MD5 5ce329c25b4710b5714594a28fffc337
BLAKE2b-256 565a43de77fa8d1c920c2a424f02285a1f9cd160ab29d900ad3efe3f29c5997d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: jq-1.1.3-pp36-pypy36_pp73-macosx_10_7_x86_64.whl
  • Upload date:
  • Size: 369.0 kB
  • Tags: PyPy, macOS 10.7+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.7.0 requests/2.24.0 setuptools/44.1.1 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/2.7.16

File hashes

Hashes for jq-1.1.3-pp36-pypy36_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 eee674fc6b647ddf9c981ddad9826eee6149a0760fafd6531818b3ca1040ca61
MD5 6a9c2637f305cb219c486182cc17a6d1
BLAKE2b-256 8701af516e832b5690520bb8fd5ce8cf06fd05afa95e486dabc7ea156f18b832

See more details on using hashes here.

File details

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

File metadata

  • Download URL: jq-1.1.3-pp27-pypy_73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 373.9 kB
  • Tags: PyPy, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.7.0 requests/2.24.0 setuptools/44.1.1 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/2.7.16

File hashes

Hashes for jq-1.1.3-pp27-pypy_73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 a1d3df8221e393dcfa70b566b44ac36d51701bd85eeba05fd17336320d499c0f
MD5 b84eb1b8d98c6b687735605121457d3d
BLAKE2b-256 e13dbe60c4b9c8faccb97deaca342e114fea762468479786f9d4254c15d4052c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: jq-1.1.3-pp27-pypy_73-manylinux1_x86_64.whl
  • Upload date:
  • Size: 373.9 kB
  • Tags: PyPy
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.7.0 requests/2.24.0 setuptools/44.1.1 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/2.7.16

File hashes

Hashes for jq-1.1.3-pp27-pypy_73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 db4ad30759b0a33bb3f2dbf4a5f4d7e2a3ff9c363ed7bf32f5a8cd79bace82b6
MD5 22552468245abeb504d3b89edbc8a43f
BLAKE2b-256 e9d3f6d213b5c8b124d04a113c8656c0e98718fb1cbb55afc276df91127d9ea4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: jq-1.1.3-pp27-pypy_73-macosx_10_7_x86_64.whl
  • Upload date:
  • Size: 369.3 kB
  • Tags: PyPy, macOS 10.7+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.7.0 requests/2.24.0 setuptools/44.1.1 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/2.7.16

File hashes

Hashes for jq-1.1.3-pp27-pypy_73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 d23d16f3d216da74136d9102ebeb0514a1e64b9ca71bcb4e23389e229a975faa
MD5 4be2569e388b84c99456abba6fce74a8
BLAKE2b-256 658f796bfbff9ca04d2813fe6e1527b1fd57cfd7c86ca7dcbf27e24a4833bf63

See more details on using hashes here.

File details

Details for the file jq-1.1.3-cp39-cp39-manylinux2010_x86_64.whl.

File metadata

  • Download URL: jq-1.1.3-cp39-cp39-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 568.6 kB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.7.0 requests/2.24.0 setuptools/44.1.1 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/2.7.16

File hashes

Hashes for jq-1.1.3-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 9576faff90a7cf0c04c2b7d5c3b3c72e8ed7fc428e434fa8ba40994c1f92fcd4
MD5 b22c7fa4248e959a7ba6f889bcf77ec1
BLAKE2b-256 ee7a6a3f16e150a3b3bbaf37aa1ba4caed6e209a6cc08efcf873198f9fa35566

See more details on using hashes here.

File details

Details for the file jq-1.1.3-cp39-cp39-manylinux2010_i686.whl.

File metadata

  • Download URL: jq-1.1.3-cp39-cp39-manylinux2010_i686.whl
  • Upload date:
  • Size: 564.6 kB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.7.0 requests/2.24.0 setuptools/44.1.1 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/2.7.16

File hashes

Hashes for jq-1.1.3-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 f8a250c94f16b84e632090050bd2e8170628755bb3d97e93059e9dd6f83c5e06
MD5 c0ee39b63a45f70d3febc2c0f43b2e45
BLAKE2b-256 017ef99e4a49629b92f15aff294c0f8260de2c94eb025bf9d26d1d18da9b9a59

See more details on using hashes here.

File details

Details for the file jq-1.1.3-cp39-cp39-manylinux1_x86_64.whl.

File metadata

  • Download URL: jq-1.1.3-cp39-cp39-manylinux1_x86_64.whl
  • Upload date:
  • Size: 568.6 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.7.0 requests/2.24.0 setuptools/44.1.1 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/2.7.16

File hashes

Hashes for jq-1.1.3-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 4de997046cf7cc78e264ce2fac25b6df4350cc543e666541cc602046b107478e
MD5 40ce9769a30b3426565b27383ed7ae1f
BLAKE2b-256 24f7244a0b86de91430c0b575cc2dee8ac0c3dac596d624ff92d01910b56fd01

See more details on using hashes here.

File details

Details for the file jq-1.1.3-cp39-cp39-manylinux1_i686.whl.

File metadata

  • Download URL: jq-1.1.3-cp39-cp39-manylinux1_i686.whl
  • Upload date:
  • Size: 564.6 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.7.0 requests/2.24.0 setuptools/44.1.1 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/2.7.16

File hashes

Hashes for jq-1.1.3-cp39-cp39-manylinux1_i686.whl
Algorithm Hash digest
SHA256 995ce5a147879a84f7689462c49469ce4353e7b8f64eba46ead569343901009c
MD5 f6ed1fcc861f98f78e920f3a79f19466
BLAKE2b-256 600eb67716f28d9406bb6f710c7a620c093807d31a9c38062d26321514b7ab25

See more details on using hashes here.

File details

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

File metadata

  • Download URL: jq-1.1.3-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 374.6 kB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.7.0 requests/2.24.0 setuptools/44.1.1 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/2.7.16

File hashes

Hashes for jq-1.1.3-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b42490d80c5a8d46ade11f39a9e5353e893208dea66c3e434c483ab916372070
MD5 01721a2d6d0d265353733930643e26b9
BLAKE2b-256 6f65d33a92924e305fe58cc8f329b8679347fc0a1b4235f9f648f5b6e2df49d9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: jq-1.1.3-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 582.6 kB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.7.0 requests/2.24.0 setuptools/44.1.1 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/2.7.16

File hashes

Hashes for jq-1.1.3-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 f9568fb1344fba6e298cc03f09425caac3d076e1509c6b06bb78eb34b975bc10
MD5 bb7a845ed07d2fe6570e0904aecd071b
BLAKE2b-256 46536fcbbdaeb059fa706a8ee7079401927f4d61f5e2b812b1994f6a1c8060b4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: jq-1.1.3-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 579.5 kB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.7.0 requests/2.24.0 setuptools/44.1.1 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/2.7.16

File hashes

Hashes for jq-1.1.3-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 6c90e2e93256d53fd41318f5e835a31c49a458e8866d46685a40f06537e6833d
MD5 93699e1e95cbff8fe61c2b3ce559b42e
BLAKE2b-256 a319aa8274f560486217ac7482e985720c7fe16cc2381003ebfabf56ce0e319c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: jq-1.1.3-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 582.6 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.7.0 requests/2.24.0 setuptools/44.1.1 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/2.7.16

File hashes

Hashes for jq-1.1.3-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 2d8cfdafbde9be2a970b34d8f47af0a57dd86238f2514e7706bdd8d49e989e94
MD5 0688cd8d4b70c85c6c5e66e634511ca7
BLAKE2b-256 9c8038e0032532df414a98e33c119d06813362571b8ab521b8374f51b80b4463

See more details on using hashes here.

File details

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

File metadata

  • Download URL: jq-1.1.3-cp38-cp38-manylinux1_i686.whl
  • Upload date:
  • Size: 579.5 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.7.0 requests/2.24.0 setuptools/44.1.1 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/2.7.16

File hashes

Hashes for jq-1.1.3-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 2437f3742ea7a33d8c259c9718811c54f0bfded5b06baf2efa9a12a0c2134d19
MD5 b5933ff2329a1e49d9024f4d0f7fceba
BLAKE2b-256 d3e87cdfbf36570391fddfc2427e69b19082cf1dad52cebb2f4ea453038a2d15

See more details on using hashes here.

File details

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

File metadata

  • Download URL: jq-1.1.3-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 371.6 kB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.7.0 requests/2.24.0 setuptools/44.1.1 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/2.7.16

File hashes

Hashes for jq-1.1.3-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e60a31097d34659a13581fbae07f207c4fcf9a302754476be19521c886858f5e
MD5 bdbc63bc580688e1ad586778ed3bdfc6
BLAKE2b-256 cfbc4527e8fa826e5b5d7e33e2b807dcec99b1e252a3b061c51902b5bc898701

See more details on using hashes here.

File details

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

File metadata

  • Download URL: jq-1.1.3-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 544.4 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.7.0 requests/2.24.0 setuptools/44.1.1 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/2.7.16

File hashes

Hashes for jq-1.1.3-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 594f660f97ef71bd2aa112a285246da11f11b54a21af4af5c567cd29853dd273
MD5 a5eb383fddfd3efbeddac791ca8a1307
BLAKE2b-256 2fc62c1fb8f8306a1ba3d4ec69c22cc5f2f6d283b6fe0e0038226e7fe027b10f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: jq-1.1.3-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 540.4 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.7.0 requests/2.24.0 setuptools/44.1.1 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/2.7.16

File hashes

Hashes for jq-1.1.3-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 09bba3037b7dd667b9630e3b3d5b2d755a89a8751de302c6580aa0b551de8434
MD5 cf7c57f641277b526ec8a79b63a0fef8
BLAKE2b-256 e815c493ec1093cd9afe176bd3c0fa614aa5606fbc10e5ed00eafd7732b90adb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: jq-1.1.3-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 544.4 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.7.0 requests/2.24.0 setuptools/44.1.1 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/2.7.16

File hashes

Hashes for jq-1.1.3-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 af4cf18ab201f6f8fcdce3611f0a0c09910d70e794796a9232705619e432d2cc
MD5 4c10d1583d03260706384b7eb1f761c8
BLAKE2b-256 558a66af6d90bccf1210482588e421e895ccf6fee9a845910502e295b8fed31d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: jq-1.1.3-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 540.4 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.7.0 requests/2.24.0 setuptools/44.1.1 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/2.7.16

File hashes

Hashes for jq-1.1.3-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 76bf0aacd04584ea72555dc1c61803ccb8c76f55b5910cc15e328513cbae3a04
MD5 77a7b9db2e60f2299c80f73a7f67d16d
BLAKE2b-256 05cda45df8a690d77f378806205e3d973d5ffaa7ca4bf2170692ad9dce711be7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: jq-1.1.3-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 370.4 kB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.7.0 requests/2.24.0 setuptools/44.1.1 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/2.7.16

File hashes

Hashes for jq-1.1.3-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e2d96a54978055159bdc338bb6ddf589d171643d7f54bda2d54c5a0309bdaed6
MD5 656509db13957d8465920e9b2784e8db
BLAKE2b-256 2978986dd4534662d4abae7567b2442b683a026ff6cc0bb81aa33a42a552daf1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: jq-1.1.3-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 543.1 kB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.7.0 requests/2.24.0 setuptools/44.1.1 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/2.7.16

File hashes

Hashes for jq-1.1.3-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 81dad8a1768d40cbb8b523422b1ac8e618e66588974891ad72696943a8c50762
MD5 44065cf560b495e6c6e90165acd366b9
BLAKE2b-256 0d0ee1cd904e7c208f136a3dafe92cd33f173ff8070ed2ee27b034ab3f79db42

See more details on using hashes here.

File details

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

File metadata

  • Download URL: jq-1.1.3-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 539.6 kB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.7.0 requests/2.24.0 setuptools/44.1.1 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/2.7.16

File hashes

Hashes for jq-1.1.3-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 475a2a348f08b4be11638a6af3ae2799f9f266da65c81eb08b7c417bd3efcb06
MD5 440b934528a7531c6403b5423e68d108
BLAKE2b-256 e6c503f4ba8a81db229f87276cb1217fb4187f53acabddab6633fa2bee8ee07d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: jq-1.1.3-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 543.1 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.7.0 requests/2.24.0 setuptools/44.1.1 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/2.7.16

File hashes

Hashes for jq-1.1.3-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 5ed01ec10241460f5f78a08aa05da3b740037f9c840c4f6c8e9a79f7aeaf2f1c
MD5 1de46e560a328272ba19ae726aea1e1e
BLAKE2b-256 8e8ab5f69413f51bf7c7fca6f9d0574ab952c1d065452511acad7fac493f2f04

See more details on using hashes here.

File details

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

File metadata

  • Download URL: jq-1.1.3-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 539.6 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.7.0 requests/2.24.0 setuptools/44.1.1 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/2.7.16

File hashes

Hashes for jq-1.1.3-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 392c5718c7b642e882a12e0d15cc52c59bc9b3e21c8b39330c10d052e3835abe
MD5 94e22a8e5050e9d092836a2a21f4238c
BLAKE2b-256 2e02be2dd4d098704928676020d932f540df4616801d024669eabc5f024ea39f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: jq-1.1.3-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 372.8 kB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.7.0 requests/2.24.0 setuptools/44.1.1 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/2.7.16

File hashes

Hashes for jq-1.1.3-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7367f67e8f232587694cd1840bf7dbfc59b1204caec5620a77b68a53c7770ddf
MD5 5bfbd657a2c5eb7c16eb054f12db2b98
BLAKE2b-256 556f2874d55c099eaa865c702d51de05fc165ef174bd7f064c607ac776dfc021

See more details on using hashes here.

File details

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

File metadata

  • Download URL: jq-1.1.3-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 538.4 kB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.7.0 requests/2.24.0 setuptools/44.1.1 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/2.7.16

File hashes

Hashes for jq-1.1.3-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 544a18a39cc123699f894486f74681a19d7e407660c42aa78967497d021b7b23
MD5 6dbb83d6148af8db0fec463bcaf0f8c3
BLAKE2b-256 c6bc451910c40982fb7b672e6ebc43f1b16f7c235d9f9ecd0e9119b4bc8ebc59

See more details on using hashes here.

File details

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

File metadata

  • Download URL: jq-1.1.3-cp35-cp35m-manylinux2010_i686.whl
  • Upload date:
  • Size: 533.5 kB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.7.0 requests/2.24.0 setuptools/44.1.1 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/2.7.16

File hashes

Hashes for jq-1.1.3-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 d09a150e18246d7245347011de6b711e9e1ec5abb00fb2baa9c96c810e10afb6
MD5 71289d8f7f55f1e970b2a7d5a5f20b3c
BLAKE2b-256 5bfc99862e24eb602f7160cefd2253c87de1257882c6b00afa665e3b8c086bc9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: jq-1.1.3-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 538.4 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.7.0 requests/2.24.0 setuptools/44.1.1 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/2.7.16

File hashes

Hashes for jq-1.1.3-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 03e17e9dcb906c3b10df5c675acebaccff3e61060dca3d5b3d60f35c2af38f8c
MD5 a39533ef019e42daa767960662b360e3
BLAKE2b-256 23e2b2831c089cb890817c4cbdeb9194f6e1211de4278b8238339192f1225c4e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: jq-1.1.3-cp35-cp35m-manylinux1_i686.whl
  • Upload date:
  • Size: 533.4 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.7.0 requests/2.24.0 setuptools/44.1.1 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/2.7.16

File hashes

Hashes for jq-1.1.3-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 ed1117b5eda08821bf8084a7cab5ee4b010f96afa3663290ebfcf24da7682d4f
MD5 1833ea7c09645bc8659de7dfb557c48b
BLAKE2b-256 26f6e3574a8897df254e517de554cdb2279b1e6e2910ee7b85941d1caa85525c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: jq-1.1.3-cp35-cp35m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 380.4 kB
  • Tags: CPython 3.5m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.7.0 requests/2.24.0 setuptools/44.1.1 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/2.7.16

File hashes

Hashes for jq-1.1.3-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a876e74391c3e1e402304b9421f99ff8187c71e1f250ae52138f93ff9c82239a
MD5 dee1d6149b831211ee4bb24088c9ac1b
BLAKE2b-256 ccd84af4ad857bdfe6a1dfe675a1c68e131c62b8c2cf81fa5d15fe21df2e024e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: jq-1.1.3-cp27-cp27mu-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 510.1 kB
  • Tags: CPython 2.7mu, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.7.0 requests/2.24.0 setuptools/44.1.1 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/2.7.16

File hashes

Hashes for jq-1.1.3-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 47a10543439512c943376736ae53664f1a6a28d06c4e663c67f77dcc2153a341
MD5 460dd7431443daf74b9c9e800036fe33
BLAKE2b-256 81deb298e7080176680b4fc710d36f0277a935b4e258ee75e63d7b8063dbd7aa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: jq-1.1.3-cp27-cp27mu-manylinux2010_i686.whl
  • Upload date:
  • Size: 507.4 kB
  • Tags: CPython 2.7mu, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.7.0 requests/2.24.0 setuptools/44.1.1 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/2.7.16

File hashes

Hashes for jq-1.1.3-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 2a92329fb345476477377a3fb968ae1993544a08c10ed17e494d185cde465cf5
MD5 15bd7465110bc6b67547b49a5f828529
BLAKE2b-256 9300f675c7858d65ada1d37f591d83983f31d3cddb93e27bbe99b073e2eb00c3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: jq-1.1.3-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 510.1 kB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.7.0 requests/2.24.0 setuptools/44.1.1 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/2.7.16

File hashes

Hashes for jq-1.1.3-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 c14f3803955f9e80795d5c630b9c0b7b1d3601b90721bad1645c624878783039
MD5 cce23a9b2039c1e951ec23a13be0ac9e
BLAKE2b-256 90e5b51f6731f662acfbc0d368ee1453b15e0ddb875fbeb2d6e13f7098c9d9c2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: jq-1.1.3-cp27-cp27mu-manylinux1_i686.whl
  • Upload date:
  • Size: 507.4 kB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.7.0 requests/2.24.0 setuptools/44.1.1 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/2.7.16

File hashes

Hashes for jq-1.1.3-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 8fcf5042228c7a7c8573b2de8ddfc427b2f4c5633e5eb96e07b7351ad01c8ce2
MD5 00743fc44ced7e3ff649741e003f00c6
BLAKE2b-256 3408a8afc93352b127cd0cf258bda6b3f44d404913edaf7d876902a73e4a94dd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: jq-1.1.3-cp27-cp27m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 510.1 kB
  • Tags: CPython 2.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.7.0 requests/2.24.0 setuptools/44.1.1 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/2.7.16

File hashes

Hashes for jq-1.1.3-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 077bb47273e98e3d4f903909d35eb0f0499a942e488bd74aeef21ba29369cd1e
MD5 104b88de8c6140811cfac80f8130d56b
BLAKE2b-256 7ec7577d699a14580258aeedb0a76433ab0e0c14234965087244f10804dba420

See more details on using hashes here.

File details

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

File metadata

  • Download URL: jq-1.1.3-cp27-cp27m-manylinux2010_i686.whl
  • Upload date:
  • Size: 507.4 kB
  • Tags: CPython 2.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.7.0 requests/2.24.0 setuptools/44.1.1 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/2.7.16

File hashes

Hashes for jq-1.1.3-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 0e67d9723342fd1a09a8f0c7e64973e697ccfd611e049c65a5533eea7089a623
MD5 40dc7477f3a6a6ef592ed01f0f1af8bf
BLAKE2b-256 fe431d8ae287640a7f40451c2c594c47a1f6049645943365cf0ee1454fd09579

See more details on using hashes here.

File details

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

File metadata

  • Download URL: jq-1.1.3-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 510.1 kB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.7.0 requests/2.24.0 setuptools/44.1.1 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/2.7.16

File hashes

Hashes for jq-1.1.3-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 53024d227e50d13d81cbd5288085ae5d7881c05f957951a16388f1723633961f
MD5 7499dfb556b4b3171c40c9fc0c929f41
BLAKE2b-256 1f7815f2f3fb43c6d5e504c5055278f34ca9384a26ce1efd997b6d97a017cee2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: jq-1.1.3-cp27-cp27m-manylinux1_i686.whl
  • Upload date:
  • Size: 507.4 kB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.7.0 requests/2.24.0 setuptools/44.1.1 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/2.7.16

File hashes

Hashes for jq-1.1.3-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 c4691b058ed4f390ef8bfbbf3abfcb3afe60d6e91e6da43a6bab972d9b7b9907
MD5 e9fd7e4f603e7d2ddd4e3d4b19a59a9e
BLAKE2b-256 f68b87c2420bc6dcc3f4cdea10accf83aaebe6a47f286d984cd0b0bc92f7c0b7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: jq-1.1.3-cp27-cp27m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 371.2 kB
  • Tags: CPython 2.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.7.0 requests/2.24.0 setuptools/44.1.1 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/2.7.16

File hashes

Hashes for jq-1.1.3-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8e68a254216dbf343c9c2a240e17b28aecbe9987b557d396bf95bdda3ece82b1
MD5 480c506482b4203df110c4a6ce0a0b03
BLAKE2b-256 9720aae73f6cded4d53cb09e2c05002316ed5ea0ce5ae444c7ee71af4ad7fca7

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