requests.exceptions.ConnectionError: ('Connection aborted.', ConnectionResetError(104, 'Connection reset by peer'))
时间: 2023-08-20 17:14:40 浏览: 286
connection reset by peer问题总结及解决方案
5星 · 资源好评率100%
引用[1]中的错误信息是requests.exceptions.ConnectionError: ('Connection aborted.', ConnectionResetError(104, 'Connection reset by peer'))。这个错误通常是由于网络连接问题引起的。引用[2]和引用[3]中提供了一种处理这个错误的方法,即使用try-except语句来捕获ConnectionError异常,并在异常处理块中进行相应的处理。在这种情况下,可以将r.status_code设置为"Connection refused"来表示连接被拒绝。这样可以避免程序因为连接错误而中断运行。
阅读全文