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!
|
Is there a (*nix) command-line script to format JSON in human-readable form? Basically, I want it to transform the following:
... into something like this:
Thanks! | |||||||||
feedback
|
|
With python you can just do
| |||||||||||||||||||||
feedback
|
|
I use JSON.stringify to pretty-print JSON. Examples:
| |||||||||||
feedback
|
|
The JSON Ruby Gem is bundled with a shell script to prettify JSON:
| |||||||
feedback
|
|
Thanks to J.F. Sebastian's very helpful pointers, here's a slightly enhanced script I've come up with:
| ||||
feedback
|
|
On *nix, reading from stdin and writing to stdout works better:
Put this in a file (I named mine "prettyJSON" after AnC's answer) in your PATH and Depending on the version of Python you have installed, you may need to replace "import simplejson as json" with "import json". | |||||||||||
feedback
|
|
http://jsonlint.com has a nice validator/formatter if you not looking for a programmatic way of doing it. | ||||
|
feedback
|
|
I use jshon - to do exactly what you're describing, just run:
You can also pass arguments to transform the json data. | ||||
|
feedback
|
|
for the peeps looking for a quick online thingy: http://www.shell-tools.net/index.php?op=json%5Fformat | ||||
|
feedback
|
|
Or, with Ruby:
| |||||||||||
feedback
|
|
If you use npm and nodejs, you can do | ||||
|
feedback
|
|
i usually just do
and to read some data :
| ||||
|
feedback
|
|
with perl, use CPAN module JSON::XS. it installs a command line tool "json_xs" Validate:
Prettify the JSON file src.json to pretty.json.
| ||||
|
feedback
|
NOTE: It is not the way to do it. The same in Perl:
| |||||
feedback
|
|
Check out Jazor. It's a simple command line JSON parser written in Ruby.
| |||||
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. | ||||
|
feedback
|
|
| ||||
|
feedback
|
|
Maybe pretty-print.heroku.com is going to be of some help to you. | |||||
|
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:
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:
or this:
and to format json contained in a file you can do this:
| ||||
|
feedback
|
|
You can also look at Cerny.js which I stumbled upon while looking for a good solution. | ||||
|
feedback
|
|
Here is how to do it with groovy script. Create a groovy script, lets say "pretty-print"
Make script executable.
Now from command line,
| ||||
|
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.
| ||||
|
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:
| ||||
|
feedback
|
|
Let me jump on the dogpile with one more suggestion: 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:
same thing:
same thing, more explicit:
This tool is my current passion project, so if you have any feature requests, good chance I'll address them. | ||||
|
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:
| ||||
|
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:
| ||||
|
feedback
|
|
Another way to do it with any version of Python that can use the | ||||
|
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. | ||||
|
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.
must be:
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. | ||||
feedback
|