How to convert OpenDocument spreadsheets to a pandas DataFrame?
Question or problem about Python programming: The Python library pandas can read Excel spreadsheets and convert them to a pandas.DataFrame with pandas.read_excel(file) command. Under the hood, it uses xlrd library which does not support ods files.
Continue Reading