Created
April 5, 2015 01:33
-
-
Save pfig/0508a1c735e1b0bf6219 to your computer and use it in GitHub Desktop.
5-star album reviews from The Guardian
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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