Generates files by parsing the environment with jinja2
Project description
Render a file with jinja2 using a context built from processing environment variables.
Installation
From pip:
$ pip install env-render
Usage
To render a jinja document and collect all the environment variables with the prefix APP, enter this command:
$ env-render -p APP src_template.txt output.txt
Example
So imagine this environment:
APP_0_ENV0=a APP_0_ENV1=b APP_0_HOSTNAME=app_0 APP_1_ENV0=c APP_1_ENV1=d APP_1_HOSTNAME=app_1 APP_2_ENV0=e APP_2_ENV1=f APP_2_HOSTNAME=app_2
Becomes this dictionary:
{ "apps": [ { "_index": 0, "ENV0": "a", "ENV1": "b", "HOSTNAME": "app_0" }, { "_index": 1, "ENV0": "c", "ENV1": "d", "HOSTNAME": "app_1" }, { "_index": 2, "ENV0": "e", "ENV1": "f", "HOSTNAME": "app_2" } ] }
Which can then be used like this in a file. Say an haproxy.cfg file:
listen someapp bind 0.0.0.0:80 {% for app in apps %} server server{{ app._index }} {{ app.HOSTNAME }}:80 {% endfor %}
This is what this library is meant to do.
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
env-render-0.1.0.tar.gz
(3.5 kB
view details)
File details
Details for the file env-render-0.1.0.tar.gz
.
File metadata
- Download URL: env-render-0.1.0.tar.gz
- Upload date:
- Size: 3.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e90d64439fefda6745eab4d40dabd202319017b7c0e3c8030ee975e04b26bb71 |
|
MD5 | 47c6b0f9c9e70a510dd0363213314c6f |
|
BLAKE2b-256 | 827307b4903d12ae01fbd224722c34a3de796511824be2d66e9c0089f4157a8a |