PDF2WORD

作者: Noza_ea8f | 来源:发表于2021-04-23 11:50 被阅读0次
from pdf2docx import Converter

pdf_file = 'xxx.pdf'
docx_file = 'word/sample.docx'

# convert pdf to docx
cv = Converter(pdf_file)
cv.convert(docx_file, start=0, end=None)
cv.close()

相关文章

网友评论

      本文标题:PDF2WORD

      本文链接:https://www.haomeiwen.com/subject/hedcrltx.html