I m试图搭建一个单页薄片,使用户能够下载一个字页文件。 我已经指出,如何使用假思-思想制作/回避文件,但现在我需要在答复中提供该文件。 任何想法?
这里我迄今为止所做的事情:
from flask import Flask, render_template
from docx import Document
from cStringIO import StringIO
@app.route( / )
def index():
document = Document()
document.add_heading("Sample Press Release", 0)
f = StringIO()
document.save(f)
length = f.tell()
f.seek(0)
return render_template( index.html )