Skip to main content

Protein: a macro language for data composition and templating

Project description

YAML File Preprocessor (YAMLpp)

THIS IS THE LAST VERSION CALLED YAMLPP; THE REPO WILL BE RENAMED AS PROTEIN

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:

.local:
  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 .local, .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 directives
  • output.yaml → the fully expanded YAML after preprocessing

To consult the help:

yamlpp --help

Python API

from protein 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
.local Define local variables valid for siblings and descendants. .local:
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. .local:
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_module: "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_module 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

protein_lang-0.5.1.tar.gz (65.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

protein_lang-0.5.1-py3-none-any.whl (75.1 kB view details)

Uploaded Python 3

File details

Details for the file protein_lang-0.5.1.tar.gz.

File metadata

  • Download URL: protein_lang-0.5.1.tar.gz
  • Upload date:
  • Size: 65.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for protein_lang-0.5.1.tar.gz
Algorithm Hash digest
SHA256 6b6b9d2a6a7b1a5e52278e0f927dffdbc63e4c9b923d8b1d89f4a989f0cd9f20
MD5 31b8b441c7d53bf8f186d5521e012c4d
BLAKE2b-256 4a48f117503fec102b4bd2ca2f3f2a05523f4f533cdc0d3e2f7c9220fa4e0cf2

See more details on using hashes here.

File details

Details for the file protein_lang-0.5.1-py3-none-any.whl.

File metadata

  • Download URL: protein_lang-0.5.1-py3-none-any.whl
  • Upload date:
  • Size: 75.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for protein_lang-0.5.1-py3-none-any.whl
Algorithm Hash digest
SHA256 ec6abf2ff0099e3887eeaf896b6fd62c6b961e6d49dfa2a44abbaadf9bb7699b
MD5 c40d2e6fcce0950e0da7a525672f6bbc
BLAKE2b-256 c20ce8250ca7e7f5ec84cb02db041d799bfdec36e1670be6815aa0f4ca303ad4

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page