Other articles


  1. Python merge PDFs

    Using python script to merge pdfs together.

    Install package

    pip install pypdf
    

    Script:

    from pypdf import PdfWriter
    
    pdfs = ['file1.pdf …
    read more

social