Planning to make an open data GraphQL server, it was natural to first build a small abstraction wrapper which can be re-used in other projects. Basically, the odp library I’m going to talk about is just a simplified client for fetching data from the EU Open Data Portal.
When you have node.js, the module can be installed by npm:
$ npm install odp
The API of the module is pretty simple:
// Get a range of the whole list of datasets:
odp.getDatasets({ query: { limit: 100, offset: 1 } }).then((data) => {
console.log(data);
});
Currently, there are 4 methods which match the brief information from the developers’ corner. Methods are: getDatasets()
, getTags()
, getDataset()
and datasetSearch()
. It could be that there are more options than that in the API, but these are all I know so far as user of the website.
An Examples section is included in the README file for further details.
Suggestions and pull requests are welcome at the github page of the project.
For inspirations of use, more information about the data or introduction training of the benefits of using open data, visit the europeandataportal.eu.