当前位置:   article > 正文

flask读取数据库内容导出为excel文件_flask导出excel

flask导出excel

已知数据入库,存在数据表,model层读取了数据库查询结果。将查询结果转为excel,放入内存中。

# model.py
from io import BytesIO
import pandas as pd

def to_excel(sql_return):
	df = pd.DataFrame(sql_return)
	f = BytesIO()  # 内存文件
	with pd.ExcelWriter(f, engine='openpyxl') as w:
	    df.to_excel(w, index=None)
	f.seek(0)  # 文件指针
	return f
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11

将内存中的数据放入返回体。

# view.py
import arrow
from flask import Flask, request, make_reponse
from model import to_excel

app = Flask(__name__)
...

@app.route('/api/v1/xxx/export')
def export_content():
	data = request.data
	...
	f = to_excel(sql_return)
	rv = make_response(f.getvalue())
    f.close()
    rv.headers['Content-Type'] = 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet'
    rv.headers['Cache-Control'] = 'no-cache'
    rv.headers['Content-Disposition'] = 'attachment; filename=export-{}.xlsx'.format(int(arrow.now().timestamp()*1000))
    return rv
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19

如上。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/凡人多烦事01/article/detail/464511
推荐阅读
相关标签
  

闽ICP备14008679号