I am looking for help with converting any document file [doc, docx, ppt, pptx] type to PDF. DOCX and PPTX are easy to handle with Python libraries, but DOC and PPT is a bit tricky.
Initial code example:
import os
import shutil
src = ".../srcpaths"
dst = ".../dstpaths"
ext = ['ppt', 'pptx', 'doc', 'docx']
for root, subfolders, filenames in os.walk(src):
for filename in filenames:
if os.path.splitext(filename)[1] in ext:
shutil.copy2(os.path.join(root, filename), os.path.join(dst, filename))
def ConvertToPDF(ext):
#some code#
ConvertToPDF('.ppt')
ConvertToPDF('.pptx')
ConvertToPDF('.doc')
ConvertToPDF('.docx')
Below is my review of solutions and an answer at the end:
1. Pandoc:
2. Unoconv/Unoserver
3. Cloud-based solutions:
4. Google Drive API converter:
5. LibreLambda
Simple solution:
Use the software straightly by running it in a cmd subprocess.
Needs: installation of LibreOffice. Biggest advantage: can run both on Windows and Linux (should be modified for linux)
Here is my Python code for Windows:
import os
import subprocess
# path to the engine
path_to_office = r"C:\Program Files\LibreOffice\program\soffice.exe"
# path with files to convert
source_folder = r"C:\ConvertToPDF\input_files"
# path with pdf files
output_folder = r"C:\ConvertToPDF\output_files"
# changing directory to source
os.chdir(source_folder)
# assign and running the command of converting files through LibreOffice
command = f"\"{path_to_office}\" --convert-to pdf --outdir \"{output_folder}\" *.*"
subprocess.run(command)
print('Converted')