每运行一段时间就会报这种错误


OpenSSL.SSL.SysCallError: (104, ‘ECONNRESET’)
During handling of the above exception, another exception occurred:

OSError: (104, ‘ECONNRESET’)
During handling of the above exception, another exception occurred:

urllib3.exceptions.ProtocolError: (‘Connection aborted.’, OSError("(104, ‘ECONNRESET’)"))
During handling of the above exception, another exception occurred:

requests.exceptions.ConnectionError: (‘Connection aborted.’, OSError("(104, ‘ECONNRESET’)"))

请问是用的哪个库,调用的什么方法出现的?

python-binance这个库,get_open_orders这个方法。但是根据我的观察这个错误回随机出现。

这可能因为request在发http的请求的时候,会去复用http session, 如果某种原因session不可用,就会出错。
一般来说,可以catch这样错误,然后retry就行了。