[Fixed]-Django + celery – How do I set up a crontab schedule for celery in my django app?

46👍

This happens because you have a celery.py file in the same package as your settings.py, which shadows the global celery package.

To get around this, insert the following string at the beginning of the settings.py:

from __future__ import absolute_import

Hope it helps!

Leave a comment