pdf en doc code example
Example 1: pdf to doc
you use this https://chrome.google.com/webstore/detail/online-pdf-editor-pdf2goc/dfnhijmficoiilogkjlnkionfjlgecdi/related instead free
Example 2: pdf to doc
you have to pay for this https://smallpdf.com/pdf-to-word
Example 3: pdf to word
# You can make a python script to do that just get the full txt data
# from the pdf and just drop the content into an working MicrosoftWord extension
# If you do a great export you can maybe get the full page design
# FrenchDoctor ^^
#!pip install tabula-py
import tabula
#read all table data
df = tabula.read_pdf("sample.pdf",pages=[1,2])
df[1]
#tabula.convert_into("sample.pdf", "sample.csv", output_format="csv")