I'm new to python development, is there any way to convert scanned PDF/image to Excel using Python.
I tried with following method:
Step 1:
Install pypandoc
library,
pip install pypandoc
and import library in my code file as same as shown below
import pypandoc
from reportlab.lib.testutils import outputfile
Step 2:
Added below code for conversion to excel
canout = pypandoc.convert_file("DT.pdf", 'excel', outputfile="MyPdf.excel")
assert canout==""
But not able to succeed. Please suggest me for the same implementation.
Note: If any other way of implementation is also welcome.
Thanks