Convert Excel workbook to Ods,Sxc and Fods (OpenOffice / LibreOffice calc).
About OpenDocument
The OpenDocument format (ODF) is a free and open file format for electronic office documents originally developed by Sun for the Open Office suite. OpenDocument Spreadsheet (ODS) is the file format for Excel documents. OpenDocument is currently an OASIS and ISO standard.
Convert Ods (OpenOffice / LibreOffice calc) to Excel
Aspose.Cells for Python via .NET supports loading Ods,Sxc and Fods which are supported by OpenOffice / LibreOffice Calc, and convert Ods,Sxc and Fods to Excel files.
from aspose.cells import Workbook | |
# For complete examples and data files, please go to https:# github.com/aspose-cells/Aspose.Cells-for-.NET | |
# Load your source ods file | |
workbook = Workbook("book1.ods") | |
# Save as xlsx file | |
workbook.save("ods_out.xlsx") | |
# Load your source sxc file | |
workbook = Workbook("book1.sxc") | |
# Save as xls file | |
workbook.save("sxc_out.xls") | |
# Load your source fods file | |
workbook = Workbook("book1.fods") | |
# Save as xlsb file | |
workbook.save("fods_out.xlsb") |
Convert Excel to Ods (OpenOffice / LibreOffice Calc)
Aspose.Cells for Python via .NET supports converting Excel files to Ods,Sxc and Fods files . The code example below shows how to convert the template to Ods,Sxc and Fods file.
from aspose.cells import Workbook | |
# For complete examples and data files, please go to https:# github.com/aspose-cells/Aspose.Cells-for-.NET | |
# Load your source workbook | |
workbook = Workbook("book1.xlsx") | |
# Save as ods file | |
workbook.save("Out.ods") | |
# Save as sxc file | |
workbook.save("Out.sxc") | |
# Save as fods file | |
workbook.save("Out.fods") |