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
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file jq-1.2.3.tar.gz.
File metadata
- Download URL: jq-1.2.3.tar.gz
- Upload date:
- Size: 74.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d796d7a9a6ba73a44ca072aa50070e84fae13016ea607ac37676406856871257
|
|
| MD5 |
65c9c72fa19578db1460f9ffbf975832
|
|
| BLAKE2b-256 |
2326e56958b2c92745b81b59d6241e69d0b1ba1e6cac8e65bb784a3e71484c23
|
File details
Details for the file jq-1.2.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: jq-1.2.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 364.3 kB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
41ae71454363244a6034877d720779fa0c3322677fdd4ef4aee3855ff4725d61
|
|
| MD5 |
1b6d68cfe6b81c62b897d858ec40e12c
|
|
| BLAKE2b-256 |
642497d80f3202be7f812c1100da6d3352534841c1de53cfe3fb15cb8a71e662
|
File details
Details for the file jq-1.2.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: jq-1.2.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 353.1 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
928f156d8c94fcf693f2ecab65176bbadd5f7b2d119dcdd978f73b93328ab22c
|
|
| MD5 |
780e340b0781095a4b985c2abcd88c8c
|
|
| BLAKE2b-256 |
022274acd5830d0207dc301960d2fe23a866348294cfbff733576c8d156344e9
|
File details
Details for the file jq-1.2.3-pp39-pypy39_pp73-macosx_10_9_x86_64.whl.
File metadata
- Download URL: jq-1.2.3-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
- Upload date:
- Size: 354.9 kB
- Tags: PyPy, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5f58f981910268c6ec3555cc8fe174cdad876f1df2bc63063ff015d1136d9371
|
|
| MD5 |
3859ba10ee82221bfec2ad9237333d3f
|
|
| BLAKE2b-256 |
a8f3a15653bde6d03531bb6486b9ef95d2e27508e525c708e91a2baa896d802e
|
File details
Details for the file jq-1.2.3-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: jq-1.2.3-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 364.4 kB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e62a8ff16674ecbeea474af6f3c90cb1d80143f94b1f06f5fcf394856603ee06
|
|
| MD5 |
87c2ab89381dbe4f2a794543908cf608
|
|
| BLAKE2b-256 |
33b41b9bc9f1c78406c3ab0104a8f002a04658e51daa85ecece1aba9ffa8b4a1
|
File details
Details for the file jq-1.2.3-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: jq-1.2.3-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 353.1 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e2c937de806cd7855e4d4b884eaee3f1ad05473151e36fa8f005321f5af751c3
|
|
| MD5 |
6c16a454706d51d6bef159a2ee7e343d
|
|
| BLAKE2b-256 |
71b599bba2be3cb226f3e05fa7699dd941e13903ee139ac1540dd67f80e4016e
|
File details
Details for the file jq-1.2.3-pp38-pypy38_pp73-macosx_10_9_x86_64.whl.
File metadata
- Download URL: jq-1.2.3-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
- Upload date:
- Size: 354.8 kB
- Tags: PyPy, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6f338044b91852525a2af565f30e677d7905a7846e5b1d4c4fe2f07e15cd2984
|
|
| MD5 |
d45881508737be54ef927dad14533fec
|
|
| BLAKE2b-256 |
23146b40c367eba1784baf2ea5747565fb33a020fd3a974f2640566ce9162645
|
File details
Details for the file jq-1.2.3-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: jq-1.2.3-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 368.9 kB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c74094053e7a271c59b67587e5c50db0a366e5b56d3a27debf0c114e9b4c1bd7
|
|
| MD5 |
8636dd9748aa0bc0ce7b57de6bd88b6c
|
|
| BLAKE2b-256 |
6703a6d60a525440655f4902e438a44bdbd7adcfaa4b0aae3987e31628193dd7
|
File details
Details for the file jq-1.2.3-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: jq-1.2.3-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 357.1 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
32d6e1a950550c8262a60cc16835c4c44e805cbc5758eae1a2c039792ec4fe62
|
|
| MD5 |
aab377faea230b111f11bf31527f48d5
|
|
| BLAKE2b-256 |
1dc45056ef26a180798350aa8eff6df53dab9706824b154a28b474fc46cf9feb
|
File details
Details for the file jq-1.2.3-pp37-pypy37_pp73-macosx_10_9_x86_64.whl.
File metadata
- Download URL: jq-1.2.3-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
- Upload date:
- Size: 354.9 kB
- Tags: PyPy, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
06304ee541b4c76ef88adf6b350fcb9d46e55ab5abe47f1d7ebee4aeddb62e46
|
|
| MD5 |
4bd202e831a9758f80e52d237dc4d0bd
|
|
| BLAKE2b-256 |
15b6766f9d8e84134f4a2fdfde03b174aa8861d7620e283975f7dd3c89ecbdf0
|
File details
Details for the file jq-1.2.3-cp311-cp311-musllinux_1_1_x86_64.whl.
File metadata
- Download URL: jq-1.2.3-cp311-cp311-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 600.4 kB
- Tags: CPython 3.11, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d2ea8eafbd8e01fb7688b4645b8a0f972ec76043aaf9d7d06006e56d755c89ec
|
|
| MD5 |
d13deaf9968b555d75367624e60196b3
|
|
| BLAKE2b-256 |
7f0917cc6ea69edff1ea173b3155d8e22012b9f9e64a7b87ea8eca0749a3858d
|
File details
Details for the file jq-1.2.3-cp311-cp311-musllinux_1_1_aarch64.whl.
File metadata
- Download URL: jq-1.2.3-cp311-cp311-musllinux_1_1_aarch64.whl
- Upload date:
- Size: 584.7 kB
- Tags: CPython 3.11, musllinux: musl 1.1+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
256add71eddb5aa04e97c169b08beaf187f3eb1aef262afd97bcb37ea771a1fb
|
|
| MD5 |
f98f3388aa325b4e4fe47e0a9cc8c7cf
|
|
| BLAKE2b-256 |
11d85bea1f047a1f97bd29ed8a8c6c5f916cea10485d65e8798bd41bd5bde125
|
File details
Details for the file jq-1.2.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: jq-1.2.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 600.3 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ce1a4c5ce2318eef92af3e1fa2c09035e620afa373b276ecd4b18361ee718fb1
|
|
| MD5 |
6b96395f500d1da0aec33f18cea5753b
|
|
| BLAKE2b-256 |
95c6c371d6ab9a324909caaa0fe75ecaa9de96312834aa7d63a0d865837ea26c
|
File details
Details for the file jq-1.2.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: jq-1.2.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 586.4 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
793817c04d9b71e6efd916e3f695996250ed39e7476b346737b7aaf3528f9a8b
|
|
| MD5 |
4361095ab7582847da0e782f0dbd94f4
|
|
| BLAKE2b-256 |
6238b4849c8b165d92b6379c5aa84e28b175341d58ece23b8592f8c1610abc98
|
File details
Details for the file jq-1.2.3-cp311-cp311-macosx_10_9_x86_64.whl.
File metadata
- Download URL: jq-1.2.3-cp311-cp311-macosx_10_9_x86_64.whl
- Upload date:
- Size: 369.9 kB
- Tags: CPython 3.11, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
95c9efe8c8babdf345a7e1d1f3ba3582f4c22b8d41d81e6e2ebeb267f7aebcd1
|
|
| MD5 |
825245791eb7b6ae196859d285876398
|
|
| BLAKE2b-256 |
94b9a8cab923e3245b19c443d49dcca95d4528c98c3e389d14eebae2ccb66911
|
File details
Details for the file jq-1.2.3-cp310-cp310-musllinux_1_1_x86_64.whl.
File metadata
- Download URL: jq-1.2.3-cp310-cp310-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 594.5 kB
- Tags: CPython 3.10, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
25c5bab532f14f0c547d97122a439435a28a25d504772c605ea9ade1c8b93146
|
|
| MD5 |
c457b039b0b0562a06e1d8f3874cbeda
|
|
| BLAKE2b-256 |
67ab7ad7642596929204c988bb6fffd45fdde50fcc14c43736d0a66510223b93
|
File details
Details for the file jq-1.2.3-cp310-cp310-musllinux_1_1_aarch64.whl.
File metadata
- Download URL: jq-1.2.3-cp310-cp310-musllinux_1_1_aarch64.whl
- Upload date:
- Size: 577.9 kB
- Tags: CPython 3.10, musllinux: musl 1.1+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
452353cb5ecd183875e8b3f59ddeaa5771c92b3f0b58bbedfe23a9d039b01966
|
|
| MD5 |
5d56301d4931efbfa421347f8a79617b
|
|
| BLAKE2b-256 |
a1099d17fba5347a31f5adde6084c102b31e615ef4e544efa228e96dae9c8bbe
|
File details
Details for the file jq-1.2.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: jq-1.2.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 589.2 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f5b1c9666a5e701d947adf49f26d0650af2aee84bd86b0f118dc9427332e85cf
|
|
| MD5 |
951fe3c4d634fccf4b0a6096e515ecc7
|
|
| BLAKE2b-256 |
6472a4b01a02d00c34733a418e1f4a461939327cb2a34f0f0c3e9ded08fd1d2b
|
File details
Details for the file jq-1.2.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: jq-1.2.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 575.0 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f1d7b72f38a33cd9d5cd851d11b78d016979772b5706aabd9808b7e786a6ff86
|
|
| MD5 |
2834e53407b18cfbd16f3949b164d2c3
|
|
| BLAKE2b-256 |
a72df326b7c81d04ccf30b4fff1b10a15875c528c00fbb155ae5ef75ffe5cf4f
|
File details
Details for the file jq-1.2.3-cp310-cp310-macosx_10_9_x86_64.whl.
File metadata
- Download URL: jq-1.2.3-cp310-cp310-macosx_10_9_x86_64.whl
- Upload date:
- Size: 372.5 kB
- Tags: CPython 3.10, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
986053d80aedbf630a5860bee7c66faba13f7814036716786e28c3213142ab7f
|
|
| MD5 |
969e4e0c6c11b4e5acd0ee7c3f4dc501
|
|
| BLAKE2b-256 |
9503b16439fdd04cdd4a04d8facd3a5498cafb41bf7b36092534fddad16e944b
|
File details
Details for the file jq-1.2.3-cp39-cp39-musllinux_1_1_x86_64.whl.
File metadata
- Download URL: jq-1.2.3-cp39-cp39-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 598.0 kB
- Tags: CPython 3.9, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6d6a5922682196524ea815b6a2d098ed54634a8bbc32331e81fa8603408b0615
|
|
| MD5 |
aacc9076b96e9a07dc12ba25671efee8
|
|
| BLAKE2b-256 |
29bd98b8e9686067734aa9fd2e61717c7bceccea195b9f821bd1c5335a3e8c73
|
File details
Details for the file jq-1.2.3-cp39-cp39-musllinux_1_1_aarch64.whl.
File metadata
- Download URL: jq-1.2.3-cp39-cp39-musllinux_1_1_aarch64.whl
- Upload date:
- Size: 582.5 kB
- Tags: CPython 3.9, musllinux: musl 1.1+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
13cd0372d5fe37c39d70dc65e0f786e3ff6a29c8507b56c4db4660d181392a1c
|
|
| MD5 |
4f518ce210f289755f7470967943d89a
|
|
| BLAKE2b-256 |
9d07e534376b0d9d8d850e8f01be4bab7f824e5b57210f3eb3c982d625de15fc
|
File details
Details for the file jq-1.2.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: jq-1.2.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 592.3 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5928ccadaa72b27d49cc29989ad92b412c6c9d3a140115df8ea8b4dc70b7b004
|
|
| MD5 |
99bbb156b1620ed554890fb85ee0fa35
|
|
| BLAKE2b-256 |
afab8c5290d115efdedc7887787033a4aee0daad7d0353011d17e5e83a3f4228
|
File details
Details for the file jq-1.2.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: jq-1.2.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 580.3 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e7c73564818ae07c422898ab2be499ef233c44c184960f177733dac85c837ae2
|
|
| MD5 |
9b4f6b3b547a4daa76a9f0964cdb94b9
|
|
| BLAKE2b-256 |
43f5fbd0a03a5956d1888c85552a993a9d95d1fc83d075ad0b1fdaa1d9f5a16d
|
File details
Details for the file jq-1.2.3-cp39-cp39-macosx_10_9_x86_64.whl.
File metadata
- Download URL: jq-1.2.3-cp39-cp39-macosx_10_9_x86_64.whl
- Upload date:
- Size: 371.6 kB
- Tags: CPython 3.9, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
be07f88caf63f1bbd3062ed44d320fb8f412cd83befe9b07acb3b750fb5c8bd5
|
|
| MD5 |
18f65c8360cbe7f98dda11ecae881d53
|
|
| BLAKE2b-256 |
9b7e7c11b843ad7b8a0bd8a9b0dbd5838c4d7cf491c46373564d3861e3cf96ae
|
File details
Details for the file jq-1.2.3-cp38-cp38-musllinux_1_1_x86_64.whl.
File metadata
- Download URL: jq-1.2.3-cp38-cp38-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 612.1 kB
- Tags: CPython 3.8, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0ceed9ee4d2ddf153cb17bb2e5f144d7cc046168b85a281219cbd79203bd9e0f
|
|
| MD5 |
11a79b04e8f7b60c9796714957cfe616
|
|
| BLAKE2b-256 |
733de773620b1238932d5a54f741b72715d527c3e41a5fb3daef83b9cfd94f33
|
File details
Details for the file jq-1.2.3-cp38-cp38-musllinux_1_1_aarch64.whl.
File metadata
- Download URL: jq-1.2.3-cp38-cp38-musllinux_1_1_aarch64.whl
- Upload date:
- Size: 597.5 kB
- Tags: CPython 3.8, musllinux: musl 1.1+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1e0d03ca3c8995ab456fd096cb05424752a0b75a2ac555a2cccec086474e7e3a
|
|
| MD5 |
a47186c5351201970f6401d8ac4ed3a3
|
|
| BLAKE2b-256 |
e75417c911059962325daa69fff36b5bfff6be6559a20178b49763e1662678c9
|
File details
Details for the file jq-1.2.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: jq-1.2.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 596.3 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
41d4062493d6408bb065d318147a96943ae86e14ff31f36403c0d4d8b4af4a6b
|
|
| MD5 |
89ea4481db95a9f4fef89fb4a48a637b
|
|
| BLAKE2b-256 |
07317b94157f81ee63092b7681b4cde4f492063ac33ad9b8eae605f96751ddd7
|
File details
Details for the file jq-1.2.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: jq-1.2.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 584.3 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c0c2185a5f4e2b54d41e2b9fe84f6b07736f8305bba121618de3fbdc7897c250
|
|
| MD5 |
51784ff60f7d51497389b110e51eb34a
|
|
| BLAKE2b-256 |
ce3f86a5671851fe886cdd2dfb951331ccf3a63065787eb7a13c3bb942df6412
|
File details
Details for the file jq-1.2.3-cp38-cp38-macosx_10_9_x86_64.whl.
File metadata
- Download URL: jq-1.2.3-cp38-cp38-macosx_10_9_x86_64.whl
- Upload date:
- Size: 368.6 kB
- Tags: CPython 3.8, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cd2446729399862fd822e40cfe3c1375b95afea06b48177eb1838e63d2079f46
|
|
| MD5 |
907134962f0a44a8f1f330dcf5409e54
|
|
| BLAKE2b-256 |
65f20ac2f2a063b44ba06666a938b49aed547506b2e9e3b56046162ac7e7c8c8
|
File details
Details for the file jq-1.2.3-cp37-cp37m-musllinux_1_1_x86_64.whl.
File metadata
- Download URL: jq-1.2.3-cp37-cp37m-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 570.3 kB
- Tags: CPython 3.7m, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4bb2292471d40462335ef1416f78b17b4d4e13be72885c9567557d0235855062
|
|
| MD5 |
f9938b669882d00831763cce869cfe63
|
|
| BLAKE2b-256 |
51d45a39f747625373ee36976687cdba7c4afddeacff673b640e967afa20bd35
|
File details
Details for the file jq-1.2.3-cp37-cp37m-musllinux_1_1_aarch64.whl.
File metadata
- Download URL: jq-1.2.3-cp37-cp37m-musllinux_1_1_aarch64.whl
- Upload date:
- Size: 555.5 kB
- Tags: CPython 3.7m, musllinux: musl 1.1+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
54c8d3e25d1c2236445522234c60ae75241548ae52280f42539466994736821d
|
|
| MD5 |
330c99da4c8e935e284d24011d050a95
|
|
| BLAKE2b-256 |
4d7a31b38e5d51fce7ddf3fe658e6ba7f390cd83c402d751892a89e026f212fe
|
File details
Details for the file jq-1.2.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: jq-1.2.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 565.5 kB
- Tags: CPython 3.7m, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7014645149d639fca3fd616757253fca3e884f65d921ec3d4225847078a53383
|
|
| MD5 |
8704e7cd52db2bb685dae12ecf4a7f37
|
|
| BLAKE2b-256 |
b2fed2639c6456db33bd13fde8eac38bd0a23faba2785e5eb8bbe8152abba82d
|
File details
Details for the file jq-1.2.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: jq-1.2.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 551.8 kB
- Tags: CPython 3.7m, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
47608e4ccada358c6d31e056a9dee06e80dcf0bca0803281d4fa79120dfbad41
|
|
| MD5 |
b6008f73f660b47080475fa18604cad4
|
|
| BLAKE2b-256 |
5b0f4982ce266b4a6f2fa4a4c03ca19e7ecbfeb1ca20a3f19a0411b6752b4437
|
File details
Details for the file jq-1.2.3-cp37-cp37m-macosx_10_9_x86_64.whl.
File metadata
- Download URL: jq-1.2.3-cp37-cp37m-macosx_10_9_x86_64.whl
- Upload date:
- Size: 367.8 kB
- Tags: CPython 3.7m, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
787fd252d0b288c1ac5ef2df35f273d5b52401d7a520fff4acf939d9c8461d84
|
|
| MD5 |
6d442de13d5319ba2a876d0aa9b67fb8
|
|
| BLAKE2b-256 |
e48dd0cfdefe5169a1e3cb842db3cada64a4b32119c77d72873cc21c9b4c2b85
|
File details
Details for the file jq-1.2.3-cp36-cp36m-musllinux_1_1_x86_64.whl.
File metadata
- Download URL: jq-1.2.3-cp36-cp36m-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 570.7 kB
- Tags: CPython 3.6m, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8792f505c35495e920f9200cee6080118dfed8787e82b240f3e2a373223dc2c8
|
|
| MD5 |
478a27f7799bc1f3ffa20df4e6e551a6
|
|
| BLAKE2b-256 |
e7b24cab95d0f39aaa576e4cd8226e07b491b7986da31a5db69842bc9bd65652
|
File details
Details for the file jq-1.2.3-cp36-cp36m-musllinux_1_1_aarch64.whl.
File metadata
- Download URL: jq-1.2.3-cp36-cp36m-musllinux_1_1_aarch64.whl
- Upload date:
- Size: 555.3 kB
- Tags: CPython 3.6m, musllinux: musl 1.1+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
be2962a1a4a0d42412ff15b8c8c3ef9696471bb6061fd2ca21bfa88c664977e9
|
|
| MD5 |
b4592d174f876c1c6d8e997a1d883d52
|
|
| BLAKE2b-256 |
db597f331c7e7e0a26b6f26b8d2abcffd545886a4cb16abf6f77b9fb4e3e5757
|
File details
Details for the file jq-1.2.3-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: jq-1.2.3-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 566.4 kB
- Tags: CPython 3.6m, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5e6d77cb65a117a3a086eedb2f27522ae29b02a1707a4f32df6bb41245f8291b
|
|
| MD5 |
279442a329b7d7a29957e085a2cf69ff
|
|
| BLAKE2b-256 |
7f5bc832abe043b287829be98d316a11b0ac17db102f99f4c937f9526fa61b72
|
File details
Details for the file jq-1.2.3-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: jq-1.2.3-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 552.9 kB
- Tags: CPython 3.6m, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8869e059491f634e92251f9305b245a792568239f255f2c888432b4a1028e21c
|
|
| MD5 |
c2ee2dd22c3b9b928b56290eba9f5805
|
|
| BLAKE2b-256 |
5b98d621891e53d7ce64f2a248e4cb7bae165a35a211c4b9120677c0b8e90e56
|
File details
Details for the file jq-1.2.3-cp36-cp36m-macosx_10_9_x86_64.whl.
File metadata
- Download URL: jq-1.2.3-cp36-cp36m-macosx_10_9_x86_64.whl
- Upload date:
- Size: 367.8 kB
- Tags: CPython 3.6m, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9a4e3e47361bd71886b07496ceff9484ec1b1d77d0616c5d7ff65b339ccbd99b
|
|
| MD5 |
877e9e08950e1217d2d1a928f3c9ee91
|
|
| BLAKE2b-256 |
9fcb19be161556db46b84245a8df78ab63d346e2b767f5153b254f0e04e8cd4e
|