Skip to main content

Background Processing for Python 3.

Project description

dramatiq

Build Status PyPI version Documentation Discourse

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


Changelog: https://dramatiq.io/changelog.html
Community: https://reddit.com/r/dramatiq
Documentation: https://dramatiq.io
Support Dramatiq via Patreon
Support Dramatiq via Tidelift


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]'

Supporting the Project

If you use and love Dramatiq and want to make sure it gets the love and attention it deserves then you should consider supporting the project. There are three ways in which you can do this right now:

  1. If you're a company that uses Dramatiq in production then you can get a Tidelift subscription. Doing so will give you an easy route to supporting both Dramatiq and other open source projects that you depend on.
  2. If you're an individual or a company that doesn't want to go through Tidelift then you can support the project via Patreon.
  3. If you're a company and neither option works for you and you would like to receive an invoice from me directly then email me at bogdan@defn.io and let's talk.

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

Uploaded Source

Built Distribution

dramatiq-1.6.0-py3-none-any.whl (103.3 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: dramatiq-1.6.0.tar.gz
  • Upload date:
  • Size: 63.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.0

File hashes

Hashes for dramatiq-1.6.0.tar.gz
Algorithm Hash digest
SHA256 88237324116940df66a6f4423365152480dc6cf20f47cf0582bf9089a7d11d83
MD5 6851fff7f6d192178aa82b7fd523ab1b
BLAKE2b-256 27104ba71393a3d68e0ba9a7e7d0c42e154d3762c5a716ef8e59b44155879a2e

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: dramatiq-1.6.0-py3-none-any.whl
  • Upload date:
  • Size: 103.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.0

File hashes

Hashes for dramatiq-1.6.0-py3-none-any.whl
Algorithm Hash digest
SHA256 2a112f0f5e131b9e5aa76b35b11aa2da9334b527d6db833b9e70ca28316ad41e
MD5 df615ccb6541bcdfa405fa14cfe5b452
BLAKE2b-256 0620eb3a46fc2df60a61a1b064316c4632b6e9f90fb031f5ac0d4f9b1f6e46d8

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