How to convert OpenDocument spreadsheets to a pandas DataFrame?
This is available natively in pandas 0.25. So long as you have odfpy installed (conda install odfpy OR pip install odfpy) you can do pd.read_excel(“the_document.ods”, engine=”odf”)
This is available natively in pandas 0.25. So long as you have odfpy installed (conda install odfpy OR pip install odfpy) you can do pd.read_excel(“the_document.ods”, engine=”odf”)