Filter JSON and JSON Lines data with Python syntax.
Project description
jello
Filter JSON and JSON Lines data with Python syntax
jello is similar to jq in that it processes JSON and JSON lines data except jello uses standard python dict and list syntax.
JSON or JSON Lines can be piped into jello (JSON Lines are automatically slurped into a list of dictionaries) and are available as the variable _. Assign the output the the variable r to print as JSON or simple lines.
Install
pip3 install --upgrade jello
Usage
<JSON Data> | jello [OPTIONS] query
query can be most any valid python code as long as the result is assigned to r. _ is the sanitized JSON from STDIN presented as a python dict or list of dicts. For example:
$ cat data.json | jello 'r = _["key"]'
The JSON output is pretty printed by default, but can be compact printed by using the -c option.
Examples:
lambda functions and math
$ echo '{"t1":-30, "t2":-20, "t3":-10, "t4":0}' | jello '\
keys = _.keys()
vals = _.values()
cel = list(map(lambda x: (float(5)/9)*(x-32), vals))
r = dict(zip(keys, cel))'
{
"t1": -34.44444444444444,
"t2": -28.88888888888889,
"t3": -23.333333333333336,
"t4": -17.77777777777778
}
$ jc -a | jello 'r = len([entry for entry in _["parsers"] if "darwin" in entry["compatible"]])'
32
for loops
Output as JSON array
jc -a | jello '\
r = []
for entry in _["parsers"]:
if "darwin" in entry["compatible"]:
r.append(entry["name"])'
[
"airport",
"airport_s",
"arp",
"crontab",
"crontab_u",
...
]
Output as bash array
jc -a | jello '\
r = []
for entry in _["parsers"]:
if "darwin" in entry["compatible"]:
r.append(entry["name"])
r = "\n".join(r)'
airport
airport_s
arp
crontab
crontab_u
...
List and Dictionary Comprehension
Output as JSON arrauy
$ jc -a | jello 'r = [entry["name"] for entry in _["parsers"] if "darwin" in entry["compatible"]]'
[
"airport",
"airport_s",
"arp",
"crontab",
"crontab_u",
...
]
Output as bash array
$ jc -a | jello 'r = "\n".join([entry["name"] for entry in _["parsers"] if "darwin" in entry["compatible"]])'
airport
airport_s
arp
crontab
crontab_u
...
Environment Variables
$ echo '{"login_name": "kbrazil"}' | jello '\
r = True if os.getenv("LOGNAME") == _["login_name"] else False'
True
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 Distribution
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 jello-0.1.7.tar.gz.
File metadata
- Download URL: jello-0.1.7.tar.gz
- Upload date:
- Size: 3.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/42.0.2 requests-toolbelt/0.9.1 tqdm/4.40.2 CPython/3.7.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8a9ed579e588f2155253bd58d3dbd40657bf86a2bdf7e71801152a8775d77510
|
|
| MD5 |
f261bc9c143be45f809b5cfb5d52f2d9
|
|
| BLAKE2b-256 |
24e6570cea3dace890ad9cf8b0844412b83e8fa3b38bce6cbfba91d712c046ce
|
File details
Details for the file jello-0.1.7-py3-none-any.whl.
File metadata
- Download URL: jello-0.1.7-py3-none-any.whl
- Upload date:
- Size: 4.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/42.0.2 requests-toolbelt/0.9.1 tqdm/4.40.2 CPython/3.7.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a3708b055717b5f0e4257468ae3120cbed11305bdd667460fc5237a0b6e33c96
|
|
| MD5 |
9dc6debcb76b48481e3d673eee4c9f95
|
|
| BLAKE2b-256 |
0278241811ffdebb3af3ddf22fdb3fe0f5a1e13ec70393ff2d68067532081314
|