Dramatiq: background tasks¶ Release v1.17.0. (Installation, Changelog, Discuss, Source Code) Dramatiq is a background task processing library for Python with a focus on simplicity, reliability and performance. Here’s what it looks like: import dramatiq import requests @dramatiq.actor def count_words(url): response = requests.get(url) count = len(response.text.split(" ")) print(f"There are {count}