标签: python pypdf2
我想提取填写在表格中的所有值。我可以成功提取文本按钮,但是无法提取是否选中了一个复选框。
The example of selected - Purchase and Unselected - Construction
我使用的代码是:
import PyPDF2 f = PyPDF2.PdfFileReader('test.pdf') ff = f.getFields() print(ff)