All Projects → kairavkkp → Merge-PDF

kairavkkp / Merge-PDF

Licence: MIT license
My first PyPi Package. Merge Image and PDF files using customizations within a folder using the Command line.

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Merge-PDF

pdf-corpora
An index of PDF-centric corpora
Stars: ✭ 32 (+113.33%)
Mutual labels:  pdf-files, pdfs
starter-kit
Start your career path to become a developer.
Stars: ✭ 19 (+26.67%)
Mutual labels:  hacktoberfest2021
VCPlayerBot
Telegram bot to stream videos in telegram voicechat for both groups and channels. Supports live steams, YouTube videos and telegram media. Supports scheduling streams, recording and many more.
Stars: ✭ 432 (+2780%)
Mutual labels:  hacktoberfest2021
LuminousNewTab
Luminous New Tab is a beautiful 'new tab' browser extension that has an animated gradient background! New tabs will show your bookmarks, the time, weather and let you do searches too!
Stars: ✭ 18 (+20%)
Mutual labels:  hacktoberfest2021
Hacktoberfest 21
No description or website provided.
Stars: ✭ 17 (+13.33%)
Mutual labels:  hacktoberfest2021
cryostat
Secure JDK Flight Recorder management for containerized JVMs
Stars: ✭ 147 (+880%)
Mutual labels:  hacktoberfest2021
Algorithms
Short explanations and implementations of different algorithms in multiple languages
Stars: ✭ 37 (+146.67%)
Mutual labels:  hacktoberfest2021
Hacktoberfest
In this repository you can contribute quality code in languages you are comfortable with during the Hacktoberfest event. Raise Genuine PR's Only your. You aren't allowed to Update README.md. Invalid PR's is not supported here.
Stars: ✭ 20 (+33.33%)
Mutual labels:  hacktoberfest2021
Peregrine
A blazing fast language for the blazing fast world(WIP)
Stars: ✭ 1,483 (+9786.67%)
Mutual labels:  hacktoberfest2021
Heel2Toe
A beginner-friendly repository to get started with HTML, CSS, and JS.
Stars: ✭ 22 (+46.67%)
Mutual labels:  hacktoberfest2021
djangoReact-template
A perfect template for you to focus on starting your hack project or your deployed project. Leave all the gibberish of setup and just focus on innovating and creating amazing tech
Stars: ✭ 23 (+53.33%)
Mutual labels:  hacktoberfest2021
CPCODES-Hacktoberfest2021
No description or website provided.
Stars: ✭ 11 (-26.67%)
Mutual labels:  hacktoberfest2021
Hacktoberfest-2021
This repository dedicated to Hacktoberfest 2021. Hacktoberfest is a month long open source contribution program held in October every year by Digital Ocean. This is a beginner-friendly open source event.
Stars: ✭ 10 (-33.33%)
Mutual labels:  hacktoberfest2021
Hacktoberfest-Nepal-2020
A beginner-friendly open source repository to create your first pull request.
Stars: ✭ 15 (+0%)
Mutual labels:  hacktoberfest2021
hacktoberfest2021-easy
Add a code in any language
Stars: ✭ 24 (+60%)
Mutual labels:  hacktoberfest2021
Xpendi
iOS expense tracker
Stars: ✭ 13 (-13.33%)
Mutual labels:  hacktoberfest2021
nodejs-express-jwt
Node.js Express REST API boilerplate with JWT Authentication and support for MySQL and PostgreSQL.
Stars: ✭ 56 (+273.33%)
Mutual labels:  hacktoberfest2021
hacktoberfest
www.sharjeelyunus.me/hacktoberfest/
Stars: ✭ 15 (+0%)
Mutual labels:  hacktoberfest2021
pygamelib
A (not so) small python library for console (as in terminal) game development. It is developed as a framework to help learn development and python in an entertaining way.
Stars: ✭ 34 (+126.67%)
Mutual labels:  hacktoberfest2021
autocorr kr
리브레오피스(LibreOffice) 자동 교정(Autocorrect)기능에 대한 말모이 저장소
Stars: ✭ 15 (+0%)
Mutual labels:  hacktoberfest2021
Merge-PDF

Merge-PDF

Build Status PyPI version Downloads License: MIT

Merge PDF files using customizations within a folder using Command line.

How to Install

pip install mergemypdf

How to use

  • Open Terminal
  • Move to the directory where PDFs are present.
  • Run mergemypdf -h for more info.

Usage:

mergemypdf -c <number_of_pdfs> -o <order_of_merging> -f <output_pdf_filename>

Examples:

mergemypdf -c 10 -o 1 -f merged.pdf

mergemypdf -p password -f merged.pdf

mergemypdf -ep 1 -p password

mergemypdf -a 1 -f merged.pdf

Optional arguments:

- s : <pdf_name_starting_with_string> 
- e : <pdf_name_endswith_string> 
- cn: <pdf_name_containing_string>

Note:

  • -c represents number of PDFs needed to merge.
  • -o represents order of merging PDFs, 0 is Ascending, 1 is descending and 2 is Shuffle. Default is Ascending.
  • -s represents start string in PDF file's name.
  • -e represents end string in PDF file's name.
  • -cn represents string containing in PDF file's name.
  • -f represents saved file name. Default names are randomly generated, adviced to specify a name everytime.
  • -i represents the flag if only images need to be merged within a folder. Default is false.
  • -ip represents the flag if both images and pdfs need to be merged within a folder. Default is false.
  • -p represents password used to decrypt PDFs. If the PDFs have individually different passwords omit this and you will be prompted to enter each password.
  • -epub represents the flag if only EPUBs need to be merged within a folder. Default is false.
  • -ep represents the flag if both EPUBs and PDFs need to be merged within a folder. Default is false.
  • -ie represents the flag if both images and EPUBs need to be merged within a folder. Default is false.
  • -a represents the flag if all support file types (PDF, Images and EPUBS) need to be merged within a folder. Default is false.

Usage of Optional Arguments.

  • mergemypdf -s 09 Only merge PDFs starting with 09.
  • mergemypdf -e Derivation Only merge PDFs ending with Derivation.
  • mergemypdf -cn Lecture Only merge PDFs having keyword 'Lecture' in the name.
  • mergemypdf -i 1 Only merge Images from the directory.
  • mergemypdf -ip 1 Merge both Images and PDFs from the directory.
  • mergemypdf -p test123 Merge all PDFs from directory using the supplied password on any encrypted PDFs.
  • mergemypdf -epub 1 Only merge EPUB files from the directory.
  • mergemypdf -ep 1 Merge both EPUBs and PDFs from the directory.
  • mergemypdf -ie 1 Merge both Images and EPUBs from the directory.
  • mergemypdf -a 1 Merge PDFs, Images and EPUBs from the directory.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].