1、支持中文数据转换,此处数据库等信息均使用utf-8。
2、日期格式可自定义(对于东代码的朋友来说),默认格式:2015-04-21 20:31:21
3、目前仅实现了创建新表功能,同一表名会覆盖原表。
4、目前仅在windows平台测试过,linux平台可能需要修改下编码。
Python代码
# Create your views here.
# -*- coding: utf-8 -*-
import MySQLdb
import xlwt
from datetime import datetime
wbk=xlwt.Workbook(encoding='utf-8')
sheet=wbk.add_sheet('sheet 2')
sheet.write(0,0,'Uid')
sheet.write(0,1,u'姓名')
sheet.write(0,2,'password')
sheet.write(0,3,'Email')
sheet.write(0,4,'Date')
row=1
fmt='YYYY-MM-DD hh:mm:ss'
try:
conn=MySQLdb.connect(host="localhost",user='root',passwd="",db="personalblog_db",charset='utf8')
cur=conn.cursor()
count=cur.execute('select * from users')
print 'there has %s rows record' % count
results=cur.fetchmany(count)
for uid,uname,upassword,uemail,udate in results:
sheet.write(row,0,uid)
sheet.write(row,1,uname)
sheet.write(row,2,upassword)
sheet.write(row,3,uemail)
style = xlwt.XFStyle()
style.num_format_str = fmt
sheet.write(row,4,udate,style)
row+=1
wbk.save('users1.xls')
cur.close()
conn.commit()
conn.close()
except MySQLdb.Error,e:
print "Mysql Error %d: %s"%(e.args[0],e.args[1])
扫码关注腾讯云开发者
领取腾讯云代金券
Copyright © 2013 - 2025 Tencent Cloud. All Rights Reserved. 腾讯云 版权所有
深圳市腾讯计算机系统有限公司 ICP备案/许可证号:粤B2-20090059 深公网安备号 44030502008569
腾讯云计算(北京)有限责任公司 京ICP证150476号 | 京ICP备11018762号 | 京公网安备号11010802020287
Copyright © 2013 - 2025 Tencent Cloud.
All Rights Reserved. 腾讯云 版权所有