This document introduces django-celery, an open source asynchronous task queue/job queue for Django projects. It discusses how celery allows distributing tasks across multiple workers for parallel processing. Tasks can run independently, in chains, groups or with callbacks. Celery integrates with Django and allows offloading long-running tasks from the main request-response cycle for improved performance. Examples show how celery can be used to parallelize operations like generating PDFs or processing uploaded images.