Skip to content

Releases: unaisaralegui/opencitingpy

v0.1.1

20 May 10:17
Compare
Choose a tag to compare

Minor update, now the metadata class automatically parses the author, citations, and references string returned by the API and saves them as lists.

Previously:

import opencitingpy
citation_client = opencitingpy.client.Client()
citation_client.get_metadata(doi)[0].citation
# doi1; doi2; doi3

Now using the same code you can directly get the list.

import opencitingpy
citation_client = opencitingpy.client.Client()
citation_client.get_metadata(doi)[0].citation
# [doi1, doi2, doi3]

v0.1.0

19 May 15:12
Compare
Choose a tag to compare

v0.1.0 First version of the opencitingpy library. Available actions:

All calls to the OpenCitations API: