简体   繁体   English

在Flask中返回Excel文件

[英]Return Excel file in Flask

I am building a flask app in python 3. I am trying to write to the output and respond to download. 我正在用python 3构建Flask应用程序。我正在尝试写入输出并响应下载。 All I am doing is write the sqlite3 db content to a excel file trying to send to the client side for download. 我要做的就是将sqlite3 db内容写入一个Excel文件,尝试发送到客户端进行下载。 everything seems to be working fine till creation of excel file. 在创建excel文件之前,一切似乎工作正常。 I am not able to send to the client. 我无法发送给客户。

@app.route('/download', methods=['GET'])
def export_db():
    values = execute("SELECT * from table",[])
    wb = Workbook()
    ws = wb.active

    for item in values.fetchall():
        ws.append(item)
    wb.save('example.xlsx')

    output = make_response(wb)
    output.headers["Content-Disposition"] = "attachment; filename=" + 
    "example.xlsx"
    output.headers["Content-type"] = "application/vnd.openxmlformats-
    officedocument.spreadsheetml.sheet"
    return output

The error message which I received was, 我收到的错误消息是,

Traceback (most recent call last):
File "/usr/local/lib/python3.5/dist-packages/flask/app.py", line 1612, 
in full_dispatch_request
rv = self.dispatch_request()
File "/usr/local/lib/python3.5/dist-packages/flask/app.py", line 1598, 
in dispatch_request
return self.view_functions[rule.endpoint](**req.view_args)
File "/home/user/Documents/main.py", 
line 218, in export_db
output = make_response(wb)
File "/usr/local/lib/python3.5/dist-packages/flask/helpers.py", line 
191, in make_response
return current_app.make_response(args)
File "/usr/local/lib/python3.5/dist-packages/flask/app.py", line 1740, 
in make_response
rv = self.response_class.force_type(rv, request.environ)
File "/usr/local/lib/python3.5/dist-packages/werkzeug/wrappers.py", 
line 911, in force_type
response = BaseResponse(*_run_wsgi_app(response, environ))
File "/usr/local/lib/python3.5/dist-packages/werkzeug/wrappers.py", 
line 59, in _run_wsgi_app
return _run_wsgi_app(*args)
File "/usr/local/lib/python3.5/dist-packages/werkzeug/test.py", line 
884, in run_wsgi_app
app_rv = app(environ, start_response)
TypeError: 'Workbook' object is not callable

I have referred to couple of similar questions but none of them seem to help. 我已经提到了几个类似的问题,但是似乎没有一个有用的问题。 Any help will be appreciated. 任何帮助将不胜感激。

Note: when I tried adding the file path to the make_response, It takes the file path as a string and returns me a .xlsx file with the file path as content. 注意:当我尝试将文件路径添加到make_response时,它将文件路径作为字符串并返回给我一个.xlsx文件,其中文件路径为内容。 Any Idea what I am doing wrong? 知道我在做什么错吗?

Something like this should work: 这样的事情应该起作用:

from flask import send_file
from xlsxwriter import Workbook

@app.route('/download', methods=['GET'])
def export_db():
    values = execute("SELECT * from table",[])
    wb = Workbook('path/to/workbook.xlsx')
    wb.add_worksheet('All Data')

    for item in values.fetchall():
        wb.write(item)
    wb.close()

    return send_file('path/to/workbook.xlsx')

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM