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
libv8-7.8.279.23.0beta1 vendor/depot_tools/third_party/simplejson/tool.py
libv8-7.4.288.28.0beta1 vendor/depot_tools/third_party/simplejson/tool.py
libv8-7.3.492.27.3beta1 vendor/depot_tools/third_party/simplejson/tool.py
libv8-7.3.492.27.1 vendor/depot_tools/third_party/simplejson/tool.py
libv8-7.3.492.27.0 vendor/depot_tools/third_party/simplejson/tool.py
libv8-7.3.492.27.0beta1 vendor/depot_tools/third_party/simplejson/tool.py
libv8-6.7.288.46.1 vendor/depot_tools/third_party/simplejson/tool.py
libv8-6.7.288.46.0 vendor/depot_tools/third_party/simplejson/tool.py
libv8-6.7.288.46.1beta0 vendor/depot_tools/third_party/simplejson/tool.py
libv8-6.3.292.48.1 vendor/depot_tools/third_party/simplejson/tool.py
libv8-6.3.292.48.0 vendor/depot_tools/third_party/simplejson/tool.py
libv8-6.3.292.48.0beta2 vendor/depot_tools/third_party/simplejson/tool.py
libv8-6.3.292.48.0beta1 vendor/depot_tools/third_party/simplejson/tool.py
libv8-6.2.414.42.1 vendor/depot_tools/third_party/simplejson/tool.py
libv8-6.2.414.42.0 vendor/depot_tools/third_party/simplejson/tool.py
pygments.rb-1.2.1 vendor/simplejson/simplejson/tool.py
libv8-6.2.414.42.0beta1 vendor/depot_tools/third_party/simplejson/tool.py
libv8-6.0.286.54.3 vendor/depot_tools/third_party/simplejson/tool.py
libv8-6.0.286.54.2 vendor/depot_tools/third_party/simplejson/tool.py
pygments.rb-1.2.0 vendor/simplejson/simplejson/tool.py