Skip to content

Instantly share code, notes, and snippets.

@AndrewtConroy
Created October 3, 2014 16:41
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 AndrewtConroy/8f327cc73fde1c9082d5 to your computer and use it in GitHub Desktop.
Save AndrewtConroy/8f327cc73fde1c9082d5 to your computer and use it in GitHub Desktop.
import os
import urllib
url = raw_input('Enter url to retrieve: ')
path = raw_input('Enter path to save: ')
if os.path.exists(path):
filename = os.path.split(url)[1]
file = os.path.join(path,filename)
urllib.urlretrieve(url, file)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment