Skip to content
This repository has been archived by the owner on Aug 28, 2019. It is now read-only.
/ dramatiq Public archive
forked from Bogdanp/dramatiq

Simple distributed task processing for Python 3.

License

LGPL-3.0, GPL-3.0 licenses found

Licenses found

LGPL-3.0
COPYING.LESSER
GPL-3.0
COPYING
Notifications You must be signed in to change notification settings

Destygo/dramatiq

 
 

Repository files navigation

dramatiq

Build Status Test Coverage Maintainability PyPI version Documentation Gitter

dramatiq is a distributed task processing library for Python with a focus on simplicity, reliability and performance.

Here's what it looks like:

import dramatiq
import requests

@dramatiq.actor
def count_words(url):
   response = requests.get(url)
   count = len(response.text.split(" "))
   print(f"There are {count} words at {url!r}.")

# Synchronously count the words on example.com in the current process
count_words("http://example.com")

# or send the actor a message so that it may perform the count
# later, in a separate process.
count_words.send("http://example.com")

Installation

If you want to use it with RabbitMQ

pip install -U dramatiq[rabbitmq, watch]

or if you want to use it with Redis

pip install -U dramatiq[redis, watch]

Documentation

Documentation is available at http://dramatiq.io

License

dramatiq is licensed under the LGPL. Please see COPYING.LESSER for licensing details.

About

Simple distributed task processing for Python 3.

Resources

License

LGPL-3.0, GPL-3.0 licenses found

Licenses found

LGPL-3.0
COPYING.LESSER
GPL-3.0
COPYING

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 96.6%
  • Lua 3.4%