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
- Host: GitHub
- URL: https://github.com/gill-singh-a/pdf-merger
- Owner: Gill-Singh-A
- Created: 2023-04-10T19:47:07.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2025-07-25T06:22:39.000Z (3 months ago)
- Last Synced: 2025-08-24T15:39:22.160Z (about 2 months ago)
- Topics: pdf, pdf-generation, pdf-merger, python, python-3
- Language: Python
- Homepage:
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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 ...
```