|
|
@@ -123,10 +123,12 @@ def update_excel_by_oleexcel(oem, ole_excel):
|
|
|
# 保存文件
|
|
|
update_file = "output/excels/" + oem + "_inc.xlsx"
|
|
|
wb.save(update_file) # 保存为新文件,避免覆盖原文件
|
|
|
+
|
|
|
+ print("增量字典已成功输出到 " + update_file)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
# 根据代码json地址生成excel
|
|
|
generate_excle_by_oem('tss')
|
|
|
|
|
|
# 增量更新,在生成excel里标注新增的key为黄色
|
|
|
- update_excel_by_oleexcel('tss', '20241027_tss')
|
|
|
+ update_excel_by_oleexcel('tss', '20241122_tss_inc')
|