python实现数据导出到excel的示例--普通格式


Posted in Python onMay 03, 2018

此文是在django框架下编写,从数据库中获取数据使用的是django-orm

用python导出数据到excel,简单到爆!(普通的excel格式)

安装xlwt

pip install xlwt

编写py文件

from xlwt import *
import StringIO
from apps.song.models import Song
def excel_ktvsong(request):

  """
导出excel表格
"""

  _id = request.GET.get('id', 0)

  list_obj = Song.objects.filter(is_delete__exact=False)
 # django orm  
  if list_obj:
 # 创建工作薄

    ws = Workbook(encoding='utf-8')

    w = ws.add_sheet(u"歌曲列表")

    w.write(0, 0, u"歌曲名称")

    w.write(0, 1, u"歌手")

    # 写入数据

    excel_row = 1

    for obj in list_obj:

      data_song = obj.song

      data_singer_name = obj.singer_name

      w.write(excel_row, 0, data_song)

      w.write(excel_row, 1, data_singer_name)


      excel_row += 1


    sio = StringIO.StringIO()

    ws.save(sio)

    sio.seek(0)

    response = HttpResponse(sio.getvalue(),     
    content_type='application/vnd.ms-excel')

    response['Content-Disposition'] = 'attachment;filename=%s.xls' % time.strftime('%Y%m%d%H%M%S')

    response.write(sio.getvalue())

    return response

  else:

    return HttpResponse("无数据")

以上这篇python实现数据导出到excel的示例--普通格式就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持三水点靠木。

Python 相关文章推荐
python实现划词翻译
Apr 23 Python
win7安装python生成随机数代码分享
Dec 27 Python
使用Python读写文本文件及编写简单的文本编辑器
Mar 11 Python
Python数据类型详解(三)元祖:tuple
May 08 Python
Python入门学习指南分享
Apr 11 Python
Python 机器学习库 NumPy入门教程
Apr 19 Python
python3 selenium 切换窗口的几种方法小结
May 21 Python
Numpy与Pytorch 矩阵操作方式
Dec 27 Python
利用pandas向一个csv文件追加写入数据的实现示例
Apr 23 Python
pycharm + django跨域无提示的解决方法
Dec 06 Python
Django前后端分离csrf token获取方式
Dec 25 Python
浅谈Python列表嵌套字典转化的问题
Apr 07 Python
python操作xlsx文件的包openpyxl实例
May 03 #Python
对Python字符串中的换行符和制表符介绍
May 03 #Python
pandas数据处理基础之筛选指定行或者指定列的数据
May 03 #Python
Python爬虫实现全国失信被执行人名单查询功能示例
May 03 #Python
Python 解决中文写入Excel时抛异常的问题
May 03 #Python
python 将数据保存为excel的xls格式(实例讲解)
May 03 #Python
python更改已存在excel文件的方法
May 03 #Python
You might like
桌面中心(四)数据显示
2006/10/09 PHP
php的ajax框架xajax入门与试用介绍
2010/12/19 PHP
9个PHP开发常用功能函数小结
2011/07/15 PHP
PHP定时执行任务实现方法详解(Timer)
2015/07/30 PHP
phpStudy2016 配置多个域名期间遇到的问题小结
2017/10/19 PHP
CentOS7系统搭建LAMP及更新PHP版本操作详解
2020/03/26 PHP
Extjs4 GridPanel 的几种样式使用介绍
2013/04/18 Javascript
基于javascript实现样式清新图片轮播特效
2016/03/30 Javascript
详解微信小程序 相对定位和绝对定位
2017/05/11 Javascript
axios如何利用promise无痛刷新token的实现方法
2019/08/27 Javascript
js消除图片小游戏代码
2019/12/11 Javascript
Python3.x版本中新的字符串格式化方法
2015/04/24 Python
用Python的Flask框架结合MySQL写一个内存监控程序
2015/11/07 Python
Python爬取网易云音乐热门评论
2017/03/31 Python
django基础之数据库操作方法(详解)
2017/05/24 Python
Python实现图片尺寸缩放脚本
2018/03/10 Python
Python3.6.0+opencv3.3.0人脸检测示例
2018/05/25 Python
python 监听salt job状态,并任务数据推送到redis中的方法
2019/01/14 Python
Python爬虫动态ip代理防止被封的方法
2019/07/07 Python
浅谈Python类中的self到底是干啥的
2019/11/11 Python
Python中顺序表原理与实现方法详解
2019/12/03 Python
python实现的分层随机抽样案例
2020/02/25 Python
Django之choices选项和富文本编辑器的使用详解
2020/04/01 Python
Python Pygame实现俄罗斯方块
2021/02/19 Python
Original Penguin美国官网:布拉德皮特、强尼德普喜爱的服装品牌
2016/10/25 全球购物
1688平价精选商城:阿里集团旗下,工厂出厂价格直销
2017/04/24 全球购物
环法自行车赛官方商店:Le Tour de France
2017/08/27 全球购物
联想新西兰官方网站:Lenovo New Zealand
2018/10/30 全球购物
最新个人职业生涯规划书
2014/01/22 职场文书
班长自荐书范文
2014/02/11 职场文书
2014庆六一活动方案
2014/03/02 职场文书
个人年终总结怎么写
2015/03/09 职场文书
2015年学校医务室工作总结
2015/07/20 职场文书
2016高中社会实践心得体会范文
2016/01/14 职场文书
新店开业策划方案怎么书写?
2019/07/05 职场文书
MySQL优化之如何写出高质量sql语句
2021/05/17 MySQL