Skip to main content

Better living through Python with decorators

Project description

Author:

Michele Simionato

E-mail:

michele.simionato@gmail.com

Requires:

Python from 2.6 to 3.7

Download page:

http://pypi.python.org/pypi/decorator

Installation:

pip install decorator

License:

BSD license

The goal of the decorator module is to make it easy to define signature-preserving function decorators.

Installation

If you are lazy, just perform

$ pip install decorator

which will install just the module on your system.

If you prefer to install the full distribution from source, including the documentation, clone the GitHub repo or download the tarball, unpack it and run

$ pip install .

in the main directory, possibly as superuser.

Testing

If you have the source code installation you can run the tests with

$ python src/tests/test.py -v

or (if you have setuptools installed)

$ python setup.py test

Notice that you may run into trouble if in your system there is an older version of the decorator module; in such a case remove the old version. It is safe even to copy the module decorator.py over an existing one, since we kept backward-compatibility for a long time.

Repository

The project is hosted on GitHub. You can look at the source here:

https://github.com/micheles/decorator

Documentation

The documentation has been moved to http://decorator.readthedocs.io/en/latest/ You can download a PDF version of it from http://media.readthedocs.org/pdf/decorator/latest/decorator.pdf

For the impatient

Here is an example of how to define a family of decorators tracing slow operations:

from decorator import decorator

@decorator
def warn_slow(func, timelimit=60, *args, **kw):
    t0 = time.time()
    result = func(*args, **kw)
    dt = time.time() - t0
    if dt > timelimit:
        logging.warn('%s took %d seconds', func.__name__, dt)
    else:
        logging.info('%s took %d seconds', func.__name__, dt)
    return result

@warn_slow  # warn if it takes more than 1 minute
def preprocess_input_files(inputdir, tempdir):
    ...

@warn_slow(timelimit=600)  # warn if it takes more than 10 minutes
def run_calculation(tempdir, outdir):
    ...

Enjoy!

Project details


Download files

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

Source Distribution

decorator-4.3.2.tar.gz (34.9 kB view details)

Uploaded Source

Built Distribution

decorator-4.3.2-py2.py3-none-any.whl (9.1 kB view details)

Uploaded Python 2Python 3

File details

Details for the file decorator-4.3.2.tar.gz.

File metadata

  • Download URL: decorator-4.3.2.tar.gz
  • Upload date:
  • Size: 34.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: Python-urllib/3.6

File hashes

Hashes for decorator-4.3.2.tar.gz
Algorithm Hash digest
SHA256 33cd704aea07b4c28b3eb2c97d288a06918275dac0ecebdaf1bc8a48d98adb9e
MD5 b9270f1d733ddb82ba8122ab3001ded1
BLAKE2b-256 c426b48aaa231644bc875bb348e162d156edb18b994da900a10f4493ea995a2f

See more details on using hashes here.

File details

Details for the file decorator-4.3.2-py2.py3-none-any.whl.

File metadata

  • Download URL: decorator-4.3.2-py2.py3-none-any.whl
  • Upload date:
  • Size: 9.1 kB
  • Tags: Python 2, Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: Python-urllib/3.6

File hashes

Hashes for decorator-4.3.2-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 cabb249f4710888a2fc0e13e9a16c343d932033718ff62e1e9bc93a9d3a9122b
MD5 e3702a4812d22124a5a7d2431bc8d069
BLAKE2b-256 f1cd7c8240007e9716b14679bc217a1baefa4432aa30394f7e2ec40a52b1a708

See more details on using hashes here.

Supported by

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