简体   繁体   中英

Xlwings / open password protected xlsx?

is there any way to open a password protected excel-sheet with xlwings? (whole xlsx is protected - that means when the excel is opened you have to put in a password to get to the excel)

If not is there any other way to protect the excel-sheet for some users - but have access with xlwings to the worksheet?

xlwings.Book() has a password parameter:

password (str) – Password to open a protected workbook

You should just be able to

import xlwings

wb = xlwings.Book("file.xlsx", password="Passw0rd!")

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM