├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── example.py ├── pdf_redactor.py ├── pdftotext.py ├── requirements-dev.txt ├── requirements.txt ├── setup.py ├── smoketest.py ├── tests ├── __init__.py ├── run_tests.py ├── test-ssns.odt ├── test-ssns.pdf └── test_redactor.py └── tox.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshData/pdf-redactor/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshData/pdf-redactor/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshData/pdf-redactor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshData/pdf-redactor/HEAD/README.md -------------------------------------------------------------------------------- /example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshData/pdf-redactor/HEAD/example.py -------------------------------------------------------------------------------- /pdf_redactor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshData/pdf-redactor/HEAD/pdf_redactor.py -------------------------------------------------------------------------------- /pdftotext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshData/pdf-redactor/HEAD/pdftotext.py -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- 1 | nose 2 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pdfrw>=0.4 2 | defusedxml 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshData/pdf-redactor/HEAD/setup.py -------------------------------------------------------------------------------- /smoketest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshData/pdf-redactor/HEAD/smoketest.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/run_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshData/pdf-redactor/HEAD/tests/run_tests.py -------------------------------------------------------------------------------- /tests/test-ssns.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshData/pdf-redactor/HEAD/tests/test-ssns.odt -------------------------------------------------------------------------------- /tests/test-ssns.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshData/pdf-redactor/HEAD/tests/test-ssns.pdf -------------------------------------------------------------------------------- /tests/test_redactor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshData/pdf-redactor/HEAD/tests/test_redactor.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshData/pdf-redactor/HEAD/tox.ini --------------------------------------------------------------------------------