How to extract PDF fields from a filled out form in Python?

后端 未结 6 1107
北恋
北恋 2020-12-02 07:10

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 pdfminer demo: it di
6条回答
  •  猫巷女王i
    2020-12-02 07:23

    There is a typo on these lines:

    file.write(pp.pformat(form))
    

    Should be:

    outfile.write(pp.pformat(form))
    

提交回复
热议问题