Convert EXCEL to WORD via Python
Export Excel spreadsheets to WORD format using Python APIs.
How to Convert EXCEL to WORD Using Python
In order to convert EXCEL to WORD, we will use Aspose.Cells for Python API which is a feature-rich, powerful and easy to use document manipulation and conversion API for Python platform.Steps to Convert EXCEL to WORD via Python
Python developers can easily load & convert EXCEL files to WORD in just a few lines of code.
- Load EXCEL file with an instance of Workbook
- Call the Workbook.Save method
- Pass output path with DOCX extension as parameter
- Check specified path for resultant WORD file
System Requirements
Aspose.Cells for Python is platform-independent API and can be used on any platform (Windows, Linux and MacOS), just make sure that system have Java 1.8 or higher, Python 3.5 or higher.
- Install Java and add it to PATH environment variable, for example:
PATH=C:\Program Files\Java\jdk1.8.0_131;
. - Install Aspose.Cells for Python from pypi, use command as:
$ pip install aspose-cells
.
import jpype
import asposecells
jpype.startJVM()
from asposecells.api import Workbook
workbook = Workbook("Input.xlsx")
workbook.Save("Output.pdf")
jpype.shutdownJVM()
EXCEL What is EXCEL File Format
XLSX is well-known format for Microsoft Excel documents that was introduced by Microsoft with the release of Microsoft Office 2007. Based on structure organized according to the Open Packaging Conventions as outlined in Part 2 of the OOXML standard ECMA-376, the new format is a zip package that contains a number of XML files. The underlying structure and files can be examined by simply unzipping the .xlsx file.
Read MoreWORD What is WORD File Format
DOCX is a well-known format for Microsoft Word documents. Introduced from 2007 with the release of Microsoft Office 2007, the structure of this new Document format was changed from plain binary to a combination of XML and binary files. Docx files can be opened with Word 2007 and lateral versions but not with the earlier versions of MS Word which support DOC file extensions.
Read MoreOther Supported Conversions
You can also convert EXCEL into many other file formats including few listed below.