Which python packages can I use to find out out on which page a specific “search string” is located ?
I looked into several python pdf packages but couldn\'t figur
In addition to what @user1043144 mentioned,
To use with python 3.x
Use PyPDF2
import PyPDF2
Use open instead of file
open
file
PdfFileReader(open(xFile, 'rb'))