A YAML template engine with Python expressions
Project description
YTE - A YAML template engine with Python expressions
YTE is a template engine for YAML format that utilizes the YAML structure in combination with Python expressions for enabling to dynamically build YAML documents.
Syntax
The key idea of YTE is to rely on the YAML structure to enable conditionals, loops and other arbitrary Python expressions to dynamically render YAML files.
Python expressions are thereby declared by prepending them with a ?
anywhere in the YAML.
Any such value will be automatically evaluated by YTE, yielding plain YAML as a result.
Importantly, YTE templates are still valid YAML files (for YAML, the ?
expressions are just strings).
Examples
Conditionals
Template
?if True:
foo: 1
?elif False:
bar: 2
?else:
bar: 1
Rendered
foo: 1
Template
?if True:
- a
- b
Rendered
- a
- b
Template
- foo
- bar
- ?if True:
baz
?else:
bar
Rendered
- foo
- bar
- baz
Loops
Template
?for i in range(2):
?f"key{i}": 1
?if i == 1:
foo: true
Rendered
key0: 1
key1: 1
foo: true
Custom imports
Template
# the special keyword __imports__ allows to define custom import statements
__imports__:
- from itertools import product
?for item in product([1, 2], ["a", "b"]):
- ?f"{item}"
Rendered
- 1-a
- 1-b
- 2-a
- 2-b
Usage
Command line interface
YTE comes with a command line interface. To render any YTE template, just issue
yte < the-template.yaml > the-rendered-version.yaml
Python API
Alternatively, you can invoke YTE via its Python API:
from yte import process_yaml
# set some variables as a Python dictionary
variables = ...
# render a string and obtain the result as a Python dict
result = process_yaml("""
?for i in range(10):
- ?f"item-{i}"
""", variables=variables)
# render a file and obtain the result as a Python dict
with open("the-template.yaml", "r") as template:
result = process_yaml(template, variables=variables)
# render a file and write the result as valid YAML
with open("the-template.yaml", "r") as template, open("the-rendered-version.yaml", "w") as outfile:
result = process_yaml(template, outfile=outfile, variables=variables)
Comparison with other engines
Lots of template engines are available, for example the famous generic jinja2. The reasons to generate a YAML specific engine are
- The YAML syntax can be exploited to simplify template expression syntax, and make it feel less foreign (i.e. fewer special characters for control flow needed) while increasing human readability.
- Whitespace handling (which is important with YAML since it has a semantic there) becomes unnecessary (e.g. with jinja2, some tuning is required to obtain proper YAML rendering).
Of course, YTE is not the first YAML specific template engine. Others include
The main difference between YTE and these two is that YTE extends YAML with plain Python syntax instead of introducing another specialized language. Of course, the choice is also a matter of taste.
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 yte-1.1.0.tar.gz
.
File metadata
- Download URL: yte-1.1.0.tar.gz
- Upload date:
- Size: 5.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.0.0 CPython/3.9.10 Linux/5.11.0-1028-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 172d4a35ce0b6dbc0ffb5d7c97f9be5c188bad843031659ba85bd145453894d2 |
|
MD5 | aa96838db6914100386fbbc73fb28995 |
|
BLAKE2b-256 | 5d457733d62e52957d1c538093015fd9413d486b99e71e6a2b9c09350dbe8fd0 |
Provenance
File details
Details for the file yte-1.1.0-py3-none-any.whl
.
File metadata
- Download URL: yte-1.1.0-py3-none-any.whl
- Upload date:
- Size: 5.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.0.0 CPython/3.9.10 Linux/5.11.0-1028-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2fe8ddbbc4439090f3083dfa9746d26682312752334764f7b8e3be6142a10359 |
|
MD5 | 686ec41d449fafd5d17e1dbdb2d7f296 |
|
BLAKE2b-256 | 18c5330ea01e83546c89c0706ccb597fa47c1b025cd9fa8522eb438a776e2b8a |