问题
Is there a package/library for python that would allow me to open a PDF, and search the text for certain words?
回答1:
Using PyPdf2 you can use extractText() method to extract pdf text and work on it.
Update: Changed text to refer to PyPdf2, thanks to @Aditya Kumar for heads up.
回答2:
I don't think you can do it in one step, but you can certainly get the text out of a pdf with pdfminer. Then you can apply whatever text search to that recovered data.
来源:https://stackoverflow.com/questions/1672202/text-mine-pdf-files-with-python