Files

16 lines
406 B
Python
Raw Permalink Normal View History

2026-05-30 23:16:49 +08:00
# flake8: noqa
# yapf: disable
import sys
from pypdf import PdfReader
# Script for Claude to run to determine whether a PDF has fillable form fields. See forms.md.
reader = PdfReader(sys.argv[1])
if (reader.get_fields()):
print('This PDF has fillable form fields')
else:
print(
'This PDF does not have fillable form fields; you will need to visually determine where to enter data'
)