lxping 发表于 2022-12-17 16:29:18

requests库的requests.exceptions所有异常详细说明

本帖最后由 lxping 于 2022-12-17 17:01 编辑

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:尝试快退正文时,请求遇到错误

原文标题:Python3爬虫 – requests库的requests.exceptions所有异常详细说明
原文链接:https://www.stubbornhuang.com/552/
页: [1]
查看完整版本: requests库的requests.exceptions所有异常详细说明