pdfparanoia/README.md

40 lines
543 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()
```
## Changelog
2013-02-06 00:21:58 +01:00
* 0.0.9 - AIP: better checks for false-positives; IEEE: remove stdout garbage.
2013-02-05 11:56:18 +01:00
* 0.0.8 - ieee support
2013-02-05 10:10:14 +01:00
* 0.0.1 - initial commit
## License
BSD.