在Python中,您可以使用以下方法下載圖片:
urllib.request.urlretrieve
函數:這是Python標準庫中的一個函數,可以通過指定URL和文件路徑來下載文件。import urllib.request
url = "https://example.com/image.jpg"
file_path = "path/to/save/image.jpg"
urllib.request.urlretrieve(url, file_path)
requests
:requests
庫是一個流行的HTTP請求庫,可用于發(fā)送HTTP請求和處理響應。import requests
url = "https://example.com/image.jpg"
file_path = "path/to/save/image.jpg"
response = requests.get(url)
with open(file_path, "wb") as file:
file.write(response.content)
wget
:wget
庫是一個用于下載文件的庫,可以在Python中使用。import wget
url = "https://example.com/image.jpg"
file_path = "path/to/save/image.jpg"
wget.download(url, file_path)
這些方法都可以通過指定URL和文件路徑來下載圖片。請根據您的需求選擇最適合的方法。