How to open a password protected excel file using python?

后端 未结 3 1988
被撕碎了的回忆
被撕碎了的回忆 2020-12-01 16:58

I looked at the previous threads regarding this topic, but they have not helped solve the problem.

  • how to read password protected excel in python

3条回答
  •  庸人自扰
    2020-12-01 17:42

    I don't think that named parameters work in this case. So you'd have to do something like:

    xlwb = xlApp.Workbooks.Open(filename, False, True, None, password)
    

    See http://msdn.microsoft.com/en-us/library/office/ff194819.aspx for details on the Workbooks.Open method.

提交回复
热议问题