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: macOS Kafka Client


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

Uploaded Source

Built Distribution

dramatiq-1.14.0-py3-none-any.whl (115.3 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: dramatiq-1.14.0.tar.gz
  • Upload date:
  • Size: 74.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.8.9

File hashes

Hashes for dramatiq-1.14.0.tar.gz
Algorithm Hash digest
SHA256 fbf6caff95ccac3ac92e2e12506925c3069e65cd1bf27fa90990498def713882
MD5 f486df1d724e870377c0e98f0b280718
BLAKE2b-256 ed160693319933900b09c8eb498affbc03b45d77af1870746062dbeb0595b1d4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dramatiq-1.14.0-py3-none-any.whl
  • Upload date:
  • Size: 115.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.8.9

File hashes

Hashes for dramatiq-1.14.0-py3-none-any.whl
Algorithm Hash digest
SHA256 469ce543ff7d6f270910f5dac3ab4bbdabbd421e25b74f32d19acbc0a58ec66b
MD5 ab7c9d6cf05bd8511ef2d1582b4ebd73
BLAKE2b-256 cecc780315bc2067a20272248f576d29385f4bdcaee1d502a3ca3ed27fa007e2

See more details on using hashes here.

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