Python3爬虫 – requests库的requests.exceptions所有异常详细说明
requests 全部异常详细说明
- requests.exceptions.HTTPError:HTTP错误
- requests.exceptions.ConnectionError:连接错误
- requests.exceptions.ProxyError:代理错误
- requests.exceptions.SSLError:SSL错误
- requests.exceptions.Timeout:请求超时错误,包含requests.exceptions.ConnectTimeout和requests.exceptions.ReadTimeout
- requests.exceptions.ConnectTimeout:尝试连接到远程服务器时错误
- requests.exceptions.ReadTimeout:服务器未在分配的时间内发送任何数据
- requests.exceptions.URLRequired:url格式错误
- requests.exceptions.TooManyRedirects:过多的重定向
- requests.exceptions.MissingSchema:网址架构(例如http或https)丢失
- requests.exceptions.InvalidSchema:无效的架构
- requests.exceptions.InvalidURL:无效的url
- requests.exceptions.InvalidHeader:无效的请求头
- requests.exceptions.InvalidProxyURL:无效的代理链接
- requests.exceptions.ChunkedEncodingError:服务器声明了分块编码,但发送了无效的分块
- requests.exceptions.ContentDecodingError:解码响应内容失败
- requests.exceptions.StreamConsumedError:该响应的内容已被占用
- requests.exceptions.RetryError:自定义重试逻辑失败
- requests.exceptions.UnrewindableBodyError:尝试快退正文时,请求遇到错误
本文作者:StubbornHuang
版权声明:本文为站长原创文章,如果转载请注明原文链接!
原文标题:Python3爬虫 – requests库的requests.exceptions所有异常详细说明
原文链接:https://www.stubbornhuang.com/552/
发布于:2020年01月02日 16:13:07
修改于:2023年06月26日 22:48:03
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。
评论
50