tool.py 997 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. r"""Command-line tool to validate and pretty-print JSON
  2. Usage::
  3. $ echo '{"json":"obj"}' | python -m json.tool
  4. {
  5. "json": "obj"
  6. }
  7. $ echo '{ 1.2:3.4}' | python -m json.tool
  8. Expecting property name enclosed in double quotes: line 1 column 3 (char 2)
  9. """
  10. import sys
  11. import json
  12. def main():
  13. if len(sys.argv) == 1:
  14. infile = sys.stdin
  15. outfile = sys.stdout
  16. elif len(sys.argv) == 2:
  17. infile = open(sys.argv[1], 'rb')
  18. outfile = sys.stdout
  19. elif len(sys.argv) == 3:
  20. infile = open(sys.argv[1], 'rb')
  21. outfile = open(sys.argv[2], 'wb')
  22. else:
  23. raise SystemExit(sys.argv[0] + " [infile [outfile]]")
  24. with infile:
  25. try:
  26. obj = json.load(infile)
  27. except ValueError, e:
  28. raise SystemExit(e)
  29. with outfile:
  30. json.dump(obj, outfile, sort_keys=True,
  31. indent=4, separators=(',', ': '))
  32. outfile.write('\n')
  33. if __name__ == '__main__':
  34. main()