Skip to content

Instantly share code, notes, and snippets.

@Quard
Last active April 10, 2019 21:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Quard/2d6a3d10004f0390d72ff743916ca42b to your computer and use it in GitHub Desktop.
Save Quard/2d6a3d10004f0390d72ff743916ca42b to your computer and use it in GitHub Desktop.
The Python Celery Cookbook: Small Tool, Big Possibilities
from celery.schedules import crontab
CELERY_BEAT_SCHEDULE = {
'monday-statistics-email': {
'task': 'myproject.apps.statistics.tasks.monday_email',
'schedule': crontab(day_of_week=1, hour=7),
},
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment