Add pdf skill with text/table extraction, merge/split, form filling (fillable and non-fillable), PDF creation with reportlab, and command-line tools integration. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
11 lines
268 B
Python
11 lines
268 B
Python
import sys
|
|
from pypdf import PdfReader
|
|
|
|
|
|
|
|
|
|
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")
|