打开受保护的excel文件太慢



我开发了一个脚本,该脚本使用xlwings打开大量受保护(不是密码保护,只是受保护(的excel文件,读取每个文件中的一列并将其写入dict,然后关闭。它工作时不会产生任何错误,但速度非常慢。有比下面的代码更快的方法吗?

import xlwings as xw
def unprotect_xls(filename, date):
workbook = xw.Book(filename)
sheet = workbook.sheets['Table1']
error_length[date] = dict(zip(range(1,21), sheet['BN7:BN26'].value))
workbook.close()

#### not working example ####
file_names = ['file1', 'file2', ..., 'file999']
dates = ['date1', ...]
new_files = len(file_names) 
# make dict
error_length = {}
# open excel in background
app = xw.App(visible=False)
#fill dict
for i in range(new_files):
unprotect_xls(file_names[i], dates[i])
app.quit()

您是否考虑过使用openpyxlxlrd执行此任务?您还可以使用pandas.read_excel函数,该函数在后台使用其中一个包。如果您需要与Excel交互,xlwings非常好,但如果您只需要批量读取单元格值,阅读器库可能更适合。

最新更新