溫馨提示×

怎么用Python實現(xiàn)輕松下載照片

小億
124
2023-10-30 13:23:02
欄目: 編程語言

要使用Python下載照片,你可以使用以下步驟:

  1. 導入所需的模塊:

    import requests
    
  2. 指定要下載的圖片的URL:

    image_url = "https://example.com/image.jpg"
    
  3. 發(fā)送GET請求以獲取圖片的二進制數據:

    response = requests.get(image_url)
    
  4. 將響應的內容寫入文件:

    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函數以二進制寫入模式打開一個文件,并將響應的內容寫入文件中。你可以根據自己的需要更改文件名和路徑。

0