django-dramatiq
A Django app for Dramatiq.
What it is and what it does
django-dramatiq is a Django application that bridges Django and Dramatiq, a distributed task queue library. It lets you define asynchronous tasks using Dramatiq's actor decorator and execute them outside the main request-response cycle, typically for long-running operations, batch jobs, or work that should not block a web request.
The package depends on both django and dramatiq as runtime requirements. It supports modern Django versions (4.2 through 5.1) and Python 3.10 through 3.14. With low install friction and no known security vulnerabilities, it is straightforward to add to an existing Django project, though the aging maintenance status means you should verify that it remains compatible with your specific Django and Dramatiq versions before relying on it for production work.
Use it for:
- Send emails or notifications asynchronously without blocking the HTTP response to the user.
- Process large file uploads or data transformations in the background after a user submits a form.
- Schedule periodic batch jobs (e.g., data aggregation, cleanup tasks) using Dramatiq's scheduling features.
- Distribute heavy computations across multiple worker processes to scale beyond a single application server.
Worth the install?
AI-flagged interpretation of the facts on this page — verify before relying
Integrates Dramatiq, a distributed task queue, into Django applications to handle asynchronous job processing and background task execution.
Yes, if you need asynchronous task processing in Django and are comfortable with Dramatiq's architecture. Install friction is low and there are no known vulnerabilities. However, the aging maintenance status (274 days since last release) means you should verify compatibility with your Django and Dramatiq versions and be prepared to maintain or fork the integration if upstream changes break it. License terms are unclear, so confirm them before production use.
Install
django-dramatiq on PyPI
pip
pip install django-dramatiquv
uv add django-dramatiqpoetry
poetry add django-dramatiqInstalling django-dramatiq
Before you install
Low install friction with a pure-Python wheel distribution. Maintenance status is aging—last release was 274 days ago—so expect slower response to issues or breaking changes in Django or Dramatiq.
License in practice
License status is unclear from the package metadata, so you cannot determine licensing obligations before use; check the repository directly before adopting in a commercial or restricted context.
Quickstart
pip install django-dramatiq
import django_dramatiq
from dramatiq import actor
@actor
def my_task():
pass
my_task.send()
Requires Python 3.10 or later; Django 4.2, 5.0, 5.1, or later; and a running Dramatiq broker (typically RabbitMQ or Redis).
Verify before relying
- Whether the package is actively maintained or has entered maintenance-only mode given the 274-day gap since last release.
- Actual license terms, since license metadata is not declared in the package—check the repository to confirm compatibility with your project.
Package facts
| License | not declared (unclear) |
| Python support | supports the current Python release (>=3.10) |
| Install friction | low — pure-Python wheel |
| Runtime dependencies | 2 — django, dramatiq |
| Maintenance | aging — 274 days since the last release |
| First released | |
| Downloads | 220,884/month — #9,289 on PyPI (30-day window, as of 2026-08-14) |
| Known vulnerabilities | none known (OSV.dev, checked 2026-08-14) |
Evidence: django_dramatiq-0.15.0-py3-none-any.whl
Tags
More Application Frameworks packages
FastAPI is a Python web framework for building…
permissive · top 100 on PyPI
annotated-docProvides a way to document function parameters,…
permissive · top 100 on PyPI
textualTextual is a Python framework for building…
permissive · top 100 on PyPI
typerTyper builds command-line applications from…
permissive · top 1,000 on PyPI
mcpBuild and connect to Model Context Protocol…
permissive · top 1,000 on PyPI
WerkzeugWerkzeug is a WSGI utility library providing…
permissive · top 1,000 on PyPI
dramatiqDramatiq is a distributed task processing…
copyleft · top 5,000 on PyPI
django-background-tasksDjango Background Tasks is a database-backed…
permissive · top 15,000 on PyPI
judoscaleJudoscale is a Python adapter that integrates…
permissive · top 15,000 on PyPI
django-rqDjango-RQ integrates RQ (Redis Queue) with…
permissive · top 5,000 on PyPI
vercel-workersPython SDK for publishing and consuming…
permissive · top 5,000 on PyPI
django-tasksProvides a backport of Django's built-in Tasks…
permissive · top 5,000 on PyPI
arqarq provides a job queue system for Python that…
permissive · top 5,000 on PyPI
taskiqTaskiq is an asynchronous distributed task…
permissive · top 5,000 on PyPI
total-perspective-vortexTotal Perspective Vortex (TPV) provides dynamic…
permissive · top 15,000 on PyPI
django-tasks-dbA Django Tasks backend that stores and executes…
permissive · top 15,000 on PyPI