This project provides a Python script to merge multiple PDF files into a single PDF document. The script uses the PyPDF2 library to read, append, and merge PDFs. It's a simple and efficient solution for combining multiple PDFs into one.
- Merge multiple PDF files into a single file.
- Simple Python script using the PyPDF2 library.
- Can handle multiple input PDF files.
- Output is saved as
merged.pdf
.
To run the script, you need to install the PyPDF2
library. You can install it using pip:
pip install PyPDF2