Answers for "download images from url python wget"

13

python download image

import urllib.request

image_url = 'https://bit.ly/2XuVzB4' #the image on the web
save_name = 'my_image.jpg' #local name to be saved
urllib.request.urlretrieve(image_url, save_name)
Posted by: Guest on May-27-2020

Code answers related to "download images from url python wget"

Python Answers by Framework

Browse Popular Code Answers by Language