Flask接口签名sign原理与实例代码浅析
738
2022-08-28
Python requests请求中的异常总结(python能做什么)
一. 连接超时
服务器在指定时间内没有应答,抛出异常 requests.exceptions.ConnectTimeout
requests.get('timeout=0.001)# 抛出异常requests.exceptions.ConnectTimeout: HTTPConnectionPool(host='github.com', port=80): Max retries exceeded with url: / (Caused by ConnectTimeoutError(
二. 连接、读取超时
若分别指定连接和读取的超时时间,服务器在指定时间没有应答,抛出异常 requests.exceptions.ConnectTimeout- timeout=([连接超时时间], [读取超时时间])
- 连接:客户端成功连接服务器的时间- 读取:服务器收到请求并成功处理请求的时间
requests.get('timeout=(6.05, 0.01))# 抛出异常requests.exceptions.ReadTimeout: HTTPConnectionPool(host='github.com', port=80): Read timed out. (read timeout=0.01)
三. 未知的服务器
请求未知的服务器,抛出异常requests.exceptions.ConnectionError
requests.get('timeout=(6.05, 27.05))# 抛出异常requests.exceptions.ConnectionError: HTTPConnectionPool(host='github.comasf', port=80): Max retries exceeded with url: / (Caused by NewConnectionError('
四. 代理连接不上
代理服务器拒绝与HTTP客户端建立连接;或者请求服务器端口拒绝连接或未开放,抛出异常requests.exceptions.ProxyError
requests.get('timeout=(6.05, 27.05), proxies={""192.168.10.1:800"})# 抛出异常requests.exceptions.ProxyError: HTTPConnectionPool(host='192.168.10.1', port=800): Max retries exceeded with url: (Caused by ProxyError('Cannot connect to proxy.', NewConnectionError('
五. 连接代理超时
连接代理服务器没有响应,抛出异常requests.exceptions.ConnectTimeout
requests.get('timeout=(6.05, 27.05), proxies={""10.200.123.123:800"})# 抛出错误requests.exceptions.ConnectTimeout: HTTPConnectionPool(host='10.200.123.123', port=800): Max retries exceeded with url: (Caused by ConnectTimeoutError(
六. 代理读取超时
说明HTTP与代理服务器成功建立连接,代理服务器也成功发送请求到目标服务器,但是代理服务器读取目标服务器资源超时;即使代理服务器访问或者读取目标服务器的资源速度很快,但是如果代理服务器访问的目标服务器器返回资源过慢导致超时,这个锅还是代理服务器背;
例如:假定代理可用,timeout参数代表向代理服务器的连接和读取过程的超时时间(不用关心代理服务器是否与目标服务器连接和读取成功)。
requests.get('timeout=(2, 0.01), proxies={""192.168.10.1:800"})# 抛出错误requests.exceptions.ReadTimeout: HTTPConnectionPool(host='192.168.10.1:800', port=1080): Read timed out. (read timeout=0.5)
七. 网络环境异常
可能是断网导致,抛出异常 requests.exceptions.ConnectionError
requests.get('timeout=(6.05, 27.05))# 抛出异常requests.exceptions.ConnectionError: HTTPConnectionPool(host='github.com', port=80): Max retries exceeded with url: / (Caused by NewConnectionError('
【注意】所有的Requests显式抛出的异常都继承至 requests.exceptions.RequestException 类。
八. 官网的一些参考
你可以告诉 requests 在经过以 timeout 参数设定的秒数时间之后停止等待响应。基本上所有的生产代码都应该使用这一参数。如果不使用,你的程序可能会永远失去响应:>>> requests.get('timeout=0.001)Traceback (most recent call last): File "
去期待陌生,去拥抱惊喜。
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~