蟒蛇xlutils:formatting_info =真尚未实现(python xlutils :

2019-07-05 10:15发布

我有简单的代码与xlutils,xlrd,xlwt(从python-excel.org下载新库)与未松动格式复制文件。 我有如下错误:

from xlwt.Workbook import *
from xlwt.Style import *
from xlrd import open_workbook
from xlutils.copy import copy
import xlrd

style = XFStyle()
rb = open_workbook('file_master.xlsx', formatting_info=True)
wb = copy(rb.get_sheet(0))

new_book = Workbook()
w_sheet = wb.get_sheet(0)
w_sheet.write(6,6)

wb.save('new_file_master.xls')

错误:

 raise NotImplementedError("formatting_info=True not yet implemented")
NotImplementedError: formatting_info=True not yet implemented

能否请你帮我如何解决这个或者更确切地说,使工作?

Answer 1:

根据此线程的标志

formatting_info=True

只工作了XLS-文件,但不能用于XLSX,但(版本xlrd-0.8.0)。

作为一种变通方法,你可以在工作簿转换为使用Excel或OpenOffice XLS。

这似乎从XLSX一个命令转换为XLS,可以使用Unoconv在Linux,Windows和MacOSX的。



文章来源: python xlutils : formatting_info=True not yet implemented