Go to file
Cathal Garvey 95e92420c9 Modified the "pdfparanoia" script in bin/ so it uses Argparse and the "with" context statement.
As python 2.6 was already commented as a potential environment, there seemed little
reason to not use Argparse rather than a sys.argv popping system; argparse offers
automatically generated usage documentation and can offer useful errors when input
is incorrect.

The "with" context statement is also highly excellent and should be used wherever
legacy support for old-timers using 2.6 is not needed.
2013-03-21 23:37:34 +00:00
bin Modified the "pdfparanoia" script in bin/ so it uses Argparse and the "with" context statement. 2013-03-21 23:37:34 +00:00
pdfparanoia add -v -v mode which prints out the details (potentially sensitive, potentially bulky) 2013-02-13 21:08:49 +00:00
tests SPIE watermark removal 2013-02-11 23:52:59 -06:00
.gitignore add certain pdfs to .gitignore 2013-02-06 17:34:38 -06:00
MANIFEST.in include README.md via MANIFEST.in 2013-02-05 04:17:05 -06:00
Makefile add swap files to make clean 2013-02-06 17:39:42 -06:00
README.md Modified the "pdfparanoia" script in bin/ so it uses Argparse and the "with" context statement. 2013-03-21 23:37:34 +00:00
requirements.txt create requirements.txt 2013-02-06 00:03:48 -06:00
setup.py Modified the "pdfparanoia" script in bin/ so it uses Argparse and the "with" context statement. 2013-03-21 23:37:34 +00:00

README.md

pdfparanoia

pdfparanoia is a PDF watermark removal library for academic papers. Some publishers include private information like institution names, personal names, ip addresses, timestamps and other identifying information in watermarks on each page.

Installing

Simple.

sudo pip install pdfparanoia

or,

sudo python setup.py install

pdfparanoia is written for python2.7+ or python 3. You will also need to manually install "pdfminer" if you do not use pip to install pdfparanoia.

Usage

import pdfparanoia

pdf = pdfparanoia.scrub(open("nmat91417.pdf", "rb"))

with open("output.pdf", "wb") as file_handler:
    file_handler.write(pdf)

or from the shell,

pdfparanoia --verbose input.pdf -o output.pdf

and,

cat input.pdf | pdfparanoia > output.pdf

Supported

  • AIP
  • IEEE
  • JSTOR
  • SPIE (sort of)

Changelog

  • 0.0.12 - SPIE
  • 0.0.11 - pdfparanoia command-line interface. Use it by either piping in pdf data, or specifying a path to a pdf in the first argv slot.
  • 0.0.10 - JSTOR
  • 0.0.9 - AIP: better checks for false-positives; IEEE: remove stdout garbage.
  • 0.0.8 - IEEE

License

BSD.