Easily create multi-purpose decorators that have access to the FQN of the original function.
Project description
FQN Decorators
Installation
At the command line::
$ pip install fqn-decorators
Usage
import fqn_decorators.decorators
Introduction
By extending the Decorator
class you can create simple decorators.
Implement the Decorator.before
and/or Decorator.after
methods to perform actions before or after execution of the decorated item.
The Decorator.before
method can access the arguments of the decorated item by changing the Decorator.args
and Decorator.kwargs
attributes.
The Decorator.after
method can access or change the result using the Decorator.result
attribute.
The Decorator.exception
method can be used for do something with an Exception that has been raised.
In all three methods the Decorator.fqn
and Decorator.func
attributes are available.
Simple decorator
Create a simple decorator:
import fqn_decorators
import time
class time_it(fqn_decorators.Decorator):
def before(self):
self.start = time.time()
def after(self):
duration = time.time() - self.start
print("{0} took {1} seconds".format(self.fqn, duration))
@time_it
def my_function():
time.sleep(1)
my_function()
# __main__.my_function took 1.00293397903 seconds
Decorator with arguments
It is also very easy to create a decorator with arguments. It is not possible to create decorators with non-keyworded arguments.
Example:
import fqn_decorators
import time
class threshold(fqn_decorators.Decorator):
def before(self):
self.start = time.time()
def after(self):
duration = time.time() - self.start
treshold = self.params.get('threshold')
if threshold and duration > threshold:
raise Exception('Execution took longer than the threshold')
@threshold(threshold=2)
def my_function():
time.sleep(3)
my_function()
# Exception: Execution took longer than the threshold
Async Decorator
There's also support for decorating coroutines (or any awaitable), for Python >=3.5 only.
The implementation is the same as with the sync version, just inherit from
fqn_decorators.asynchronous.AsyncDecorator
instead.
Example:
import asyncio
import time
from fqn_decorators.asynchronous import AsyncDecorator
class time_it_async(AsyncDecorator):
def before(self):
self.start = time.time()
def after(self):
duration = time.time() - self.start
print("{0} took {1} seconds".format(self.fqn, duration))
@time_it_async
async def coro():
await asyncio.sleep(1)
asyncio.run(coro())
# __main__.coro took 1.001493215560913 seconds
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file fqn-decorators-2.0.2.tar.gz
.
File metadata
- Download URL: fqn-decorators-2.0.2.tar.gz
- Upload date:
- Size: 11.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.0 CPython/3.9.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7b884c5903f25f6eab99f64e02ab2eb2505d36d7d7d40d85192c6ad429012713 |
|
MD5 | f881ea73f0cdc262e1f70d16f524c71e |
|
BLAKE2b-256 | 16f837f234e782fd2c235ac58e47c48e6d9ffb63b9955939c72785785358e838 |
File details
Details for the file fqn_decorators-2.0.2-py3-none-any.whl
.
File metadata
- Download URL: fqn_decorators-2.0.2-py3-none-any.whl
- Upload date:
- Size: 5.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.0 CPython/3.9.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2b70a41803857f7163419f392e088f09d5169f4a9932b91f79016e603ff1cb0f |
|
MD5 | 5042c37f130c0398c683fe633eb73627 |
|
BLAKE2b-256 | b89896b54527490da0f3287c8daed185ff673b4d2357e8fcd9172e26d3cbee13 |