a-task-queue
Easily create and run tasks (=function calls) with almost seamless transition between Local development and Distributed deployment."
Usage
from ataskq import TaskQ, Task, targs
from ataskq.tasks_utils import hello_world, dummy_args_task
def hello_world():
print("hello world")
def task_with_args(*args, **kwargs):
print(f"task_with_args args: {args}, kwargs: {kwargs}")
tr = TaskQ().create_job()
tr.add_tasks(
[
Task(entrypoint=hello_world),
Task(entrypoint=task_with_args, targs=targs("arg0", "arg1", kwarg1=10, kwarg2="this is kwarg2")),
]
)
tr.run()
more example can be found here
Contributer
to setup project run
./contrib/setup.sh
vs code
to get nominal vscode settings run
./contrib/.vscode/init.sh