Python Excel Python 的 Excel 开发包开源项目

我要开发同款
匿名用户2019年08月06日
50阅读
开发技术Python
所属分类程序开发、Excel开发包
授权协议BSD

作品详情

顾名思义,该项目是Python用来处理Excel文档的开发包,无需Windows以及Excel环境的支持。

该项目包含五个子项目:

openpyxl https://pypi.python.org/pypi/openpyxlxlsxwriter  https://gitee.com/mirrors/XlsxWriterxlrd https://gitee.com/mirrors/xlrdxlwt https://gitee.com/mirrors/xlwtxlutils https://gitee.com/mirrors/xlutils

示例代码:

fromopenpyxlimportWorkbookwb=Workbook()#grabtheactiveworksheetws=wb.active#Datacanbeassigneddirectlytocellsws['A1']=42#Rowscanalsobeappendedws.append([1,2,3])#Pythontypeswillautomaticallybeconvertedimportdatetimews['A2']=datetime.datetime.now()#Savethefilewb.save("sample.xlsx")
声明:本文仅代表作者观点,不代表本站立场。如果侵犯到您的合法权益,请联系我们删除侵权资源!如果遇到资源链接失效,请您通过评论或工单的方式通知管理员。未经允许,不得转载,本站所有资源文章禁止商业使用运营!
下载安装【程序员客栈】APP
实时对接需求、及时收发消息、丰富的开放项目需求、随时随地查看项目状态

评论