A może coś takiego?
from jinja2 import Environment, FileSystemLoader
env = Environment(loader=FileSystemLoader('templates'))
template = env.get_template('test.html')
output_from_parsed_template = template.render(foo='Hello World!')
print(output_from_parsed_template)
with open("my_new_file.html", "w") as fh:
fh.write(output_from_parsed_template)
test.html
<h1>{{ foo }}</h1>
wynik
<h1>Hello World!</h1>
Jeśli używasz frameworka, takiego jak Flask, możesz to zrobić u dołu widoku, zanim wrócisz.
output_from_parsed_template = render_template('test.html', foo="Hello World!")
with open("some_new_file.html", "wb") as f:
f.write(output_from_parsed_template)
return output_from_parsed_template
rb
nawb
.)
na końcu pierwszej linii w dolnej sekcji kodu. Próbowałem go dodać, ale SO wymaga edycji, abyMożesz zrzucić strumień szablonu do pliku w następujący sposób:
Template('Hello {{ name }}!').stream(name='foo').dump('hello.html')
Ref: http://jinja.pocoo.org/docs/dev/api/#jinja2.environment.TemplateStream.dump
źródło
Więc po załadowaniu szablonu wywołujesz render, a następnie zapisujesz dane wyjściowe do pliku. Instrukcja „with” to menedżer kontekstu. Wewnątrz wcięcia znajduje się otwarty plik, taki jak obiekt o nazwie „f”.
template = jinja_environment.get_template('CommentCreate.html') output = template.render(template_values)) with open('my_new_html_file.html', 'w') as f: f.write(output)
źródło