This commit is contained in:
Nikolai Tschacher
2019-01-26 20:15:19 +01:00
parent bab902e80a
commit b354e6918d
10 changed files with 83 additions and 28 deletions

6
jformat.py Executable file
View File

@ -0,0 +1,6 @@
import pprint
import sys
import json
if len(sys.argv) == 2:
print(pprint.pformat(json.load(open(sys.argv[1]))))