Releases: unaisaralegui/opencitingpy
Releases · unaisaralegui/opencitingpy
v0.1.1
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
v0.1.0 First version of the opencitingpy library. Available actions:
All calls to the OpenCitations API: