python怎么獲取網(wǎng)頁(yè)圖片

小億
131
2023-08-17 18:28:54

可以使用Python的requests庫(kù)來(lái)獲取網(wǎng)頁(yè)圖片。具體步驟如下:

  1. 導(dǎo)入requests庫(kù):import requests

  2. 發(fā)送HTTP請(qǐng)求獲取網(wǎng)頁(yè)內(nèi)容:response = requests.get(url)

  3. 檢查請(qǐng)求是否成功:response.status_code,如果返回值為200,則表示請(qǐng)求成功。

  4. 獲取圖片的二進(jìn)制數(shù)據(jù):image_data = response.content

  5. 將圖片二進(jìn)制數(shù)據(jù)保存到本地文件中:with open('image.jpg', 'wb') as f: f.write(image_data)

完整的示例代碼如下:

import requests
url = 'http://example.com/image.jpg'
response = requests.get(url)
if response.status_code == 200:
image_data = response.content
with open('image.jpg', 'wb') as f:
f.write(image_data)

以上代碼會(huì)將網(wǎng)頁(yè)上的圖片保存到當(dāng)前目錄下的image.jpg文件中。

0