“Baixe a imagem Python” Respostas de código

Baixe a imagem Python

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)
MitroGr

Python Download Imagem do URL

import urllib.request
imgURL = "http://site.meishij.net/r/58/25/3568808/a3568808_142682562777944.jpg"

urllib.request.urlretrieve(imgURL, "D:/abc/image/local-filename.jpg")
Rick C-137

Baixe a imagem Python

import requests
with open('00000001.jpg','wb') as f:
	f.write(requests.get('http://www.gunnerkrigg.com//comics/00000001.jpg').content)
Nice Narwhal

Respostas semelhantes a “Baixe a imagem Python”

Perguntas semelhantes a “Baixe a imagem Python”

Mais respostas relacionadas para “Baixe a imagem Python” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código