Last active
August 9, 2017 02:12
-
-
Save max-mapper/95b16e2bcd4c295d77ccfd6b5615370f to your computer and use it in GitHub Desktop.
crossref paginated works metadata streaming archiver
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
var request = require('request') | |
var base = 'https://api.crossref.org/works?filter=type:dataset&rows=1000' | |
doNext() | |
function doNext (cursor) { | |
if (!cursor) cursor = '*' | |
var url = base + '&cursor=' + cursor | |
console.error('GET', url) | |
request(url, {json: true}, function (err, resp, json) { | |
if (err || resp.statusCode > 299) throw err || new Error(resp.statusCode + ': ' + JSON.stringify(json)) | |
var results = json.message.items | |
var next = json.message['next-cursor'] | |
if (json.status !== 'ok') throw new Error(json) | |
results.forEach(function (r) { | |
console.log(JSON.stringify(r)) | |
}) | |
if (!results.length || !next) return console.error('done') | |
doNext(encodeURIComponent(next)) | |
}) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment