Remove obsolete DOCX documentation and related files, including tutorials, license, and schema definitions, to streamline the project structure.

This commit is contained in:
Timothy Kassis
2026-03-05 07:59:40 -08:00
parent e46b77d962
commit 204314ea22
211 changed files with 28993 additions and 9938 deletions

View File

@@ -0,0 +1,11 @@
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")