Sha256: aed3ddc84367d5610fd2d899d1e3aa16a7405c3f919358a5660e43020a2a9933

Contents?: true

Size: 937 Bytes

Versions: 18

Compression:

Stored size: 937 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

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 = simplejson.load(infile)
    except ValueError, e:
        raise SystemExit(e)
    simplejson.dump(obj, outfile, sort_keys=True, indent=4)
    outfile.write('\n')


if __name__ == '__main__':
    main()

Version data entries

18 entries across 18 versions & 1 rubygems

Version Path
chef-14.13.11-universal-mingw32 lib/chef/provider/package/yum/simplejson/tool.py
chef-15.0.300-universal-mingw32 lib/chef/provider/package/yum/simplejson/tool.py
chef-15.0.298-universal-mingw32 lib/chef/provider/package/yum/simplejson/tool.py
chef-15.0.293-universal-mingw32 lib/chef/provider/package/yum/simplejson/tool.py
chef-14.12.9-universal-mingw32 lib/chef/provider/package/yum/simplejson/tool.py
chef-14.12.3-universal-mingw32 lib/chef/provider/package/yum/simplejson/tool.py
chef-14.11.21-universal-mingw32 lib/chef/provider/package/yum/simplejson/tool.py
chef-14.10.9-universal-mingw32 lib/chef/provider/package/yum/simplejson/tool.py
chef-14.9.13-universal-mingw32 lib/chef/provider/package/yum/simplejson/tool.py
chef-14.8.12-universal-mingw32 lib/chef/provider/package/yum/simplejson/tool.py
chef-14.7.17-universal-mingw32 lib/chef/provider/package/yum/simplejson/tool.py
chef-14.6.47-universal-mingw32 lib/chef/provider/package/yum/simplejson/tool.py
chef-14.5.33-universal-mingw32 lib/chef/provider/package/yum/simplejson/tool.py
chef-14.3.37-universal-mingw32 lib/chef/provider/package/yum/simplejson/tool.py
chef-14.2.0-universal-mingw32 lib/chef/provider/package/yum/simplejson/tool.py
chef-14.1.12-universal-mingw32 lib/chef/provider/package/yum/simplejson/tool.py
chef-14.1.1-universal-mingw32 lib/chef/provider/package/yum/simplejson/tool.py
chef-14.0.190-universal-mingw32 lib/chef/provider/package/yum/simplejson/tool.py