@@ -7,7 +7,10 @@ can be used out of box.
7
7
8
8
The most common tool to create a PDF form is Adobe Acrobat. A tutorial can be found
9
9
[ here] ( https://helpx.adobe.com/acrobat/using/creating-distributing-pdf-forms.html ) .
10
- There are other free alternatives like [ this] ( https://pdf.wondershare.com/ ) that support the same functionalities.
10
+ There are other free alternatives like [ sejda] ( https://www.sejda.com/ ) that support similar functionalities.
11
+
12
+ NOTE: Sejda is highly recommended as PyPDFForm
13
+ provides more stable support to PDF forms prepared using it with a ` sejda ` mode.
11
14
12
15
Unless otherwise specified, all examples will use the same PDF form which can be
13
16
found [ here] ( https://github.com/chinapandaman/PyPDFForm/blob/master/pdf_samples/v2/sample_template.pdf ) .
@@ -440,3 +443,62 @@ with open(PATH_TO_FILLED_PDF_FORM, "wb+") as output:
440
443
```
441
444
442
445
Link to this example: https://github.com/chinapandaman/PyPDFForm/blob/master/examples/simple_fill_radio.py
446
+
447
+
448
+ ## Fill a PDF form prepared using Sejda
449
+
450
+ This example uses this [ template] ( https://github.com/chinapandaman/PyPDFForm/blob/master/pdf_samples/v2/sample_template_sejda.pdf ) .
451
+ It demos filling a PDF form prepared using Sejda.
452
+
453
+ ``` python
454
+ import os
455
+
456
+ from PyPDFForm import PyPDFForm
457
+
458
+ PATH_TO_DOWNLOADED_SAMPLE_PDF_FORM = os.path.join(
459
+ os.path.expanduser(" ~/Downloads" ), " sample_template_sejda.pdf"
460
+ ) # Change this to where you downloaded the sample PDF form
461
+
462
+ PATH_TO_FILLED_PDF_FORM = os.path.join(
463
+ os.path.expanduser(" ~" ), " output.pdf"
464
+ ) # Change this to where you wish to put your filled PDF form
465
+
466
+ with open (PATH_TO_FILLED_PDF_FORM , " wb+" ) as output:
467
+ output.write(
468
+ PyPDFForm(PATH_TO_DOWNLOADED_SAMPLE_PDF_FORM , sejda = True )
469
+ .fill(
470
+ {
471
+ " date" : " 01-01" ,
472
+ " year" : " 21" ,
473
+ " buyer_name" : " John Doe" ,
474
+ " buyer_address" : " 1 N Main St, Chicago, IL 60000" ,
475
+ " seller_name" : " Jack Smith" ,
476
+ " seller_address" : " 2 S Main St, Chicago, IL 60000" ,
477
+ " make" : " AK" ,
478
+ " model" : " 47" ,
479
+ " caliber" : " 7.62-x39mm" ,
480
+ " serial_number" : " 111111" ,
481
+ " purchase_option" : 0 ,
482
+ " date_of_this_bill" : True ,
483
+ " at_future_date" : True ,
484
+ " other" : True ,
485
+ " other_reason" : " NO REASONS" ,
486
+ " payment_amount" : " 400" ,
487
+ " future_date" : " 01-01" ,
488
+ " future_year" : " 22" ,
489
+ " exchange_for" : " Food" ,
490
+ " buyer_name_printed" : " John Doe" ,
491
+ " seller_name_printed" : " Jack Smith" ,
492
+ " buyer_signed_date" : " 2021-01-01" ,
493
+ " seller_signed_date" : " 2021-01-01" ,
494
+ " buyer_dl_number" : " D000-4609-0001" ,
495
+ " seller_dl_number" : " S530-4209-0001" ,
496
+ " buyer_dl_state" : " IL" ,
497
+ " seller_dl_state" : " IL" ,
498
+ },
499
+ )
500
+ .read()
501
+ )
502
+ ```
503
+
504
+ Link to this example: https://github.com/chinapandaman/PyPDFForm/blob/master/examples/fill_sejda.py
0 commit comments