Python3之 contextlib
2021-05-07 10:29
标签:contex ror final 简单 span port tps none text Python中当我们们打开文本时,通常会是用with语句,with语句允许我们非常方便的使用资源,而不必担心资源没有关闭。 然而,并不是只有open()函数返回fp对象才能使用 with 语句。实际上,任何对象,只要正确实现上下文管理,就可以使用with语句。 实现上下文管理是通过 __enter__ 和 __exit__ 这两个方法实现的。例如,下面的class实现了这两个方法: 这样我们可以把自己写的资源对象用于 with 语句。 编写 __enter__ 和 __exit__ 仍然很繁琐,因此Python的标准库 contextlib 提供了更简单的写法,上面的代码可以改写为: @contextmanager 这个装饰器接受一个 generator,用 yield 语句把 with ... as var 把变量输出去,然后,with 语句就可以正常的工作了: 很多时候,我们希望在某段代码执行前后自动执行特定代码,也可以用 @contextmanager实现。 上述代码执行结果: 代码的执行顺序是: 如果一个对象没有实现上下文,就不能使用 with 语句,但是可以用 closing() 来把对象变为上下文对象。 closing 也是一个经过 @contextmanager 装饰的generator 它的作用就是把任意对象变为上下文对象,并支持 with语句。 Python3之 contextlib 标签:contex ror final 简单 span port tps none text 原文地址:https://www.cnblogs.com/springsnow/p/13183749.htmlwith open(‘/path/filename‘, ‘r‘) as f:
f.read()
class Query(object):
def __init__(self, name):
self.name = name
def __enter__(self):
print(‘Begin‘)
return self
def __exit__(self, exc_type, exc_value, traceback):
if exc_type:
print(‘Error‘)
else:
print(‘End‘)
def query(self):
print(‘Query info about %s...‘ % self.name)
with Query(‘Bob‘) as q:
q.query()
一、@contextmanager
from contextlib import contextmanager
class Query(object):
def __init__(self, name):
self.name = name
def query(self):
print(‘Query info about %s...‘ % self.name)
@contextmanager
def create_query(name):
print(‘Begin‘)
q = Query(name)
yield q
print(‘End‘)
with create_query(‘Bob‘) as q:
q.query()
@contextmanager
def tag(name):
print("" % name)
yield
print("%s>" % name)
with tag("h1"):
print("hello")
print("world")
hello
world
/
h1>
.
二、@closing
from contextlib import closing
from urllib.request import urlopen
with closing(urlopen(‘https://www.python.org‘)) as page:
for line in page:
print(line)
@contextmanager
def closing(thing):
try:
yield thing
finally:
thing.close()
下一篇:python 异常类型
文章标题:Python3之 contextlib
文章链接:http://soscw.com/index.php/essay/83641.html