Is there a (*nix) command-line script to format JSON in human-readable form?

Basically, I want it to transform the following:

{ foo: "lorem", bar: "ipsum" }

... into something like this:

{
    foo: "lorem",
    bar: "ipsum"
}

Thanks!

link|improve this question
1  
[connecting this to my now-registered account] – AnC Mar 28 '09 at 8:23
12  
@annakata: find your Firefox sessionstore.js or sessionstore.bak, which can have megabytes of JSON all on a single line, and you'll see why the former format is completely unreadable and the second format is very readable. – iconoclast Sep 9 '11 at 5:11
feedback

30 Answers

With python you can just do

echo '{"foo": "lorem", "bar": "ipsum"}' | python -mjson.tool
link|improve this answer
17  
I had no idea - thanks! – AnC Dec 19 '09 at 9:17
2  
This seems to require python 2.6 (?). – mjs Jan 6 '10 at 12:04
2  
You are my hero. – Herms Mar 31 '11 at 14:36
2  
+1 saved my day! – chris polzer Apr 17 '11 at 13:04
8  
@YOUR ARGUMENT is imprecise. python -msimplejson.tool doesn't work on Python versions less than 2.5. python -c'from simplejson.tool import main; main()' works. – J.F. Sebastian May 19 '11 at 6:37
show 8 more comments
feedback

I use JSON.stringify to pretty-print JSON.

Examples:

JSON.stringify({ foo: "lorem", bar: "ipsum" }, null, 4);

JSON.stringify({ foo: "lorem", bar: "ipsum" }, null, '\t');
link|improve this answer
1  
This is the perfect solution for if you are using javascript. – RobKohr Jul 16 '11 at 11:45
4  
For debugging objects in Node.js, you should really use sys.inspect() instead of JSON.stringify(). Here's why: markhansen.co.nz/inspecting-with-json-stringify – Gurpartap Singh Aug 11 '11 at 18:05
Totally awesome! – macek Dec 9 '11 at 21:18
feedback

The JSON Ruby Gem is bundled with a shell script to prettify JSON:

sudo gem install json
echo '{ "foo": "bar" }' | prettify_json.rb
link|improve this answer
1  
Note that this solution decode the unicode "\uxxxx" escape sequences, unlike the Python one with json.tool. However, it also seems to have nesting depth limitations (nesting of 20 is too deep (JSON::NestingError)). – a3nm May 30 '11 at 6:40
on Ubuntu you can do: sudo apt-get install ruby-json-pure instead of gem install – Janus Troelsen Mar 27 at 17:45
feedback

Thanks to J.F. Sebastian's very helpful pointers, here's a slightly enhanced script I've come up with:

#!/usr/bin/python

"""
Convert JSON data to human-readable form.

Usage:
  prettyJSON.py inputFile [outputFile]
"""

import sys
import simplejson as json


def main(args):
    try:
    	inputFile = open(args[1])
    	input = json.load(inputFile)
    	inputFile.close()
    except IndexError:
    	usage()
    	return False
    if len(args) < 3:
    	print json.dumps(input, sort_keys = False, indent = 4)
    else:
    	outputFile = open(args[2], "w")
    	json.dump(input, outputFile, sort_keys = False, indent = 4)
    	outputFile.close()
    return True


def usage():
    print __doc__


if __name__ == "__main__":
    sys.exit(not main(sys.argv))
link|improve this answer
Thanks, this line was very helpful: print json.dumps(input, sort_keys = False, indent = 4) – Bob Ralian Feb 7 '11 at 17:56
feedback

On *nix, reading from stdin and writing to stdout works better:

#!/usr/bin/env python
"""
Convert JSON data to human-readable form.

(Reads from stdin and writes to stdout)
"""

import sys
import simplejson as json


print json.dumps(json.loads(sys.stdin.read()), indent=4)
sys.exit(0)

Put this in a file (I named mine "prettyJSON" after AnC's answer) in your PATH and chmod +x it, and you're good to go.

Depending on the version of Python you have installed, you may need to replace "import simplejson as json" with "import json".

link|improve this answer
Indeed, using stdin/stdout is much more flexible and simple. Thanks for pointing it out. – AnC Aug 1 '09 at 7:28
1  
For programs that expect a named file, use /dev/stdin, ditto for out and err. – dvogel Aug 4 '10 at 21:08
1  
FYI fileinput.input() reads from stdin if there are no files given at a command-line. Example – J.F. Sebastian May 19 '11 at 6:41
feedback

http://jsonlint.com has a nice validator/formatter if you not looking for a programmatic way of doing it.

link|improve this answer
feedback

I use jshon - to do exactly what you're describing, just run:

 echo $COMPACTED_JSON_TEXT | jshon

You can also pass arguments to transform the json data.

link|improve this answer
feedback

for the peeps looking for a quick online thingy: http://www.shell-tools.net/index.php?op=json%5Fformat

link|improve this answer
feedback

Or, with Ruby:

echo '{ "foo": "lorem", "bar": "ipsum" }' | ruby -r json -e 'jj JSON.parse gets'
link|improve this answer
That gives me an error. Do you need some ruby json package installed? – mjs Jan 6 '10 at 12:09
2  
Yes, you need the JSON Ruby Gem: sudo gem install json – darscan Jan 9 '10 at 13:38
If you happen to be in ruby already just use jj my_object – Mat Schaffer Jul 15 '10 at 13:20
@MatSchaffer Note that this does not work if you are using JSON to serialize objects with custom to_json methods; Kernel#jj only pretty-prints arrays and hashes of the same (or numbers/strings/booleans). – Phrogz Jun 27 '11 at 15:59
feedback

If you use npm and nodejs, you can do npm install json-command and then pipe the command through json. Do json -h to get all the options. It can also pull out specific fields and colorize the output with -i.

link|improve this answer
feedback

i usually just do

echo '{"test":1,"test2":2}' | python -mjson.tool

and to read some data :

echo '{"test":1,"test2":2}' | python -c 'import sys,json;data=json.loads(sys.stdin.read()); print data["test"]'
link|improve this answer
feedback

with perl, use CPAN module JSON::XS.

it installs a command line tool "json_xs"

Validate:

json_xs -t null < myfile.json

Prettify the JSON file src.json to pretty.json.

< src.json json_xs > pretty.json

link|improve this answer
Seems to come standard with Cygwin! – Janus Troelsen May 15 at 11:16
feedback
$ echo '{ "foo": "lorem", "bar": "ipsum" }' \
> | python -c'import fileinput, json;
> print(json.dumps(json.loads("".join(fileinput.input())),
>                  sort_keys=True, indent=4))'
{
    "bar": "ipsum",
    "foo": "lorem"
}

NOTE: It is not the way to do it.

The same in Perl:

$ cat json.txt \
> | perl -0007 -MJSON -nE'say to_json(from_json($_, {allow_nonref=>1}), 
>                                     {pretty=>1})'
{
   "bar" : "ipsum",
   "foo" : "lorem"
}
link|improve this answer
actually I do the same but with javascript itself :) – Robert Gould Dec 9 '08 at 8:55
In the version of the JSON module I have, to_json doesn't seem to accept options. But this works: perl -MJSON -nE 'say JSON->new->pretty->encode(from_json $_)' text.json – Rörd Dec 16 '11 at 15:12
feedback

Check out Jazor. It's a simple command line JSON parser written in Ruby.

gem install jazor
jazor --help
link|improve this answer
Is it just me or is this the only suggestion that actually answers the OP's question? I came here looking for a simple command into which I could pipe the output of curl and this is the only one that did it for me. – Leo Cassarani Nov 23 '11 at 0:32
Finally, an answer to the question! – landon9720 Apr 23 at 18:06
feedback

There is TidyJSON it's C#, so maybe you can get it to compile with Mono, and working on *nix. No guarantees though, sorry.

link|improve this answer
feedback

yajl is very nice, in my experience. I use its reformat_json command to pretty-print .json files in vim by putting the following line in my .vimrc:

autocmd FileType json set equalprg=json_reformat
link|improve this answer
feedback

Maybe pretty-print.heroku.com is going to be of some help to you.

link|improve this answer
This was a dead link when I tried it a moment ago. – John Tobler Aug 11 '11 at 19:53
Try pretty-print.heroku.com then. – mgamer Apr 27 at 10:27
feedback

I recommend using the json_xs command line utility which is included in the JSON::XS perl module. JSON::XS is a perl module for serializing/deserializing JSON, on a Debian or Ubuntu machine you can install it like this:

sudo apt-get install libjson-xs-perl

It is obviously also avalible on cpan.

To use it to format json obtained from a url you can use curl or wget like this:

$ curl -s http://page.that.serves.json.com/json/ | json_xs

or this:

$ wget -q -O - http://page.that.serves.json.com/json/ | json_xs

and to format json contained in a file you can do this:

$ json_xs < file-full-of.json
link|improve this answer
feedback
$ sudo apt-get install edit-json
$ prettify_json myfile.json
link|improve this answer
feedback

You can also look at Cerny.js which I stumbled upon while looking for a good solution.

link|improve this answer
feedback

Here is how to do it with groovy script.

Create a groovy script, lets say "pretty-print"

#!/usr/bin/env groovy

import groovy.json.JsonOutput

System.in.withReader { println JsonOutput.prettyPrint(it.readLine()) }

Make script executable.

chmod +x pretty-print

Now from command line,

echo '{"foo": "lorem", "bar": "ipsum"}' | ./pretty-print
link|improve this answer
feedback

I'm the author of json-liner. It's a command line tool to turn JSON into a grep friendly format. Give it a try.

$ echo '{"a": 1, "b": 2}' | json-liner
/%a 1
/%b 2
$ echo '["foo", "bar", "baz"]' | json-liner
/@0 foo
/@1 bar
/@2 baz
link|improve this answer
feedback

There is a popular online tool called JSONLint. If you cared to read the credits it will lead you to the JSON Lint project on github where you will find out that it is in fact A JSON parser and validator with a CLI. Quote from the readme file:

Command line interface

Install jsonlint with npm to use the command line interface:

npm install jsonlint -g

Validate a file like so:

jsonlint myfile.json

or pipe input into stdin:

cat myfile.json | jsonlint

jsonlint will either report a syntax error with details or pretty print the source if it is valid.

link|improve this answer
feedback

Let me jump on the dogpile with one more suggestion:

underscore-cli

I wrote it, so I may be a bit biased, but it's an awesome tool for printing and manipulating JSON data from the command-line. It's super-friendly to use and has extensive command-line help/documentation. It's a swiss-army-knife that I use for 1001 different small tasks that would be surprisingly annoying to do any other way. Latest use-case: Chrome, Dev console, Network tab, export all as HAR file, "cat site.har | underscore select '.url' --outfmt text | grep mydomain"; now I have a chronologically ordered list of all url fetches made during the loading of my comany's site.

Pretty printing is easy:

underscore -i data.json print

same thing:

cat data.json | underscore print

same thing, more explicit:

cat data.json | underscore print --outfmt json-pretty

This tool is my current passion project, so if you have any feature requests, good chance I'll address them.

link|improve this answer
feedback

J.F. Sebastian's solutions didn't work for me in Ubuntu 8.04, here is a modified Perl version that works with the older 1.X JSON library:

perl -0007 -MJSON -ne 'print objToJson(jsonToObj($_, {allow_nonref=>1}), {pretty=>1}), "\n";'

link|improve this answer
feedback

With Perl, if you install JSON::PP from CPAN you'll get the json_pp command. Stealing the example from B Bycroft you get:

[pdurbin@beamish ~]$ echo '{"foo": "lorem", "bar": "ipsum"}' | json_pp
{
   "bar" : "ipsum",
   "foo" : "lorem"
}
link|improve this answer
feedback

Another way to do it with any version of Python that can use the json module is shown here.

link|improve this answer
the link is broken. – gardenofwine May 20 at 21:16
feedback

Just found jsonpp

link|improve this answer
feedback

with javascript / nodeJS:

take a look at the vkBeautify.js plugin

http://www.eslinstructor.net/vkbeautify/

which provides pretty printing for both JSON and XML text

it's written in plain javascript, less then 1.5K (minified) and very fast.

link|improve this answer
feedback

My JSON files were not parsed by any of these methods.

My problem was similar to this post Google Data Source JSON not valid?.

The answer to that post helped me find a solution. http://stackoverflow.com/a/628634/619760

It is considered to be invalid JSON without the string keys.

{id:'name',label:'Name',type:'string'}

must be:

{'id':'name','label':'Name','type':'string'}

This link gives a nice comprehensive comparison of some of the different JSON parsers. http://deron.meranda.us/python/comparing_json_modules/basic

Which led me to http://deron.meranda.us/python/demjson/. I think this one parser is much more fault tolerant than many others.

link|improve this answer
JSON does not allow single quotes as delimiters and a sane JSON parser should reject such input. – Salman A Apr 27 at 10:50
feedback

Your Answer

 
or
required, but never shown