Sha256: 8a1d1f716b3f0ebfff193cc9f94efbcf1cdde46e576bdebf71ce601ce0cedc5f

Contents?: true

Size: 1021 Bytes

Versions: 135

Compression:

Stored size: 1021 Bytes

Contents

r"""Command-line tool to validate and pretty-print JSON

Usage::

    $ echo '{"json":"obj"}' | python -m simplejson.tool
    {
        "json": "obj"
    }
    $ echo '{ 1.2:3.4}' | python -m simplejson.tool
    Expecting property name: line 1 column 2 (char 2)

"""
import sys
import simplejson as 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]]")
    try:
        obj = json.load(infile,
                        object_pairs_hook=json.OrderedDict,
                        use_decimal=True)
    except ValueError, e:
        raise SystemExit(e)
    json.dump(obj, outfile, sort_keys=True, indent='    ', use_decimal=True)
    outfile.write('\n')


if __name__ == '__main__':
    main()

Version data entries

135 entries across 135 versions & 7 rubygems

Version Path
pygments.rb-0.3.3 vendor/simplejson/simplejson/tool.py
pygments.rb-0.3.2 vendor/simplejson/simplejson/tool.py
pygments.rb-0.3.1 vendor/simplejson/simplejson/tool.py
pygments.rb-0.3.0 vendor/simplejson/simplejson/tool.py
sauce-1.0.2 support/simplejson/tool.py
sauce-1.0.1 support/simplejson/tool.py
sauce-1.0.0 support/simplejson/tool.py
sauce-0.20.0 support/simplejson/tool.py
sauce-0.19.1 support/simplejson/tool.py
sauce-0.19.0 support/simplejson/tool.py
sauce-0.18.3 support/simplejson/tool.py
sauce-0.18.2 support/simplejson/tool.py
sauce-0.18.1 support/simplejson/tool.py
sauce-0.18.0 support/simplejson/tool.py
sauce-0.17.8 support/simplejson/tool.py
sauce-0.17.7 support/simplejson/tool.py
sauce-0.17.6 support/simplejson/tool.py
sauce-0.17.5 support/simplejson/tool.py
sauce-0.17.4 support/simplejson/tool.py
sauce-0.17.3 support/simplejson/tool.py