Ich habe einfachen Code, um Dateien mit xlutils, xlrd, xlwt (neue Bibliotheken von python-excel.org) zu kopieren, ohne die Formatierung zu verlieren. Ich habe einen Fehler bekommt wie folgt:python xlutils: formating_info = True noch nicht implementiert
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')
Fehler:
raise NotImplementedError("formatting_info=True not yet implemented")
NotImplementedError: formatting_info=True not yet implemented
Könnten Sie mir bitte helfen, wie dies zu umgehen, oder besser gesagt, damit es funktioniert?