pybars3_extensions
Project description
pybars3_extensions library.
This introduces #each, #case and #default for building switch/case statements.
Usage
Template:
{{#each cool.items}} {{#switch this.type}} {{#case '1'}}MATCH: {{this}}{{/case}} {{#default}}NO MATCH{{/default}} {{/switch}} {{/each}}
Python code:
from pybars3_extensions import helpers # ... hbs = pybars.Compiler().compile(source=template) print(hbs(data, helpers=helpers))
Installation
pip install pybars3_extensions
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.