I\'m trying to use Python to processes some PDF forms that were filled out and signed using Adobe Acrobat Reader.
I\'ve tried:
The Python PyPDF2 package (successor to pyPdf) is very convenient:
import PyPDF2 f = PyPDF2.PdfFileReader('form.pdf') ff = f.getFields()
Then ff is a dict that contains all the relevant form information.
ff
dict