将flask的render_template用于非显示的HTML页面

时间:2014-08-27 18:19:01

标签: python flask

我正在使用flask,在此应用程序中,我需要根据输入生成HTML文件,然后上传到Amazon S3。我知道render_template可以用来动态创建HTML,但是我可以将结果保存到文件而不是立即显示吗?

而不是

return render_template("index.html")

我期待像

这样的东西
file = render_template("index.html")
S3Connection.upload(file)

这主要是伪代码,但这会有效吗?有没有更好的方法来实现这一目标?

0 个答案:

没有答案