pdf2docx 转换 pdf 为 word文件

from pdf2docx import Converter


pdf_file = '1.pdf'
docx_file = '1.docx'


cv = Converter(pdf_file)
cv.convert(docx_file, start=0, end=None)

cv.close()

如果觉得文章不错,可以分享给其他人哟~
原文地址:https://www.cnblogs.com/hany-postq473111315/p/15314460.html