-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathMSOfficeFileConverter.py
More file actions
680 lines (594 loc) · 39.5 KB
/
MSOfficeFileConverter.py
File metadata and controls
680 lines (594 loc) · 39.5 KB
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
# Autor : FanaticPythoner.
# Please read the "LICENSE" file before doing anything.
from winreg import *
import itertools
from contextlib import contextmanager
from win32api import GetFileVersionInfo, LOWORD, HIWORD
import os
import win32com.client
import sys
@contextmanager
def suppress(*exceptions):
try:
yield
except exceptions:
pass
allSupportedMSProgram = ['Excel', 'PowerPoint', 'Word']
allSupportedMSProgramExe = ['excel.exe','powerpnt.exe','winword.exe']
defaultIterNumberIfExists = 10000
def _createRegKeys():
"""
Create DWORD values to registry allowing the module\nto create macros into Microsoft Office documents without Microsoft annoying prompts / block.\n\n*Do not use it, there is an underscore for a reason.
"""
def subkeys(path, hkey=HKEY_LOCAL_MACHINE, flags=0):
"""
Get all subkeys of a registry key as string.
"""
with suppress(WindowsError), OpenKey(hkey, path, 0, KEY_READ|flags) as k:
for i in itertools.count():
yield EnumKey(k, i)
def get_version_number(filename):
"""Get the version of a file"""
try:
info = GetFileVersionInfo (filename, "\\")
ms = info['FileVersionMS']
ls = info['FileVersionLS']
return HIWORD (ms), LOWORD (ms), HIWORD (ls), LOWORD (ls)
except:
return 0,0,0,0
defaultPath = 'SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\App Paths'
subKeys = subkeys(defaultPath)
for key in subKeys:
if key.lower() in allSupportedMSProgramExe:
subKey = OpenKey(HKEY_LOCAL_MACHINE, defaultPath + '\\' + key, 0, KEY_READ)
filePath = QueryValueEx(subKey, 'Path')
version = get_version_number(filePath[0] + '\\' + key)
version = str(version[0]) + '.' + str(version[1])
writePath = "Software\\Microsoft\\Office\\" + version
officeProductName = allSupportedMSProgram[allSupportedMSProgramExe.index(key.lower())]
writeKey = OpenKey(HKEY_CURRENT_USER, writePath + '\\' + officeProductName + '\\Security', 0, KEY_ALL_ACCESS)
SetValueEx(writeKey, "AccessVBOM", 0, REG_DWORD, 1)
SetValueEx(writeKey, "VBAWarnings", 0, REG_DWORD, 1)
def _multiFilesExportFolder(oldExportFolder, preTreatedExportFolder, exportFileName):
exportFolder = oldExportFolder
if os.path.isdir(oldExportFolder):
for i in range(1,defaultIterNumberIfExists):
newExportFolder = preTreatedExportFolder + '\\HtmlFiles_' + str(i) + '_' + exportFileName
if not os.path.isdir(newExportFolder):
exportFolder = newExportFolder
break
return exportFolder
class WordDocument:
"""Open a Word document from a specified file path, then offer methods to convert it to whatever format you want.
Usage:
#Creating the WordDocument object
document = WordDocument('Example\\Path\\To\\file.docx')
#Exporting to PDF
document.toPdf('Example\\Export\\Path','ExampleFileName')
Currently support the export in the following formats:
- Docx
- Docx (Strict Open XML Document)
- Docm
- Doc
- Dotm
- Dot
- Pdf
- Xps
- Mht
- Mthml
- Html
- Html (Filtered)
- Htm
- Rtf
- Txt
- Xml
- Xml (Macro Enabled)
- Xml (2003)
- Odt"""
def __init__(self, documentPath):
documentPath = os.path.abspath(documentPath)
if not os.path.isfile(documentPath):
raise Exception('The specified file path does not exist.')
_createRegKeys()
self.documentPath = documentPath
splittedPath = documentPath.split('\\')
self.fileName = '.'.join(splittedPath[-1].split('.')[:-1])
self.defaultExportPath = '\\'.join(splittedPath[:-1])
def _export(self, exportFilePath, enumNum):
"""Internal magic function.\n\n*Do not use it, there is an underscore for a reason."""
word = win32com.client.Dispatch("Word.Application")
word.Visible = False
document = word.Documents.Open(self.documentPath)
document.SaveAs(exportFilePath, enumNum)
word.Documents(1).Close(SaveChanges=False)
word.Application.Quit()
del word
def _validateArgs(self, exportFolder, exportFileName):
"""Validate the args of an export function.\n\n*Do not use it, there is an underscore for a reason."""
if exportFolder is None:
exportFolder = self.defaultExportPath
elif not os.path.isdir(exportFolder):
raise Exception('The specified output directory does not exist.')
exportFolder = os.path.abspath(exportFolder)
if exportFileName is None:
exportFileName = self.fileName
fileExtension = '.' + sys._getframe(1).f_code.co_name[2:].split('_')[0].lower()
if not exportFileName.endswith(fileExtension):
exportFileName = exportFileName + fileExtension
elif len(os.path.normpath(exportFolder + '\\' + exportFileName)) != len(exportFolder + '\\' + exportFileName):
raise Exception('The specified file name or the specified export folder contain invalid characters.')
return exportFolder, exportFileName
def toDocx(self, exportFolder=None, exportFileName=None):
"""Export to Word Document.
- If you do not specify an export folder, the document will be created in the same directory as the original Word directory.
- If you do not specify an export file name, the document will have the same name as the original document, only the extension will change."""
exportFolder, exportFileName = self._validateArgs(exportFolder,exportFileName)
finalExportPath = exportFolder + '\\' + exportFileName
self._export(finalExportPath, 16)
def toDocm(self, exportFolder=None, exportFileName=None):
"""Export to Word Macro-Enabled Document.
- If you do not specify an export folder, the document will be created in the same directory as the original Word directory.
- If you do not specify an export file name, the document will have the same name as the original document, only the extension will change."""
exportFolder, exportFileName = self._validateArgs(exportFolder,exportFileName)
finalExportPath = exportFolder + '\\' + exportFileName
self._export(finalExportPath,13)
def toDoc(self, exportFolder=None, exportFileName=None):
"""Export to Word 1997-2003 Document.
- If you do not specify an export folder, the document will be created in the same directory as the original Word directory.
- If you do not specify an export file name, the document will have the same name as the original document, only the extension will change."""
exportFolder, exportFileName = self._validateArgs(exportFolder,exportFileName)
finalExportPath = exportFolder + '\\' + exportFileName
self._export(finalExportPath,0)
def toDotm(self, exportFolder=None, exportFileName=None):
"""Export to Word Macro-Enabled Template.
- If you do not specify an export folder, the document will be created in the same directory as the original Word directory.
- If you do not specify an export file name, the document will have the same name as the original document, only the extension will change."""
exportFolder, exportFileName = self._validateArgs(exportFolder,exportFileName)
finalExportPath = exportFolder + '\\' + exportFileName
self._export(finalExportPath,15)
def toDot(self, exportFolder=None, exportFileName=None):
"""Export to Word 1997-2003 Template.
- If you do not specify an export folder, the document will be created in the same directory as the original Word directory.
- If you do not specify an export file name, the document will have the same name as the original document, only the extension will change."""
exportFolder, exportFileName = self._validateArgs(exportFolder,exportFileName)
finalExportPath = exportFolder + '\\' + exportFileName
self._export(finalExportPath,1)
def toPdf(self, exportFolder=None, exportFileName=None):
"""Export to PDF.
- If you do not specify an export folder, the document will be created in the same directory as the original Word directory.
- If you do not specify an export file name, the document will have the same name as the original document, only the extension will change."""
exportFolder, exportFileName = self._validateArgs(exportFolder,exportFileName)
finalExportPath = exportFolder + '\\' + exportFileName
self._export(finalExportPath,17)
def toXps(self, exportFolder=None, exportFileName=None):
"""Export to XPS Document.
- If you do not specify an export folder, the document will be created in the same directory as the original Word directory.
- If you do not specify an export file name, the document will have the same name as the original document, only the extension will change."""
exportFolder, exportFileName = self._validateArgs(exportFolder,exportFileName)
finalExportPath = exportFolder + '\\' + exportFileName
self._export(finalExportPath,18)
def toMht(self, exportFolder=None, exportFileName=None):
"""Export to Single File Web Page (*.mht).
- If you do not specify an export folder, the document will be created in the same directory as the original Word directory.
- If you do not specify an export file name, the document will have the same name as the original document, only the extension will change."""
exportFolder, exportFileName = self._validateArgs(exportFolder,exportFileName)
finalExportPath = exportFolder + '\\' + exportFileName
self._export(finalExportPath,9)
def toMhtml(self, exportFolder=None, exportFileName=None):
"""Export to Single File Web Page (*.mhtml).
- If you do not specify an export folder, the document will be created in the same directory as the original Word directory.
- If you do not specify an export file name, the document will have the same name as the original document, only the extension will change."""
exportFolder, exportFileName = self._validateArgs(exportFolder,exportFileName)
finalExportPath = exportFolder + '\\' + exportFileName
self._export(finalExportPath,9)
def toHtml(self, exportFolder=None, exportFileName=None):
"""Export to Web Page (*.html).
- If you do not specify an export folder, the document will be created in the same directory as the original Word directory.
- If you do not specify an export file name, the document will have the same name as the original document, only the extension will change."""
exportFolder1, exportFileName = self._validateArgs(exportFolder,exportFileName)
exportFolder = exportFolder1 + '\\HtmlFiles_' + exportFileName
exportFolder = _multiFilesExportFolder(exportFolder, exportFolder1, exportFileName)
os.makedirs(exportFolder)
finalExportPath = exportFolder + '\\' + exportFileName
self._export(finalExportPath,8)
def toHtm(self, exportFolder=None, exportFileName=None):
"""Export to Web Page (*.htm).
- If you do not specify an export folder, the document will be created in the same directory as the original Word directory.
- If you do not specify an export file name, the document will have the same name as the original document, only the extension will change."""
exportFolder1, exportFileName = self._validateArgs(exportFolder,exportFileName)
exportFolder = exportFolder1 + '\\HtmFiles_' + exportFileName
exportFolder = _multiFilesExportFolder(exportFolder, exportFolder1, exportFileName)
os.makedirs(exportFolder)
finalExportPath = exportFolder + '\\' + exportFileName
self._export(finalExportPath,8)
def toHtml_Filtered(self, exportFolder=None, exportFileName=None):
"""Export to Web Page, Filtered (*.htm; *.html).
- If you do not specify an export folder, the document will be created in the same directory as the original Word directory.
- If you do not specify an export file name, the document will have the same name as the original document, only the extension will change."""
exportFolder1, exportFileName = self._validateArgs(exportFolder,exportFileName)
exportFolder = exportFolder1 + '\\HtmlFilteredFiles_' + exportFileName
exportFolder = _multiFilesExportFolder(exportFolder, exportFolder1, exportFileName)
os.makedirs(exportFolder)
finalExportPath = exportFolder + '\\' + exportFileName
self._export(finalExportPath,10)
def toRtf(self, exportFolder=None, exportFileName=None):
"""Export to Rich Text Format.
- If you do not specify an export folder, the document will be created in the same directory as the original Word directory.
- If you do not specify an export file name, the document will have the same name as the original document, only the extension will change."""
exportFolder, exportFileName = self._validateArgs(exportFolder,exportFileName)
finalExportPath = exportFolder + '\\' + exportFileName
self._export(finalExportPath,6)
def toTxt(self, exportFolder=None, exportFileName=None):
"""Export to Plain Text.
- If you do not specify an export folder, the document will be created in the same directory as the original Word directory.
- If you do not specify an export file name, the document will have the same name as the original document, only the extension will change."""
exportFolder, exportFileName = self._validateArgs(exportFolder,exportFileName)
finalExportPath = exportFolder + '\\' + exportFileName
self._export(finalExportPath,2)
def toXml(self, exportFolder=None, exportFileName=None):
"""Export to Word XML Document.
- If you do not specify an export folder, the document will be created in the same directory as the original Word directory.
- If you do not specify an export file name, the document will have the same name as the original document, only the extension will change."""
exportFolder, exportFileName = self._validateArgs(exportFolder,exportFileName)
finalExportPath = exportFolder + '\\' + exportFileName
self._export(finalExportPath,12)
def toXml_MacroEnabled(self, exportFolder=None, exportFileName=None):
"""Export to Word XML Document with macro enabled.
- If you do not specify an export folder, the document will be created in the same directory as the original Word directory.
- If you do not specify an export file name, the document will have the same name as the original document, only the extension will change."""
exportFolder, exportFileName = self._validateArgs(exportFolder,exportFileName)
finalExportPath = exportFolder + '\\' + exportFileName
self._export(finalExportPath,13)
def toXml_2003(self, exportFolder=None, exportFileName=None):
"""Export to Word 2003 XML Document.
- If you do not specify an export folder, the document will be created in the same directory as the original Word directory.
- If you do not specify an export file name, the document will have the same name as the original document, only the extension will change."""
exportFolder, exportFileName = self._validateArgs(exportFolder,exportFileName)
finalExportPath = exportFolder + '\\' + exportFileName
self._export(finalExportPath,11)
def toDocx_ReadOnly(self, exportFolder=None, exportFileName=None):
"""Export to Strict Open XML Document.
- If you do not specify an export folder, the document will be created in the same directory as the original Word directory.
- If you do not specify an export file name, the document will have the same name as the original document, only the extension will change."""
exportFolder, exportFileName = self._validateArgs(exportFolder,exportFileName)
finalExportPath = exportFolder + '\\' + exportFileName
self._export(finalExportPath,24)
def toOdt(self, exportFolder=None, exportFileName=None):
"""Export to OpenDocument Text.
- If you do not specify an export folder, the document will be created in the same directory as the original Word directory.
- If you do not specify an export file name, the document will have the same name as the original document, only the extension will change."""
exportFolder, exportFileName = self._validateArgs(exportFolder,exportFileName)
finalExportPath = exportFolder + '\\' + exportFileName
self._export(finalExportPath,23)
class ExcelDocument:
"""Open a Excel document from a specified file path, then offer methods to convert it to whatever format you want.
Usage:
#Creating the ExcelDocument object
document = ExcelDocument('Example\\Path\\To\\file.xlsx')
#Exporting to PDF
document.toPdf('Example\\Export\\Path','ExampleFileName')
Currently support the export in the following formats:
- Xlsx
- Xlsm
- Xlsb
- Xls
- Xml (Data)
- Mht
- Mhtml
- Xltx
- Xltm
- Xlt
- Txt (Windows)
- Txt (Macintosh)
- Txt (Unicode)
- Txt (MSDOS)
- Csv (UTF-8)
- Csv (Windows)
- Csv (Macintosh)
- Csv (Unicode)
- Csv (MSDOS)
- Xml (Spreadsheet 2003)
- Xls (Excel 5.0/95 Workbook)
- Prn
- Dif
- Slk
- Xlam
- Xla
- Pdf
- Xps
- Xlsx (Strict Open XML Spreadsheet)
- Ods
"""
def __init__(self, documentPath):
documentPath = os.path.abspath(documentPath)
if not os.path.isfile(documentPath):
raise Exception('The specified file path does not exist.')
_createRegKeys()
self.documentPath = documentPath
splittedPath = documentPath.split('\\')
self.fileName = '.'.join(splittedPath[-1].split('.')[:-1])
self.defaultExportPath = '\\'.join(splittedPath[:-1])
self.defaultDocumentExtension = splittedPath[-1].split('.')[-1]
def _exportAll(self, exportFilePath, enumNum):
"""Internal magic function.\n\n*Do not use it, there is an underscore for a reason."""
excel = win32com.client.Dispatch("Excel.Application")
excel.Visible = False
workbook = excel.Workbooks.Open(self.documentPath)
workbook.SaveAs(exportFilePath, enumNum)
workbook.Close(SaveChanges=False)
excel.Application.Quit()
del excel
def _exportFixedFormat(self, exportFilePath, enumNum):
"""Internal magic function.\n\n*Do not use it, there is an underscore for a reason."""
excel = win32com.client.Dispatch("Excel.Application")
excel.Visible = False
workbook = excel.Workbooks.Open(self.documentPath)
workbook.ExportAsFixedFormat(enumNum, exportFilePath)
workbook.Close(SaveChanges=False)
excel.Application.Quit()
del excel
def _exportAllSheets(self, exportFilePath, enumNum):
"""Internal magic function.\n\n*Do not use it, there is an underscore for a reason."""
excel = win32com.client.Dispatch("Excel.Application")
excel.Visible = False
workbook = excel.Workbooks.Open(self.documentPath)
splittedFilePath = exportFilePath.split('\\')
fileNameSplitted= splittedFilePath[-1].split('.')
folderName = '\\'.join(splittedFilePath[:-1])
extension = fileNameSplitted[-1]
fileName = '.'.join(fileNameSplitted[:-1])
for index, item in enumerate(workbook.Worksheets):
newExportFilePath = folderName + '\\' + str(index + 1) + '.' + extension
item.SaveAs(newExportFilePath, enumNum)
workbook.Close(SaveChanges=False)
excel.Application.Quit()
del excel
def _validateArgs(self, exportFolder, exportFileName):
"""Validate the args of an export function.\n\n*Do not use it, there is an underscore for a reason."""
if exportFolder is None:
exportFolder = self.defaultExportPath
elif not os.path.isdir(exportFolder):
raise Exception('The specified output directory does not exist.')
exportFolder = os.path.abspath(exportFolder)
if exportFileName is None:
exportFileName = self.fileName
fileExtension = '.' + sys._getframe(1).f_code.co_name[2:].split('_')[0].lower()
if not exportFileName.endswith(fileExtension):
exportFileName = exportFileName + fileExtension
elif len(os.path.normpath(exportFolder + '\\' + exportFileName)) != len(exportFolder + '\\' + exportFileName):
raise Exception('The specified file name or the specified export folder contain invalid characters.')
return exportFolder, exportFileName
def toXlsx(self, exportFolder=None, exportFileName=None):
"""Export to Excel Workbook.
- If you do not specify an export folder, the document will be created in the same directory as the Excel directory.
- If you do not specify an export file name, the document will have the same name as the original document, only the extension will change."""
exportFolder, exportFileName = self._validateArgs(exportFolder,exportFileName)
finalExportPath = exportFolder + '\\' + exportFileName
self._exportAll(finalExportPath, 51)
def toXlsm(self, exportFolder=None, exportFileName=None):
"""Export to Excel Macro-Enabled Workbook.
- If you do not specify an export folder, the document will be created in the same directory as the Excel directory.
- If you do not specify an export file name, the document will have the same name as the original document, only the extension will change."""
exportFolder, exportFileName = self._validateArgs(exportFolder,exportFileName)
finalExportPath = exportFolder + '\\' + exportFileName
self._exportAll(finalExportPath, 52)
def toXlsb(self, exportFolder=None, exportFileName=None):
"""Export to Excel Binary Workbook.
- If you do not specify an export folder, the document will be created in the same directory as the Excel directory.
- If you do not specify an export file name, the document will have the same name as the original document, only the extension will change."""
exportFolder, exportFileName = self._validateArgs(exportFolder,exportFileName)
finalExportPath = exportFolder + '\\' + exportFileName
self._exportAll(finalExportPath, 50)
def toXls(self, exportFolder=None, exportFileName=None):
"""Export to Excel 1997-2003 Workbook.
- If you do not specify an export folder, the document will be created in the same directory as the Excel directory.
- If you do not specify an export file name, the document will have the same name as the original document, only the extension will change."""
exportFolder, exportFileName = self._validateArgs(exportFolder,exportFileName)
finalExportPath = exportFolder + '\\' + exportFileName
self._exportAll(finalExportPath, 56)
def toCsv_UTF8(self, exportFolder=None, exportFileName=None):
"""Export to CSV UTF-8 (Comma delimited).
- If you do not specify an export folder, the document will be created in the same directory as the Excel directory.
- If you do not specify an export file name, the document will have the same name as the original document, only the extension will change."""
exportFolder1, exportFileName = self._validateArgs(exportFolder,exportFileName)
exportFolder = exportFolder1 + '\\CSV_UTF8_Files_' + exportFileName
exportFolder = _multiFilesExportFolder(exportFolder, exportFolder1, exportFileName)
os.makedirs(exportFolder)
finalExportPath = exportFolder + '\\' + exportFileName
self._exportAllSheets(finalExportPath, 62)
def toXml(self, exportFolder=None, exportFileName=None):
"""Export to XML Data.
- If you do not specify an export folder, the document will be created in the same directory as the Excel directory.
- If you do not specify an export file name, the document will have the same name as the original document, only the extension will change."""
exportFolder, exportFileName = self._validateArgs(exportFolder,exportFileName)
finalExportPath = exportFolder + '\\' + exportFileName
self._exportAll(finalExportPath, 46)
def toMht(self, exportFolder=None, exportFileName=None):
"""Export to Single File Web Page (*.mht).
- If you do not specify an export folder, the document will be created in the same directory as the Excel directory.
- If you do not specify an export file name, the document will have the same name as the original document, only the extension will change."""
exportFolder, exportFileName = self._validateArgs(exportFolder,exportFileName)
finalExportPath = exportFolder + '\\' + exportFileName
self._exportAll(finalExportPath, 45)
def toMhtml(self, exportFolder=None, exportFileName=None):
"""Export to Single File Web Page (*.html).
- If you do not specify an export folder, the document will be created in the same directory as the Excel directory.
- If you do not specify an export file name, the document will have the same name as the original document, only the extension will change."""
exportFolder, exportFileName = self._validateArgs(exportFolder,exportFileName)
finalExportPath = exportFolder + '\\' + exportFileName
self._exportAll(finalExportPath, 45)
def toXltm(self, exportFolder=None, exportFileName=None):
"""Export to Excel Macro-Enabled Template.
- If you do not specify an export folder, the document will be created in the same directory as the Excel directory.
- If you do not specify an export file name, the document will have the same name as the original document, only the extension will change."""
exportFolder, exportFileName = self._validateArgs(exportFolder,exportFileName)
finalExportPath = exportFolder + '\\' + exportFileName
self._exportAll(finalExportPath, 53)
def toXlt(self, exportFolder=None, exportFileName=None):
"""Export to Excel 1997-2003 Template.
- If you do not specify an export folder, the document will be created in the same directory as the Excel directory.
- If you do not specify an export file name, the document will have the same name as the original document, only the extension will change."""
exportFolder, exportFileName = self._validateArgs(exportFolder,exportFileName)
finalExportPath = exportFolder + '\\' + exportFileName
self._exportAll(finalExportPath, 17)
def toTxt_Windows(self, exportFolder=None, exportFileName=None):
"""Export to Text (Windows).
- If you do not specify an export folder, the document will be created in the same directory as the Excel directory.
- If you do not specify an export file name, the document will have the same name as the original document, only the extension will change."""
exportFolder1, exportFileName = self._validateArgs(exportFolder,exportFileName)
exportFolder = exportFolder1 + '\\TXT_Windows_Files_' + exportFileName
exportFolder = _multiFilesExportFolder(exportFolder, exportFolder1, exportFileName)
os.makedirs(exportFolder)
finalExportPath = exportFolder + '\\' + exportFileName
self._exportAllSheets(finalExportPath, 20)
def toTxt_Unicode(self, exportFolder=None, exportFileName=None):
"""Export to Unicode Text.
- If you do not specify an export folder, the document will be created in the same directory as the Excel directory.
- If you do not specify an export file name, the document will have the same name as the original document, only the extension will change."""
exportFolder1, exportFileName = self._validateArgs(exportFolder,exportFileName)
exportFolder = exportFolder1 + '\\TXT_Unicode_Files_' + exportFileName
exportFolder = _multiFilesExportFolder(exportFolder, exportFolder1, exportFileName)
os.makedirs(exportFolder)
finalExportPath = exportFolder + '\\' + exportFileName
self._exportAllSheets(finalExportPath, 42)
def toXls_95Workbook(self, exportFolder=None, exportFileName=None):
"""Export to Excel 5.0/95 Workbook.
- If you do not specify an export folder, the document will be created in the same directory as the Excel directory.
- If you do not specify an export file name, the document will have the same name as the original document, only the extension will change."""
exportFolder, exportFileName = self._validateArgs(exportFolder,exportFileName)
finalExportPath = exportFolder + '\\' + exportFileName
self._exportAll(finalExportPath, 39)
def toCsv(self, exportFolder=None, exportFileName=None):
"""Export to CSV (Comma delimited).
- If you do not specify an export folder, the document will be created in the same directory as the Excel directory.
- If you do not specify an export file name, the document will have the same name as the original document, only the extension will change."""
exportFolder1, exportFileName = self._validateArgs(exportFolder,exportFileName)
exportFolder = exportFolder1 + '\\CSV_Files_' + exportFileName
exportFolder = _multiFilesExportFolder(exportFolder, exportFolder1, exportFileName)
os.makedirs(exportFolder)
finalExportPath = exportFolder + '\\' + exportFileName
self._exportAllSheets(finalExportPath, 6)
def toCsv_Windows(self, exportFolder=None, exportFileName=None):
"""Export to CSV (Windows).
- If you do not specify an export folder, the document will be created in the same directory as the Excel directory.
- If you do not specify an export file name, the document will have the same name as the original document, only the extension will change."""
exportFolder1, exportFileName = self._validateArgs(exportFolder,exportFileName)
exportFolder = exportFolder1 + '\\CSV_Windows_Files_' + exportFileName
exportFolder = _multiFilesExportFolder(exportFolder, exportFolder1, exportFileName)
os.makedirs(exportFolder)
finalExportPath = exportFolder + '\\' + exportFileName
self._exportAllSheets(finalExportPath, 23)
def toPrn(self, exportFolder=None, exportFileName=None):
"""Export to Formatted Text (Space delimited).
- If you do not specify an export folder, the document will be created in the same directory as the Excel directory.
- If you do not specify an export file name, the document will have the same name as the original document, only the extension will change."""
exportFolder1, exportFileName = self._validateArgs(exportFolder,exportFileName)
exportFolder = exportFolder1 + '\\PRN_Files_' + exportFileName
exportFolder = _multiFilesExportFolder(exportFolder, exportFolder1, exportFileName)
os.makedirs(exportFolder)
finalExportPath = exportFolder + '\\' + exportFileName
self._exportAllSheets(finalExportPath, 36)
def toTxt_Macintosh(self, exportFolder=None, exportFileName=None):
"""Export to Text (Macintosh).
- If you do not specify an export folder, the document will be created in the same directory as the Excel directory.
- If you do not specify an export file name, the document will have the same name as the original document, only the extension will change."""
exportFolder1, exportFileName = self._validateArgs(exportFolder,exportFileName)
exportFolder = exportFolder1 + '\\TXT_Macintosh_Files_' + exportFileName
exportFolder = _multiFilesExportFolder(exportFolder, exportFolder1, exportFileName)
os.makedirs(exportFolder)
finalExportPath = exportFolder + '\\' + exportFileName
self._exportAllSheets(finalExportPath, 19)
def toTxt_MSDOS(self, exportFolder=None, exportFileName=None):
"""Export to Text (MS-DOS).
- If you do not specify an export folder, the document will be created in the same directory as the Excel directory.
- If you do not specify an export file name, the document will have the same name as the original document, only the extension will change."""
exportFolder1, exportFileName = self._validateArgs(exportFolder,exportFileName)
exportFolder = exportFolder1 + '\\TXT_MSDOS_Files_' + exportFileName
exportFolder = _multiFilesExportFolder(exportFolder, exportFolder1, exportFileName)
os.makedirs(exportFolder)
finalExportPath = exportFolder + '\\' + exportFileName
self._exportAllSheets(finalExportPath, 21)
def toCsv_Macintosh(self, exportFolder=None, exportFileName=None):
"""Export to CSV (Macintosh).
- If you do not specify an export folder, the document will be created in the same directory as the Excel directory.
- If you do not specify an export file name, the document will have the same name as the original document, only the extension will change."""
exportFolder1, exportFileName = self._validateArgs(exportFolder,exportFileName)
exportFolder = exportFolder1 + '\\CSV_Macintosh_Files_' + exportFileName
exportFolder = _multiFilesExportFolder(exportFolder, exportFolder1, exportFileName)
os.makedirs(exportFolder)
finalExportPath = exportFolder + '\\' + exportFileName
self._exportAllSheets(finalExportPath, 22)
def toCsv_MSDOS(self, exportFolder=None, exportFileName=None):
"""Export to CSV (MS-DOS).
- If you do not specify an export folder, the document will be created in the same directory as the Excel directory.
- If you do not specify an export file name, the document will have the same name as the original document, only the extension will change."""
exportFolder1, exportFileName = self._validateArgs(exportFolder,exportFileName)
exportFolder = exportFolder1 + '\\CSV_MSDOS_Files_' + exportFileName
exportFolder = _multiFilesExportFolder(exportFolder, exportFolder1, exportFileName)
os.makedirs(exportFolder)
finalExportPath = exportFolder + '\\' + exportFileName
self._exportAllSheets(finalExportPath, 24)
def toDif(self, exportFolder=None, exportFileName=None):
"""Export to DIF (Data Interchange Format).
- If you do not specify an export folder, the document will be created in the same directory as the Excel directory.
- If you do not specify an export file name, the document will have the same name as the original document, only the extension will change."""
exportFolder, exportFileName = self._validateArgs(exportFolder,exportFileName)
finalExportPath = exportFolder + '\\' + exportFileName
self._exportAll(finalExportPath, 9)
def toSlk(self, exportFolder=None, exportFileName=None):
"""Export to SYLK (Symbolic Link).
- If you do not specify an export folder, the document will be created in the same directory as the Excel directory.
- If you do not specify an export file name, the document will have the same name as the original document, only the extension will change."""
exportFolder1, exportFileName = self._validateArgs(exportFolder,exportFileName)
exportFolder = exportFolder1 + '\\SLK_Files_' + exportFileName
exportFolder = _multiFilesExportFolder(exportFolder, exportFolder1, exportFileName)
os.makedirs(exportFolder)
finalExportPath = exportFolder + '\\' + exportFileName
self._exportAllSheets(finalExportPath, 2)
def toXlam(self, exportFolder=None, exportFileName=None):
"""Export to Excel Add-in.
- If you do not specify an export folder, the document will be created in the same directory as the Excel directory.
- If you do not specify an export file name, the document will have the same name as the original document, only the extension will change."""
exportFolder, exportFileName = self._validateArgs(exportFolder,exportFileName)
finalExportPath = exportFolder + '\\' + exportFileName
self._exportAll(finalExportPath, 55)
def toXla(self, exportFolder=None, exportFileName=None):
"""Export to Excel 1997-2003 Add-in.
- If you do not specify an export folder, the document will be created in the same directory as the Excel directory.
- If you do not specify an export file name, the document will have the same name as the original document, only the extension will change."""
exportFolder, exportFileName = self._validateArgs(exportFolder,exportFileName)
finalExportPath = exportFolder + '\\' + exportFileName
self._exportAll(finalExportPath, 18)
def toPdf(self, exportFolder=None, exportFileName=None):
"""Export to PDF.
- If you do not specify an export folder, the document will be created in the same directory as the Excel directory.
- If you do not specify an export file name, the document will have the same name as the original document, only the extension will change."""
exportFolder, exportFileName = self._validateArgs(exportFolder,exportFileName)
finalExportPath = exportFolder + '\\' + exportFileName
self._exportFixedFormat(finalExportPath, 0)
def toXps(self, exportFolder=None, exportFileName=None):
"""Export to XPS Document.
- If you do not specify an export folder, the document will be created in the same directory as the Excel directory.
- If you do not specify an export file name, the document will have the same name as the original document, only the extension will change."""
exportFolder, exportFileName = self._validateArgs(exportFolder,exportFileName)
finalExportPath = exportFolder + '\\' + exportFileName
self._exportAll(finalExportPath, 1)
def toXlsx_ReadOnly(self, exportFolder=None, exportFileName=None):
"""Export to Scrict Open XML Spreadsheet.
- If you do not specify an export folder, the document will be created in the same directory as the Excel directory.
- If you do not specify an export file name, the document will have the same name as the original document, only the extension will change."""
exportFolder, exportFileName = self._validateArgs(exportFolder,exportFileName)
finalExportPath = exportFolder + '\\' + exportFileName
self._exportAll(finalExportPath, 61)
def toOds(self, exportFolder=None, exportFileName=None):
"""Export to OpenDocument Spreadsheet.
- If you do not specify an export folder, the document will be created in the same directory as the Excel directory.
- If you do not specify an export file name, the document will have the same name as the original document, only the extension will change."""
exportFolder, exportFileName = self._validateArgs(exportFolder,exportFileName)
finalExportPath = exportFolder + '\\' + exportFileName
self._exportAll(finalExportPath, 60)
#TODO
#class PowerPointDocument:
# def __init__(self, documentPath):
# _createRegKeys()
# self.documentPath = documentPath