├── .gitignore ├── AUTHORS.rst ├── LICENSE.rst ├── MANIFEST.in ├── Makefile ├── README.rst ├── pdfbox └── __init__.py ├── setup.cfg ├── setup.py └── tests ├── test space.pdf ├── test.md ├── test.pdf ├── test2.pdf ├── test3.pdf └── test_pdfbox.py /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | 3 | /**/__pycache__/ 4 | *.py[cod] 5 | *$py.class 6 | -------------------------------------------------------------------------------- /AUTHORS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebedov/python-pdfbox/HEAD/AUTHORS.rst -------------------------------------------------------------------------------- /LICENSE.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebedov/python-pdfbox/HEAD/LICENSE.rst -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebedov/python-pdfbox/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebedov/python-pdfbox/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebedov/python-pdfbox/HEAD/README.rst -------------------------------------------------------------------------------- /pdfbox/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebedov/python-pdfbox/HEAD/pdfbox/__init__.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebedov/python-pdfbox/HEAD/setup.py -------------------------------------------------------------------------------- /tests/test space.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebedov/python-pdfbox/HEAD/tests/test space.pdf -------------------------------------------------------------------------------- /tests/test.md: -------------------------------------------------------------------------------- 1 | --- 2 | header-includes: 3 | - \pagenumbering{gobble} 4 | ... 5 | this is a test PDF 6 | -------------------------------------------------------------------------------- /tests/test.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebedov/python-pdfbox/HEAD/tests/test.pdf -------------------------------------------------------------------------------- /tests/test2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebedov/python-pdfbox/HEAD/tests/test2.pdf -------------------------------------------------------------------------------- /tests/test3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebedov/python-pdfbox/HEAD/tests/test3.pdf -------------------------------------------------------------------------------- /tests/test_pdfbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebedov/python-pdfbox/HEAD/tests/test_pdfbox.py --------------------------------------------------------------------------------