.

Pandas ODS ODF Excel Export


Reading time: about 1 minute

Sometimes your customer wants to see some data analysis results in Excel. You could do this with a CSV export, but it’s really handy to deliver one Excel file with multiple worksheets and proper column headers.

Also the type of customers that want Excel exports usually have weird configurations that make CSV files work incorrectly, like requiring semicolons instead of colons.

And if you did data analysis, chances are you’ve already used Pandas. So instead of saving a CSV file, you can just save an Excel file.

Dependencies

You need to have odfpy and pandas installed. This can be done as follows.

python -m pip install odfpy pandas

Code example

Here’s a quick example.

import pandas as pd

excel_writer = pd.ExcelWriter("output.ods")

col1 = [1, 2, 3]
col2 = [4, 5, 6]

df = pd.DataFrame({
    "Col1": col1,
    "Col2": col2,
})

df.to_excel(excel_writer, index=False, sheet_name="Sheet one")

excel_writer.close()

You can call to_excel with different sheet names to get multiple worksheets in the Excel file. Or call to_excel multiple times with the same sheet name to get multiple tables written in the same page.

Citation

If you find this work useful, please cite it as:
@article{yaltirakli,
  title   = "Pandas ODS ODF Excel Export",
  author  = "Yaltirakli, Gokberk",
  journal = "gkbrk.com",
  year    = "2025",
  url     = "https://www.gkbrk.com/pandas-ods-odf-excel-export"
}
Not using BibTeX? Click here for more citation styles.
IEEE Citation
Gokberk Yaltirakli, "Pandas ODS ODF Excel Export", April, 2025. [Online]. Available: https://www.gkbrk.com/pandas-ods-odf-excel-export. [Accessed Apr. 02, 2025].
APA Style
Yaltirakli, G. (2025, April 02). Pandas ODS ODF Excel Export. https://www.gkbrk.com/pandas-ods-odf-excel-export
Bluebook Style
Gokberk Yaltirakli, Pandas ODS ODF Excel Export, GKBRK.COM (Apr. 02, 2025), https://www.gkbrk.com/pandas-ods-odf-excel-export

Comments

© 2025 Gokberk Yaltirakli