Convert PDF to Excel Workbook in Python

Contents
[ ]

To convert PDF document to Excel Workbook using Aspose.PDF Java for Python, simply invoke PdfToExcel module.


doc=self.Document()
pdf = self.Document()
pdf=self.dataDir +'input1.pdf'

# Instantiate ExcelSave Option object
excelsave=self.ExcelSaveOptions();

# Save the output to XLS format
doc.save(self.dataDir + "Converted_Excel.xls", excelsave);
print "Document has been converted successfully"

Download Running Code

Download Convert PDF to Excel Workbook (Aspose.PDF) from any of the below mentioned social coding sites: