How to Solve NameError: name 'PdfFileReader' is not defined -- PyPDF2

Solution: Import the 'PdfFileReader' module

To Solve the error, add the following line to the top of your code.

from PyPDF2 import PdfFileReader

 

For more information:
Python PyPDF2 PdfFileReader