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

Uploaded PyPymanylinux: glibc 2.12+ x86-64

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

Uploaded PyPy

jq-1.1.2-pp37-pypy37_pp73-macosx_10_7_x86_64.whl (368.9 kB view details)

Uploaded PyPymacOS 10.7+ x86-64

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

Uploaded PyPymanylinux: glibc 2.12+ x86-64

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

Uploaded PyPy

jq-1.1.2-pp36-pypy36_pp73-macosx_10_7_x86_64.whl (368.9 kB view details)

Uploaded PyPymacOS 10.7+ x86-64

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

Uploaded PyPymanylinux: glibc 2.12+ x86-64

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

Uploaded PyPy

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

Uploaded PyPymacOS 10.7+ x86-64

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

Uploaded CPython 3.9manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.9manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.9

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

Uploaded CPython 3.9

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

Uploaded CPython 3.9macOS 10.9+ x86-64

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

Uploaded CPython 3.8manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.8manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.8

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

Uploaded CPython 3.8

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

Uploaded CPython 3.8macOS 10.9+ x86-64

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

Uploaded CPython 3.7mmanylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.7mmanylinux: glibc 2.12+ i686

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

Uploaded CPython 3.7m

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

Uploaded CPython 3.7m

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

Uploaded CPython 3.7mmacOS 10.9+ x86-64

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

Uploaded CPython 3.6mmanylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.6mmanylinux: glibc 2.12+ i686

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

Uploaded CPython 3.6m

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

Uploaded CPython 3.6m

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

Uploaded CPython 3.6mmacOS 10.9+ x86-64

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

Uploaded CPython 3.5mmanylinux: glibc 2.12+ x86-64

jq-1.1.2-cp35-cp35m-manylinux2010_i686.whl (533.4 kB view details)

Uploaded CPython 3.5mmanylinux: glibc 2.12+ i686

jq-1.1.2-cp35-cp35m-manylinux1_x86_64.whl (538.3 kB view details)

Uploaded CPython 3.5m

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

Uploaded CPython 3.5m

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

Uploaded CPython 3.5mmacOS 10.9+ x86-64

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

Uploaded CPython 2.7mumanylinux: glibc 2.12+ x86-64

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

Uploaded CPython 2.7mumanylinux: glibc 2.12+ i686

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7mmanylinux: glibc 2.12+ x86-64

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

Uploaded CPython 2.7mmanylinux: glibc 2.12+ i686

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

Uploaded CPython 2.7m

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

Uploaded CPython 2.7m

jq-1.1.2-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.2.tar.gz.

File metadata

  • Download URL: jq-1.1.2.tar.gz
  • Upload date:
  • Size: 70.6 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.2.tar.gz
Algorithm Hash digest
SHA256 77e747c6ad10ce65479f5f9064ab036483bf307bf71fdd7d6235ef895fcc506e
MD5 c230976e8fe01f38bd7ed49b994ae1e6
BLAKE2b-256 98650683c04742f2f050b07c93b035ec47097690a218490be29d4b3a76ad3d8a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: jq-1.1.2-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.2-pp37-pypy37_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 09e235c5d17d9cd8b19aa81da2e01cb2c30c700ff55ae43e72e609504bfbffff
MD5 e60075d58e6482ec88f08327843b7030
BLAKE2b-256 d254393f196964df37bcbe4e8981362b412e4840286566e1e19683996159a09f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: jq-1.1.2-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.2-pp37-pypy37_pp73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 5553d4f51f28fe4be463ce78ecbd3546ba100715baaa6194ae04a5f94aa22844
MD5 22cb5c46060c970f05e703002c83a6c7
BLAKE2b-256 f3d705e4b1eb737aff2e96bbafefcf3ab9e3d618fbe706edabf0f4ed467eeb32

See more details on using hashes here.

File details

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

File metadata

  • Download URL: jq-1.1.2-pp37-pypy37_pp73-macosx_10_7_x86_64.whl
  • Upload date:
  • Size: 368.9 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.2-pp37-pypy37_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 27eee5fb0b3f180f39960bdd8d8563141caa454b9c6fc5c04c1dc1a6ea5ccfeb
MD5 ad9331d53328f21df2ccf03ec310eea5
BLAKE2b-256 720d91cdea05482d387826e310c310db77aab24002b8175922eed68e8efb83f5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: jq-1.1.2-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.2-pp36-pypy36_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 265fd43f5ae91ca342edaf33da09d37057229679040233d0f1b6ef101b937b16
MD5 6fb2c8765f22307d1c61542a3c89f7ca
BLAKE2b-256 abc5a7adfbf4b745ac316f25637ef1a3dd954759832007616ce3f6286499d58c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: jq-1.1.2-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.2-pp36-pypy36_pp73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 ff825949c9505a998a9a98b63658c8ed53dfdb095fe5cc62538ef77cb71121d4
MD5 f362251fcf9b2dd714f28e0855b1e8b6
BLAKE2b-256 834874f265224207a335ff2265725e5cbcce31bf8e29b1cbdd3fe5b36beb0f73

See more details on using hashes here.

File details

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

File metadata

  • Download URL: jq-1.1.2-pp36-pypy36_pp73-macosx_10_7_x86_64.whl
  • Upload date:
  • Size: 368.9 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.2-pp36-pypy36_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 825d5a1ee80923a15ca35c84e91ee27ea2ab0d5155eaea6e93f7c9943b126e27
MD5 a09feb684dd5f93ffc0caaa552d757df
BLAKE2b-256 a17cf2ecd05aa61de09c0ffa45c51a8da2d45fb3f213afcb56825a28fc63c369

See more details on using hashes here.

File details

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

File metadata

  • Download URL: jq-1.1.2-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.2-pp27-pypy_73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 1d3801b89e9102ee2d97ce2e98e175e2b1c555e7b14faea87faadf936e640973
MD5 90a27f5bd325ecb2ebd288a69dd1196e
BLAKE2b-256 6045cf1e3cdf833e518eb696313524b5621c1903f88be773b77587324e2bd5f9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: jq-1.1.2-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.2-pp27-pypy_73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 a0ee347ed72472a03bb3731686a86d5e6ab4999cefc55f69046ef9e352b754d4
MD5 fde791187476d94de6a5ac064da70b35
BLAKE2b-256 3975eeeda0499728859289699747cf983861822a1a30448e04c9178e740801ef

See more details on using hashes here.

File details

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

File metadata

  • Download URL: jq-1.1.2-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.2-pp27-pypy_73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 d81443acb22cbf958011734f56816c2df8166bfed2b02035adf37bcfd0bbce2c
MD5 4b2e9b36c1d92587cfb213cec74d5673
BLAKE2b-256 229e62842fa45bbedb37b1de6c38a1aa16f16a02ed3697e78d752526abf20d28

See more details on using hashes here.

File details

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

File metadata

  • Download URL: jq-1.1.2-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.2-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 0986754c900afd0e18c039e5844b92446ed48052885d2983fc1d11f748221527
MD5 aa4f11d9bafcb64becad214cb4f1263f
BLAKE2b-256 0d64e48e7ac955f6f9cb226a11d9b8153464b808b85d33c7b71bc3410e733b10

See more details on using hashes here.

File details

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

File metadata

  • Download URL: jq-1.1.2-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.2-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 93fddfa1750499840fc6b14f9ae48243fc28827845ae667259b7fd0f0296eab1
MD5 1da99c872d913d3e69b11f7fcaccf273
BLAKE2b-256 8f2d031fa052a0c80997f788efdbbfe71ad0f87e43b527461c3b1c02dc523e19

See more details on using hashes here.

File details

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

File metadata

  • Download URL: jq-1.1.2-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.2-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 573e45773ff17438105bb2c0f264290c712838bae68c9468d979a261e102d9be
MD5 e7ecce49070d72b3cf2a5204e03a6422
BLAKE2b-256 ccfef5fd247d529dcf41d7d958ada6d19e508096b8c2130fe431a941fe6d6b41

See more details on using hashes here.

File details

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

File metadata

  • Download URL: jq-1.1.2-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.2-cp39-cp39-manylinux1_i686.whl
Algorithm Hash digest
SHA256 6b709a76d42033ede948c1e0322dde6e876e8613fd2a9a9ca02ac2fdccf6c1d3
MD5 b31880d337879e2ca8dc7b87fc603247
BLAKE2b-256 2a8cd1fbf72cf78eba6b965152f2ca0d48da092a37712e184ce71c2877b3533d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: jq-1.1.2-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.2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b44b536296831f7d8c40ad24c53104e9f18b54907810753e38032a837035b69e
MD5 7896ec555964b3c19da61bab7ce43a08
BLAKE2b-256 7aff44279e027dc1f077cb3420e53e9bd8fa146144143b3f7a73914e377119e6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: jq-1.1.2-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.2-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 7e976797e3c977a3c2b695aea640b8548a702989212ac1e5b08677a4cd4932d0
MD5 c83e8174eea36900abac5de0db0bc393
BLAKE2b-256 a3d1591e1dc37245b70107ab7e4ecda8f6d02e5ce1378cd425e7b06d66b1f23c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: jq-1.1.2-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.2-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 f90818aac65d91506656d2313cbc03181d7c44f9ee446ac2153b046755d82265
MD5 d9b019fe59c8b6ff6359989b9ea4e6fe
BLAKE2b-256 13ddeb1ed3f550d4e4cbd286e95eb6a9c45d1e6df035c1c89fcff5de28815894

See more details on using hashes here.

File details

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

File metadata

  • Download URL: jq-1.1.2-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.2-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 8fc766f4aecf3f65beffaf88d3721a5ad0117d719adcde142ea56ae93cd8f3f3
MD5 72d43eb0182221bd43cfe2a60aa8ab1f
BLAKE2b-256 3616f8c9a9d31dc2c607dcbdefeae44c98c518261944c8ed74d74b3eab080191

See more details on using hashes here.

File details

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

File metadata

  • Download URL: jq-1.1.2-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.2-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 30d0c0593f01e97a15218323936144e6fc564fe21c1314844a633c4b04c4753d
MD5 6bdcffff3bab2f423b831c27ec25ef6f
BLAKE2b-256 d0a1f9a1a24f8959a52d0e0a37accc1d1b4aaa898b8bb34bbe4018ae41c0b63f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: jq-1.1.2-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.2-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 79af00d1158324fb005abc5ff72df8343d152c782c7a27bd4b4b09ba05cdcd58
MD5 15147e792de9a2241f6a5e1fd63a2475
BLAKE2b-256 0f639a8a63f3fa02b12f325a189e3c1307e6f55a04ea87f23e067ceaa882cbf7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: jq-1.1.2-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.2-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 037a787ebb9c54cbb72623644566127eddca0147cb05c6ee08ed3e0e453b8864
MD5 0ecc5c1213fa670dea2de509b8932242
BLAKE2b-256 69d1e79496e06a93386b71b7669d7896290265b331a01b7802656343aae401c1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: jq-1.1.2-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.2-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 0619bda153ba8e2e6dbb4c903254177505b9d3eb4698e300f2853acaac344a82
MD5 060166eb17c9c9fb22edbfa91c4fbd44
BLAKE2b-256 0fbc8a82aef67f5726206ad39e22013f78f6928a525e415fd4359366b638c1b3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: jq-1.1.2-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.2-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 3b8f7e765e46a42df93bea3b95c38f17eeba6744f78cb503bc551f5aabaee1e3
MD5 f8f3f9b035f36a3a32234729c03a6c30
BLAKE2b-256 8bdbb993bd97f08c274a9f9058cf243d24ae08e898afa43cf684ab2b9d8c50b1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: jq-1.1.2-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.2-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 189eaccad7f9fa24ae54a466de7e5a697502d3d1e62086deeeda55c7d6e269a4
MD5 77211f4bb1ef0ea0c794037fc7ca63e6
BLAKE2b-256 7e27d14e44b98b2760c61f9e1e3da9ab147fdcb66106ea47b9064db760322ece

See more details on using hashes here.

File details

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

File metadata

  • Download URL: jq-1.1.2-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.2-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e84127ef60d2f0c779c63d5707c8d05e84db8b5076109c252899a8ecdac1c63e
MD5 4b28b310dc7888238252dcd0e6e9d274
BLAKE2b-256 3b00afd20e10fffb96f0c274837cb30e6ee57e22b66b308e356a711ce4a4d257

See more details on using hashes here.

File details

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

File metadata

  • Download URL: jq-1.1.2-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.2-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 28565916cf2001a363f41981de1dd0729b23332df9f3d7e5b50a8b9735ee7fd0
MD5 87a157b1386d46d110d42827ac669db1
BLAKE2b-256 d2e2e2b3713e3acf6db5520b73e06515ddd271bcb0cd547847c8179e65417791

See more details on using hashes here.

File details

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

File metadata

  • Download URL: jq-1.1.2-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.2-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 b24d6dfc42a6c58debd85303b2cbb778da02d7564dc9364488eff3fac047d9bb
MD5 aab7445766f5b4152108e5e1fafacf04
BLAKE2b-256 0b4b262156affdaebffb3f45aaf0f1827705f04bb734795d7b281e87535878a8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: jq-1.1.2-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.2-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 1e3a635135a69b4ac3b872da6365a43dd239a874a4c8286ccd5ee98d25ba3777
MD5 d8646a1daa7328a0d9df792d5764266e
BLAKE2b-256 c6ee823eafeca9217b4a4d1d2ced0aa13fd77703a53839d8501a511e37dadc03

See more details on using hashes here.

File details

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

File metadata

  • Download URL: jq-1.1.2-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.2-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 c075fc02fabe70f395ef7d156c712e2d619970735706de79c8432d573e242ea3
MD5 41a5444033cd392381efe9903195963f
BLAKE2b-256 4c41ac091e9b35f1c4a4410dcd76cb38979557d00047f838705e5b26e2f629bc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: jq-1.1.2-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.2-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c4bce315e05518d39961c11d54d1f694ee83bbeff9fa6cf724835729d817e5a0
MD5 eb26f0e13c8cb94e315d28e2c25ef1f5
BLAKE2b-256 2d9781c5ec8b3d13af7d04284d84928e770acf31140157afd670ed5c6cb5ff07

See more details on using hashes here.

File details

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

File metadata

  • Download URL: jq-1.1.2-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.2-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 52a9a5d1db62442ca4ef0d0655b17698b58caf02531c77a27a1a91e4bfef5094
MD5 80935b51d431ac30ce03c33325f1e87c
BLAKE2b-256 20382f19f196182e1843bc233a93078da6caeced38553bad0140558685a4b56c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: jq-1.1.2-cp35-cp35m-manylinux2010_i686.whl
  • Upload date:
  • Size: 533.4 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.2-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 31555b7db049134774de95e429b90b23469802af88bcd9d28bd03e95d7902f1a
MD5 2e6d462e2fcb894aa856cb17df13ed17
BLAKE2b-256 d3161ea1315882452404dc0ad360831f69b48760068ea50a9f1e61bcf5f9b77f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: jq-1.1.2-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 538.3 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.2-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 0835a1c61dd30f7e90c97bab12ec4be03635b59367151157edfd178da057acf0
MD5 fa233efdadc094ed43b4523e29433056
BLAKE2b-256 e1c38755c440aa508d9289c929eebe53ff0762433a740f7ef18643e674aff991

See more details on using hashes here.

File details

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

File metadata

  • Download URL: jq-1.1.2-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.2-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 2a6dabf4e90765f470b17b746c86d6864ff4f6f2bc76b941315b66499f5ef1d2
MD5 a396d6c85ea7c9df9a43f50fa07a9007
BLAKE2b-256 0bffa0422f238952651a2cebe3023ff504002e42493887e86c858c54ed155989

See more details on using hashes here.

File details

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

File metadata

  • Download URL: jq-1.1.2-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.2-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7188814b485dce586ea435e5b24f75977598267800485c0c70940428b5b753a5
MD5 ebb76ccb1585ee51f8cdbcdeed1eab32
BLAKE2b-256 ec0597d24008015e905091039f586a807b2e30628e084575b7e4be04c462b7b3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: jq-1.1.2-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.2-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 bb252829ecc95159a413212023aed74b88096aa0b7fc8331886077dc1fbacfa2
MD5 13be591a8eb4bcbe8aa4b1318879f2bc
BLAKE2b-256 615e35b51cbbcdba27763c761f81c744428a7bdc19a3eeba55b15f9c43d4f66c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: jq-1.1.2-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.2-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 b5d84542402397f4f6ca9d0d2ef5bd4b22706aeb2a683647bdba495591f299a6
MD5 24d3216e6703a2c1e17230e4253b9281
BLAKE2b-256 d4a0b93eae081b5fa9112b1eac9286ee0d8ef9309864dd94b339ca289e71ff55

See more details on using hashes here.

File details

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

File metadata

  • Download URL: jq-1.1.2-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.2-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 47d81d79d4dde10c5e3e5bc1cc68769f71cd1a46d07612e9ec17953423ac77a8
MD5 db795620b02ffa290786e48bface7fb2
BLAKE2b-256 576cded6972aa783d39c59c0454c3476be203403e5c65693bd610a5b73c12435

See more details on using hashes here.

File details

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

File metadata

  • Download URL: jq-1.1.2-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.2-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 ccf2356c5da3f7fff9caec515ab5cf117dd1b56502e844fbdf9fcac583531556
MD5 232b43c09af27f99bba6c2bd332dcee0
BLAKE2b-256 413147b8a3eedcb7706a5e07a0a6d8ed53da2489584b0fd33d76a1291a98c8c2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: jq-1.1.2-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.2-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 16c940382719a3402b9f18927c84be0300686398a633fe67b40990ed4f468dbb
MD5 f8fd9549364934e3e251e18f4075f2d6
BLAKE2b-256 1c89938d37e496fe61fc2826ccb4b834c5ffa1123382668dcd53ca7a847bb59c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: jq-1.1.2-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.2-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 2656c8483b17dcb41d4dd2fbfeef7e8cbb3df9faa6256f38c1552f19d929cc1d
MD5 91f74f8cd6286f8e038fbd5188ce617d
BLAKE2b-256 5f69c76146b3de421624814b29d6bd3ba320c76fb29c2406c505b3068be4e8fb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: jq-1.1.2-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.2-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 d4798c4633ae400bbb65bcc116a0064764855fefdf4ee8f8b6407041114ef1e3
MD5 30cc364c73102746ec8d30b4a6efa884
BLAKE2b-256 8bbb356c0d8cca03edafd75c6897d3829d4b7a4f12c979d1656933c17564216e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: jq-1.1.2-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.2-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 b32ee82ca68b2775a9de70f64a95f513e27b52c540fccf57d163cba7f287c8da
MD5 c90c0bf2fee24c36358e48a203a3cac1
BLAKE2b-256 168dd3341d2023366824e260277a0fb923585c2512457080816a31ffd5dffb2a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: jq-1.1.2-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.2-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1b20372020c3f54ebdf6758bc536df8fb459041a65b9a1c31e1d22ee36f18106
MD5 eb18602be640c7bdcbe091b27387e19b
BLAKE2b-256 cb3ca9949712656f091f9e67176c9238fc9dab397de7e5093923ae0a9df2e79c

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