Often times in a web application, there are a subset of tasks that are long-running, resource intensive and don't have to be completed in real time. These tasks are perfect for offloading to an asynchronous queuing system. This article will discuss how one such python library, Celery, assists you in writing asynchronous tasks, as well [...]