真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

使用python生成oracle數(shù)據(jù)報表

#!/usr/bin/env python
#coding:utf-8
# cx_Oracle 用于訪問oracle和導(dǎo)出數(shù)據(jù)
import cx_Oracle
# xlsxwriter 用于生成xlsx文件
import xlsxwriter
import time
import sys
# 導(dǎo)入郵件模塊
from email.mime.text import MIMEText
from email.mime.multipart import MIMEMultipart
import smtplib
 
reload(sys)
sys.setsys.setdefaultencodingdefaultencoding("gbk")     #修改默認編碼為“gbk”,解決中文編碼問題 不進行設(shè)置會出現(xiàn) UnicodeDecodeError: 'ascii' codec can't decode byte 0xa1 in position 36: ordinal not in range(128)
 
con = cx_Oracle.connect("comm/12345678@orcl")
cursor = con.cursor()
 
#定義SQL腳本 由于腳本包含中文,使用decode('utf-8').encode('gbk') 對其進行轉(zhuǎn)換
sql ='''
select count 收費金額,
     locate 分中心
from business
'''.decode('utf-8').encode('gbk')
 
query1 = cursor.execute(sql)   #執(zhí)行查詢
 
title = [i[0] for i in query1.description]
 
date_now=time.strftime("%Y%m%d",time.localtime())
 
#文件名及其路徑
 
report_name='/excel/' + "業(yè)務(wù)數(shù)據(jù)".decode('utf-8').encode('gbk') + date_now + '.xlsx'
 
#生成xlsx格式oracle查詢統(tǒng)計報表
 
workbook = xlsxwriter.Workbook(report_name, {'constant_memory': True})
worksheet = workbook.add_worksheet()
print time.ctime()
data = cursor.fetchall()
print time.ctime()
worksheet.write_row(0, 0, title)
for row, row_date in enumerate(data):
    worksheet.write_row(row+1, 0, row_date)
print time.ctime()
cursor.close()
con.close()
workbook.close()
 
#以下代碼實現(xiàn)發(fā)送郵件
 
msg = MIMEMultipart()
 
#定義附件名
 
att1_name="業(yè)務(wù)數(shù)據(jù)".decode('utf-8').encode('gbk') + date_now + '.xlsx' 
 
#讀入附件,report_name
 
att1 = MIMEText(open(report_name, 'rb').read(), 'base64', 'gb2312')
att1["Content-Type"] = 'application/octet-stream'
att1["Content-Disposition"] = 'p_w_upload; filename=%s' % att1_name.encode('gbk')
msg.attach(att1)
 
msg['to'] = 'boss@126.com'
msg['from'] = 'report@126.com'
msg['subject'] = "每周業(yè)務(wù)數(shù)據(jù)".decode('utf-8').encode('gbk')
try:
    server = smtplib.SMTP()
    server.connect('mail.126.com')
    server.login('report@126.com','12345678')#
    server.sendmail(msg['from'], msg['to'],msg.as_string())
    server.quit()
    print 'successful.'
except Exception, e:
    print str(e)

標(biāo)題名稱:使用python生成oracle數(shù)據(jù)報表
網(wǎng)頁鏈接:http://weahome.cn/article/ipogoc.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部