Templater for app configuration files.
Project description
Config files templater
Package provides templating of mako-based templates of package config files.
Purpose
The main idea is, that config can be generated via console arguments of it`s required values. It is useful for deploy with configuration systems like ansible and others.
There is no more reason to keep config template itself separately from application (in deploy scripts/roles/whatever) or to define example with comments what config values require changing.
Besides that, package or program, as usual, is situated in system package directory (with config templates), that looks like one more problem during configuring.
Installation (standalone usage)
sudo -H python 3 -m pip install conf-templater
Usage (standalone)
conf_templater --help
or
config_templater --help
Usage (python package)
-
Add
conf-templater
to requirements.txt. -
Create cli script file, for example
mypackage/scripts/config.py
, that contains:
from conf_templater import template_config
def run():
template_config(package='mypackage', subpath='config')
if __name__ == '__main__':
run()
-
Create config file in package structure, for example
mypackage/config/development.mako
-
Define entry point in
setup.py
file:
from setuptools import setup
setup(
name='mypackage',
install_requires=[
'conf_templater'
],
entry_points={
'console_scripts': [
'mypackage_config = mypackage.scripts.config:run'
]
}
)
- Run for development
python3 -m pip install -e .
- Run for help
mypackage_config --help
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 Distributions
Built Distribution
File details
Details for the file conf_templater-0.2.0-py3-none-any.whl
.
File metadata
- Download URL: conf_templater-0.2.0-py3-none-any.whl
- Upload date:
- Size: 5.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.13 CPython/3.9.3 Linux/5.13.0-44-generic
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 13be2c2e12a692df46a626f9a5928cbe3ec6f7f21abe80e7fe4830b89c55806f |
|
MD5 | 70afe95b6c2352e8eb036dfe0d5bf564 |
|
BLAKE2b-256 | b4094fb13583346ca6399c67387d0de12544993dbc1f0e0d54dc506e04f60f8b |