I'm searching for a method to decompress/unzip .xls files in python. By opening Excel files with 7-Zip you can see the directories I'd like to extract.
I already tried renaming the Excel to ".zip" and then extracting it
myExcelFile = zipfile.ZipFile("myExcel.zip")
myExcelFile.extractall()
but it throws
zipfile.BadZipFile: File is not a zip file