Skip to main content

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"]'

A convenience function called lines() outputs each element on its own line for output suitable to be assigned to a bash array:

$ cat data.json | jello 'r = lines(_["key"])'

Options

  • -c compact print JSON output instead of pretty printing
  • -r raw output of selected keys (no quotes)
  • -n print null values
  • -h help
  • -v version info

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 '\
r = []
for entry in _["parsers"]:
  if "darwin" in entry["compatible"]:
    r.append(entry["name"])
r = lines(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 'r = lines([entry["name"] for entry in _["parsers"] if "darwin" in entry["compatible"]])'

airport
airport_s
arp
crontab
crontab_u
...

Environment Variables

$ echo '{"login_name": "joeuser"}' | jello '\
r = True if os.getenv("LOGNAME") == _["login_name"] else False'

true

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

jello-0.3.0.tar.gz (4.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

jello-0.3.0-py3-none-any.whl (5.5 kB view details)

Uploaded Python 3

File details

Details for the file jello-0.3.0.tar.gz.

File metadata

  • Download URL: jello-0.3.0.tar.gz
  • Upload date:
  • Size: 4.3 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

Hashes for jello-0.3.0.tar.gz
Algorithm Hash digest
SHA256 55e43620ec5b340cfbde972b5f1bf97f665e33920c59b67212ba34e3a53c70a5
MD5 4bb1ac624eaef2e6684d96307210f5d9
BLAKE2b-256 471e687ef88ce40935c4059b0250fc9275ba16ddfb9c2e94419b8bd0c6fee899

See more details on using hashes here.

File details

Details for the file jello-0.3.0-py3-none-any.whl.

File metadata

  • Download URL: jello-0.3.0-py3-none-any.whl
  • Upload date:
  • Size: 5.5 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

Hashes for jello-0.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 20b0c99c508e8d831a292031112eee92cfd625c027755f5328bf3bb34a9b8bcc
MD5 a24bd80739b731ccf533c7bc18f3aeec
BLAKE2b-256 f9339a3dbed48b6ff9b57a08ccb31c7ec9b04d3da863e70d8976773f1609c34c

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