Python library to open existing .xlsx workbook with charts [closed]

放肆的年华 提交于 2019-12-06 09:17:14

Preservation of charts is a feature that is being introduced in openpyxl version 2.5 (see here and here). So you could try to install and use the 2.5 development version of openpyxl.

Panda's maybe able to read and write to Excel. It uses xlrd to read excel files and xlswriter to write it out. So it seems that it can load the Excel file usign xlrd, into memory and pass it out to xlsxwriter, to save the file.

https://pandas.pydata.org/pandas-docs/stable/io.html#io-excel-writer

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!