2016-11-03 46 views

回答

1

當您獲取頁面時,您只需下載頁面本身。

import requests 

url = 'https://stackoverflow.com/questions/40394209/python-requests-how-to-get-a-page-without-downloading-all-images' 

# This will yield only the HTML code 
response = requests.get(url) 

print(response.text) 

頁面HTML包含對圖像的引用,但GET請求沒有跟隨它們。

+0

對不起,我很笨,有時會問真正愚蠢的問題。這只是JavaScript和地圖加載。我會接受你的回答。難怪這個問題沒有谷歌的結果。 – userqwerty1

+0

一切都好!得到一些咖啡:P –

相關問題