इस जैसे किसी और के बारे में क्या राय है?
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>
उत्पादन
<h1>Hello World!</h1>
यदि आप एक रूपरेखा का उपयोग कर रहे हैं, जैसे कि फ्लास्क, तो आप अपने देखने के नीचे, वापसी से पहले ऐसा कर सकते थे।
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