Reputation: 403
Is it possible to open and write to a password protected .XLSX file using Openpyxl?
Possibly another argument added to the load_workbook() method?
wb = load_workbook(filename = 'Test.xlsx')
Cheers,
Upvotes: 2
Views: 5350
Reputation: 473893
According to the Can I open password-protected excel files or not? and Open password protected workbook, opening password-protected excel files with openpyxl is not supported.
Upvotes: 7