pdfparanoia/README.md

59 lines
831 B
Markdown
Raw Normal View History

2013-02-05 10:10:14 +01:00
# pdfparanoia
2013-02-06 06:44:00 +01:00
pdfparanoia is a PDF watermark removal library for academic papers.
2013-02-05 10:10:14 +01:00
## Installing
Simple.
``` bash
sudo pip install pdfparanoia
```
or,
``` bash
sudo python setup.py install
```
## Usage
``` python
import pdfparanoia
pdf = pdfparanoia.scrub(open("nmat91417.pdf", "rb"))
file_handler = open("output.pdf", "wb")
file_handler.write(pdf)
file_handler.close()
```
2013-02-10 08:29:58 +01:00
or from the shell,
``` bash
pdfparanoia input.pdf > output.pdf
```
and,
``` bash
cat input.pdf | pdfparanoia > output.pdf
```
2013-02-07 00:31:19 +01:00
## Supported
* AIP
* IEEE
* JSTOR
2013-02-05 10:10:14 +01:00
## Changelog
2013-02-09 16:43:12 +01:00
* 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.
2013-02-07 00:31:19 +01:00
* 0.0.10 - JSTOR
2013-02-06 00:21:58 +01:00
* 0.0.9 - AIP: better checks for false-positives; IEEE: remove stdout garbage.
2013-02-07 00:31:19 +01:00
* 0.0.8 - IEEE
2013-02-05 10:10:14 +01:00
## License
BSD.