pdftotext

Read PDF in Python and convert to text in PDF

Read PDF in Python and convert to text in PDF Question: I have used this code to convert pdf to text. input1 = ‘//Home//Sai Krishna Dubagunta.pdf’ output = ‘//Home//Me.txt’ os.system((“pdftotext %s %s”) %( input1, output)) I have created the Home directory and pasted the source file in it. The output I get is 1 And …

Total answers: 3