I'm using this code for unzipping zipped password protected files:
with zipfile.ZipFile(folder_name+'\\'+each+'\\'+latest, "r") as z:
z.extractall(folder_name+'\\'+each+'\\'+each,pwd=passwd)
This functionally works perfect, but is very slow. Is there any way to make unzipping fast?