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

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.18.0.tar.gz (100.9 kB view details)

Uploaded Source

Built Distribution

dramatiq-1.18.0-py3-none-any.whl (121.2 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: dramatiq-1.18.0.tar.gz
  • Upload date:
  • Size: 100.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for dramatiq-1.18.0.tar.gz
Algorithm Hash digest
SHA256 5ea436b6e50dae64d4de04f1eb519ad239a6b1ba6315ba1dce1c0c4c1ebedfaf
MD5 f069c40d90789c473559a0ce5c6144ec
BLAKE2b-256 d99fc8be928a88c387ed27344de089278e76d893dc71ad9e4b2a39a61deab0d8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dramatiq-1.18.0-py3-none-any.whl
  • Upload date:
  • Size: 121.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for dramatiq-1.18.0-py3-none-any.whl
Algorithm Hash digest
SHA256 d360f608aa3cd06f5db714bfcd23825dc7098bacfee52aca536b0bb0faae3c69
MD5 6f71d763fd4e2b5fd493e1f3a17c65a7
BLAKE2b-256 ac00d9ea755cdeda3d498504775b62122b72ba282b91446fd58980171fb1084c

See more details on using hashes here.

Supported by

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