A simple task scheduling system for Django that runs jobs at specified times.
To install, simply do:
pip install django-task-scheduler
To configure, add the following to your settings.py
:
INSTALLED_APPS = (
...
'task_scheduler',
...
)