Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
355 views
in Technique[技术] by (71.8m points)

How to update Excel with links to password protected Excels using Python

I am trying to update Excel file containing direct links to other Excels to keep it updated. Updated Excel file is protected with password. Function below apply to list of files and their passwords. It works.

def Update_Workbook(file_path, pwd = None):
    try:
        xlapp = win32com.client.DispatchEx("Excel.Application")
        xlapp.Visible = False
        xlapp.DisplayAlerts = False
        xlapp.CalculateUntilAsyncQueriesDone()
        if pwd == None:
            wb = xlapp.workbooks.Open(file_path, True, False, None)
        else:
            wb = xlapp.workbooks.Open(file_path, True, False, None, pwd)
            wb.UpdateLink(Name=wb.LinkSources())
        wb.Save()
        wb.Close()
        del wb
        xlapp.Application.Quit()
        xlapp.Quit()
        del xlapp
    except Exception as e:
        print('Something wrong!')

Unfortunately, file its content is linked to the proceeded file is protected with the same password.

It opens the file, but asking for password of linked file(s), which causes Exception.

I need to unlock (if necessary) all files at once even those linked in cells.

Any idea?

question from:https://stackoverflow.com/questions/66045774/how-to-update-excel-with-links-to-password-protected-excels-using-python

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...