python小工具
旺旺的宝宝兔
True Master always have a freshman heart
展开
-
python两种发邮件的方式smtp和outlook
smtp是直接调用163邮箱的smtp服务器,需要在163邮箱中设置一下。outlook发送就是python直接调用win32方式调用程序outlook直接发送邮件。import win32com.client as win32import xlrdoutlook = win32.Dispatch('outlook.application')mail = outlook.Create原创 2017-06-02 13:29:28 · 10639 阅读 · 0 评论 -
python编辑excel做报表给manager看
import xlrdimport osimport refrom numpy import arangeimport zipfileimport matplotlib.pyplot as pltimport redef read_excel_make_picture(file): workbook = xlrd.open_workbook(file) mySh原创 2017-06-02 16:46:31 · 481 阅读 · 0 评论