Asynchronous tasks with Django and Celery
What is this article about?
In our real life projects there are certain tasks which we have to run daily or at scheduled times. For example tasks like sending emails, clear database cache etc. are such tasks which can be automated and can be executed at scheduled times. That’s what we are going to see, in context of Django and celery. In which Django is a web development framework and Celery is a powerful task queue which supports real time operation as well as scheduling future task.