Command-line tool for rendering Jinja2 templates
Project description
template-specialize
template-specialize is a command-line tool for rendering Jinja2 templates.
Render a Template File
For example, consider this Markdown name tag template, "nametag.md":
## Hello, my name is
# {{name}}
{% if title is defined %}
### {{title}}
{% endif %}
To render the template, execute template-specialize as follows:
$ template-specialize nametag.md nametag-roy.md -k name 'Roy Hobbs' -k title 'The best there ever was'
Afterward, the output file contains the rendered template:
## Hello, my name is
# Roy Hobbs
### The best there ever was
Render a Directory Template
You can also render directories of templates to an output directory:
$ template-specialize template/ output/ -k name value
Built-In Template Variables
The following template variables are always defined:
now
- the current datetime object
Environment Files
template-specialize was originally created to "specialize" web service configuration files for different runtime environments. Environment files are JSON files that allow for the definition of inheritable, structured template configuration values. Consider the following environments file:
{
"base": {
"values": {
"service_name": "my-service"
}
},
"test_base": {
"parents": ["base"],
"values": {
"db_host": "test-db-host"
}
},
// The test environment
"test": {
"parents": ["test_base"],
"values": {
"db_name": "test-db"
}
},
// The live/production environment
"live": {
"parents": ["base"],
"values": {
"db_host": "live-db-host",
"db_name": "live-db"
}
}
}
To render a template file using an environment, specify the environment file (or files) and the environment name with which to render the template:
$ template-specialize config-template.json config.json -c environments.json -e test
To view the template configuration data use the "--dump" argument:
$ template-specialize config-template.json config.json -c environments.json -e test --dump
{
"db_host": "test-db-host",
"db_name": "test-db",
"service_name": "my-service"
}
Renaming and Deleting Output Files
When specializing a template directory, it is sometimes necessary to rename an output file or directory. For example, consider a Python project template with the following structure:
.
|-- README.md
|-- package-name.txt
|-- pyproject.toml
|-- setup.cfg
`-- src
|-- __init__.py
|-- package_name
| |-- __init__.py
| `-- package_name.py
`-- tests
|-- __init__.py
`-- test_package_name.py
As part of the specialization, we'd like to rename the "package_name" directory, the "package_name.py" file, and the "test_package_name.py" file to the specialized package name. To accomplish this, we add the "package-name.txt' utility file and call the "template_specialize_rename" Jinja2 extension:
{# Rename template files #}
{% template_specialize_rename 'src/tests/test_package_name.py', 'test_' + package_name + '.py' %}
{% template_specialize_rename 'src/package_name/package_name.py', package_name + '.py' %}
{% template_specialize_rename 'src/package_name', package_name %}
{# Delete the package-name.txt utility template file #}
{% template_specialize_rename 'package-name.txt' %}
First, the "template_specialize_rename" extension is used to rename the package output files and directories. Finally, since we don't want the empty utility file in the output, we delete it using the "template_specialize_rename" extension with no second argument. Here's an example usage of our Python project template:
$ template-specialize python-package my-package -k package_name my_package
This command produces the following specialized template output with appropriately named package source directory and source files:
.
|-- README.md
|-- pyproject.toml
|-- setup.cfg
`-- src
|-- __init__.py
|-- my_package
| |-- __init__.py
| `-- my_package.py
`-- tests
|-- __init__.py
`-- test_my_package.py
AWS Parameter Store
template-specialize can retrieve template values from AWS Parameter Store using botocore.
Here's an example of a JSON configuration file with a Parameter Store secret:
{
"my_secret": {% filter tojson %}{% aws_parameter_store 'parameter-name' %}{% endfilter %}
}
botocore is usually configured using environment variables.
Usage
usage: template-specialize [-h] [-c FILE] [-e ENV] [-k KEY VALUE] [--dump]
SRC DST
positional arguments:
SRC the source template file or directory
DST the destination file or directory
options:
-h, --help show this help message and exit
-c FILE the environment files
-e ENV the environment name
-k KEY VALUE, --key KEY VALUE
add a template key and value
--dump dump the template variables
Development
This package is developed using python-build. It was started using python-template as follows:
template-specialize python-template/template/ template-specialize/ -k package template-specialize -k name 'Craig A. Hobbs' -k email 'craigahobbs@gmail.com' -k github 'craigahobbs' -k noapi 1
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_specialize-1.5.1.tar.gz
.
File metadata
- Download URL: template_specialize-1.5.1.tar.gz
- Upload date:
- Size: 9.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.13.0rc3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4d5d1fafd72f8bc248fce5f9584f6c1073ae24b4b303b9acbc26b3eb48fc9ac8 |
|
MD5 | 0ef79c924c05e0f982ff8ff15e5be30d |
|
BLAKE2b-256 | 66e7dc634eac8cca5be8721f6c86637d6f48fe30b109386f3f3b89edec158450 |
File details
Details for the file template_specialize-1.5.1-py3-none-any.whl
.
File metadata
- Download URL: template_specialize-1.5.1-py3-none-any.whl
- Upload date:
- Size: 9.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.13.0rc3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ba8979cce9f14e097df38b4436adb3c982b0b2b45ec481cfdfa700340cce7e09 |
|
MD5 | c9be2b63e1243357a83ff0c4ada7c68b |
|
BLAKE2b-256 | b35e19cb05f9540ff03749577e075bd353ff62c051bd0cdae3d5401b9b6bc3f0 |