Skip to content

Instantly share code, notes, and snippets.

@fgassert
Created July 6, 2015 14:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fgassert/7b0ad964b01390224150 to your computer and use it in GitHub Desktop.
Save fgassert/7b0ad964b01390224150 to your computer and use it in GitHub Desktop.
#!/usr/bin/env python
import urllib2
def download(url, outfile):
# Download file at URL to OUTFILE
with urllib2.urlopen(url) as response:
with open(outfile, 'wb') as f:
f.write(response.read())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment