Skip to content

Instantly share code, notes, and snippets.

View alcantarar's full-sized avatar
🌮
Twitter: @Ryan_Alcantara_

Ryan Alcantara alcantarar

🌮
Twitter: @Ryan_Alcantara_
View GitHub Profile
@alcantarar
alcantarar / search_biopython.py
Last active June 8, 2018 21:01 — forked from bonzanini/search_biopython.py
Searching PubMed with Biopython
# 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 = 'your.email@example.com'