Python: PDF

From OnnoCenterWiki
Revision as of 22:24, 24 October 2018 by Onnowpurbo (talk | contribs)
Jump to navigationJump to search

pyPDF2

#install pyPDF2
pip install PyPDF2

# importing all the required modules
import PyPDF2

# creating an object 
file = open('example.pdf', 'rb')

# creating a pdf reader object
fileReader = PyPDF2.PdfFileReader(file)

# print the number of pages in pdf file
print(fileReader.numPages)

Referensi