Skip to content

Instantly share code, notes, and snippets.

@apwan
Created September 9, 2018 16:13
Show Gist options
  • Save apwan/1653c1378a5fd7a603e193464a06b48e to your computer and use it in GitHub Desktop.
Save apwan/1653c1378a5fd7a603e193464a06b48e to your computer and use it in GitHub Desktop.
python download file
#!/usr/bin/env python
import urllib.request
def get_img(img_src, img_name):
contents = urllib.request.urlopen(img_src).read()
with open(img_name, 'wb') as f
f.write(contents)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment