aiotasks icon indicating copy to clipboard operation
aiotasks copied to clipboard

A Celery like task manager that distributes Asyncio coroutines

Results 6 aiotasks issues
Sort by recently updated
recently updated
newest added

not able to install on python3.9, OS Debian bullseye Current Scenario ```shell ashutoshpednekar@Ashutoshs-MacBook-Air ~ % docker run -it python:3.9-bullseye bash root@39c9ba4fc18d:/# pip install aiotasks Collecting aiotasks Downloading aiotasks-1.0.0.tar.gz (21 kB)...

Hi, thanks for the project, the use case seems promising. I've been meaning to test it for a while and ended up installing python 3 to try it and run...

* Documentation at https://aiotasks.readthedocs.io/en/latest/quickstart.html#send-the-tasks seems incorrect ``` >>> import asyncio >>> from aiotasks import build_manager, send_task Traceback (most recent call last): File "", line 1, in ImportError: cannot import name...

manager=build_manager("redis://192.168.1.93:6379/12") why?

Hi, thank you very much for the project! I have a question. It's working with celery: ```task_id = celery.send_task('task_name')``` Celery `send_task` returns id and I can use it in other...

Hi, I found the documentation of this page is incorrect: https://aiotasks.readthedocs.io/en/latest/quickstart.html#sending-info-to-tasks-wait-for-response The method should be with .delay, .wait is not exists.