-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdemo.py
28 lines (18 loc) · 1.14 KB
/
demo.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
from MSOfficeFileConverter import WordDocument, ExcelDocument
# Creating the WordDocument object.
document = WordDocument('SampleWord.docx')
# Exporting to PDF.
document.toPdf('demo_ExportFolder','OutputSampleWord.pdf')
# Exporting to Html. Notice the new folder created in ExportFolder.
document.toHtml('demo_ExportFolder', 'OutputSampleWord.html')
# ======================================================================================================
# Creating the ExcelDocument object.
document = ExcelDocument('SampleExcel.xlsx')
# Exporting to PDF. Notice that even if we dont specify the file extension, the export still work.
document.toPdf('demo_ExportFolder','SampleExcel.pdf')
# Exporting to XLS. Notice that if we dont give any arguments, the tool export the file in the same
# directory as the original Excel file and with the same name as the original Excel file.
document.toXls()
# Exporting to CSV. Notice the new folder created in ExportFolder with all the spreadsheets exported,
# instead of only the selected one being exported as default in Excel.
document.toCsv('demo_ExportFolder','SampleExcel.csv')