Skip to content

Instantly share code, notes, and snippets.

@drhanlau
Created March 3, 2016 07:15
Show Gist options
  • Save drhanlau/e44e06f5edd83132c62f to your computer and use it in GitHub Desktop.
Save drhanlau/e44e06f5edd83132c62f to your computer and use it in GitHub Desktop.
ImageDownloader
import urllib
class ImageDownloader():
def download(self, filename):
urllib.urlretrieve(self.url, filename)
img = ImageDownloader()
img.url = "http://i.imgur.com/Ph4Xw.jpg"
img.download("duck.jpg")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment