Files
AGENTS/skill/pdf/scripts/check_fillable_fields.py
2026-01-19 19:37:38 +01:00

13 lines
372 B
Python

import sys
from pypdf import PdfReader
# Script for the Coding Agent 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")