Skip to content
Snippets Groups Projects
Commit 1ffc4ddb authored by nimrod's avatar nimrod
Browse files

Added script to pretty print JSON files/ streams.

parent ff018fbc
No related branches found
No related tags found
No related merge requests found
#!/usr/bin/env python3
'''Get JSON from stdin, output pretty JSON to stdout.'''
import json
import sys
if __name__ == '__main__':
print(json.dumps(json.load(sys.stdin), indent=4, sort_keys=True))
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment