Accept path to JSON file, loads it, adds indentation and line breaks and output it's prettified content to the console.
Example of script launch on Linux, Python 3.5:
$ python pprint_json.py <path to file>
{'key1' : [{'inner_key1': 'some_value'
'inner_key2': 'another_value'}
{....}],
'key2' : ...}
The code is written for educational purposes. Training course for web-developers - DEVMAN.org