YamlLoader for jinja2
Project description
jinja2loader
YamlLoader is a template loader for jinja2 template framework. It loads templates from yaml-files. Useful when you need to store many small templates in one file.
Install
pip install jinja2yaml
Usage:
# templates.yaml
home:
welcome: |
Welcome, {{username}}!
goodbye: |
Goodbye, {{username}}!
# main.py
from jinja2 import Environment
from jinja2yaml import YamlLoader
jinja = Environment(loader=YamlLoader('templates.yaml'))
username = 'John Doe'
template1 = jinja.get_template('home/welcome')
rendered1 = template1.render(username=username)
print(rendered1) # Welcome, John Doe!
template2 = jinja.get_template('home/goodbye')
rendered2 = template2.render(username=username)
print(rendered2) # Goodbye, John Doe!
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
jinja2yaml-0.1.5.tar.gz
(3.4 kB
view hashes)
Built Distribution
Close
Hashes for jinja2yaml-0.1.5-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 269adea3d0c709099dedbc8fffe8f9e988896640dcc6a3282fb1782be3039963 |
|
MD5 | 28d705505a8febd976541d822e95776e |
|
BLAKE2b-256 | 438b3139918991303d185c6177cb176feaf05f013f8f302623c1ca1dcba51d0f |