Skip to content

Instantly share code, notes, and snippets.

@irlevesque
Created September 7, 2016 14:08
Show Gist options
  • Save irlevesque/30cf8b29345353024ebf0489fd4ca30b to your computer and use it in GitHub Desktop.
Save irlevesque/30cf8b29345353024ebf0489fd4ca30b to your computer and use it in GitHub Desktop.
Testing jinja templating in python REPL
>>> from jinja2 import Template
>>> tmpl = """{% if name != "Jeff" %}Nothing to see here move along{% else %}
... hello {{name}}, how are you?{% endif %}"""
>>> template = Template(tmpl)
>>> print template.render({"name": "Jeff"})
hello Jeff, how are you?
>>> print template.render({"name": "John"})
Nothing to see here move along
>>>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment