溫馨提示×

python下載圖片的方法有哪些

小億
229
2023-11-28 03:58:31
欄目: 編程語言

在Python中,您可以使用以下方法下載圖片:

  1. 使用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)
  1. 使用第三方庫requestsrequests庫是一個流行的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)
  1. 使用第三方庫wgetwget庫是一個用于下載文件的庫,可以在Python中使用。
import wget

url = "https://example.com/image.jpg"
file_path = "path/to/save/image.jpg"

wget.download(url, file_path)

這些方法都可以通過指定URL和文件路徑來下載圖片。請根據您的需求選擇最適合的方法。

0