I\'m trying to extract the text included in this PDF file using Python.
Python
I\'m using the PyPDF2 module, and have the following script:
imp
Use textract.
It supports many types of files including PDFs
import textract text = textract.process("path/to/file.extension")