Celery integration with Tryton
Project Description
Celery integration with Tryton. It defines an abstract base Task class that runs inside a Tryton transaction. If the task is called from within a Tryton transaction, the context of this one will be automatically restored when the worker will execute it.
Getting Started
Here is a simple application:
from celery import Celery from celery_tryton import TrytonTask, celery_app from trytond.pool import Pool celery_app.conf.TRYTON_DATABASE = 'test' @celery.task(base=TrytonTask) def hello(user_id): User = Pool().get('res.user') user = User(user_id) return 'hello world, %s' % user.name
Configuration
All standard celery configuration options will work but in addition TRYTON_DATABASE must be set to the default Tryton database name and optionally TRYTON_CONFIG to load a specific configuration file.
The celery_app will load the configuration from the config value from the section [celery] defined in the trytond configuration when used from a Tryton module.
Example
Start a worker:
$ celery worker --app=examples.purchase_requests
Call generate_all task:
$ celery call examples.purchase_requests.generate_all
To report issues please visit the celery_tryton bugtracker.
Release history Release notifications
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Filename, size & hash SHA256 hash help | File type | Python version | Upload date |
---|---|---|---|
celery_tryton-0.3-py2-none-any.whl (5.5 kB) Copy SHA256 hash SHA256 | Wheel | 2.7 | Jun 15, 2016 |
celery_tryton-0.3.tar.gz (4.5 kB) Copy SHA256 hash SHA256 | Source | None | Jun 15, 2016 |