Difference between revisions of "Python: Read PDF"
Jump to navigation
Jump to search
Onnowpurbo (talk | contribs) (Created page with " ==Pranala Menarik== * Python") |
Onnowpurbo (talk | contribs) |
||
Line 1: | Line 1: | ||
+ | |||
+ | |||
+ | |||
+ | #install pyDF2 | ||
+ | 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) | ||
Revision as of 16:02, 28 October 2018
- install pyDF2
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)