Skip to content

Instantly share code, notes, and snippets.

@erika-dike
Last active June 28, 2017 09:24
Show Gist options
  • Save erika-dike/3a6ff6d4bea031587a219b74806fbaf3 to your computer and use it in GitHub Desktop.
Save erika-dike/3a6ff6d4bea031587a219b74806fbaf3 to your computer and use it in GitHub Desktop.
Auto download images from site
import shutil
def save_image_to_file(image, dirname, suffix):
with open('{dirname}/img_{suffix}.jpg'.format(dirname=dirname, suffix=suffix), 'wb') as out_file:
shutil.copyfileobj(image.raw, out_file)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment