python - 使用requests获取网页源码的时候报错:failed to decode gzip
PHPz
PHPz 2017-04-17 14:22:56
0
1
2275

源码:

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吗?

PHPz
PHPz

学习是最好的投资!

모든 응답(1)
刘奇

这样就好了

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

可能是因为这网站没用gzip压缩吧

최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿
회사 소개 부인 성명 Sitemap
PHP 중국어 웹사이트:공공복지 온라인 PHP 교육,PHP 학습자의 빠른 성장을 도와주세요!