This script allows to view JSON file in readable form. You need to specify JSON file path as a parameter.
The script needs Python 3.5 interpreter.
Example of script launch on Linux, Python 3.5:
$ python pprint_json.py <path to file>Example of script output:
{
"example": {
"Header": "dictionary example",
"list": [
"item 1",
"item 2"
]
}
}The code is written for educational purposes. Training course for web-developers - DEVMAN.org