├── .gitignore ├── .travis.yml ├── CHANGELOG ├── ISSUE_TEMPLATE.md ├── LICENSE ├── README.rst ├── django_crontab ├── __init__.py ├── app_settings.py ├── crontab.py ├── management │ ├── __init__.py │ └── commands │ │ ├── __init__.py │ │ └── crontab.py └── models.py ├── setup.cfg ├── setup.py └── tests ├── __init__.py ├── cron.py ├── settings.py ├── test_command.py └── test_crontab.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | .idea 3 | .coverage 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraiz/django-crontab/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraiz/django-crontab/HEAD/CHANGELOG -------------------------------------------------------------------------------- /ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraiz/django-crontab/HEAD/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraiz/django-crontab/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraiz/django-crontab/HEAD/README.rst -------------------------------------------------------------------------------- /django_crontab/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_crontab/app_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraiz/django-crontab/HEAD/django_crontab/app_settings.py -------------------------------------------------------------------------------- /django_crontab/crontab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraiz/django-crontab/HEAD/django_crontab/crontab.py -------------------------------------------------------------------------------- /django_crontab/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_crontab/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_crontab/management/commands/crontab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraiz/django-crontab/HEAD/django_crontab/management/commands/crontab.py -------------------------------------------------------------------------------- /django_crontab/models.py: -------------------------------------------------------------------------------- 1 | # Move along folks, nothing to see here! 2 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal = 1 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraiz/django-crontab/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | import os 2 | 3 | os.environ.setdefault("DJANGO_SETTINGS_MODULE", "settings") 4 | -------------------------------------------------------------------------------- /tests/cron.py: -------------------------------------------------------------------------------- 1 | 2 | 3 | def cron_job(): 4 | pass 5 | -------------------------------------------------------------------------------- /tests/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraiz/django-crontab/HEAD/tests/settings.py -------------------------------------------------------------------------------- /tests/test_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraiz/django-crontab/HEAD/tests/test_command.py -------------------------------------------------------------------------------- /tests/test_crontab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraiz/django-crontab/HEAD/tests/test_crontab.py --------------------------------------------------------------------------------