搜尋

首頁  >  問答  >  主體

python - 使用requests获取网页源码的时候报错:failed to decode gzip

源码:

import requests
if __name__ == "__main__":
    url = "http://www.wnlwedu.com/"
    r = requests.get(url=url)
    print r.text

报错信息:

requests.exceptions.ContentDecodingError: ('Received response with content-encoding: gzip, but failed to decode it.', error('Error -3 while decompressing: incorrect data check',))

requests不是会自动解压gzip吗?

PHPzPHPz2803 天前2335

全部回覆(1)我來回復

  • 怪我咯

    怪我咯2017-04-17 14:24:56

    這樣就好了

    pythonrequests.get(url=url, headers={'Accept-Encoding': ''})
    

    可能是因為這網站沒用gzip壓縮吧

    回覆
    0
  • 取消回覆