django-huey
django-huey copied to clipboard
A django integration for huey task queue that supports multi queue management
Results
2
django-huey issues
Sort by
recently updated
recently updated
newest added
I am trying to retrieve a Task object from my tasks so that I can wait for multiple tasks at the same time. My current code setup is something like...
Given the below `tasks.py`, and settings: ```python # tasks.py from django_huey import task, enqueue @task() def count_beans(num_beans: int): print(f'Counted {num_beans} beans.') @task(queue='foo') def count_foos(num_foos: int): print(f'Counted {num_foos} foos.') @task() def...