I'm trying to parse json returned from a curl request, like sp:

curl 'http://twitter.com/users/username.json' | sed -e 's/[{}]/''/g' | awk -v k="text" '{n=split($0,a,","); for (i=1; i<=n; i++) print a[i]}'

I have it set working where it splits the json into fields, i.e. the above returns

% ...
"geo_enabled":false
"friends_count":245
"profile_text_color":"000000"
"status":"in_reply_to_screen_name":null
"source":"web"
"truncated":false
"text":"My status"
"favorited":false
% ...

But what I would like to do is grab a specific field (denoted by the -v k=text) and only print that.

Any ideas?

link|improve this question
5  
a python script can be so easily whipped to do this... why bother with anything else? – jldupont Dec 23 '09 at 21:49
Erm that is not good json parsing btw... what about the escape characters in strings...etc IS there a python answer to this on SO (a perl answer even...)? – martinr Dec 23 '09 at 22:00
The Python answer to this is to simply use a Python JSON library that will actually parse the JSON. sed and AWK provide regular expressions, but those are not a good solution to the problem of correctly parsing JSON. – steveha Dec 29 '09 at 1:04
I agree. Actually, the jsawk library provided the perfect solution I was looking for. Thanks for the idea! – ari lerner Jan 3 '10 at 3:10
feedback

18 Answers

up vote 24 down vote accepted

I've never used it, but you could try out jsawk. It would be something like this (haven't tested this, so I may be wrong):

curl 'http://twitter.com/users/username.json' | jsawk -a 'return this.name'
link|improve this answer
2  
I didn't want to have to add dependencies to the project, hence why I want to use sed/awk/curl, but jsawk seems like it's the most "robust" solution. – ari lerner Dec 24 '09 at 21:28
Yeah, I understand about not wanting to add extra dependencies. But JSON is a bit much for parsing with regular awk, so I thought I'd point out something that looked like it was built for what you're trying to do. – Brian Campbell Dec 24 '09 at 22:30
@ari I'm not sure what *nix flavor you're using but Python is part of the LSB (Linux Standard Base) specification which should cover most distros today. – Evan Plaice Feb 28 '11 at 10:18
feedback

To quickly extract the values for a particular key, I personally like to use "grep -o", which only returns the regex's match. For example, to get the "text" field from tweets, something like:

cat tweets.json | grep -Po '"text":.*?[^\\]",'

This regex is more robust than you might think; for example, it deals fine with strings having embedded commas and escaped quotes inside them. I think with a little more work you could make one that is actually guaranteed to extract the value, if it's atomic. (If it has nesting, then a regex can't do it of course.)

And to further clean (albeit keeping the string's original escaping) you can use something like: | perl -pe 's/"text"://; s/^"//; s/",$//'. (I did this for this analysis.)

To all the haters who insist you should use a real JSON parser -- yes, that is essential for correctness, but

  1. To do a really quick analysis, like counting values to check on data cleaning bugs or get a general feel for the data, banging out something on the commandline is faster. Opening an editor to write a script is distracting.
  2. grep -o is orders of magnitude faster than the Python standard json library, at least when doing this for tweets (which are ~2 KB each). I'm not sure if this is just because json is slow (I should compare to yajl sometime); but in principle, a regex should be faster since it's finite state and much more optimizable, instead of a parser that has to support recursion, and in this case, spends lots of CPU building trees for structures you don't care about. (If someone wrote a finite state transducer that did proper (depth-limited) JSON parsing, that would be fantastic! In the meantime we have "grep -o".)

To write maintainable code, I always use a real parsing library. I haven't tried jsawk, but if it works well, that would address point #1.

One last, wackier, solution: I wrote a script that uses Python json and extracts the keys you want, into tab-separated columns; then I pipe through a wrapper around awk that allows named access to columns. In here: the json2tsv and tsvawk scripts. So for this example it would be:

cat tweets.json | json2tsv id text | tsvawk '{print "tweet " $id " is: " $text}'

This approach doesn't address #2, is more inefficient than a single Python script, and it's a little brittle: it forces normalization of newlines and tabs in string values, to play nice with awk's field/record-delimited view of the world. But it does let you stay on the commandline, with more correctness than grep -o.

link|improve this answer
what if parameter last in tuple thwn at the end no comma but right brace. And +1 for sure. – Yola Nov 12 '11 at 19:11
Hi Yola, right, it depends on the input. You have to look at it first. – Brendan OConnor Nov 12 '11 at 22:33
feedback

Following MartinR and Boecko lead :

$ curl -s 'http://twitter.com/users/username.json' | python -mjson.tool

That will give you an extremly grep friendly output. Very convenient.

link|improve this answer
very convenient! – ernest Apr 19 at 12:37
feedback

Use Python's JSON support instead of using awk!

See http://docs.python.org/library/json.html

EDIT

Added explicit plea to use Python JSON support in place of awk.

link|improve this answer
or JavaScript. or Perl. or PHP. or C++. heck, I'd bet a can of beer there's a JSON parser for Forth. -1 for partisanship. – just somebody Dec 23 '09 at 22:32
1  
+1 for recommending something other than plain awk. I don't see how this is worth a -1. – Nick Presta Dec 23 '09 at 22:34
@Nick Presta: martinr doesn't recommend "something other than plain awk". he urges the OP to use Python without saying how it's better than any of the countless alternatives. – just somebody Dec 23 '09 at 22:45
Pardon me for trying to come up with a good response...: I shall try harder. Partisanship requires more than writing an awk script to shake it off! – martinr Dec 23 '09 at 22:45
feedback

please don't do it!

do not use line-oriented tools to parse hierarchical data serialized into text. it works only for special cases and will haunt you and other people. if you really can't use a ready-made json parser, write a simple one using recursive descent. it's easy and will endure changes the emitting side justly considers cosmetic (added or removed whitespace including newlines).

link|improve this answer
There's nothing essentially line-oriented about awk; and no reason to think it's an inadequate tool for this task. See the solution linked in my comment. (Perhaps you didn't mean to disagree.) – dubiousjim May 6 at 14:03
feedback

You've asked how to shoot yourself in the foot and I'm here to provide the ammo:

curl -s 'http://twitter.com/users/username.json' | sed -e 's/[{}]/''/g' | awk -v RS=',"' -F: '/^text/ {print $2}'

You could use tr -d '{}' instead of sed. But leaving them out completely seems to have the desired effect as well.

If you want to strip off the outer quotes, pipe the result of the above through sed 's/\(^"\|"$\)//g'

I think others have sounded sufficient alarm. I'll be standing by with a cell phone to call an ambulance. Fire when ready.

link|improve this answer
2  
This way madness lies, read this: stackoverflow.com/questions/1732348/… – Dennis Williamson Dec 24 '09 at 0:12
feedback

Version which uses Ruby and http://flori.github.com/json/

cat file.json | ruby -e "require 'rubygems'; require 'json'; puts JSON.pretty_generate(JSON[STDIN.read]);"
link|improve this answer
1  
this is my favourite ;) BTW you can short it with ruby -rjson to require the library – lucapette May 4 '11 at 10:57
feedback

TickTick is a JSON parser written in bash (<250 lines of code)

Here's the author's snippit from his article, Imagine a world where Bash supports JSON:

#!/bin/bash
. ticktick.sh

``  
  people = { 
    "Writers": [
      "Rod Serling",
      "Charles Beaumont",
      "Richard Matheson"
    ],  
    "Cast": {
      "Rod Serling": { "Episodes": 156 },
      "Martin Landau": { "Episodes": 2 },
      "William Shatner": { "Episodes": 2 } 
    }   
  }   
``  

function printDirectors() {
  echo "  The ``people.Directors.length()`` Directors are:"

  for director in ``people.Directors.items()``; do
    printf "    - %s\n" ${!director}
  done
}   

`` people.Directors = [ "John Brahm", "Douglas Heyes" ] ``
printDirectors

newDirector="Lamont Johnson"
`` people.Directors.push($newDirector) ``
printDirectors

echo "Shifted: "``people.Directors.shift()``
printDirectors

echo "Popped: "``people.Directors.pop()``
printDirectors
link|improve this answer
feedback

here's one way you can do it with awk

curl -sL 'http://twitter.com/users/username.json' | awk -F"," -v k="text" '{
    gsub(/{|}/,"")
    for(i=1;i<=NF;i++){
        if ( $i ~ k ){
            print $i
        }
    }
}'
link|improve this answer
feedback

Do not reinvent the wheel and select from the oficial JSON parsing software recommended by the JSON creator: http://www.json.org/ (see at the bottom)

link|improve this answer
feedback

On the basis that some of the recommendations here (esp in the comments) suggested the use of Python, I was disappointed not to find an example.

So, here's a one liner to get a single value from some JSON data. It assumes that you are piping the data in (from somewhere) and so should be useful in a scripting context.

Caveat: I'm no python expert - feel free to edit / improve if you are (thanks)

echo '{"hostname":"test","domainname":"example.com"}' | python -c 'import json,sys;obj=json.loads(sys.stdin.read());print obj["'"hostname"'"]'
link|improve this answer
feedback

This might be considered offtopic, but it could be helpful. Here is my JSON parser for Spotify URIs:

wget -qO- "http://ws.spotify.com/lookup/1/.json?uri=[spotify url goes here]" | jsawk 'return this.track.artists[0].name + " - " + this.track.name + " (" + this.track.album.name + ")"'

The script is quite useful when using Spotify URI as a parameter (i.e. $1).

jsawk @ github

link|improve this answer
feedback

You can try something like this -

curl -s 'http://twitter.com/users/jaypalsingh.json' | 
awk -F=":" -v RS="," '$1~/"text"/ {print}'
link|improve this answer
feedback

How about using Rhino? It's a command-line JavaScript tool. Unfortunately, it's a bit rough for this type of application. It doesn't read from stdin very well.

link|improve this answer
feedback

I have created a tool specifically designed for command-line JSON manipulation:

https://github.com/ddopson/underscore-cli

It allows you to do really simple things like:

# underscore map --data '[1, 2, 3, 4]' 'value+1'
prints: [ 2, 3, 4, 5 ]

# underscore map --data '{"a": [1, 4], "b": [2, 8]}' '_.max(value)'
prints: [ 4, 8 ]

# echo '{"foo":1, "bar":2}' | underscore map -q 'console.log("key = ", key)'
prints: key = foo
prints: key = bar

# underscore pluck --data "[{name : 'moe', age : 40}, {name : 'larry', age : 50}, {name : 'curly', age : 60}]" name
prints: [ 'moe', 'larry', 'curly' ]

# underscore keys --data '{name : "larry", age : 50}'
prints: [ 'name', 'age' ]

# underscore reduce --data '[1, 2, 3, 4]' 'total+value'
prints: 10

It has a very nice command-line help system and is extremely flexible. It is well tested and ready for use; however, I'm still building out a few of the features like alternatives for input/output format, and merging in my template handling tool (see TODO.md). If you have any feature requests, comment on this post or add an issue in github. I've designed out a pretty extensive feature-set, but I'd be glad to prioritize features that are needed by members of the community.

link|improve this answer
feedback

You can use jshon:

curl 'http://twitter.com/users/username.json' | jshon -e text
link|improve this answer
feedback

Everyone seems to underestimate awk. True, a one or two line awk script is not going to suffice. But it's not difficult to write a true JSON parser in awk. I just added one to my awkenough libraries.

link|improve this answer
feedback

Python can do this with a oneliner without additional dependencies:

e.g.

echo 'import urllib; import json; print json.load(urllib.urlopen("http://api.wordpress.org/plugins/info/1.0/authenticator.json"))["download_link"]' | python

sure you can make it better readable:

echo '
    import urllib
    import json
    print json.load(urllib.urlopen("http://api.wordpress.org/plugins/info/1.0/authenticator.json"))["download_link"]
     ' | python
link|improve this answer
oh, searching for python I see this has been here before... I still keep it for reference... – Henning May 14 at 16:51
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.