A CLI tool for generating files from Jinja2 templates and environment variables.
Project description
A CLI tool for generating files from Jinja2 templates and environment variables.
Installation
pip install template[all]
This will install Template along with the dependencies for all of the filters available with it. However, you can use narrower specifiers if you want to avoid a specific dependency (the filters listed below include the needed specifier). In previous releases of Template all of the dependencies were required. To not break existing templates, for the foreseeable future those dependencies will remain a requirement and new dependencies for specific filters will be optional. This will change in the 0.9 release where all filter specific dependencies will be optional. Please update your project before that happens.
Examples
$ template -h
usage: template [-h] [-o OUTPUT] [filename]
A CLI tool for generating files from Jinja2 templates and environment
variables.
positional arguments:
filename Input filename
optional arguments:
-h, --help show this help message and exit
-o OUTPUT, --output OUTPUT
Output to filename
$ export name='John'
$ echo 'Hello {{ name if name is defined else 'world' }}. | template
Hello John.
$ echo '{{ USER }}' > username.j2
$ template --output username.txt username.j2
$ cat username.txt
John
Jinja filters
The following Jinja filters were added:
combine
: Merges 2 dictionaries with the 2nd overriding the 1st. Returns the result.to_yaml
: Convert to yaml (requires theyaml
package specifier).from_yaml
: Convert from yaml (requires theyaml
package specifier).to_json
: Convert to json.from_json
: Convert from json.to_toml
: Convert to toml (requires thetoml
package specifier).from_toml
: Convert from toml (requires thetoml
package specifier).jmespath
: Queries data using the JMESPath query language (requires thejmespath
package specifier).run
: Runs a command and returns the stdout, stderr and returncode using run. This filter is replaced with therun
function and will be removed in the 0.10 release.ipaddress
: Returns an IPAddress object from the netaddr library (requires thenetaddr
package specifier).ipnetwork
: Returns an IPNetwork object from the netaddr library (requires thenetaddr
package specifier).iprange
: Returns an IPRange object from the netaddr library. (requires thenetaddr
package specifier).ipglob
: Returns an IPGlob object from the netaddr library (requires thenetaddr
package specifier).ipset
: Returns an IPSet object from the netaddr library (requires thenetaddr
package specifier).
Example usage can be seen in tests
and for specific filters in the
docstrings in template/filters.py
.
Jinja functions
run
: Runs a command and returns the stdout, stderr and returncode using run. This function replaces therun
filter.readfile
: Returns the contents of a file.
Example usage can be seen in tests
and for specific filters in the
docstrings in template/functions.py
.
Testing
Tests require Pipenv and Bats. Run the tests with the following commands:
pipenv run lint # Pre-commit hooks.
pipenv run doctest # Doc tests.
pipenv run bats # Bats tests.
pipenv run check # Twine check.
Also, GitLab CI is setup for this project so every push to this repository is checked with all Python 2.7, Python 3.6 and later and all supported versions of PyPy.
Release
Release requires Pipenv and Python 3.6 or later. To bump the version run
pipenv run bumpversion major|minor|patch
to update the version and git
commit and tag the changes, then run git push --follow-tags
to push the
git commit and tag. The GitLab CI will then build and upload a release to PyPI.
To manually upload to PyPI run pipenv run build
to build the Python
package and pipenv run upload -s dist/*
to upload a signed version.
License
This software is licensed under the AGPL 3+ license (see the LICENSE.txt
file).
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 template-0.7.6.tar.gz
.
File metadata
- Download URL: template-0.7.6.tar.gz
- Upload date:
- Size: 20.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.7.1 requests/2.26.0 setuptools/39.2.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.6.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d7b4c0f699f9e8528e1d16a853a4cee0f945c5a9db75c0a7cddb51df573f05ea |
|
MD5 | a925e774e7bc4552ec9d2707e49dd499 |
|
BLAKE2b-256 | 9e260a429d2e5bb2022e55577c2167eb8e3548f072976b7a0c2486ab0fe3f40f |
File details
Details for the file template-0.7.6-py2.py3-none-any.whl
.
File metadata
- Download URL: template-0.7.6-py2.py3-none-any.whl
- Upload date:
- Size: 19.3 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.7.1 requests/2.26.0 setuptools/39.2.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.6.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9404c263631671d571de564fd44bba327a87c20079754f03981bad40317fd6c5 |
|
MD5 | b89083f3db3b306b6a8c264531b4bcef |
|
BLAKE2b-256 | 44ad830433d28f52cf5adf5a93c324d0db1963d875af2250b8b943f5bda91a60 |