celery
Installation
SKILL.md
Celery
Overview
Celery is the standard Python library for distributed task processing. Offload slow operations (email sending, report generation, image processing) from web requests to background workers. Supports task retries, scheduling, rate limiting, and chaining.
Instructions
Step 1: Setup
pip install celery[redis]
# celery_app.py — Celery application configuration
from celery import Celery