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://discuss.dramatiq.io
Documentation: https://dramatiq.io
Professional Support: https://tidelift.com


Installation

If you want to use it with RabbitMQ

pipenv install 'dramatiq[rabbitmq, watch]'

or if you want to use it with Redis

pipenv 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.4.1.tar.gz (60.3 kB view details)

Uploaded Source

Built Distribution

dramatiq-1.4.1-py3-none-any.whl (100.0 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: dramatiq-1.4.1.tar.gz
  • Upload date:
  • Size: 60.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.21.0 setuptools/40.6.2 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.1

File hashes

Hashes for dramatiq-1.4.1.tar.gz
Algorithm Hash digest
SHA256 e3b2b4319cfc7fd98dfbf39f112f00a0f3fd02e46da7ea8d175f794fbf7b38af
MD5 ddac65a87ccef0e5bbd0c8427ada8037
BLAKE2b-256 ea8845eb09bf37e6b6ca2d13dee48c10f5247e3fbb7b490d8feb3504847fd0b8

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: dramatiq-1.4.1-py3-none-any.whl
  • Upload date:
  • Size: 100.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.21.0 setuptools/40.6.2 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.1

File hashes

Hashes for dramatiq-1.4.1-py3-none-any.whl
Algorithm Hash digest
SHA256 f87b21cd7577f32138c578c3430c3a3ae207eddf9229cbcc42c0c3ec7dbc42ec
MD5 55e9131d2fa47053c8670067c394a340
BLAKE2b-256 81a037916b8aabd6989d4d722198acb81a5489c490fa14496ac828b92b623a20

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