Django Fancy Cron Field
A nice and customizable cron field with great, easy to use UI.
Attention!
To propose features, always open pull requests on the develop branch. It's the branch for features that will go into the next django fancy cronfield feature release.
For fixes for 0.1.x releases, please work on support/0.1.x which contains the next patch release for 0.1.x series.
The master branch is the current stable release, the one released on PyPI. Changes based on master will not be accepted.
Features
- Cron widget providing nice gentle select UI
- Cron format validation
- Custom django field
- Ability to specify a daily run limit
Requirements
Fancy cron field requires Django version 1.5 up to 1.9, Python 2.6, 2.7, 3.3, 3.4 and python-crontab 1.9.3.
Documentation
Please head over to documentation for all the details on how to install, customize and use the django fancy cronfield.
Tutorial
http://django-fancy-cronfield.readthedocs.org/en/latest/intro/index.html
Installation
pip install django-fancy-cronfield
Basic usage
Add 'fancy_cronfield' to your INSTALLED_APPS, then use CronField like any regular model field:
from django.db import models
from fancy_cronfield.fields import CronField
class MyModel(models.Model):
timing = CronField()
Getting Help
Please Write to our mailing list.
Credits
- Crontab API features borrowed from python-crontab.