Course Content
Intermediate Python: PDF Manipulating, Extracting, and Combining
Intermediate Python: PDF Manipulating, Extracting, and Combining
PdfWriter
PdfWriter
is a class in PyPDF2
library that provides a way to create or manipulate PDF files. It allows developers to add, remove or modify the contents of a PDF document. PdfWriter
is useful for automating the creation of PDF files, merging multiple PDF files, and modifying existing PDF documents in Python.
Task
- Create a merger object as instance
PdfWriter()
; - Merge two PDFs together using the
.append()
method ofPdfWriter
; - Write merged PDFs to a file called
merged_pdf
.
Task
- Create a merger object as instance
PdfWriter()
; - Merge two PDFs together using the
.append()
method ofPdfWriter
; - Write merged PDFs to a file called
merged_pdf
.
Everything was clear?
PdfWriter
is a class in PyPDF2
library that provides a way to create or manipulate PDF files. It allows developers to add, remove or modify the contents of a PDF document. PdfWriter
is useful for automating the creation of PDF files, merging multiple PDF files, and modifying existing PDF documents in Python.
Task
- Create a merger object as instance
PdfWriter()
; - Merge two PDFs together using the
.append()
method ofPdfWriter
; - Write merged PDFs to a file called
merged_pdf
.