This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
# https://gist.github.com/edoz90/a441f2bdfc8c99c1999db0a3e8495fb6 | |
# Author: notdodo | |
try: | |
from PyPDF2 import PdfFileWriter, PdfFileReader | |
import click | |
except ModuleNotFoundError: | |
print("pip install pypdf2 click") | |
import sys |
OlderNewer