Dramatiq
A fast and reliable background task processing library for Python 3.
Install / Use
/learn @Bogdanp/DramatiqREADME
dramatiq
A fast and reliable distributed task processing library for Python 3.
<hr/>Changelog: https://dramatiq.io/changelog.html <br/> Community: https://groups.io/g/dramatiq-users <br/> Documentation: https://dramatiq.io <br/>
<hr/> <h3 align="center">Sponsors</h3> <p align="center" dir="auto"> <a href="https://franz.defn.io" target="_blank"> <img width="64px" src="docs/source/_static/franz-logo.png" /> </a> <a href="https://podcatcher.defn.io" target="_blank"> <img width="64px" src="docs/source/_static/podcatcher-logo.png" /> </a> </p>Installation
If you want to use it with RabbitMQ
pip install 'dramatiq[rabbitmq, watch]'
or if you want to use it with Redis
pip install 'dramatiq[redis, watch]'
Quickstart
Make sure you've got RabbitMQ running, then create a new file called
example.py:
import dramatiq
import requests
import sys
@dramatiq.actor
def count_words(url):
response = requests.get(url)
count = len(response.text.split(" "))
print(f"There are {count} words at {url!r}.")
if __name__ == "__main__":
count_words.send(sys.argv[1])
In one terminal, run your workers:
dramatiq example
In another, start enqueueing messages:
python example.py http://example.com
python example.py https://github.com
python example.py https://news.ycombinator.com
Check out the user guide to learn more!
License
dramatiq is licensed under the LGPL. Please see COPYING and COPYING.LESSER for licensing details.
Related Skills
node-connect
337.1kDiagnose OpenClaw node connection and pairing failures for Android, iOS, and macOS companion apps
claude-opus-4-5-migration
83.1kMigrate prompts and code from Claude Sonnet 4.0, Sonnet 4.5, or Opus 4.1 to Opus 4.5
frontend-design
83.1kCreate distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code that avoids generic AI aesthetics.
model-usage
337.1kUse CodexBar CLI local cost usage to summarize per-model usage for Codex or Claude, including the current (most recent) model or a full model breakdown. Trigger when asked for model-level usage/cost data from codexbar, or when you need a scriptable per-model summary from codexbar cost JSON.
