SILENT KILLERPanel

Current Path: > > opt > alt > python34 > lib64 > > python3.4 > json >


Operation   : Linux premium131.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64
Software     : Apache
Server IP    : 162.0.232.56 | Your IP: 216.73.216.111
Domains      : 1034 Domain(s)
Permission   : [ 0755 ]

Files and Folders in: //opt/alt/python34/lib64//python3.4/json/

NameTypeSizeLast ModifiedActions
__pycache__ Directory - -
__init__.py File 13245 bytes April 17 2024 17:09:57.
decoder.py File 12763 bytes April 17 2024 17:09:57.
encoder.py File 15788 bytes April 17 2024 17:09:57.
scanner.py File 2416 bytes April 17 2024 17:09:57.
tool.py File 954 bytes April 17 2024 17:09:57.

Reading File: //opt/alt/python34/lib64//python3.4/json//tool.py

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], 'r')
        outfile = sys.stdout
    elif len(sys.argv) == 3:
        infile = open(sys.argv[1], 'r')
        outfile = open(sys.argv[2], 'w')
    else:
        raise SystemExit(sys.argv[0] + " [infile [outfile]]")
    with infile:
        try:
            obj = json.load(infile)
        except ValueError as e:
            raise SystemExit(e)
    with outfile:
        json.dump(obj, outfile, sort_keys=True, indent=4)
        outfile.write('\n')


if __name__ == '__main__':
    main()

SILENT KILLER Tool