Sophie

Sophie

distrib > Mageia > 4 > x86_64 > by-pkgid > 60b1a5c7615e3774f89f9bb6653012d7 > files > 154

python3-jinja2-2.7.2-2.mga4.noarch.rpm

from jinja2 import Environment


env = Environment(line_statement_prefix='%', variable_start_string="${", variable_end_string="}")
tmpl = env.from_string("""\
% macro foo()
    ${caller(42)}
% endmacro
<ul>
% for item in seq
    <li>${item}</li>
% endfor
</ul>
% call(var) foo()
    [${var}]
% endcall
% filter escape
    <hello world>
    % for item in [1, 2, 3]
      -  ${item}
    % endfor
% endfilter
""")

print tmpl.render(seq=range(10))