An open API service indexing awesome lists of open source software.

https://github.com/asphaltt/jq.py

jq implemented in python3
https://github.com/asphaltt/jq.py

Last synced: about 2 months ago
JSON representation

jq implemented in python3

Awesome Lists containing this project

README

          

# Usage of jq.py
Note: there are only one argument in jq.py

- -r: reverse, unbeautify the JSON data; no matter where it is

## Examples
Note: **jq** is the alias of `python3 jq.py`

Beautify/Unbeautify the JSON file:
```shell
jq example.json
jq -r example.json
jq example.json -r
```

Beautify/Unbeautify the JSON data from pipeline:
```shell
cat example.json | jq
cat example.json | jq -r
```