Skip to content

Instantly share code, notes, and snippets.

@haider11234
Created January 11, 2021 05:39
Show Gist options
  • Save haider11234/3dc9035e2015a857b76fc841ba802afe to your computer and use it in GitHub Desktop.
Save haider11234/3dc9035e2015a857b76fc841ba802afe to your computer and use it in GitHub Desktop.
# importing required modules
import PyPDF2
# creating a pdf file object
pdfFileObj = open('file.pdf', 'rb')
# creating a pdf reader object
pdfReader = PyPDF2.PdfFileReader(pdfFileObj)
# printing number of pages in pdf file
print(pdfReader.numPages)
# closing the pdf file object
pdfFileObj.close()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment