Skip to content

Instantly share code, notes, and snippets.

@pfig
Created April 5, 2015 01:33
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pfig/0508a1c735e1b0bf6219 to your computer and use it in GitHub Desktop.
Save pfig/0508a1c735e1b0bf6219 to your computer and use it in GitHub Desktop.
5-star album reviews from The Guardian
# cf http://www.theguardian.com/info/developer-blog/2015/feb/10/what-to-listen-to-next-jq-to-the-rescue
URL='http://content.guardianapis.com/search?api-key=test&page-size=100&show-fields=starRating&tag=tone/albumreview,tone/reviews&from-date=2015-01-03'
curl -s $URL | jq \
'[.response.results[] | select((.fields.starRating | tonumber) == 5) | {webTitle, webUrl}]'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment