Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
Read, create, merge, split, watermark, encrypt, OCR, and fill PDF files using Python and CLI tools
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
scripts/check_fillable_fields.py
1import sys2from pypdf import PdfReader34567reader = PdfReader(sys.argv[1])8if (reader.get_fields()):9print("This PDF has fillable form fields")10else:11print("This PDF does not have fillable form fields; you will need to visually determine where to enter data")12