2008-05-08 11:29:10 -03:00
|
|
|
r"""Command-line tool to validate and pretty-print JSON
|
|
|
|
|
|
|
|
Usage::
|
|
|
|
|
2009-05-02 09:36:44 -03:00
|
|
|
$ echo '{"json":"obj"}' | python -m json.tool
|
2008-05-08 11:29:10 -03:00
|
|
|
{
|
|
|
|
"json": "obj"
|
|
|
|
}
|
2009-05-02 09:36:44 -03:00
|
|
|
$ echo '{ 1.2:3.4}' | python -m json.tool
|
2013-02-21 14:19:16 -04:00
|
|
|
Expecting property name enclosed in double quotes: line 1 column 3 (char 2)
|
2008-05-08 11:29:10 -03:00
|
|
|
|
|
|
|
"""
|
2014-03-22 01:17:29 -03:00
|
|
|
import argparse
|
2008-05-08 11:29:10 -03:00
|
|
|
import json
|
2014-03-22 01:17:29 -03:00
|
|
|
import sys
|
|
|
|
|
2008-05-08 11:29:10 -03:00
|
|
|
|
|
|
|
def main():
|
2014-03-22 01:17:29 -03:00
|
|
|
prog = 'python -m json.tool'
|
|
|
|
description = ('A simple command line interface for json module '
|
|
|
|
'to validate and pretty-print JSON objects.')
|
|
|
|
parser = argparse.ArgumentParser(prog=prog, description=description)
|
|
|
|
parser.add_argument('infile', nargs='?', type=argparse.FileType(),
|
|
|
|
help='a JSON file to be validated or pretty-printed')
|
|
|
|
parser.add_argument('outfile', nargs='?', type=argparse.FileType('w'),
|
|
|
|
help='write the output of infile to outfile')
|
2014-11-10 03:56:54 -04:00
|
|
|
parser.add_argument('--sort-keys', action='store_true', default=False,
|
|
|
|
help='sort the output of dictionaries alphabetically by key')
|
2018-11-07 06:09:32 -04:00
|
|
|
parser.add_argument('--json-lines', action='store_true', default=False,
|
|
|
|
help='parse input using the jsonlines format')
|
2014-03-22 01:17:29 -03:00
|
|
|
options = parser.parse_args()
|
|
|
|
|
|
|
|
infile = options.infile or sys.stdin
|
|
|
|
outfile = options.outfile or sys.stdout
|
2014-11-10 03:56:54 -04:00
|
|
|
sort_keys = options.sort_keys
|
2018-11-07 06:09:32 -04:00
|
|
|
json_lines = options.json_lines
|
|
|
|
with infile, outfile:
|
2012-11-28 20:15:18 -04:00
|
|
|
try:
|
2018-11-07 06:09:32 -04:00
|
|
|
if json_lines:
|
|
|
|
objs = (json.loads(line) for line in infile)
|
|
|
|
else:
|
|
|
|
objs = (json.load(infile), )
|
|
|
|
for obj in objs:
|
|
|
|
json.dump(obj, outfile, sort_keys=sort_keys, indent=4)
|
|
|
|
outfile.write('\n')
|
2012-11-28 20:15:18 -04:00
|
|
|
except ValueError as e:
|
|
|
|
raise SystemExit(e)
|
2008-05-08 11:29:10 -03:00
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
main()
|