An open API service indexing awesome lists of open source software.

https://github.com/gill-singh-a/pdf-merger

Merges multiple PDF Files into a single PDF File
https://github.com/gill-singh-a/pdf-merger

pdf pdf-generation pdf-merger python python-3

Last synced: about 1 month ago
JSON representation

Merges multiple PDF Files into a single PDF File

Awesome Lists containing this project

README

          

# PDF Merger
Merges multiple PDF Files into a single PDF File

## Requirements
Language Used = Python3
Modules/Packges used:
* os
* sys
* datetime
* pypdf
* time
* colorama

## Input
It takes input through the command by which we run the python file.

If we specify '*' then it will merge all the PDF Files present in the folder into a single PDF File.

For example:
```bash
python pdf_merger.py name_of_the_pdf_to_be_saved *
```
Otherwise we have to specify the PDF File names present in the folder to merge into a single PDF File.

For example:
```bash
python pdf_merger.py name_of_the_pdf_to_be_saved pdf_file_1 pdf_file_2 ...
```