使用 Python 的 xlrd 和 xlutils 保留 Excel 格式的问题

Issues in preserving Excel formatting with Python's xlrd and xlutils

简而言之,我想将一个 Excel 文件的所有格式保留到另一个文件中。但是,尽管使用了 formatting_info=True 标志,但格式只会出现在已更改行中所有未更改的单元格中。有什么建议吗?

import xlrd, xlutils
from xlrd import open_workbook
from xlutils.copy import copy

inBook = xlrd.open_workbook(r"path/to/file/format_input.xls", formatting_info=True, on_demand=True)
outBook = xlutils.copy.copy(inBook)

outBook.get_sheet(0).write(0,0,'changed!')
outBook.save(r"path/to/file/format_output.xls")

在此处输入图片描述

xlwt.write 接受样式信息作为它的第三个参数。不幸的是,xlrd 和 xlwt 使用两种截然不同的 XF 对象格式。所以不能直接将xlrd读取的工作簿中的单元格样式复制到xlwt创建的工作簿中。

解决方法是使用 xlutils.XLWTWriter 复制文件,然后取回 that 对象的样式信息以保存单元格的样式更新。

首先你需要 patch 功能,由 John Machin 在 a very similar question:

中提供
from xlutils.filter import process,XLRDReader,XLWTWriter

#
# suggested patch by John Machin
# 
# 
def copy2(wb):
    w = XLWTWriter()
    process(
        XLRDReader(wb,'unknown.xls'),
        w
        )
    return w.output[0][1], w.style_list

然后在你的主要代码中:

import xlrd, xlutils
from xlrd import open_workbook
from xlutils.copy import copy

inBook = xlrd.open_workbook(r"/tmp/format_input.xls", formatting_info=True, on_demand=True)
inSheet = inBook.sheet_by_index(0)

# Copy the workbook, and get back the style
# information in the `xlwt` format
outBook, outStyle = copy2(inBook)

# Get the style of _the_ cell:    
xf_index = inSheet.cell_xf_index(0, 0)
saved_style = outStyle[xf_index]

# Update the cell, using the saved style as third argument of `write`:
outBook.get_sheet(0).write(0,0,'changed!', saved_style)
outBook.save(r"/tmp/format_output.xls")

我在使用 openpyxl 时遇到了类似的问题 - 出于某种原因,这似乎在可用模块中处理得不是很好。输入数据后,我最终只是根据需要重新设置单元格的样式,使用以下语法:

#Formatting
from openpyxl.styles import Style, Color, PatternFill, Alignment, Font, NumberFormat
#Allows for conditional formatting
from openpyxl.formatting import CellIsRule #Allows for Conditional Formatting

for cell in changed_cells:
    cell.style = Style(fill=PatternFill(patternType='solid', fgColor=Color('FFff8888')), 
                         font=Font(name="Arial",size=11), 
                         alignment=Alignment(horizontal="center"))

可以找到有关使用 xlrd 实现此类内容的语法的信息 here