gpt4 book ai didi

python - 从受密码保护的 Excel 文件到 Python 对象

转载 作者:行者123 更新时间:2023-11-30 22:57:01 27 4
gpt4 key购买 nike

我使用的是 Windows 7、Python 2.7 和 Microsoft Excel 2013。

我从here知道我可以使用以下示例代码打开并访问受密码保护的 Excel 工作表:

import sys
import win32com.client
xlApp = win32com.client.Dispatch("Excel.Application")
print "Excel library version:", xlApp.Version
filename, password = sys.argv[1:3]
xlwb = xlApp.Workbooks.Open(filename, Password=password)
# xlwb = xlApp.Workbooks.Open(filename)
xlws = xlwb.Sheets(1) # counts from 1, not from 0
print xlws.Name
print xlws.Cells(1, 1) # that's A1

我想将受密码保护的文件中的 Excel 工作表保存为 Python 对象。理想情况下,它将保存为 pandas dataframe,但我可以将它作为字典或任何其他对象类型。

我有密码。这可能吗?

谢谢!

最佳答案

将以下行添加到现有代码中(其中 xlwb 已存在):

import os
import pandas as pd
from tempfile import NamedTemporaryFile

# Create an accessible temporary file, and then delete it. We only need a valid path.
f = NamedTemporaryFile(delete=False, suffix='.csv')
f.close()
os.unlink(f.name) # Not deleting will result in a "File already exists" warning

xlCSVWindows = 0x17 # CSV file format, from enum XlFileFormat
xlwb.SaveAs(Filename=f.name, FileFormat=xlCSVWindows) # Save the workbook as CSV
df = pd.read_csv(f.name) # Read that CSV from Pandas
print df

请记住,对我来说,您的代码无法完全运行,并且系统提示我输入密码。但假设您确实设法读取受密码保护的文件,则上面的代码可以工作。

Excel 另存为引用:https://msdn.microsoft.com/en-us/library/bb214129(v=office.12).aspx

关于python - 从受密码保护的 Excel 文件到 Python 对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36850716/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com