python xlrd unsupported format, or corrupt file.

Try to open it as an HTML with pandas:

import pandas as pd
data = pd.read_html('filename.xls')

Or try any other html python parser.

That’s not a proper excel file, but an html readable with excel.

Leave a Comment