首页 > 解决方案 > 打开受保护的 excel 文件太慢

问题描述

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

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()

标签: pythonexcelprotectedxlwings

解决方案


您是否考虑过使用openpyxlxlrd执行此任务?您还可以使用pandas.read_excel在后台使用这些软件包之一的功能。xlwings如果您需要与 Excel 进行交互,那就太好了,但如果您只需要批量读取单元格值,那么阅读器库可能更适合。


推荐阅读