├── .gitattributes ├── .gitignore ├── .travis.yml ├── LICENSE ├── MANIFEST.in ├── README.md ├── ci-test ├── conda-forge ├── README.md ├── pyee │ ├── LICENSE │ ├── meta.yaml │ └── setup.patch ├── pyppdf │ └── meta.yaml └── pyppeteer │ ├── conda-forge.patch │ └── meta.yaml ├── pyppdf ├── __init__.py ├── _version.py ├── install.py ├── patch_pyppeteer │ ├── __init__.py │ └── patch_pyppeteer.py └── pyppeteer_pdf.py ├── setup.cfg ├── setup.py ├── tag ├── upload ├── upload.txt └── versioneer.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi0fruit/pyppdf/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi0fruit/pyppdf/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi0fruit/pyppdf/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi0fruit/pyppdf/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi0fruit/pyppdf/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi0fruit/pyppdf/HEAD/README.md -------------------------------------------------------------------------------- /ci-test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi0fruit/pyppdf/HEAD/ci-test -------------------------------------------------------------------------------- /conda-forge/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi0fruit/pyppdf/HEAD/conda-forge/README.md -------------------------------------------------------------------------------- /conda-forge/pyee/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi0fruit/pyppdf/HEAD/conda-forge/pyee/LICENSE -------------------------------------------------------------------------------- /conda-forge/pyee/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi0fruit/pyppdf/HEAD/conda-forge/pyee/meta.yaml -------------------------------------------------------------------------------- /conda-forge/pyee/setup.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi0fruit/pyppdf/HEAD/conda-forge/pyee/setup.patch -------------------------------------------------------------------------------- /conda-forge/pyppdf/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi0fruit/pyppdf/HEAD/conda-forge/pyppdf/meta.yaml -------------------------------------------------------------------------------- /conda-forge/pyppeteer/conda-forge.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi0fruit/pyppdf/HEAD/conda-forge/pyppeteer/conda-forge.patch -------------------------------------------------------------------------------- /conda-forge/pyppeteer/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi0fruit/pyppdf/HEAD/conda-forge/pyppeteer/meta.yaml -------------------------------------------------------------------------------- /pyppdf/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi0fruit/pyppdf/HEAD/pyppdf/__init__.py -------------------------------------------------------------------------------- /pyppdf/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi0fruit/pyppdf/HEAD/pyppdf/_version.py -------------------------------------------------------------------------------- /pyppdf/install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi0fruit/pyppdf/HEAD/pyppdf/install.py -------------------------------------------------------------------------------- /pyppdf/patch_pyppeteer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi0fruit/pyppdf/HEAD/pyppdf/patch_pyppeteer/__init__.py -------------------------------------------------------------------------------- /pyppdf/patch_pyppeteer/patch_pyppeteer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi0fruit/pyppdf/HEAD/pyppdf/patch_pyppeteer/patch_pyppeteer.py -------------------------------------------------------------------------------- /pyppdf/pyppeteer_pdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi0fruit/pyppdf/HEAD/pyppdf/pyppeteer_pdf.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi0fruit/pyppdf/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi0fruit/pyppdf/HEAD/setup.py -------------------------------------------------------------------------------- /tag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi0fruit/pyppdf/HEAD/tag -------------------------------------------------------------------------------- /upload: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi0fruit/pyppdf/HEAD/upload -------------------------------------------------------------------------------- /upload.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi0fruit/pyppdf/HEAD/upload.txt -------------------------------------------------------------------------------- /versioneer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiwi0fruit/pyppdf/HEAD/versioneer.py --------------------------------------------------------------------------------