A task queue for Python based on Redis Streams.
Project description
Fennel
A task queue for Python 3.7+ based on Redis Streams with a Celery-like API.
Note: This is an alpha release. The project is under development, breaking changes are likely. |
---|
Features
- Supports both sync (e.g. Django, Flask) and async (e.g. Starlette, FastAPI) code.
- Sane defaults: at least once processing semantics, tasks acknowledged on completion.
- Automatic retries with exponential backoff for fire-and-forget jobs.
- Clear task statuses available (e.g. sent, executing, success).
- Automatic task discovery (defaults to using
**/tasks.py
). - Exceptionally small and understandable codebase.
Installation
pip install fennel
Basic Usage
Run Redis and then execute your code in tasks.py
:
from fennel import App
app = App(name='myapp', redis_url='redis://127.0.0.1')
@app.task
def foo(n):
return n
# Enqueue a task to be executed in the background by a fennel worker process.
foo.delay(7)
Meanwhile, run the worker:
$ fennel worker --app tasks:app
Asynchronous API
Fennel also supports an async API. If your code is running in an event loop (e.g. via Starlette or FastAPI), you will want to use the async interface instead:
from fennel import App
app = App(name='myapp', redis_url='redis://127.0.0.1', interface='async')
@app.task
async def bar(x):
return x
await bar.delay(5)
See also
If you need to ensure that all tasks for a given key are processed in-order, please see our sister project Runnel.
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
fennel-0.3.0.tar.gz
(23.9 kB
view details)
Built Distribution
fennel-0.3.0-py3-none-any.whl
(34.7 kB
view details)
File details
Details for the file fennel-0.3.0.tar.gz
.
File metadata
- Download URL: fennel-0.3.0.tar.gz
- Upload date:
- Size: 23.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.0.10 CPython/3.8.5 Linux/5.3.0-1034-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 15fdd2f503dbc5218252025ef375adb4da367de458ab950dc3b2cb1ce3d935c0 |
|
MD5 | cb05eaf28bb872e15544e1ec70bfca2c |
|
BLAKE2b-256 | 9441a85b6aa25b8bdc4df7e1a19e1cad04a3c3a3600107ed961ecd676abe6ef9 |
File details
Details for the file fennel-0.3.0-py3-none-any.whl
.
File metadata
- Download URL: fennel-0.3.0-py3-none-any.whl
- Upload date:
- Size: 34.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.0.10 CPython/3.8.5 Linux/5.3.0-1034-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ef3d3561c42298c0ea1c6529a942d3e1b86ca78e265345ff9cb6e6f135a71c43 |
|
MD5 | 1886b897ae570989daae5b257199e5f2 |
|
BLAKE2b-256 | 29611e33e1be7003096607e8b9735969ca27e9f40d7700318cbec23cd5df184c |