Skip to content
This repository has been archived by the owner on Aug 16, 2023. It is now read-only.

Latest commit

 

History

History
13 lines (9 loc) · 672 Bytes

readme.md

File metadata and controls

13 lines (9 loc) · 672 Bytes

Simple Celery

This repository contains all the code from the Celery introductory series published in The Andela Way.

Asynchronous Processing in Celery

  • 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 Tasks in Celery

  • periodic.py - This example implements a timed periodic task that runs after every ten seconds.

crontabs in Celery

  • birthdays.py - This example implements a birthday notification system using Celery's crontab feature.