Skip to content

Files

Latest commit

author
Scott Walton
Oct 4, 2016
5b60322 · Oct 4, 2016

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',
    ...
)