PDF extraction using Python

import PyPDF2

file=open('C:\\Users\\ajind3\\Downloads\\entity.pdf','rb') 
fileRead=PyPDF2.PdfFileReader(file)
dPage=fileRead.getPage(0)
print(dPage.extractText())

Comments

Popular posts from this blog

Arrays

What is the difference between eval, execute and executeglobal.

Sample Test Strategy for a MicroService Project with APIs only