要使用Python下載照片,你可以使用以下步驟:
導入所需的模塊:
import requests
指定要下載的圖片的URL:
image_url = "https://example.com/image.jpg"
發(fā)送GET請求以獲取圖片的二進制數據:
response = requests.get(image_url)
將響應的內容寫入文件:
with open("image.jpg", "wb") as file:
file.write(response.content)
完整代碼如下所示:
import requests
image_url = "https://example.com/image.jpg"
response = requests.get(image_url)
with open("image.jpg", "wb") as file:
file.write(response.content)
在這個例子中,我們使用了requests模塊來發(fā)送GET請求并獲取圖片的二進制數據。然后,我們使用open
函數以二進制寫入模式打開一個文件,并將響應的內容寫入文件中。你可以根據自己的需要更改文件名和路徑。