Skip to content

Instantly share code, notes, and snippets.

@haider11234
Created January 11, 2021 06:28
Show Gist options
  • Save haider11234/5b10f1c22ae3b176edebbbc750437c8f to your computer and use it in GitHub Desktop.
Save haider11234/5b10f1c22ae3b176edebbbc750437c8f to your computer and use it in GitHub Desktop.
# importing modules
import PyPDF2
pdfFileObj = open('file.pdf', 'rb')
# creating a pdf reader object
pdfReader = PyPDF2.PdfFileReader(pdfFileObj)
pagecount=pdfReader.numPages
i=0
while i < pagecount:
pageObj = pdfReader.getPage(i)
print(pageObj.extractText())
i+=1
pdfFileObj.close()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment