我有简单的代码来复制带有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
你能帮我解决一下这个问题,还是让它起作用?
答案 0 :(得分:26)
根据this thread旗帜
formatting_info=True
仅适用于xls文件,但不适用于xlsx(版本xlrd-0.8.0)。
作为一种解决方法,您可以使用Excel或OpenOffice将工作簿转换为xls。
似乎可以在Linux,Windows和MacOSX上使用Unoconv从xlsx到xls的命令行转换。