D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
lib64
/
python2.7
/
json
/
Filename :
tool.py
back
Copy
r"""Command-line tool to validate and pretty-print JSON Usage:: $ echo '{"json":"obj"}' | python -m json.tool { "json": "obj" } $ echo '{ 1.2:3.4}' | python -m json.tool Expecting property name enclosed in double quotes: line 1 column 3 (char 2) """ import sys import json def main(): if len(sys.argv) == 1: infile = sys.stdin outfile = sys.stdout elif len(sys.argv) == 2: infile = open(sys.argv[1], 'rb') outfile = sys.stdout elif len(sys.argv) == 3: infile = open(sys.argv[1], 'rb') outfile = open(sys.argv[2], 'wb') else: raise SystemExit(sys.argv[0] + " [infile [outfile]]") with infile: try: obj = json.load(infile) except ValueError, e: raise SystemExit(e) with outfile: json.dump(obj, outfile, sort_keys=True, indent=4, separators=(',', ': ')) outfile.write('\n') if __name__ == '__main__': main()
Name
Size
Last Modified
Owner
Permissions
Actions
__init__.py
14.376
KB
April 10 2024 4:58:35
root
0644
__init__.pyc
13.6
KB
April 10 2024 4:58:46
root
0644
__init__.pyo
13.6
KB
April 10 2024 4:58:46
root
0644
decoder.py
13.377
KB
April 10 2024 4:58:35
root
0644
decoder.pyc
11.68
KB
April 10 2024 4:58:46
root
0644
decoder.pyo
11.68
KB
April 10 2024 4:58:46
root
0644
encoder.py
16.015
KB
April 10 2024 4:58:35
root
0644
encoder.pyc
13.399
KB
April 10 2024 4:58:46
root
0644
encoder.pyo
13.399
KB
April 10 2024 4:58:46
root
0644
scanner.py
2.243
KB
April 10 2024 4:58:35
root
0644
scanner.pyc
2.177
KB
April 10 2024 4:58:46
root
0644
scanner.pyo
2.177
KB
April 10 2024 4:58:46
root
0644
tool.py
0.974
KB
April 10 2024 4:58:35
root
0644
tool.pyc
1.264
KB
April 10 2024 4:58:46
root
0644
tool.pyo
1.264
KB
April 10 2024 4:58:46
root
0644
2017 © D7net | D704T team