Skip to content

Instantly share code, notes, and snippets.

@mdshw5
Created July 23, 2014 13:33
Show Gist options
  • Save mdshw5/ed99bc015555aa089241 to your computer and use it in GitHub Desktop.
Save mdshw5/ed99bc015555aa089241 to your computer and use it in GitHub Desktop.
biostars 107358
from urllib.request import urlopen
with open('url_file.txt') as urls:
for url in urls:
with urlopen(url) as page:
for line in page:
# do something
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment