django-tasks-celery
Celery backend for Django 6.0's built-in django.tasks framework. Implements BaseTaskBackend so that @task / enqueue() dispatches to Celery workers.
Features
- Full
BaseTaskBackendimplementation:enqueue,get_result, system checks - Priority mapping (Django -100..100 to Celery/AMQP 0..255)
- Deferred execution via Celery's
eta - Sync and async task function support
- Django signals:
task_enqueued,task_started,task_finished - Dynamic
supports_get_resultbased on Celery result backend - Worker-side task auto-discovery (no manual registration needed)