Has anyone here created an API flow that would take PDF documents and convert them into Word documents? I want to find a way to automate this process.
Maybe, if you use some python script to convert
https://pdf2docx.readthedocs.io/en/latest/
from pdf2docx import Converterpdf_file = '/path/to/sample.pdf' docx_file = 'path/to/sample.docx' # convert pdf to docx cv = Converter(pdf_file) cv.convert(docx_file) # all pages by default cv.close()