Created
August 16, 2014 14:02
-
-
Save some-stuff/6a3a6f52cce30e36f1a5 to your computer and use it in GitHub Desktop.
Download file
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
def download(url, dest): | |
with urllib.request.urlopen(url) as response, open(dest, 'wb') as out_file: | |
shutil.copyfileobj(response, out_file) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment