All pdf marge in one PDF.

            Welcome to all PDF in one PDF.



This is all PDF in one PDF marge using python.   import PyPDF2







from PyPDF2 import PdfWriter
import os

merger = PdfWriter()
files = [file for file in os.listdir() if file.endswith(".pdf")]

for pdf in files:
merger.append(pdf)

merger.write("merged-pdf.pdf")
merger.close()

Comments

Popular posts from this blog

Screen Recording using python.

wallpaper changer.

Find any color from image using python