I want to give celery a try. I'm interested in a simple way to schedule crontab-like tasks, similar to Spring's quartz.
I see from celery's documentation that it requires running celeryd as a daemon process. Is there a way to refrain from running another external process and simply running this embedded in my django instance? Since I'm not interested in distributing the work at the moment, I'd rather keep it simple.
python manage.py celerydusing celery-django? I don't believe there's any such option. – cptphil Feb 19 at 17:57python manage.py celerybeatif you also care about your periodical tasks... – lazerscience Feb 19 at 22:27