Python办公自动化之Excel(中)
发布时间:2021-06-22 15:26:45
准备
首先,我们需要安装依赖包
读取数据
使用 openpyxl 中的 load_workbook(filepath) 加载本地一个 Excel 文件,返回结果是一个工作簿对象
1 2 3 4 | import openpyxl wb = openpyxl.load_workbook(file_path)
|
利用工作簿对象,可以获取所有的 Sheet 名称及 Sheet 列表
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | def get_all_sheet_names(wb):
sheet_names = wb.sheetnames
return sheet_names def get_all_sheet(wb):
sheet_names = get_all_sheet_names(wb)
sheets = []
for sheet_name in sheet_names:
sheet = wb[sheet_name]
sheets.append(sheet) return sheets
|
工作簿对象提供了 active 属性,用于快速获取当前选择的 Sheet
1 2 3 4 5 6 7 8 9 10 | def get_current_sheet(wb):
current_sheet = wb.active return current_sheet
|
另外,也可以通过 Sheet 名称去获取某一个特定的 Sheet 对象
1 2 3 4 5 6 7 8 9 10 11 12 13 | def get_sheet_by_name(wb, sheet_name):
sheet_names = get_all_sheet_names(wb)
if sheet_name in sheet_names:
result = wb[sheet_name]
else :
result = None
return result
|
使用 sheet.max_row 和 sheet.max_column 可以获取当前 Sheet 中的数据行数和列数
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | def get_row_and_column_num(sheet):
row_count = sheet.max_row
column_count = sheet.max_column return row_count, column_count row_count, column_count = get_row_and_column_num(sheet)
print ( '行数和列数分别为:' , row_count, column_count)
|
openpyxl 提供 2 种方式来定位一个单元格,分别是:
数字索引:行数字索引、列数字索引
比如:row_index=1,column_index=1
字符串索引:列由字母组成 + 行索引
比如:A1 对应第一行、第一列的单元格
并且,openpyxl.utils 提供了方法,便于 列索引 在两者之间进行转换
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | from openpyxl.utils import get_column_letter, column_index_from_string def column_num_to_str(num):
return get_column_letter(num) def column_str_to_num( str ):
return column_index_from_string( str )
|
单元格的获取,同样可以通过上面 2 种索引方式来获取
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | def get_cell(sheet, row_index, column_index):
cell_one = sheet.cell(row = row_index, column = column_index)
return cell_one
|
在日常处理 Excel 数据过程中,可能需要判断单元格数据类型,而 openpyxl 并没有提供现成的方法
这里,我们可以通过单元格对象的 value 属性拿到值,接着使用 isinstance 方法判断数据类型
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 | def get_cell_value_and_type(cell):
cell_value = cell.value
cell_type = get_cell_value_type(cell_value) return cell_value, cell_type def get_cell_value_type(cell_value):
if not cell_value:
cell_type = 0
elif isinstance (cell_value, int ) or isinstance (cell_value, float ):
cell_type = 1
elif isinstance (cell_value, str ):
cell_type = 2
elif isinstance (cell_value, datetime.datetime):
cell_type = 3
else :
cell_type = 4
return cell_type
|
单独获取某一行[列]的数据,可以使用下面的方式:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | def get_row_cells_by_index(sheet, row_index):
row_cells = sheet[row_index]
return row_cells def get_column_cells_by_index(sheet, column_index):
column_index_str = column_num_to_str(column_index)
column_cells = sheet[column_index_str]
return column_cells
|
需要注意的是,获取某一行的数据需要传入数字索引;而对于列数据的获取,必须传入字符串索引
和 Python 列表范围取值类似,openpyxl 同样支持使用 : 符号拿到某个范围内的数据行[列]
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | def get_rows_by_range(sheet, row_index_start, row_index_end):
rows_range = sheet[row_index_start:row_index_end]
return rows_range def get_columns_by_range(sheet, column_index_start, column_index_end):
columns_range = sheet[column_num_to_str(column_index_start):column_num_to_str(column_index_end)]
return columns_range
|
写入数据
要写入数据到 Excel 表格
首先,使用 openpyxl.Workbook() 创建一个 Excel 工作簿对象
接着,使用工作簿对象的 create_sheet() 新建一个 Sheet
1 2 3 4 5 6 7 8 9 | wb = openpyxl.Workbook() new_sheet = wb.create_sheet( '新的Sheet' , 0 )
|
默认创建的 Sheet 被插入到最后一个位置,第 2 个参数可以指定 Sheet 插入的位置
Sheet 标签的背景色同样支持修改,使用 sheet_properties.tabColor 指定 RGB 颜色值
比如,要设置某一个 Sheet 的背景色为红色,只需要先查询到对应的 Sheet,然后指定颜色值为 FF0000 即可
1 2 3 4 5 6 7 8 9 10 11 | def set_sheet_bg_color(sheet, rgb_value):
sheet.sheet_properties.tabColor = rgb_value
set_sheet_bg_color(new_sheet, 'FF0000' )
|
openpyxl 支持行列数字索引、字符串索引以这 2 种方式写入数据到单元格中
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | def write_value_to_cell_with_num(sheet, row_index, column_index, value):
sheet.cell(row = row_index, column = column_index, value = value)
def write_value_to_cell_with_index_str(sheet, index_str, value):
sheet[index_str] = value
|
在单元格中插入图片也很简单,openpyxl 提供的 add_image() 方法
参数有 2 个,分别是:图片对象、单元格字符串索引
为了便于使用,我们可以将列索引进行转换,然后封装成两个插入图片的方法
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | from openpyxl.drawing.image import Image def insert_img_to_cell_with_num(sheet, image_path, row_index, column_index):
index_str = column_num_to_str(column_index) + str (row_index)
insert_img_to_cell_with_str(sheet, image_path, index_str) def insert_img_to_cell_with_str(sheet, image_path, index_str):
sheet.add_image((image_path), index_str)
|
最后,调用工作簿对象的 save() 方法,将数据真实写入到 Excel 文件中
1 2 3 | wb.template = False
wb.save( 'new.xlsx' )
|
修改数据
修改数据包含:单元格数据的修改、单元格样式的修改
对于单元格数据的修改,只需要先读取工作簿对象,查询到要操作的 Sheet 对象,然后调用上面的方法修改单元格数据,最后调用 save() 函数保存覆盖即可
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | def modify_excel( self , file_path):
wb = openpyxl.load_workbook(file_path)
sheet = wb[ '第一个Sheet' ]
print (sheet)
write_value_to_cell_with_num(sheet, 1 , 1 , '姓名1' )
wb.save(file_path)
|
单元格样式包含:字体样式、单元格背景样式、边框样式、对齐方式等
以常见的字体样式、对齐方式为例
首先,使用 openpyxl 中的 Font 类创建一个对象,指定字体名称、字体大小、是否加粗、是否斜体、颜色、下划线等
1 2 3 4 5 6 7 8 9 10 11 12 | from openpyxl.styles import Font font0 = Font(name = 'Calibri' ,
size = 20 ,
bold = False ,
italic = False ,
vertAlign = None ,
underline = 'none' ,
strike = False ,
color = 'FF00FF00' )
|
接着,构建一个 Alignment 对象,指定单元格的对齐方式
1 2 3 4 5 6 7 8 9 | from openpyxl.styles import Font,Alignment alignment0 = Alignment(horizontal = 'center' ,
vertical = 'bottom' ,
text_rotation = 0 ,
wrap_text = False ,
shrink_to_fit = False ,
indent = 0 )
|
最后,使用单元格对象的 font/alignment 属性,将字体样式和对齐方式设置进去即可
1 2 3 | sheet[ 'A1' ].font = font0
sheet[ 'A1' ].alignment = alignment0
|
进阶用法
接下来,聊聊几个常用的进阶用法
1、获取可见及隐藏的 Sheet
通过判断 Sheet 对象的 sheet_state 属性值,可以判断当前 Sheet 是显示还是隐藏
当值为 visible 时,代表 Sheet 是显示的
当值是 hidden 时,代表这个 Sheet 被隐藏了
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | def get_all_visiable_sheets(wb):
return [sheet for sheet in get_all_sheet(wb) if sheet.sheet_state = = 'visible' ] def get_all_hidden_sheets(wb):
return [sheet for sheet in get_all_sheet(wb) if sheet.sheet_state = = 'hidden' ]
|
2、获取隐藏/显示的行索引列表、列索引列表
受限于篇幅,这里以获取所有显示/隐藏的行索引列表为例
遍历 Sheet 对象的 row_dimensions 属性值,通过判断行属性的 hidden 值,判断当前行是否隐藏或显示
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | def get_all_rows_index(sheet, hidden_or_visiable):
hidden_indexs = []
for row_index, rowDimension in sheet.row_dimensions.items():
if rowDimension.hidden:
hidden_indexs.append(row_index)
visiable_indexs = [index + 1 for index in range (get_row_and_column_num(sheet)[ 0 ]) if index + 1 not in hidden_indexs]
return hidden_indexs if hidden_or_visiable else visiable_indexs
|
3、获取单元格字体颜色及单元格背景颜色
单元格对象的 font.color.rgb、fill.fgColor.rgb 属性值分别代表字体颜色值、单元格背景颜色
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | def get_cell_font_color(sheet, row_index, column_index):
cell_color = sheet.cell(row_index, column_index).font.color
if cell_color:
return sheet.cell(row_index, column_index).font.color.rgb
else :
return None def get_cell_bg_color(sheet, row_index, column_index):
return sheet.cell(row_index, column_index).fill.fgColor.rgb
|
最后
可以发现,openpyxl 相比 xlrd/xlwt,提供了大量实用的 API,功能更强大,并且完美支持 xlsx!
受限于篇幅,文中只展示了部分功能和代码,更加复杂的功能,比如:单元格合并、单元格完整样式操作,我已经封装成方法上传到后台代码地址:https://github.com/xingag/test_auto/tree/master/office_auto/Excel