Skip to main content

Background Processing for Python 3.

Project description

dramatiq

Build Status PyPI version Documentation Discuss

A fast and reliable distributed task processing library for Python 3.


Changelog: https://dramatiq.io/changelog.html
Community: https://groups.io/g/dramatiq-users
Documentation: https://dramatiq.io


Sponsors


Franz: Desktop Client for Apache Kafka

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.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

dramatiq-1.17.1.tar.gz (99.1 kB view details)

Uploaded Source

Built Distribution

dramatiq-1.17.1-py3-none-any.whl (120.4 kB view details)

Uploaded Python 3

File details

Details for the file dramatiq-1.17.1.tar.gz.

File metadata

  • Download URL: dramatiq-1.17.1.tar.gz
  • Upload date:
  • Size: 99.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for dramatiq-1.17.1.tar.gz
Algorithm Hash digest
SHA256 2675d2f57e0d82db3a7d2a60f1f9c536365349db78c7f8d80a63e4c54697647a
MD5 6c82dae119a9d7a3eb9926ae221562da
BLAKE2b-256 c67a6792ddc64a77d22bfd97261b751a7a76cf2f9d62edc59aafb679ac48b77d

See more details on using hashes here.

Provenance

File details

Details for the file dramatiq-1.17.1-py3-none-any.whl.

File metadata

  • Download URL: dramatiq-1.17.1-py3-none-any.whl
  • Upload date:
  • Size: 120.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for dramatiq-1.17.1-py3-none-any.whl
Algorithm Hash digest
SHA256 951cdc334478dff8e5150bb02a6f7a947d215ee24b5aedaf738eff20e17913df
MD5 1e6a4a68dc9756082220b6f2d4ea50fa
BLAKE2b-256 ee36925c7afd5db4f1a3f00676b9c3c58f31ff7ae29a347282d86c8d429280a5

See more details on using hashes here.

Provenance

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page