1 2 3 4 5 6 7 |
from jinja2 import Template template = Template("<html><head><title>{{ title }}</title></head><body><h1>{{ message }}</h1></body></html>") html_output = template.render(title="Mi Título", message="Hola Mundo!") print(html_output) |