Update notes for 2019-04-10

This commit is contained in:
2019-04-10 13:44:05 +03:00
parent f472745adb
commit 574a2fefb9
4 changed files with 27 additions and 14 deletions

View File

@ -568,5 +568,12 @@ $ http 'https://api.crossref.org/funders?query=mercator&mailto=me@cgiar.org'
- Otherwise, they provide the funder data in [CSV and RDF format](https://www.crossref.org/services/funder-registry/)
- I did a quick test with the recent IITA records against reconcile-csv in OpenRefine and it matched a few, but the ones that didn't match will need a human to go and do some manual checking and informed decision making...
- If I want to write a script for this I could use the Python [habanero library](https://habanero.readthedocs.io/en/latest/modules/crossref.html):
```
from habanero import Crossref
cr = Crossref(mailto="me@cgiar.org")
x = cr.funders(query = "mercator")
```
<!-- vim: set sw=2 ts=2: -->