Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

convert pdf to docx python

# It worked for me

from pdf2docx import parse
pdf_file = "test.pdf"
word_file = "test.docx"
parse(pdf_file, word_file, start=0, end=None)
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #convert #pdf #docx #python
ADD COMMENT
Topic
Name
3+9 =