Created
May 19, 2014 16:02
-
-
Save agoldst/c377fbb60b383cc5252c to your computer and use it in GitHub Desktop.
Query the Nobelprize.org API to create a CSV table of all the literature laureates.
This file contains 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
library("httr") | |
r_lits <- GET("http://api.nobelprize.org/v1/prize.json",query=list(category="literature")) | |
laureates <- content(r_lits,"parsed")$prizes # JSON | |
ids <- sapply(laureates,function (psn) { | |
psn$laureates[[1]]$id | |
}) | |
lines <- character(length(ids) + 1) | |
names(lines) <- c("header",ids) | |
lines[1] <- "" | |
for (i in seq_along(ids)) { | |
message("Getting id ",ids[i]) | |
r <- GET("http://api.nobelprize.org/v1/laureate.csv",query=list(id=ids[i])) | |
lau <- strsplit(content(r,encoding="utf-8"),"\n")[[1]] | |
if (lines[1] == "") { | |
lines[1] <- lau[1] | |
} | |
if (lines[1] != lau[1]) { | |
warning("Deviant header for id ",ids[i],": ", lau[1]) | |
} | |
lines[i + 1] <- lau[2] | |
Sys.sleep(3) | |
} | |
writeLines(lines,"laureates.csv") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment