import copy
import openpyxl
from openpyxl.utils import get_column_letter
import os
os.chdir("/siyuetian01/localGPT/script_zm")
root_path = "/siyuetian01/localGPT/script_zm"
path = os.path.join(root_path, "FAE体系问答汇总.xlsx")
select_name = "基础SDK运行"
save_path = os.path.join(root_path, select_name + ".xlsx")
wb = openpyxl.load_workbook(path)
wb2 = openpyxl.Workbook()
sheetnames = wb.sheetnames
for sheetname in sheetnames:
print(sheetname)
sheet = wb[sheetname]
sheet2 = wb2.create_sheet(sheetname)
sheet2.sheet_properties.tabColor = sheet.sheet_properties.tabColor
wm = list(sheet.merged_cells)
if len(wm) > 0:
for i in range(0, len(wm)):
cell2 = str(wm[i]).replace("(<CellRange ", "").replace(">,)", "")
sheet2.merge_cells(cell2)
save_i = 0
for i, row in enumerate(sheet.iter_rows()):
if row[0].value == select_name or i == 0:
sheet2.row_dimensions[save_i + 1].height = sheet.row_dimensions[i + 1].height
for j, cell in enumerate(row):
sheet2.column_dimensions[get_column_letter(j + 1)].width = sheet.column_dimensions[
get_column_letter(j + 1)
].width
sheet2.cell(row=save_i + 1, column=j + 1, value=cell.value)
source_cell = sheet.cell(i + 1, j + 1)
target_cell = sheet2.cell(save_i + 1, j + 1)
target_cell.fill = copy.copy(source_cell.fill)
if source_cell.has_style:
target_cell._style = copy.copy(source_cell._style)
target_cell.font = copy.copy(source_cell.font)
target_cell.border = copy.copy(source_cell.border)
target_cell.fill = copy.copy(source_cell.fill)
target_cell.number_format = copy.copy(source_cell.number_format)
target_cell.protection = copy.copy(source_cell.protection)
target_cell.alignment = copy.copy(source_cell.alignment)
save_i = save_i + 1
if "Sheet" in wb2.sheetnames:
del wb2["Sheet"]
wb2.save(save_path)
wb.close()
wb2.close()
print("Done.")