Background Processing for Python 3.
Project description
remoulade
A fast and reliable distributed task processing library for Python 3. Fork of dramatiq.io
Changelog: https://remoulade.readthedocs.io/en/latest/changelog.html
Documentation: https://remoulade.readthedocs.io
Installation
If you want to use it with RabbitMQ
pipenv install 'remoulade[rabbitmq, watch]'
or if you want to use it with Redis
pipenv install 'remoulade[redis, watch]'
Quickstart
Make sure you've got RabbitMQ running, then create a new file called
example.py:
import remoulade
import requests
import sys
@remoulade.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:
remoulade 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
remoulade is licensed under the LGPL. Please see COPYING and COPYING.LESSER for licensing details.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file remoulade-0.19.0.tar.gz.
File metadata
- Download URL: remoulade-0.19.0.tar.gz
- Upload date:
- Size: 67.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.42.0 CPython/3.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
720bfd7021b1dcd391c3b31618fd5e0f61e6c5c367594bc4c69e44b06cf99be1
|
|
| MD5 |
8cef5edd56738c3e99cd94d101294b9c
|
|
| BLAKE2b-256 |
78cf749c71390068cbc973228250dd33229cc888839d7943d440cec6c4eab99e
|
File details
Details for the file remoulade-0.19.0-py3-none-any.whl.
File metadata
- Download URL: remoulade-0.19.0-py3-none-any.whl
- Upload date:
- Size: 111.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.42.0 CPython/3.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0305a5af0071fb2f1735d27a07379a0848ed925bf4b1aac8dcb07b51564ac5cc
|
|
| MD5 |
8c759021f36f2a524679894be6fbc93b
|
|
| BLAKE2b-256 |
732bd1aba453a991e6e9e5dac4f007c596c5b5c53991343d3c964a6ec683606c
|