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.2a1.tar.gz (54.3 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.2a1-pp36-pypy36_pp73-manylinux2010_x86_64.whl (361.7 kB view details)

Uploaded PyPymanylinux: glibc 2.12+ x86-64

jq-1.0.2a1-pp36-pypy36_pp73-manylinux1_x86_64.whl (361.7 kB view details)

Uploaded PyPy

jq-1.0.2a1-pp36-pypy36_pp73-macosx_10_7_x86_64.whl (362.9 kB view details)

Uploaded PyPymacOS 10.7+ x86-64

jq-1.0.2a1-pp27-pypy_73-manylinux2010_x86_64.whl (361.5 kB view details)

Uploaded PyPymanylinux: glibc 2.12+ x86-64

jq-1.0.2a1-pp27-pypy_73-manylinux1_x86_64.whl (361.5 kB view details)

Uploaded PyPy

jq-1.0.2a1-pp27-pypy_73-macosx_10_7_x86_64.whl (362.9 kB view details)

Uploaded PyPymacOS 10.7+ x86-64

jq-1.0.2a1-cp38-cp38-manylinux2010_x86_64.whl (522.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ x86-64

jq-1.0.2a1-cp38-cp38-manylinux2010_i686.whl (520.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ i686

jq-1.0.2a1-cp38-cp38-manylinux1_x86_64.whl (522.5 kB view details)

Uploaded CPython 3.8

jq-1.0.2a1-cp38-cp38-manylinux1_i686.whl (520.8 kB view details)

Uploaded CPython 3.8

jq-1.0.2a1-cp38-cp38-macosx_10_9_x86_64.whl (364.4 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

jq-1.0.2a1-cp37-cp37m-manylinux2010_x86_64.whl (488.4 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ x86-64

jq-1.0.2a1-cp37-cp37m-manylinux2010_i686.whl (488.6 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ i686

jq-1.0.2a1-cp37-cp37m-manylinux1_x86_64.whl (488.4 kB view details)

Uploaded CPython 3.7m

jq-1.0.2a1-cp37-cp37m-manylinux1_i686.whl (488.6 kB view details)

Uploaded CPython 3.7m

jq-1.0.2a1-cp37-cp37m-macosx_10_9_x86_64.whl (364.0 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

jq-1.0.2a1-cp36-cp36m-manylinux2010_x86_64.whl (489.1 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ x86-64

jq-1.0.2a1-cp36-cp36m-manylinux2010_i686.whl (488.6 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ i686

jq-1.0.2a1-cp36-cp36m-manylinux1_x86_64.whl (489.1 kB view details)

Uploaded CPython 3.6m

jq-1.0.2a1-cp36-cp36m-manylinux1_i686.whl (488.6 kB view details)

Uploaded CPython 3.6m

jq-1.0.2a1-cp36-cp36m-macosx_10_9_x86_64.whl (365.4 kB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

jq-1.0.2a1-cp35-cp35m-manylinux2010_x86_64.whl (487.2 kB view details)

Uploaded CPython 3.5mmanylinux: glibc 2.12+ x86-64

jq-1.0.2a1-cp35-cp35m-manylinux2010_i686.whl (486.3 kB view details)

Uploaded CPython 3.5mmanylinux: glibc 2.12+ i686

jq-1.0.2a1-cp35-cp35m-manylinux1_x86_64.whl (487.2 kB view details)

Uploaded CPython 3.5m

jq-1.0.2a1-cp35-cp35m-manylinux1_i686.whl (486.2 kB view details)

Uploaded CPython 3.5m

jq-1.0.2a1-cp35-cp35m-macosx_10_9_x86_64.whl (371.8 kB view details)

Uploaded CPython 3.5mmacOS 10.9+ x86-64

jq-1.0.2a1-cp27-cp27mu-manylinux2010_x86_64.whl (466.8 kB view details)

Uploaded CPython 2.7mumanylinux: glibc 2.12+ x86-64

jq-1.0.2a1-cp27-cp27mu-manylinux2010_i686.whl (466.0 kB view details)

Uploaded CPython 2.7mumanylinux: glibc 2.12+ i686

jq-1.0.2a1-cp27-cp27mu-manylinux1_x86_64.whl (466.8 kB view details)

Uploaded CPython 2.7mu

jq-1.0.2a1-cp27-cp27mu-manylinux1_i686.whl (466.0 kB view details)

Uploaded CPython 2.7mu

jq-1.0.2a1-cp27-cp27m-manylinux2010_x86_64.whl (466.9 kB view details)

Uploaded CPython 2.7mmanylinux: glibc 2.12+ x86-64

jq-1.0.2a1-cp27-cp27m-manylinux2010_i686.whl (466.1 kB view details)

Uploaded CPython 2.7mmanylinux: glibc 2.12+ i686

jq-1.0.2a1-cp27-cp27m-manylinux1_x86_64.whl (466.9 kB view details)

Uploaded CPython 2.7m

jq-1.0.2a1-cp27-cp27m-manylinux1_i686.whl (466.1 kB view details)

Uploaded CPython 2.7m

jq-1.0.2a1-cp27-cp27m-macosx_10_9_x86_64.whl (362.7 kB view details)

Uploaded CPython 2.7mmacOS 10.9+ x86-64

File details

Details for the file jq-1.0.2a1.tar.gz.

File metadata

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

File hashes

Hashes for jq-1.0.2a1.tar.gz
Algorithm Hash digest
SHA256 6b69327c0d6bfa21efc5be93b3e672dc581721b9e3beb31b8fb2842ae73dc884
MD5 c0f48be7303e6dd1e99511ca41f903d1
BLAKE2b-256 030303fccba53517f504cfe14887b19774f0257487f767a401f3fafc32b8a82c

See more details on using hashes here.

File details

Details for the file jq-1.0.2a1-pp36-pypy36_pp73-manylinux2010_x86_64.whl.

File metadata

  • Download URL: jq-1.0.2a1-pp36-pypy36_pp73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 361.7 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.24.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.0

File hashes

Hashes for jq-1.0.2a1-pp36-pypy36_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 73cb41e101cc19e5e713ae707869df4f2a07e20bb96bef82dbfd3b9606352ec6
MD5 1df81cee4d5b4609cb3d4e7352b08bd3
BLAKE2b-256 899f403c4d1c0d1ef19d0d583e4dc93199c67568dcbf7f46a4880e21d4b001cb

See more details on using hashes here.

File details

Details for the file jq-1.0.2a1-pp36-pypy36_pp73-manylinux1_x86_64.whl.

File metadata

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

File hashes

Hashes for jq-1.0.2a1-pp36-pypy36_pp73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 eb8c79828720f30a28c00041915c44cef22f6ef4a14a68678529c3ada03eb469
MD5 6c260044cbd48f5f1da49fc7d370f07d
BLAKE2b-256 826f2a7176e346fc44e254b8e56ff4ef4c6dc33bb33ebfca4cc41efcf2e91728

See more details on using hashes here.

File details

Details for the file jq-1.0.2a1-pp36-pypy36_pp73-macosx_10_7_x86_64.whl.

File metadata

  • Download URL: jq-1.0.2a1-pp36-pypy36_pp73-macosx_10_7_x86_64.whl
  • Upload date:
  • Size: 362.9 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.24.0 setuptools/46.0.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.7.7

File hashes

Hashes for jq-1.0.2a1-pp36-pypy36_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 1a06b7a516ef3378025b30f08e87626e7e0c5f26350401188ab1225f73d077a4
MD5 b1e89bbaf88f3733c7d7ec379adb5905
BLAKE2b-256 e32b59ec7ba4e80ff112423456e653250f066380ca5f3efb22971dccd77d4f3f

See more details on using hashes here.

File details

Details for the file jq-1.0.2a1-pp27-pypy_73-manylinux2010_x86_64.whl.

File metadata

  • Download URL: jq-1.0.2a1-pp27-pypy_73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 361.5 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.24.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.0

File hashes

Hashes for jq-1.0.2a1-pp27-pypy_73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 d385fa5ddd965005682f51e02f19bd4b6679902bb9e48f0e9aecbced38e0ff82
MD5 b7ad095955f7e6ad78de6e998fdd8724
BLAKE2b-256 8957191db1aef79fc43b2ff52f6d7607727d5eee3f4b202e4384e0036fded2af

See more details on using hashes here.

File details

Details for the file jq-1.0.2a1-pp27-pypy_73-manylinux1_x86_64.whl.

File metadata

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

File hashes

Hashes for jq-1.0.2a1-pp27-pypy_73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 6b1e4194b61f741bad4d39825861d63eb3a46dcef6e22f4e0bb3a3ec71c4f350
MD5 528acdaeee02d9ccf53ce28ca837a8f6
BLAKE2b-256 428ac656ddeba4ddd759252d8c6cb69f3518d8dfe9727f3b6cbb7b396d1e5148

See more details on using hashes here.

File details

Details for the file jq-1.0.2a1-pp27-pypy_73-macosx_10_7_x86_64.whl.

File metadata

  • Download URL: jq-1.0.2a1-pp27-pypy_73-macosx_10_7_x86_64.whl
  • Upload date:
  • Size: 362.9 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.24.0 setuptools/46.0.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.7.7

File hashes

Hashes for jq-1.0.2a1-pp27-pypy_73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 89135c6716e4c0016abc89fec3defb2183b837c0f1064acbb07406cbaccc1cff
MD5 b36976bcde4943934f257e079dde43d3
BLAKE2b-256 800f039bf04c6e70054121ea53df17bf7d2b42b916af0db19f078eb04c77b276

See more details on using hashes here.

File details

Details for the file jq-1.0.2a1-cp38-cp38-manylinux2010_x86_64.whl.

File metadata

  • Download URL: jq-1.0.2a1-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 522.5 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.24.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.0

File hashes

Hashes for jq-1.0.2a1-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 238068345a0bacbc6c28d1da9391a184119fb74bb42b41868b2cb38ec337f935
MD5 95b394ea5aebef752fa21899fd9396b6
BLAKE2b-256 f0f0dbd69cf5d67d5c65d08e5b52fed546ac51fb95d0bf4a395605e84e0d0bf4

See more details on using hashes here.

File details

Details for the file jq-1.0.2a1-cp38-cp38-manylinux2010_i686.whl.

File metadata

  • Download URL: jq-1.0.2a1-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 520.8 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.24.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.0

File hashes

Hashes for jq-1.0.2a1-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 b7baad7d82805234d8813ccdfa9c353a4ca43f7c6a461a8535af0791b675ddc1
MD5 e6a4ae04169d06baffd2be018c576fbe
BLAKE2b-256 cdafefb0012064382001a50c171894b86280f8fbd84458f08d17a205540efb71

See more details on using hashes here.

File details

Details for the file jq-1.0.2a1-cp38-cp38-manylinux1_x86_64.whl.

File metadata

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

File hashes

Hashes for jq-1.0.2a1-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 587a5c05f4db950a58d2447a59d6480935f39a4efbc35098eea84178e1853c4c
MD5 5171f959bfc77d60fb17be16e1a5dfb4
BLAKE2b-256 a877f6228a1310a98a5993ed854962b3a5a37093b4011eef35345a0485f0dce6

See more details on using hashes here.

File details

Details for the file jq-1.0.2a1-cp38-cp38-manylinux1_i686.whl.

File metadata

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

File hashes

Hashes for jq-1.0.2a1-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 1537f224e96ad2af5bdc91c92fe6202195a891ecc0441d80348ddea56647d09f
MD5 af2dc120d3c5d1edc8a5603e3fe26403
BLAKE2b-256 311f63063a5f480ee1dbd4b023aea102c350fa20061db3a8fd4c79a8f6abc816

See more details on using hashes here.

File details

Details for the file jq-1.0.2a1-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: jq-1.0.2a1-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 364.4 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.24.0 setuptools/46.0.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.7.7

File hashes

Hashes for jq-1.0.2a1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e16ddb8a1ef256876a4c0342b68641db245aaa2d6d997573d9f2eedb2e4a6772
MD5 e9a0e67011514e97bfb57f9538b277c6
BLAKE2b-256 411f6512d3802e2b80511097643b05f84ca5d5824eaff4a0efdba76b4632525c

See more details on using hashes here.

File details

Details for the file jq-1.0.2a1-cp37-cp37m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: jq-1.0.2a1-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 488.4 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.24.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.0

File hashes

Hashes for jq-1.0.2a1-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 b0b4cf7ecb2a084c23b959a09c0e690cff9d26b6b57265b306ec5334eda8b479
MD5 5d720460faca67ac983c21144eab8759
BLAKE2b-256 ad7518612d7d7b644d53c496b2ad156fe1e217d34ebef8ba5fce0c3e3f93baab

See more details on using hashes here.

File details

Details for the file jq-1.0.2a1-cp37-cp37m-manylinux2010_i686.whl.

File metadata

  • Download URL: jq-1.0.2a1-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 488.6 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.24.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.0

File hashes

Hashes for jq-1.0.2a1-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 bc7b2c122b098f78873352bf0a137d05caa0ff48589b0fdbaf6304f5c7e3aa9c
MD5 a0fafc7d4fd5cfaab1058f1d26326a0d
BLAKE2b-256 69d8a3049ec4572bf3bac98d069a747fb7d819f743284f03d21ed0d4c89392b2

See more details on using hashes here.

File details

Details for the file jq-1.0.2a1-cp37-cp37m-manylinux1_x86_64.whl.

File metadata

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

File hashes

Hashes for jq-1.0.2a1-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 97a6940ac0fdc139bf0b0afbc8223ae206b596016772cf74db97133de1ed99f4
MD5 3f9a1953824c725fc065af742bd9af31
BLAKE2b-256 8eb8840bbcd4476c3c033e6c7dbd22263a3ad0264aef5640f1f03850447cd86e

See more details on using hashes here.

File details

Details for the file jq-1.0.2a1-cp37-cp37m-manylinux1_i686.whl.

File metadata

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

File hashes

Hashes for jq-1.0.2a1-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 f983dda6c2e1885381ca9631f7ac50815edce04a47f7e73385ed1211642fcd42
MD5 0966ba0dd41939a4b313a50bd1eaa377
BLAKE2b-256 cb0e7407de24457db27db999d0de3f7508809ce1abd9f6813b058e23cac32c63

See more details on using hashes here.

File details

Details for the file jq-1.0.2a1-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: jq-1.0.2a1-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 364.0 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.24.0 setuptools/46.0.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.7.7

File hashes

Hashes for jq-1.0.2a1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e80f258689925e9f6449f7121e19a645efbf474a66f1b76a94a9f12a93f4aa6a
MD5 ead40e16ea7487c7a0a8bff0d97f6a5a
BLAKE2b-256 995f1ed844141fc2e24e88d911ed041627546b4a9b35c83835c107540540579e

See more details on using hashes here.

File details

Details for the file jq-1.0.2a1-cp36-cp36m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: jq-1.0.2a1-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 489.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.24.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.0

File hashes

Hashes for jq-1.0.2a1-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 300adf9eab9589d9c42f4dfeb5644918fe723071b1693d40ebb2ccb125adc846
MD5 8e533906dcce08de6fb7fe79b8984990
BLAKE2b-256 d6fed86126f8294f27162bde21166be1d21e9db19c45047249308a8cc1528cfa

See more details on using hashes here.

File details

Details for the file jq-1.0.2a1-cp36-cp36m-manylinux2010_i686.whl.

File metadata

  • Download URL: jq-1.0.2a1-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 488.6 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.24.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.0

File hashes

Hashes for jq-1.0.2a1-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 78ebf8c7c09d24ea5a8ef2fee77dd026471476b9bdb341cbbf09bf33744e6d5c
MD5 e16bb4e2001cf440dd0693607ae86d5c
BLAKE2b-256 ba5a12e91be431d3340c514b9fc1d52da9137252b9542f90207bcea31ec6dbee

See more details on using hashes here.

File details

Details for the file jq-1.0.2a1-cp36-cp36m-manylinux1_x86_64.whl.

File metadata

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

File hashes

Hashes for jq-1.0.2a1-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 3c9402097c07dff2c27b02b424e9571d16df20e3beef40fc7e8c385567958911
MD5 89ec9bfc471e282be851923eae10b37d
BLAKE2b-256 a430ca24451fe4740eebfd6fee38b71219f2efd4e19c04147b69ce6b7ec95b91

See more details on using hashes here.

File details

Details for the file jq-1.0.2a1-cp36-cp36m-manylinux1_i686.whl.

File metadata

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

File hashes

Hashes for jq-1.0.2a1-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 a2ef8e1b2b1d8bba738e8ce59b689c111dac41ce3aae54308f4ee2fba4834abd
MD5 ec9f0a02f7f500c2ff76a9467a058a43
BLAKE2b-256 6c7babee13ab73b877870d517899ca43f9d3d8cb3585164230890549f6bd3a61

See more details on using hashes here.

File details

Details for the file jq-1.0.2a1-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: jq-1.0.2a1-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 365.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.24.0 setuptools/46.0.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.7.7

File hashes

Hashes for jq-1.0.2a1-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fe8510c6962b4e1aefa0bc98537444e958c0aeadc63c8a31518d153a6dd2f32e
MD5 de87b862a7200f11add0f5af1c00896c
BLAKE2b-256 509b8e18f548d85cd871e61c7197d323886c8fd4b9044a9dbe94e691cecca454

See more details on using hashes here.

File details

Details for the file jq-1.0.2a1-cp35-cp35m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: jq-1.0.2a1-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 487.2 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.24.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.0

File hashes

Hashes for jq-1.0.2a1-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 ae5c843c44260fd3b8920db4f1110bd9a8e8c348c69b329ec5e9a54423dbd946
MD5 d01db6ecc1ceb313285bff5255c1b022
BLAKE2b-256 094aad7b52f9946fcbf5ea005e53cb8a448769dde98dc83f6a19a7666645767f

See more details on using hashes here.

File details

Details for the file jq-1.0.2a1-cp35-cp35m-manylinux2010_i686.whl.

File metadata

  • Download URL: jq-1.0.2a1-cp35-cp35m-manylinux2010_i686.whl
  • Upload date:
  • Size: 486.3 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.24.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.0

File hashes

Hashes for jq-1.0.2a1-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 fe1c09c1a4b08143df23a5d4ba15aa8143e6c7104bcd62b4de0080b11b32c914
MD5 30b6e25ada69fed22876459ae4ca9139
BLAKE2b-256 c867c63a4d2010eae77457a70654659b696dffec4baca791ae797dd1bc61798d

See more details on using hashes here.

File details

Details for the file jq-1.0.2a1-cp35-cp35m-manylinux1_x86_64.whl.

File metadata

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

File hashes

Hashes for jq-1.0.2a1-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 321a2974eb20ef37e38a3d2785a21ad643943a2228af5294bba213d7da1abbc6
MD5 817cb82fb7174cea68515b6c60c76d61
BLAKE2b-256 70494c7249a6cfd9085138191f20e0f7d363caef703d344b65e9c3c692123283

See more details on using hashes here.

File details

Details for the file jq-1.0.2a1-cp35-cp35m-manylinux1_i686.whl.

File metadata

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

File hashes

Hashes for jq-1.0.2a1-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 d56a71bdbb0c2c2d49c0a649946a047843e72aa86c9a9d6f711dedba7db66816
MD5 60fef822f778c662eb93c9213377af91
BLAKE2b-256 d303b32df08b03ab93e0856a78dbea435edc605576bad38633ab120615d3119b

See more details on using hashes here.

File details

Details for the file jq-1.0.2a1-cp35-cp35m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: jq-1.0.2a1-cp35-cp35m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 371.8 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.24.0 setuptools/46.0.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.7.7

File hashes

Hashes for jq-1.0.2a1-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0a8bceedeec6ff498287664a7f3790a46cc6e7ce5575d8d83da0666c677b0f3b
MD5 7e7d4e51306d1ded59c2d0852db881a6
BLAKE2b-256 1ab0ba006d966b71125b66b5e5d2e8ad4b314210b9adffaaef543c24a337731c

See more details on using hashes here.

File details

Details for the file jq-1.0.2a1-cp27-cp27mu-manylinux2010_x86_64.whl.

File metadata

  • Download URL: jq-1.0.2a1-cp27-cp27mu-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 466.8 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.24.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.0

File hashes

Hashes for jq-1.0.2a1-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 0363d91b813c143750730cafb63eafc975cf9e0c6187db4e9f93bb0ee1e67a6c
MD5 1a412628dc64340a81993ec9081b50af
BLAKE2b-256 a1baa0a757f7640cb3b0f50bf49a8e79b44993b570f837b73f0360c41b4031d1

See more details on using hashes here.

File details

Details for the file jq-1.0.2a1-cp27-cp27mu-manylinux2010_i686.whl.

File metadata

  • Download URL: jq-1.0.2a1-cp27-cp27mu-manylinux2010_i686.whl
  • Upload date:
  • Size: 466.0 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.24.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.0

File hashes

Hashes for jq-1.0.2a1-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 a6740764576b0cbc5c888d1591a30c4bd0d10d9a30c7c8be86717784df74afb9
MD5 086c06d524b2885e6a9ff6dc73691f2e
BLAKE2b-256 029df2940596a349fb5bf8b82f23fc055499addf06799fb5e5521da963fefb67

See more details on using hashes here.

File details

Details for the file jq-1.0.2a1-cp27-cp27mu-manylinux1_x86_64.whl.

File metadata

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

File hashes

Hashes for jq-1.0.2a1-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 df15c2edebe14ea0712bf69cd9e6c28582e60d223c2d1242a2b52320c62a4009
MD5 a13e001e4b2bfd2cf09bc8e897e42013
BLAKE2b-256 3d77845ffe1734ca3649e1671c1522960f41440ba0fe93111f0b73a52b2fb55b

See more details on using hashes here.

File details

Details for the file jq-1.0.2a1-cp27-cp27mu-manylinux1_i686.whl.

File metadata

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

File hashes

Hashes for jq-1.0.2a1-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 60640a9d3212bb96b7b111496e93a68cf4900cfc0f95d251bfb408bbd1928d6c
MD5 c7d7f67ff2a6607f4cf1aff42bb1c379
BLAKE2b-256 6c00af20e3731d600948e9c087de834c7e1e60ea4141ea60d169ae1734f92d0b

See more details on using hashes here.

File details

Details for the file jq-1.0.2a1-cp27-cp27m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: jq-1.0.2a1-cp27-cp27m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 466.9 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.24.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.0

File hashes

Hashes for jq-1.0.2a1-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 005d5fedc196476ff1e8ed2051fa3a38eaffebb1cd587f68aa69ac5d8b89c6af
MD5 b7a913ac96c8359e1c413eeec702a118
BLAKE2b-256 4c004bbb3ab7f14367196e09ca576ad9836f95700667db41f87379b760b86090

See more details on using hashes here.

File details

Details for the file jq-1.0.2a1-cp27-cp27m-manylinux2010_i686.whl.

File metadata

  • Download URL: jq-1.0.2a1-cp27-cp27m-manylinux2010_i686.whl
  • Upload date:
  • Size: 466.1 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.24.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.0

File hashes

Hashes for jq-1.0.2a1-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 fb9e5c6676deb192c31b138c0cee96fcf30150d53079d5b8179b861f29817872
MD5 38ca4104181f42c89e7275b42d501476
BLAKE2b-256 67c4442ad71e8fc880718eb2454c8fa3509ca3694734e6fc20a5142c6d325bed

See more details on using hashes here.

File details

Details for the file jq-1.0.2a1-cp27-cp27m-manylinux1_x86_64.whl.

File metadata

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

File hashes

Hashes for jq-1.0.2a1-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 e3f5d36f530285530aa88b8158af9e473738b3e4cdb3c375fb7403ee0d6771a5
MD5 91b8cc468bd894a738d05997ffb7ca88
BLAKE2b-256 372ada7f4e72075c8afb39ff32835e90bfdb2a12e0d3c7985dbd4af98c9beb06

See more details on using hashes here.

File details

Details for the file jq-1.0.2a1-cp27-cp27m-manylinux1_i686.whl.

File metadata

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

File hashes

Hashes for jq-1.0.2a1-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 cd5698de613cc02ded7a521016bda54aa9afed55cb910153b05eb33f9cc8cdc1
MD5 f2ab4164828eef35c56a5bd10e5407c0
BLAKE2b-256 4e652e20b340bdede504a23425959a5f655e91a7879327bb18c969e2f9a96711

See more details on using hashes here.

File details

Details for the file jq-1.0.2a1-cp27-cp27m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: jq-1.0.2a1-cp27-cp27m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 362.7 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.24.0 setuptools/46.0.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.7.7

File hashes

Hashes for jq-1.0.2a1-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3f3b0c55c9fde3428354a9bdf5a368e73fe9b7c700f3179f26b7d74da67a916f
MD5 086aa9a67323faae243954563ab9a146
BLAKE2b-256 ff9d9e4087c95e5c9e7e25ae1d6844d2f710369d3999a1dddf5e080298ba213a

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