pandas 流式导出excel

1,下载pandas和sqlalchemy

2,开始利用pandas导出

import pandas as pd
from sqlalchemy import create_engine
from io import BytesIO
from django.shortcuts import HttpResponse
outfile = BytesIO()
engine = create_engine('mysql+pymysql://root:Yimeijian@163.cn@106.75.7.128:3306/channel_statistics') 
sql
= 'select name,code,channel_type,pay_type from channel_channel where channel_p_id is not NULL '
df
=pd.read_sql_query(sql,engine) #先读取数据库中的数据

df = df.rename(columns={    #修改数据库中列的名称
'name':'名字',
'code':'refer',
'channel_type':'渠道类型',
'pay_type':'付款类型',
})

response = HttpResponse(content_type='application/vnd.ms-excel')
execl_name = 'test'
response['Content-Disposition'] = 'attachment;filename={0}.xlsx'.format(execl_name)
df.to_excel(outfile,index=False)     #形成流式导出
response.write(by.getvalue())
return response

 

转载于:https://www.cnblogs.com/52forjie/p/10438802.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值