django-crontab
django-crontab copied to clipboard
dead simple crontab powered job scheduling for django.
#### Environment & Versions * Operating system: windows 10 * Python: 3.3 * Django: 2.1.0 * django-crontab: lastest release Hi everyone. I want to thanks you for this amazing django...
hi, I want to set a cron function as per your steps but this error ModuleNotFoundError: No module named 'fcntl' occcured.
#### Environment & Versions * Operating system: Linux * Python: 3.6.3 * Django: 2.1.1 * django-crontab: 0.7.1 #### Settings * My `django-crontab` settings: ```python CRONJOBS = [ ('0 * *...
#### Environment & Versions * Operating system: Amazon Linux * Python: 2.7.12 * Django: 1.11.10 * django-crontab: All the django-crontab commands that run and spawn a UNIX process, none of...
#### Environment & Versions * Operating system: centos 6 * Python: 2.6 * Django: 1.6.10 * django-crontab: 0.6.0 #### Settings * My `django-crontab` settings: ```python INSTALLED_APPS = ( 'django.contrib.admin', 'django.contrib.auth',...
## Situation I have read https://github.com/kraiz/django-crontab/issues/31 and https://github.com/kraiz/django-crontab/issues/67. I have tried the following setting: ```python LOGGERS = { # ... 'handlers': { 'console': { 'class': 'logging.StreamHandler', 'formatter': 'normal', }, 'cron_log_file':...
in terminal 1 i need to execute rebuild index command 2 while executing it asking schema name in terminal (Enter DB Schema ('?' to list schemas): xxxx) where xxx id...
环境和版本 操作系统:Ubuntu16.04 Python:3.5.2 Django:1.11 细节 CRONJOBS = [ ('*/1 * * * *', 'apps.about.cron.test', [10, 2], '>> /home/python/Desktop/Django_obj/my_website/static/test.log'), ]
I run a job at the same time every day, and when the new day comes, will I cancel that job from the previous day? Can I use a timeout?