This repository contains all the code from the Celery introductory series published in The Andela Way.
- main.py - Showcases an ordinary implementation of a time consuming operation.
- task.py - This example implements
main.py
above in an asycnhronous manner using Celery.
- periodic.py - This example implements a timed periodic task that runs after every ten seconds.
- birthdays.py - This example implements a birthday notification system using Celery's crontab feature.