使用 Python 中的 Requests 模組下載映像
為了使用 requests 模組從網路下載並儲存映像,開發人員遇到困難。提供的程式碼最初可以工作,但是使用 requests 修改後的程式碼會導致錯誤。
該錯誤是由於使用了請求回應中的不正確屬性而導致的。若要使用請求成功擷取影像,有兩種選擇:
使用response.raw檔案物件
利用response.raw屬性傳回原始資料回覆。解碼壓縮響應(例如,使用 GZIP 或 deflate)不會自動處理。若要強制解壓縮,請將decode_content 屬性設為True。隨後,使用 Shutil.copyfileobj() 將資料串流傳輸到檔案物件。
import requests import shutil r = requests.get(settings.STATICMAP_URL.format(**data), stream=True) if r.status_code == 200: with open(path, 'wb') as f: r.raw.decode_content = True shutil.copyfileobj(r.raw, f)
迭代回應
另一種方法涉及迭代回應,確保資料解壓縮。
r = requests.get(settings.STATICMAP_URL.format(**data), stream=True) if r.status_code == 200: with open(path, 'wb') as f: for chunk in r: f.write(chunk)
可以使用以下指令自訂區塊大小Response.iter_content() 方法。
r = requests.get(settings.STATICMAP_URL.format(**data), stream=True) if r.status_code == 200: with open(path, 'wb') as f: for chunk in r.iter_content(1024): f.write(chunk)
請記住以二進位模式開啟目標檔案以防止換行符號轉換並設定stream=True 以避免佔用記憶體的完整下載。
以上是如何利用Python的Requests模組高效率下載圖片?的詳細內容。更多資訊請關注PHP中文網其他相關文章!