- https://github.com/venthur/python-gron ``` >>> cat tests/data/one.json | gron < json = {}; < json.abool = true; ``` - https://github.com/mazen160/gronpy ``` >>> cat test.json | gron | grep language < [glossary][GlossDiv][GlossList][GlossEntry][GlossDef][para]->A meta-markup language ``` - https://github.com/Prunoideae/json-grep ``` >>> cat numbers.txt | jg "{\"id\":\"^2.*$\",\"attr.*\":{\"gender\":\"female\"}}" < [ < { < "id": 2001, < "phone": 113, < "attributes": { < "gender:": "female" < } < } < ] ``` - https://github.com/ploubser/JSON-Grep ``` >>> cat my.json | jgrep "[foo.bar1=1 and foo.bar2=2]" < [ < { < "foo": [ < { < "bar1": 1 < }, < { < "bar2": 2 < } < ] < } < ] ``` - https://github.com/matthiasdiener/ripjson ``` >>> rj '.*es.*/cit' test.json < address/city = "London" ```