YAMLpp: a macro language for dynamic YAML preprocessing
Project description
YAML File Preprocessor (YAMLpp)
Problem
YAML is an excellent file format but it is essentially static. Sometimes, the content of a YAML file must change according to circumstances (typically when the environment changes or when you have different configuratons for test or production, etc.).
Manually maintaining different versions can be time-consuming and error-prone.
Introducing YAMLpp
What if we had a way to generate a new YAML file (or more than one) according to a single pattern?
The purpose of YAML Preprocessor (YAMLpp) is to help programmers prepare YAML files from a template, with rules that produce the YAML tree according to source data. It extends standard YAML with constructs for variable declaration, conditionals, iteration, functions, importing and exporting YAML files, and importing Python modules.
YAMLpp is a macro language, since it manipulates the YAML tree on which it resides.
Here is a simple example:
YAMLpp:
.context:
name: "Alice"
message: "Hello, {{ name }}!"
Output:
message: "Hello, Alice!"
General principles
The language is composed of constructs, which are denoted keys starting with a dot (.), such
as .context, .if, .switch, etc.
The YAMLpp preprocessor uses these constructs modify the tree, and the constructs disappear.
The result is pure YAML.
YAMLpp obeys the rules of YAML syntax:
- It provides declarative constructs without breaking YAML syntax.
- It allows modular, reusable, and expressive constructs that create YAML files
🚀 Quickstart
Installation
pip install yamlpp-lang
Command-line usage
yamlpp input.yaml -o output.yaml
input.yaml→ your YAML file with YAMLpp directivesoutput.yaml→ the fully expanded YAML after preprocessing
To consult the help:
yamlpp --help
Python API
from yamlpp import Interpreter
FILENAME = 'my_file.yaml'
i = Interpreter()
# the initial (source) tree:
initial_tree = i.load(FILENAME)
# the destination (target) tree (pure YAML):
tree = i.render()
# print the resulting YAML
print(i.yaml)
🔧 YAMLpp Constructs (Quick Reference)
| Construct | Purpose | Minimal Example |
|---|---|---|
.context |
Define local variables valid for siblings and descendants. | .context: name: "Alice" message: "Hello {{ name }}" |
.do |
Execute a sequence or map of instructions. | .do: - step: "Init" - step: "Run" |
.foreach |
Iterate over values with a loop body. | .context: items: [1,2] .foreach: .values: [x, items] .do: - val: "{{ x }}" |
.switch |
Branch to a different node based on an expression and cases. | .switch: .expr: "{{ color }}" .cases: red: {msg: "Stop"} .default: {msg: "?"} |
.if |
Conditional node creation with then and else. |
.if: .cond: "{{ x>0 }}" .then: {res: "Pos"} .else: {res: "Neg"} |
.load |
Insert and preprocess another YAMLpp (or YAML) file. | .import: "other.yaml" |
.function |
Define a reusable block with arguments and a body. | .function: .name: "greet" .args: ["n"] .do: - msg: "Hi {{ n }}" |
.call |
Invoke a previously defined function with arguments. | .call: .name: "greet" .args: ["Bob"] |
.import |
Import a Python module exposing functions, filters, and variables. | .module: "module.py" |
.export |
Export a portion of the tree into an external file. | .export: .filename: "out.yaml" .do: - foo: "bar" |
Project details
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file yamlpp_lang-0.2.6.tar.gz.
File metadata
- Download URL: yamlpp_lang-0.2.6.tar.gz
- Upload date:
- Size: 36.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
06bb3a7d0ac72fb830aacdb1f4ead978947770be55c59efa93d94e43f431d9b3
|
|
| MD5 |
f46dc39e5cb5cd3e5f2d1baa27fec559
|
|
| BLAKE2b-256 |
e9865b662be08ab7a41341b7b26c1dc38ee1e66304172e4733195515e7da0c9c
|
File details
Details for the file yamlpp_lang-0.2.6-py3-none-any.whl.
File metadata
- Download URL: yamlpp_lang-0.2.6-py3-none-any.whl
- Upload date:
- Size: 42.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
72f841bd782bc6a1d8c26f978ead2e8024fe2bf4c23942bd84c19d97dadb5caf
|
|
| MD5 |
1d1c28e31343f11441d882f8a315e678
|
|
| BLAKE2b-256 |
a6c9f141b8adcfc20b64df631b3af4d1aa4398b4850760862766e4fc10e6527d
|