Download remote images (Python)

import random import urllib.request as urls def download_image(url): # Generate an aleatory name with .JPG name = random.randrange(1, 1000) complete_name = str(name) + ".jpg" # Download the image and save it with the new name urls.urlretrieve(url, complete_name) url = "https://s-media-cache-ak0.pinimg.com/236x/2b/87/17/2b8717e385f04061c8b6b78cd4c663c7.jpg" download_image(url)
How to download an internet image with Python using the "urllib" requests module.

Be the first to comment

You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.