python学习: pdf2docx,pdf 转 doc/docx

用 python 完成 pdf 转doc 的一段小脚本
更新于: 2022-08-03 12:02:15

安装

pip install --upgrade pdf2docx

场景

有一个 pdf: test.pdf,将 3-20 页转成 docx 格式

from pdf2docx import Converter

pdf_file = './test.pdf'
docx_file = './test.docx'

# convert pdf to docx
cv = Converter(pdf_file)
cv.convert(docx_file, start=2, end=30)      # all pages by default
cv.close()

说明

  • 基于 python3 实现

参考