Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

pdf to string python

pip install PyPDF2
import PyPDF2
pdfFileObject=open(r"F:fileName.pdf",'rb')
pdfReader = PyPDF2.PdfFileReader(pdfFileObject) //Creating reader obj
print(" No. Of Pages :", pdfReader.numPages)//To know no.of pages
Source by www.simplifiedpython.net #
 
PREVIOUS NEXT
Tagged: #pdf #string #python
ADD COMMENT
Topic
Name
6+6 =