django_periodiq is a Django app that integrates with periodiq a simple scheduler for Dramatiq Task Queue.
- [Django][django] 1.11+
- periodiq
Installation is only available directly from this repo:
pip install git+https://github.com/Sovetnikov/django_periodiq
Add django_periodiq
to installed apps after django_dramatiq:
import os
INSTALLED_APPS = [
"django_dramatiq",
"django_periodiq",
"myprojectapp1",
"myprojectapp2",
# etc...
]
django_periodiq provides a management command you can use to auto-discover task modules (same as django_dramatiq) and run scheduler:
python manage.py runperiodiq
or with debug information:
python manage.py runperiodiq -v2