python 裝飾器:contextlib

來源:互聯網
上載者:User

標籤:replace   microsoft   yield   radius   上下   sys   style   bottom   結果   

上下文環境:

開始資訊

     |

中間輸出資訊

     |

結束資訊


上下文環境1:

#!/usr/bin/python# -*- coding: utf-8 -*-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()        Query('Bob').query()

運行結果:

BeginQuery info about Bob...EndQuery info about Bob...


上下文環境2:@contextmanager

from contextlib import contextmanagerclass Query(object):    def __init__(self, name):        self.name = name    def query(self):        print('Query info about %s...' % self.name)@contextmanagerdef create_query(name):    print('Begin')    q = Query(name)    yield q    print('End')    with create_query('Bob') as q:    q.query()

運行結果:

BeginQuery info about Bob...End


上下文環境3:@contextmanager 再次簡化

from contextlib import contextmanager@contextmanagerdef tag(name):    print("<%s>" % name)    yield    print("</%s>" % name)with tag("h1"):    print("hello")    print("world")

上述代碼執行結果為:

<h1>helloworld</h1>


沒有上下文環境:@closing  通過closing()來把該對象變為內容物件,例如,用with語句使用urlopen():

from contextlib import closingfrom urllib.request import urlopenwith closing(urlopen('https://www.baidu.com')) as page:    for line in page:        print(line)

上述代碼執行結果為:

b'<html>\r\n'b'<head>\r\n'b'\t<script>\r\n'b'\t\tlocation.replace(location.href.replace("https://","http://"));\r\n'b'\t</script>\r\n'b'</head>\r\n'b'<body>\r\n'b'\t<noscript><meta http-equiv="refresh" content="0;url=http://www.baidu.com/"></noscript>\r\n'b'</body>\r\n'b'</html>'


不懂怎麼驗證的closing

from contextlib import contextmanager@contextmanagerdef closing(thing):    try:        yield thing    finally:        thing.close()

上述代碼執行結果為:



python 裝飾器:contextlib

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.