1Just use Adobe Online converter it's free for one time and
2for more than 1 you may have to sign in,
3just use a temp mail like "moakt mail" or "temp mail" and u r good to go.
4Link: https://www.adobe.com/in/acrobat/online/word-to-pdf.html
5temp mail:https://temp-mail.org/
1Solution 1
2Upload Your Doc to Googledocs(https://www.google.com/docs/about/)
3Solution 2
4Use this website https://smallpdf.com/pdf-to-word
1Windows 10 (easiest way):
2
31) Right-click the PDF-Document you want to convert.
42) Choose "Open With".
53) If Word isn't one of the options go to "Choose Another App".
64) Select Word and press the OK-Button.
75) In the next Step Word opens and you're finished.
1# You can make a python script to do that just get the full txt data
2# from the pdf and just drop the content into an working MicrosoftWord extension
3# If you do a great export you can maybe get the full page design
4
5# FrenchDoctor ^^
6
7#!pip install tabula-py
8import tabula
9#read all table data
10df = tabula.read_pdf("sample.pdf",pages=[1,2])
11df[1]
12
13#tabula.convert_into("sample.pdf", "sample.csv", output_format="csv")