--- id: django-dramatiq version: "0.15.0" license: unclear license_treatment: unclear maintenance: aging --- # django-dramatiq — A Django app for Dramatiq. License: unclear · Maintenance: aging · Downloads: 220.9K/mo ## 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 above — 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 pip install django-dramatiq uv add django-dramatiq poetry add django-dramatiq ## Installing 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_current - Install friction: low - Maintenance: aging - Downloads: 220.9K/month (top 15,000 on PyPI) - Known vulnerabilities: none known ## Tags django async task queue, background job processing django, dramatiq django integration, distributed task queue django, async job scheduling django, task-queue, async-processing, django-integration [View on SkillFed](https://skillfed.io/packages/django-dramatiq) · [View on PyPI](https://pypi.org/project/django-dramatiq/)