python httplib 和断开的 TCP 连接
如何使用 httplib 库查明连接是否已断开?看起来像是很基本的东西,但我在这里或谷歌找不到答案。
How do I find out if a connection has been broken using the httplib library? Seems like something so basic yet I can't find the answer on here or google.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
连接时您会得到以下之一:
http://docs.python.org/ Library/httplib.html#httplib.HTTPException
你可以做这样的事情。
示例取自 www.python.org 并进行了编辑
While Connecting You get one of these:
http://docs.python.org/library/httplib.html#httplib.HTTPException
you could do something like this.
Example taken from www.python.org and edited