Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there a (unix) shell 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"
}
share|improve this question
18  
@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
2  
I rolled my own a short while back: github.com/exhuma/braindump/tree/master/jsonformat The code is very simple, using python's own json library, but I added pygments as well to get syntax highlighting. – exhuma Nov 9 '12 at 13:40
Stumbled on to this but then found Json Pretty and I quite like it. Typekit uses it in their API examples, so there's some klout behind it ^^ – Nick Tomlin Nov 21 '12 at 14:42
Here's a blog post summarizing some of the best methods mentioned in this thread. For those who prefer tldr: link – pyoussef Mar 8 at 6:56

30 Answers

With python you can just do

echo '{"foo": "lorem", "bar": "ipsum"}' | python -mjson.tool
share|improve this answer
29  
I had no idea - thanks! – AnC Dec 19 '09 at 9:17
3  
This seems to require python 2.6 (?). – mjs Jan 6 '10 at 12:04
6  
You are my hero. – Herms Mar 31 '11 at 14:36
11  
@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
13  
A great answer, only caution I have with it is it does sort the keys on output - which you might need to be aware of. – Chris Nash Jun 26 '12 at 20:35
show 16 more comments

I use the "space" argument of JSON.stringify to pretty-print JSON in javascript.

Examples:

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

// Indent with tabs
JSON.stringify({"foo":"lorem","bar":"ipsum"}, null, '\t');

From the Unix command-line with nodejs, specifying json on the command line:

$ node -e "console.log(JSON.stringify(JSON.parse(process.argv[1]), null, '\t'));" 
      '{"foo":"lorem","bar":"ipsum"}'

(line break inserted for visual consumption only)

Returns:

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

From the Unix command-line with nodejs, specifying a filename that contains json, and using an indent of 2 spaces:

$ node -e "console.log(JSON.stringify(JSON.parse(require('fs')
              .readFileSync(process.argv[1])), null, 2));"  filename.json 

(line break inserted for visual consumption only)

share|improve this answer
4  
This is the perfect solution for if you are using javascript. – RobKohr Jul 16 '11 at 11:45
6  
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! – maček Dec 9 '11 at 21:18
3  
Downvoted. The OP is about a "*nix command-line script" and this answer is a different context. – danorton Sep 2 '12 at 14:30
4  
@danorton: JS can be used from the commandline via node.js and other similar solutions. – calvinf Sep 17 '12 at 20:08
show 1 more comment

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

sudo gem install json
echo '{ "foo": "bar" }' | prettify_json.rb

Script download: gist.github.com/3738968

share|improve this answer
4  
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 '12 at 17:45
```eric-mbp:~ ericstob$ sudo gem install json Password: Fetching: json-1.7.3.gem (100%) Building native extensions. This could take a while... Successfully installed json-1.7.3 1 gem installed Installing ri documentation for json-1.7.3... Installing RDoc documentation for json-1.7.3... eric-mbp:~ ericstob$ prettify_json.rb -bash: prettify_json.rb: command not found – Eric Stob May 31 '12 at 18:05
maybe you could post the contents of your prettify_json.rb? – Andrew Aug 23 '12 at 16:56
added the download location of the script to the answer gist.github.com/3738968 – Tilo Sep 17 '12 at 20:03
show 2 more comments

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))
share|improve this answer
3  
Thanks, this line was very helpful: print json.dumps(input, sort_keys = False, indent = 4) – Bob Ralian Feb 7 '11 at 17:56

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".

share|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
fileinput.input() can't deal well with files with no newline at the end, last time I checked. – Zachary Vance Apr 18 at 20:53

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.

share|improve this answer
Thanks, jshon is a lot faster than using python or ruby for the same task – Alexander Jun 13 '12 at 22:45
2  
@Alexander - How fast a pretty printer do you need? I'm on OSx Lion that comes with Python preinstalled. With python -mjson.tool I can pretty print a 96KB json file in 0.1s - the json output of earthporn that jshon links to is about 24KB and I can pretty print that in 0.08s. How much faster is jshon for you? – joensson Jun 20 '12 at 11:32
I'm working with 1+GB compressed (who even knows how big uncompressed) JSON data files, so I very much appreciate the suggestion that jshon is faster. – Ryan Ballantyne Apr 22 at 20:48

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"]'

If the json data is in a file:

python -mjson.tool filename.json
share|improve this answer
this is a most easy way if we have python installed. – larrycai Nov 21 '12 at 7:38
python >= 2.6 required – dim Jan 23 at 17:22

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

gem install jazor
jazor --help
share|improve this answer
1  
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
2  
Finally, an answer to the question! – landon9720 Apr 23 '12 at 18:06
1  
I like that it has the option to colorize the output. Makes it easier to read. – Andrew Aug 23 '12 at 18:07
ooh I also like the option to pass a url since I am using this to view the output of my REST API – Andrew Aug 23 '12 at 18:11

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

share|improve this answer
2  
Seems to come standard with Cygwin! – Janus Troelsen May 15 '12 at 11:16
Seems we should not forget this wonderful tool that is Perl. I LOVE IT <3 – Sebf Apr 3 at 16:47

I wrote a tool that has one of the best "smart whitespace" formatters available. It produces more readable and less verbose output than most of the other options here.

underscore-cli

This is what "smart whitespace" looks like:

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.

share|improve this answer
2  
upvote for "passion project", shame you won't get the rep for it – wmarbut Dec 13 '12 at 3:58
@wmarbut - thanks! :) – Dave Dopson Dec 13 '12 at 5:11
no, thank you! I've already put it to use today. – wmarbut Dec 13 '12 at 15:47

Or, with Ruby:

echo '{ "foo": "lorem", "bar": "ipsum" }' | ruby -r json -e 'jj JSON.parse gets'
share|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

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.

share|improve this answer
renamed to json – Manav Jul 19 '12 at 20:39

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.

share|improve this answer
$ 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"
}
share|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

Try pjson. It has colors!

echo '{"json":"obj"} | pjson

Install it with pip:

⚡ pip install pjson

and then, pipe any json content to pjson.

share|improve this answer

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

share|improve this answer

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
share|improve this answer
$ sudo apt-get install edit-json
$ prettify_json myfile.json
share|improve this answer

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

autocmd FileType json set equalprg=json_reformat
share|improve this answer

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"
}

It's worth mentioning that json_pp comes pre-installed with Ubuntu 12.04 (at least) and Debian in /usr/bin/json_pp

share|improve this answer

Install yajl-tools with the command below:

sudo apt-get install yajl-tools

then,

echo '{"foo": "lorem", "bar": "ipsum"}' | json_reformat

share|improve this answer

So there are 30+ answers to this question, but I have another solution.

I've been using this for a while and I can't say how great it is to have.

./jq > http://stedolan.github.com/jq/

It's very simple to use, made for one thing (printing JSON from the command-line) and it works great! You can find their tutorials here > http://stedolan.github.com/jq/tutorial/

But it's very simple to get up and running. For a simple format just do something like:

curl -L "http://search.twitter.com/search.json?q=blue%20angels&rpp=5&include_entities=true&result_type=mixed" | jq . 
share|improve this answer

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
share|improve this answer

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
share|improve this answer

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.

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

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";'

share|improve this answer

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.

share|improve this answer

I know that the original post asked for shell script. but there are so many useful and irrelevant answers that probably ddid not help the original author. Adding on to irrelevance :) BTW I could not get any command line tools to work

If somebody want simple JSON javascript, they could: JSON.stringfy( JSON.parse(str), null, 4)

http://www.geospaces.org/geoweb/Wiki.jsp?page=JSON%20Utilities%20Demos

Here is java script that not only pretties the JSON but orders them by their attribute or by attribute and level.

If input is: { "c": 1, "a": {"b1": 2, "a1":1 }, "b": 1},

Either prints:(Groups all the objects together { "b": 1, "c": 1, "a": { "a1": 1, "b1": 2 } }

OR (Just orders by key)

{ "a": { "a1": 1, "b1": 2 }, "b": 1, "c": 1 }

share|improve this answer

The PHP version, if you have PHP >= 5.4.

alias pretty_json=php -E '$o = json_decode($argn); print json_encode($o, JSON_PRETTY_PRINT);'
echo '{"a":1,"b":2}' | prettify_json
share|improve this answer

jsonpp is a very nice command line JSON pretty printer.

From the README:

Pretty print web service responses like so:

curl -s -L http://t.co/tYTq5Pu | jsonpp

and make beautiful the files running around on your disk:

jsonpp data/long_malformed.json

If you're on Mac OS X, you can brew install jsonpp. If not, you can simple copy the binary to somewhere in your $PATH

share|improve this answer

protected by Servy Mar 5 at 18:56

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.