Skip to content

Instantly share code, notes, and snippets.

@eliasp
Created October 12, 2018 12:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save eliasp/7c3717617da351ebcacd04e8ab216ba6 to your computer and use it in GitHub Desktop.
Save eliasp/7c3717617da351ebcacd04e8ab216ba6 to your computer and use it in GitHub Desktop.
Test Jinja2 templates in a REPL
from jinja2 import Template
text = """
hi
"""
template = Template(text)
template.render() # passing variables here to the text template if needed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment