pdf_form_filler¶
academic_doc_generator.colloquium.pdf_form_filler
¶
PDF Formular-Tool zum Prüfen und Ausfüllen von PDF-Formularen mit PyMuPDF.
Dieses Script bietet Funktionen zum: - Prüfen, ob ein PDF ausfüllbare Formularfelder enthält - Auflisten aller Formularfelder mit ihren Namen - Automatischen Ausfüllen von PDF-Formularen
PDFFormHandler
¶
Handler für PDF-Formulare zum Prüfen und Ausfüllen.
Source code in src/academic_doc_generator/colloquium/pdf_form_filler.py
18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 | |
__del__()
¶
__init__(pdf_path)
¶
Initialisiert den PDF Form Handler.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
pdf_path
|
str
|
Pfad zur PDF-Datei |
required |
fill_form(field_data, output_path, flatten=False)
¶
Füllt das PDF-Formular mit den angegebenen Daten aus.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
field_data
|
dict[str, Any]
|
Dictionary mit Feldnamen als Keys und Werten als Values |
required |
output_path
|
str
|
Pfad für die ausgefüllte PDF-Datei |
required |
flatten
|
bool
|
Wenn True, werden Formularfelder nach dem Ausfüllen in normalen Text konvertiert (nicht mehr editierbar) |
False
|
Returns:
| Type | Description |
|---|---|
bool
|
True bei Erfolg, False bei Fehler |
Example
handler = PDFFormHandler("formular.pdf") data = { ... "name_student": "Mustermann, Max", ... "MatrNr": "123456", ... "Schrift_Begruendung": True # Checkbox aktivieren ... } handler.fill_form(data, "ausgefuellt.pdf")
Source code in src/academic_doc_generator/colloquium/pdf_form_filler.py
126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 | |
has_form_fields()
¶
Prüft, ob das PDF ausfüllbare Formularfelder enthält.
Returns:
| Type | Description |
|---|---|
bool
|
True wenn Formularfelder vorhanden sind, sonst False |
Source code in src/academic_doc_generator/colloquium/pdf_form_filler.py
list_form_fields()
¶
Listet alle Formularfelder mit Details auf.
Returns:
| Type | Description |
|---|---|
list[dict[str, Any]]
|
Liste von Dictionaries mit Feldinformationen (Name, Typ, Wert, Seite) |
Source code in src/academic_doc_generator/colloquium/pdf_form_filler.py
print_form_fields()
¶
Gibt alle Formularfelder formatiert auf der Konsole aus.
Source code in src/academic_doc_generator/colloquium/pdf_form_filler.py
berechne_gesamtnote(note1, note2)
¶
Berechnet das arithmetische Mittel zweier Noten.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
note1
|
float
|
Erste Note |
required |
note2
|
float
|
Zweite Note |
required |
Returns:
| Type | Description |
|---|---|
float
|
Gesamtnote (arithmetisches Mittel), gerundet auf eine Dezimalstelle |
Source code in src/academic_doc_generator/colloquium/pdf_form_filler.py
fill_form(data, output_folder, degree, location_type='campus', room=None, company_name=None)
¶
Füllt das PDF-Formular aus und generiert die Anmelde-E-Mail.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
data
|
dict[str, Any]
|
Dictionary mit Formulardaten. |
required |
output_folder
|
str
|
Ausgabeordner für PDF und E-Mail. |
required |
degree
|
str
|
"Bachelor" oder "Master". |
required |
location_type
|
str
|
"campus", "company" oder "online". |
'campus'
|
room
|
str
|
Raumnummer (optional, für Campus). |
None
|
company_name
|
str
|
Firmenname (optional, für Firma). |
None
|
Returns:
| Type | Description |
|---|---|
Optional[str]
|
Tuple aus (pdf_path, email_path) mit Pfaden zu den generierten Dateien. |
Source code in src/academic_doc_generator/colloquium/pdf_form_filler.py
generate_location_text(location_type, room=None, company_name=None)
¶
Generiert den Ort für das PDF-Formular.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
location_type
|
str
|
Art des Kolloquiums ("campus", "company", "online"). |
required |
room
|
Optional[str]
|
Raumnummer (nur für "campus"). |
None
|
company_name
|
Optional[str]
|
Name der Firma (nur für "company"). |
None
|
Returns:
| Type | Description |
|---|---|
str
|
pdf_location_text |
Raises:
| Type | Description |
|---|---|
ValueError
|
Wenn erforderliche Parameter fehlen. |
Source code in src/academic_doc_generator/colloquium/pdf_form_filler.py
main()
¶
Beispiel-Verwendung des PDF Form Handlers.
Source code in src/academic_doc_generator/colloquium/pdf_form_filler.py
334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 | |