我应该在 urllib.urlopen() 之后调用 close() 吗?

编程入门 行业动态 更新时间:2024-10-13 10:27:06
本文介绍了我应该在 urllib.urlopen() 之后调用 close() 吗?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

我是 Python 新手,正在阅读别人的代码:

I'm new to Python and reading someone else's code:

是否应该在urllib.urlopen() 后接urllib.close()?否则,会泄漏连接,对吗?

should urllib.urlopen() be followed by urllib.close()? Otherwise, one would leak connections, correct?

推荐答案

必须在 urllib.urlopen, not 在您所考虑的 urllib 模块本身上(正如您提到的 urllib.close - 它不存在).

The close method must be called on the result of urllib.urlopen, not on the urllib module itself as you're thinking about (as you mention urllib.close -- which doesn't exist).

最好的方法:代替 x = urllib.urlopen(u) 等,使用:

The best approach: instead of x = urllib.urlopen(u) etc, use:

import contextlib with contextlib.closing(urllib.urlopen(u)) as x: ...use x at will here...

with 语句和 closure 上下文管理器将确保即使出现异常也能正确关闭.

The with statement, and the closing context manager, will ensure proper closure even in presence of exceptions.

更多推荐

我应该在 urllib.urlopen() 之后调用 close() 吗?

本文发布于:2023-10-09 05:42:08,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1474861.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:urllib   urlopen   close

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!