Skip to content

Latest commit

 

History

History
21 lines (15 loc) · 320 Bytes

README.md

File metadata and controls

21 lines (15 loc) · 320 Bytes

Task Scheduler

A simple task scheduling system for Django that runs jobs at specified times.

Installation/Usage

To install, simply do:

pip install django-task-scheduler

To configure, add the following to your settings.py:

INSTALLED_APPS = (
    ...
    'task_scheduler',
    ...
)