-
-
Save reiaoki/26dc5fe15b244af1614a8bdbb949b802 to your computer and use it in GitHub Desktop.
Searching PubMed with Biopython
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
# you need to install Biopython: | |
# pip install biopython | |
# Full discussion: | |
# https://marcobonzanini.wordpress.com/2015/01/12/searching-pubmed-with-python/ | |
from Bio import Entrez | |
def search(query): | |
Entrez.email = '[email protected]' | |
handle = Entrez.esearch(db='pubmed', | |
sort='relevance', | |
retmax='20', | |
retmode='xml', | |
term=query) | |
results = Entrez.read(handle) | |
return results | |
def fetch_details(id_list): | |
ids = ','.join(id_list) | |
Entrez.email = '[email protected]' | |
handle = Entrez.efetch(db='pubmed', | |
retmode='xml', | |
id=ids) | |
results = Entrez.read(handle) | |
return results | |
if __name__ == '__main__': | |
results = search('fever') | |
id_list = results['IdList'] | |
papers = fetch_details(id_list) | |
for i, paper in enumerate(papers): | |
print("%d) %s" % (i+1, paper['MedlineCitation']['Article']['ArticleTitle'])) | |
# Pretty print the first paper in full | |
#import json | |
#print(json.dumps(papers[0], indent=2, separators=(',', ':'))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment