Last updated:
0 purchases
b3j0f.task 0.0.4
Description
Python object configuration library in reflective and distributed concerns.
Links
Homepage
PyPI
Documentation
Installation
pip install b3j0f.task
Features
This library performs execution of registered python routines.
Examples
from b3j0f.task import register, run
@register
@register('mytask')
def task(a, *args, **kwargs):
return a
register(task, name='lastname')
assert run({'name': 'task', 'kwargs': {a=1}}) == 1
assert run({'name': 'mytask', 'args': [2]}) == 2
assert run({'name': 'lastname', 'kwargs: {'a': 3}}) == 3
Perspectives
wait feedbacks during 6 months before passing it to a stable version.
Cython implementation.
Donation
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.