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
Installs
3
GitHub Stars
155
First Seen
Aug 20, 2026
celery — terminalskills/skills