Skip to main content

jq is a lightweight and flexible JSON processor.

Project description

This project contains Python bindings for jq.

Installation

These docs are for the development version of jq. Feedback on the new API would be much appreciated!

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 --pre

If a wheel is not available, the source for jq 1.6 is downloaded over HTTPS and built. Therefore, installation requires any programs required to build jq. This includes:

  • 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

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.0a5.tar.gz (57.5 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.0a5-pp36-pypy36_pp73-manylinux2010_x86_64.whl (363.6 kB view details)

Uploaded PyPymanylinux: glibc 2.12+ x86-64

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

Uploaded PyPy

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

Uploaded PyPymacOS 10.7+ x86-64

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

Uploaded PyPymanylinux: glibc 2.12+ x86-64

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

Uploaded PyPy

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

Uploaded PyPymacOS 10.7+ x86-64

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

Uploaded CPython 3.8manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.8manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.8

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

Uploaded CPython 3.8

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

Uploaded CPython 3.8macOS 10.9+ x86-64

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

Uploaded CPython 3.7mmanylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.7mmanylinux: glibc 2.12+ i686

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

Uploaded CPython 3.7m

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

Uploaded CPython 3.7m

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

Uploaded CPython 3.7mmacOS 10.9+ x86-64

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

Uploaded CPython 3.6mmanylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.6mmanylinux: glibc 2.12+ i686

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

Uploaded CPython 3.6m

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

Uploaded CPython 3.6m

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

Uploaded CPython 3.6mmacOS 10.9+ x86-64

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

Uploaded CPython 3.5mmanylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.5mmanylinux: glibc 2.12+ i686

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

Uploaded CPython 3.5m

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

Uploaded CPython 3.5m

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

Uploaded CPython 3.5mmacOS 10.9+ x86-64

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

Uploaded CPython 2.7mumanylinux: glibc 2.12+ x86-64

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

Uploaded CPython 2.7mumanylinux: glibc 2.12+ i686

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7mmanylinux: glibc 2.12+ x86-64

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

Uploaded CPython 2.7mmanylinux: glibc 2.12+ i686

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

Uploaded CPython 2.7m

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

Uploaded CPython 2.7m

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

Uploaded CPython 2.7mmacOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for jq-1.0.0a5.tar.gz
Algorithm Hash digest
SHA256 14a7c71a1cf7683f2da7626ba396cc00d4932297db09df23f6433e9093a5eb49
MD5 b585e8d10243349f73cf5da1f1ea4310
BLAKE2b-256 cd44f6a586e6b4c74bfc825a34469d19aab7976b99b24413d168a9f521f03dd1

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for jq-1.0.0a5-pp36-pypy36_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 208f233bc7735c18c3083c4f675db2c1915e2b1f7199e7e045755bbae2a114e5
MD5 0efa959a68515e26afb36fb7e2805c85
BLAKE2b-256 74f60e6843f8c132a398bf57924d03da5aa1ae2ea19983e00e1cdbe5473ce005

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for jq-1.0.0a5-pp36-pypy36_pp73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 12d4d38aa974c4274e74a4b7bf3389372eee71261abfff25ff482ebc37c6277e
MD5 83833e6e5cc8621e92c13d5a05ff5237
BLAKE2b-256 1f965c73d501c2d26af47a671bbe56d8f83efc8fe5bafbe7562a9b8abe1ba8f0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: jq-1.0.0a5-pp36-pypy36_pp73-macosx_10_7_x86_64.whl
  • Upload date:
  • Size: 363.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.23.0 setuptools/46.0.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.7.7

File hashes

Hashes for jq-1.0.0a5-pp36-pypy36_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 d1aeff2fc4c4c352e6b44bb7dd97bda261db6fe78c8221520e2c98fc968c66e2
MD5 9105549cbd19bb7f50ae86137fcb0709
BLAKE2b-256 7165180b6461ea8150cb9663a607450e1993520eec612b7f1cba2cd7b8cf9f58

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for jq-1.0.0a5-pp27-pypy_73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 8f378a52e5650f2c37b63e02f2535d85b0b60ff9d4f8e38aad2b3b75b83d7642
MD5 db8c56669418395ea1e22fd3feac1dc9
BLAKE2b-256 8d5a6f775a5c8f8a851b434d19853d0ab64a0bd2ab18e2801f8f77be0240cd85

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for jq-1.0.0a5-pp27-pypy_73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 d60f773d369c93d9c52087c2e08a049cba75d15ba4c0e3b730d92199cf9492a1
MD5 fe432384b688381f6c804d4310da1aa4
BLAKE2b-256 b402bc4b693b39196e6eab6ddadb74e473d08882fd9dbe2fab03b725bb64580a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for jq-1.0.0a5-pp27-pypy_73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 78ac13e08f02cc13170d6691e154a3222bee8552f53e617627fbdb9f701a2938
MD5 0da07d0c330dba31fa822c0348f9f39a
BLAKE2b-256 6bba5367405e368ad6186d264b614a02d47005b19f14c0821b89aa444b754699

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for jq-1.0.0a5-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 d30feb41557026781b4b5ea98784a0a3f23af848a84e850dae1776cac66c79b9
MD5 e489239f273e6d0c8546ff9673943440
BLAKE2b-256 67f349e88821d4f54ef8fbfde89b0baa5bc7fe970f8c9c7234511b599ef97b96

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for jq-1.0.0a5-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 ef72c511939ecf5388e17f0ae13464151fdb03d19707f5b759296de37b66ce35
MD5 5e109ada4a8eaa1342dde029faf9ae72
BLAKE2b-256 537640d8bff2672bd8620f05ce6d51b059ada80dcf345d1998d5c09307cc1bfc

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for jq-1.0.0a5-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 34c3a1b09b8a10e000c74f6b623215185a959f6738dc8d95d0d1587a63312f1b
MD5 abfbb6686818936c646876f39ab0c2c2
BLAKE2b-256 f9adc2fed5faa4b1edc2b6fc36717377560ebb4c6907e91eedf9b819802b569c

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for jq-1.0.0a5-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 25ab273aab6e45d0eaa975d07f7d640c36add2e7bb6fd226f692bf61834f1b6c
MD5 6f303705e2f6c5dd6db9c0bc2f207c46
BLAKE2b-256 8719b61c0ed555cd0fab35cf5ca24eb922378ec9d21f897aa90d7ef03a49ee3d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for jq-1.0.0a5-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0a5e30b19aa3651c7875127386bc99dc0459716e5367015bc17c43fbe1c819ac
MD5 201a80b1628e56bd12ff50d8aa32a025
BLAKE2b-256 b65cb3b968a5584c0e6dafa1377d213a8eb341a3dffdb669d48146006e6a0c2b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for jq-1.0.0a5-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 1b11a77dc4e4c8660580c7f7b00c8e5bbd10b74d5242efd50cc4903f04bed689
MD5 f0d910b63818dec48685856b6450e1d9
BLAKE2b-256 748df678670727d0a5f110b550db9d79398fd781544b229e6638e9075183190c

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for jq-1.0.0a5-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 96da41469cd842d058c28cb29958772f8d0d69102d12a43e0a2b9e52409d8a3f
MD5 0068dd12002e1cc0766c664207663e54
BLAKE2b-256 f0a37956a2af178e59a425d17bb8a1020edf851f0b1dfad9e61e60f6fa0d7ef0

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for jq-1.0.0a5-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 6ca7565b6c3b957da1d7a8d538aca99c4cd143203f3f80e22244ccef5bc25ff2
MD5 1615cc5957576b1f3feb6531ad414121
BLAKE2b-256 0da3ba5f8d07f70780c20830571856c515617920bd770129956687f665c9ba34

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for jq-1.0.0a5-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 72ca867c4a71958e219c81e036feff85ca176ab017c5d5baa061fd35aea680b8
MD5 577a8fb460ba82dab991504ee19f49b9
BLAKE2b-256 2134f501d05d7b13f899ed3d94375ea2900a8a3fd38fef37cd3f9c27e9e5d071

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for jq-1.0.0a5-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 74549ba2c21a0163b0bd18dea7edc27795a77a0346a56a49dd77de597d3e0878
MD5 89a8a2cc76d1b48fd75dc6d17ea94950
BLAKE2b-256 174791e4c1006b6f28a82ac04af5f5d43ecb5c9b248ffaf76852e246c22ca899

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for jq-1.0.0a5-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 5ea51f534aa2891cef1e349da133b03a9784275ce341b4376a46c2d9d171e503
MD5 2a084236f0720eda889256f4d1ff5131
BLAKE2b-256 f4308bd103c3ecdb62f824612f322aea5068fc5f169e4907e31b8f160ed75841

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for jq-1.0.0a5-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 9c858a3b5f789d94c57f344618c27162c1df6c587e0015ef0775f22804516526
MD5 fefbb112d510602dd7062f110cb4290d
BLAKE2b-256 d6dc1c9253bab6466a66132e14022af1dd6a2d56338524b14759a39db16f722c

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for jq-1.0.0a5-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 485092f32f801e13785e1a091120c4b7a858a9ab35e1b0615d68c5ed58f00f97
MD5 0c379f7227196c4e933287781401c2e0
BLAKE2b-256 8b678957651b463e2a855fb0019ffd2722e0f6d0935b85d599d1cf7528ffc76a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for jq-1.0.0a5-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 dc1d9aacfa2372fb47a647b32b155d42bf18cf40e6d2ce41fcb5836e6f910543
MD5 732165f1daaf325246994e692f0c8aa0
BLAKE2b-256 506c7109463de9ffaa1ab9b6182c468dc2684e232174cfd5bc0b1397f659cc8c

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for jq-1.0.0a5-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b21c683d915cd6cccee43d62b1540a95e8ae47e2ca694d9fb3ca15bd938e7f2d
MD5 a78f877959d9f8af57584eda91c3ac49
BLAKE2b-256 53ca5a7675d78460786200039518cae872355f3dcd0d11c5c9188c707c7a66ae

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for jq-1.0.0a5-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 f89f865f67bcfe0ceb4fd8459d3dbeeff187e819fe24b2bccaaca830b9cabdeb
MD5 b7dce7f75190ef3bef908a91e783a58e
BLAKE2b-256 f8a3127aefc049b72c485cdba24f5e2b00b7f78a6b8305b590c300b3d4190f35

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for jq-1.0.0a5-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 d8fd889598f35acc4835c2af6d4c923d5a52c9598de8e0ea4721de2589f3d1da
MD5 19778cebe4a6e818fcefa01602f48306
BLAKE2b-256 882d84621310af51381b8168543530eaa9623c2cb190ac7a19b76f4638d68e17

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for jq-1.0.0a5-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 0a4698b09b06e881c9ea77111c1d4532036e2222f5b9ee2594bf5d26e389322a
MD5 bc9da077dbcb91cdeff45b647006fca0
BLAKE2b-256 57eb95ba2b1c76319c36ac4d300716abca8d2cabf3a4a15e4d99b1b495c863e9

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for jq-1.0.0a5-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 9de170407b27eb4e36b846f510da4954970a65a275e397a0aef3dabeab5778fa
MD5 10dcfe0e3497894955b8da52576c6c58
BLAKE2b-256 b88b8c1e60c22f8a572510ca10675ddd95a0a3cbaef01786c6078873defe26d8

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for jq-1.0.0a5-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 aad251600c4831655b1062645507fabd20bc046cd9fe65bad6ea739cc0ed3b48
MD5 834b08dd5b7c77b1f47e6a9ad7324746
BLAKE2b-256 ac942d7b0310aba888dfbe1c095ddde3f8f98431ac5e0a9f6c03d2a6ba09ca58

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for jq-1.0.0a5-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 07363f31eff211caa2332cb9aaa59ecb53f487143e0c3abde435649de513ab08
MD5 43ed6770142b1042fe30b779e3cd585b
BLAKE2b-256 9d79f55866814456a51aac9c821dd1a5ed42f6bc726453e744c01d6e0597251b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for jq-1.0.0a5-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 8ad1454d6917feed23929ee449d6b1528fe802b0bed74179481ed5b618b26237
MD5 7dd977035d1e039e2426dd56b6642f5a
BLAKE2b-256 c51ad60f40e8002511e393248a99663af2841b02ca60cf15de4bc014d4090e13

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for jq-1.0.0a5-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 30e86a84c2f7f87873b356b9e04c89189d438584ca2aa02cad9fe9d48d24d81d
MD5 050c7854a2fb26316fa26bd2e68fe8b6
BLAKE2b-256 05bb448694794432e81415e32eca3386b0fb8c438327216cc703706f6bde233f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for jq-1.0.0a5-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 2fda25214594003a77c8ba060c826b528ba654dae829ed1f1c2918c6b28e2ef8
MD5 eefdc79600c6b35142db209fe2c44a91
BLAKE2b-256 fe42674c73adb6452e798f56dfbbbb987467efe790fec1edcfb845f1ddb95fe4

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for jq-1.0.0a5-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 0451900c2fc17f56e6e3b256c0d8abfc3122e693c05404091e5e403680eb3574
MD5 f608f4a0b5ba13526b1ff559a0faefe7
BLAKE2b-256 690dcfa07deb70455621f0e56a79f11849af11dc1748cc125375cc97aac8a77a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for jq-1.0.0a5-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 c4cabb1da0f02239d55a4c0825eacf0b950eef51a6410a4ef5c4ac3cab250b43
MD5 56d4f1318e204215926f3480834f244f
BLAKE2b-256 73ecddf60dc577d03ce28fad0ccb928048596ded65da988725a3d43d121b43b3

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for jq-1.0.0a5-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 50679d12a436b803593505f078c29d3f11ea8001adff72fdbe413b960d84848c
MD5 337a47ec8a2341c8c0425110df2402d1
BLAKE2b-256 38b7a1faca7a68dd2614f3f412ced35d73fd0129ebc18184041f6d19c093d43c

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for jq-1.0.0a5-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 403e2f1cfe423808e8e41bf5a2da05a54d6a7bc424493a6b768cb68f703794c0
MD5 56f9ca56358a3d34579600b23d175c84
BLAKE2b-256 18a0dd557d620f0ea63a76840e01101f8ccb85153399f4182ca44d973dbb31e8

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for jq-1.0.0a5-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1b496c6e1c1a2939369f0e0407fcf81c9cb465ae8619a41ca9822fdc671b933a
MD5 d3f237f60d86f514496b13c5125cca5e
BLAKE2b-256 f74453324f616498570015f61a8ea916d06069915ff8f23a5e0a2d7de16ed969

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