Python实现mysql中数据导成excel表格
V1.0
[infobg class=“warning” closebtn=“” color=“” bgcolor=“”] 1、支持中文数据转换,此处数据库等信息均使用utf-8。 2、日期格式可自定义(对于东代码的朋友来说),默认格式:2015-04-21 20:31:21 3、目前仅实现了创建新表功能,同一表名会覆盖原表。 4、目前仅在windows平台测试过,linux平台可能需要修改下编码。 [/infobg] [toggle hide=“yes” title=“Python代码” color=“”]
# 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])
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
[/toggle]
预览
除特别注明外,本站所有文章均为 windcoder 原创,转载请注明出处来自: python-shi-xian-mysql-zhong-shu-ju-dao-cheng-excel-biao-ge
Loading comments...

预览
暂无数据