An ORM-based backend for Django Tasks, enabling task scheduling and execution using the database as the result store. Current version 0.12.0, requires Python >=3.10 and Django's async tasks framework. Released occasionally with minor updates.
pip install django-tasks-dbNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Define a simple task and run it synchronously with DBBackend.
Call django_tasks_db.settings.apply_defaults() or add 'django_tasks_db' to INSTALLED_APPS and run migrate.
Run python manage.py migrate django_tasks_db after installing the library.
Change imports to from django_tasks_db.backends import DBBackend.
Use PostgreSQL or MySQL for production, or configure a proper database backend that handles concurrent writes.