Go to file
Christian Garbin c4d5a4d55d
Update README.md
2018-07-22 11:36:44 -04:00
.gitignore First commit 2018-07-09 07:37:21 -04:00
LICENSE Update LICENSE 2018-07-09 07:39:02 -04:00
README.md Update README.md 2018-07-22 11:36:44 -04:00
python-combinepdf.py First commit 2018-07-09 07:37:21 -04:00

README.md

python-combine-pdfs

Combine PDF files using PyPDF2.

Usage:

python-combinepdfs file1.pdf file2.pdf fileN.pdf -o output.pdf

Files are combined in the order they are given. Output is optional (defaults to combined.pdf).

Command line parsing code comes from this seed program.

Note

This code is using a workaround for PyPDF2 for the "empty output file wiht Python 3" issue documented here.

PyPDF2 is looking for new maintainers. Once that issue is resolved and a new version is released, the code can be cleaned up by removng the explicit context creation.