new-celery-config specifies Celery configuration via environment variables.
Project description
Celery is a distributed task queue library for Python. It accepts some of its configuration via environment variables–but some configuration needs to be specified as Python code.
new-celery-config is a Python package that lets you set any top-level Celery key using an environment variable containing YAML.
Installation
The latest stable can be installed via pip:
python3 -m pip install new-celery-config
Usage
(Usage) as a module
To set configuration values, you must set an environment variables for each top-level key (as documented in the Celery documentation).
Each environment variable is prefixed with NEW_CELERY_, followed by the config key name in lowercase. The value for each environment variable must be valid YAML (or JSON–remember that JSON is a subset of YAML).
You must also set the environment variable CELERY_CONFIG_MODULE to new_celery_config.as_module to enable Celery to read all of the other environment variables that you have set.
For example, setting these environment variables in the shell looks like:
export CELERY_CONFIG_MODULE=new_celery_config.as_module
export NEW_CELERY_broker_url='transport://userid:password@hostname:port/virtual_host'
export NEW_CELERY_broker_transport_options='{"visibility_timeout": 36000}'
And in your Python code, initialize the Celery object as follows:
app = Celery()
If you want to change the name of the CELERY_CONFIG_MODULE, you can use the config_from_envvar function. For example:
export ARBITRARY_CELERY_CONFIG_MODULE=new_celery_config.as_module
app.config_from_envvar("ARBITRARY_CELERY_CONFIG_MODULE")
You can test that the configuration works by examining the app.conf object:
print(app.conf.broker_transport_options)
# prints out {'visibility_timeout': 36000}
Usage (as an object)
Celery also accepts configuration in the form of a Python object. If you prefer this way, you can give Celery a new_celery_config.Config object. For example:
from celery import Celery
import new_celery_config
app = Celery()
app.config_from_object(new_celery_config.Config())
Contributing changes to new-celery-config
If you want to make changes to new-celery-config, you can clone this repository. You can run make in the root directory to show commands relevant to development.
- For example:
make fmt automatically formats Python code.
make lint runs pylint and mypy to catch errors.
make test runs unit tests.
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
File details
Details for the file new_celery_config-0.2.0.tar.gz
.
File metadata
- Download URL: new_celery_config-0.2.0.tar.gz
- Upload date:
- Size: 4.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.13 CPython/3.9.10 Linux/5.11.0-1028-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 97a58a1788485d7ea4a8a04873f1475e0b9c807244824ab59f8dfea33c6daec8 |
|
MD5 | 19ee715b1f28a0c0478dcb7bac7bfc5c |
|
BLAKE2b-256 | 3e577fb38c49c2b6219405d7170dff6900c73adda89ebe6e251f678313c2be3f |
File details
Details for the file new_celery_config-0.2.0-py3-none-any.whl
.
File metadata
- Download URL: new_celery_config-0.2.0-py3-none-any.whl
- Upload date:
- Size: 4.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.13 CPython/3.9.10 Linux/5.11.0-1028-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5a8f717bcb11f1e7d7433a9bdb89c2bef04a90b38d8dcdb36b539d9db8825992 |
|
MD5 | 77f3719a6b2a665bc0858480a39e9cc9 |
|
BLAKE2b-256 | 19e90e09b17ea72ecdc6b5ab048bc55f31a937dbb4a8233e03314ed9a409b200 |