Skip to main content

Create APIs that work as decorators and as context managers.

Project description

If you’re a library or framework creator then it is nice to be able to create APIs that can be used either as decorators or context managers.

The contextdecorator module is a backport of new features added to the contextlib module in Python 3.2. contextdecorator works with Python 2.4+ including Python 3.

Context managers inheriting from ContextDecorator have to implement __enter__ and __exit__ as normal. __exit__ retains its optional exception handling even when used as a decorator.

Example:

from contextdecorator import ContextDecorator

class mycontext(ContextDecorator):
   def __enter__(self):
      print 'Starting'
      return self

   def __exit__(self, *exc):
      print 'Finishing'
      return False

>>> @mycontext()
... def function():
...    print 'The bit in the middle'
...
>>> function()
Starting
The bit in the middle
Finishing

>>> with mycontext():
...    print 'The bit in the middle'
...
Starting
The bit in the middle
Finishing

Existing context managers that already have a base class can be extended by using ContextDecorator as a mixin class:

from contextdecorator import ContextDecorator

class mycontext(ContextBaseClass, ContextDecorator):
   def __enter__(self):
      return self

   def __exit__(self, *exc):
      return False

contextdecorator also contains an implementation of contextlib.contextmanager that uses ContextDecorator. The context managers it creates can be used as decorators as well as in with statements.

from contextdecorator import contextmanager

@contextmanager
def mycontext(*args):
   print 'Started'
   try:
      yield
   finally:
      print 'Finished!'

>>> @mycontext('some', 'args')
... def function():
...    print 'In the middle'
...
Started
In the middle
Finished!

>>> with mycontext('some', 'args'):
...    print 'In the middle'
...
Started
In the middle
Finished!

Repository and issue tracker:

The project is available for download from PyPI so it can be easily installed:

pip install -U contextdecorator
easy_install -U contextdecorator

The tests require unittest2 to run.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

contextdecorator-0.10.0.zip (6.8 kB view details)

Uploaded Source

contextdecorator-0.10.0.tar.gz (4.6 kB view details)

Uploaded Source

File details

Details for the file contextdecorator-0.10.0.zip.

File metadata

File hashes

Hashes for contextdecorator-0.10.0.zip
Algorithm Hash digest
SHA256 e6ee12393ea89a6222152cd103d8f55397ff13e08cb513f48ccc2739768b9171
MD5 2ef3ed0500116cc2ee42714b38e2c893
BLAKE2b-256 f68bbb30402c613cb77ab5822ed71ac00f4349231519161ed0265bfb5f5aaae4

See more details on using hashes here.

File details

Details for the file contextdecorator-0.10.0.tar.gz.

File metadata

File hashes

Hashes for contextdecorator-0.10.0.tar.gz
Algorithm Hash digest
SHA256 44645affa722c72b4931d48a4ff9265a8df19373e20e12334bca4ec2104f8619
MD5 779973c0e9502c9fdc7add9628cbb58d
BLAKE2b-256 774303f264fa07fb0f794bfe174751eb6e6e294a89fc53af87ea1cb0df26ac18

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page