skillfed

celery-progress

Drop in, configurable, dependency-free progress bars for your Django/Celery applications.

celery-progress v0.5 368.3K downloads/30d#7,189 on PyPI497
Permissive license MIT License DORMANT released

What it is and what it does

Celery Progress is a Django integration library that bridges Celery background tasks and the frontend by providing real-time progress bar updates. It works by recording task progress on the backend using a ProgressRecorder wrapper and polling (or streaming via WebSocket) task status to the frontend, where a JavaScript component renders a visual progress bar. The library is dependency-free at runtime, requiring only that you have Django and Celery already configured.

You add it to Django's INSTALLED_APPS, wire up its URL endpoints, wrap your Celery tasks with ProgressRecorder calls, and initialize the frontend JavaScript with a task ID. The library handles polling intervals, customizable colors, messages, result display, and experimental support for Celery groups. It is designed for straightforward setup with optional customization of progress bar appearance and behavior.

Use it for:

  • Display a real-time progress bar while a long-running Celery task (e.g., file export, data processing) executes in the background.
  • Show task status updates and final results to users without page reloads, improving perceived responsiveness of async operations.
  • Track progress of multiple related tasks using Celery groups with a single unified progress indicator.
  • Customize progress bar colors, polling intervals, and callback handlers to match application UI and error-handling requirements.
  • Stream live task updates via WebSocket using Django Channels for lower-latency progress notifications in real-time applications.

Worth the install?

AI-flagged interpretation of the facts on this page — verify before relying

Provides drop-in progress bars for Django views that display real-time updates from Celery background tasks, with optional WebSocket support via Django Channels.

Yes, if you are building a Django application with Celery tasks and need a simple, zero-dependency progress bar for the frontend. The library is stable and well-suited for standard use cases. However, note that maintenance is dormant (last update 561 days ago); verify compatibility with your specific Django and Celery versions before relying on it for new projects, and be prepared to maintain a fork if breaking changes occur in future Django releases.

Install

celery-progress on PyPI

pip

pip install celery-progress

uv

uv add celery-progress

poetry

poetry add celery-progress

Installing celery-progress

Before you install

Low friction installation with no runtime dependencies. Dormant maintenance status (last commit 2025-01-30, no updates in 561 days), but the package is stable and archived repository shows active development ceased rather than abandonment.

License in practice

MIT License permits commercial and private use with minimal restrictions—you may use, modify, and distribute the package freely provided you retain the license notice.

Quickstart

pip install celery-progress

# In Django settings.py:
INSTALLED_APPS = [..., 'celery_progress']

# In urls.py:
path('celery-progress/', include('celery_progress.urls'))

# In task:
from celery_progress.backend import ProgressRecorder
@shared_task(bind=True)
def my_task(self):
    progress_recorder = ProgressRecorder(self)
    progress_recorder.set_progress(1, 10)

# In template:
<script src="{% static 'celery_progress/celery_progress.js' %}"></script>
<script>
CeleryProgressBar.initProgressBar("{% url 'celery_progress:task_status' task_id %}");
</script>

Requires Django and Celery to be already set up in your project; WebSocket support requires Django Channels.

Verify before relying

  • Whether the package works with Django versions beyond 5.1 or Python versions beyond 3.12.
  • Current state of WebSocket support implementation and any known limitations.
  • Whether dormant status indicates the package is sufficiently stable or if active maintenance is needed for new Django/Celery releases.

Package facts

License MIT License (permissive)
Python support not specified
Install friction low — pure-Python wheel
Runtime dependencies none
Maintenance dormant — 561 days since the last release
Last repo commit
First released
Downloads 368,278/month — #7,189 on PyPI (30-day window, as of 2026-08-14)
Known vulnerabilities none known (OSV.dev, checked 2026-08-14)

Evidence: celery_progress-0.5-py3-none-any.whl

Environment :: Web EnvironmentFramework :: DjangoFramework :: Django :: 3.2Framework :: Django :: 4.0Framework :: Django :: 4.1Framework :: Django :: 4.2Framework :: Django :: 5.0Framework :: Django :: 5.1Intended Audience :: DevelopersLicense :: OSI Approved :: MIT LicenseOperating System :: OS IndependentProgramming Language :: PythonProgramming Language :: Python :: 3.10Programming Language :: Python :: 3.11Programming Language :: Python :: 3.12Programming Language :: Python :: 3.5Programming Language :: Python :: 3.6Programming Language :: Python :: 3.7Programming Language :: Python :: 3.8Programming Language :: Python :: 3.9Topic :: Internet :: WWW/HTTPTopic :: Internet :: WWW/HTTP :: Dynamic Content

Tags

django celery progress barcelery task progress trackingdjango background task uicelery progress monitoringreal-time task status displaydjango async task progresscelery progress frontendtask completion percentage display
django-integrationcelery-tasksprogress-tracking

More WWW/HTTP packages