Last active
May 17, 2024 17:43
-
-
Save jrsmith3/5513926 to your computer and use it in GitHub Desktop.
Python method to access crossref.org DOI bibtex metadata resolver
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
import requests | |
def doi2bib(doi): | |
""" | |
Return a bibTeX string of metadata for a given DOI. | |
""" | |
url = "http://dx.doi.org/" + doi | |
headers = {"accept": "application/x-bibtex"} | |
r = requests.get(url, headers = headers) | |
return r.text |
thank you for the code, could you please how can I download entire file of DOI in zenobi using python, imagine this file
https://zenodo.org/record/3269732#.XVGJJehKhaS
how can I download the entire file. many thanks
That's great!!
thank you!
I would change this a little to accommodate for easier copy-paste that may include the whole http://dx.doi.org/
url:
def doi2bib(doi):
...if "http://dx.doi.org/" not in doi:`
......doi = "http://dx.doi.org/" + doi
...headers = {"accept": "application/x-bibtex"}
...r = requests.get(doi, headers = headers)
...return r.text
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
can you explain it please, I would be very thankful