Some pdf utilities like merging different pdfs into one.
- Install PyPDF2 package from pip
pip3 install PyPDF2
- To merge pdfs, place them in a folder and run the
merge_pdfs.py
script. The script merges all the pdfs in the specified folder in alphabetical order of their names I think.
python3 merge_pdfs.py -i <input_dir> -o <output_file>