Mison: A Fast JSON Parser for Data Analytics - Microsoft Research – not open source as far as I can tell… :(
lemire/simdjson: Parsing gigabytes of JSON per second ; “single header file” library. Feb 2019.
First see jq.
In weather readings find cities where temperature is higher than 25°C and the sky is clear.
$..*[@..temp > 25 and @.clouds.all is 0].name
▶ gron "https://api.github.com/repos/tomnomnom/gron/commits?per_page=1" | fgrep "commit.author"
json[0].commit.author = {};
json[0].commit.author.date = "2016-07-02T10:51:21Z";
json[0].commit.author.email = "mail@tomnomnom.com";
json[0].commit.author.name = "Tom Hudson";
antonmedv/fx: Command-line tool and terminal JSON viewer 🔥
2020-06-01: glomRestructuring data, the Python way.
from glom import glom
= {'a': {'b': {'c': 'd'}}}
target 'a.b.c') # returns 'd' glom(target,
See also: BBEdit JSON format