├── .gitignore ├── .travis.yml ├── CHANGELOG ├── LICENSE ├── MANIFEST.in ├── PDF_Samples ├── AutoCad_Diagram.pdf ├── AutoCad_Simple.pdf ├── GeoBase_NHNC1_Data_Model_UML_EN.pdf ├── README.txt ├── SF424_page2.pdf ├── Seige_of_Vicksburg_Sample_OCR.pdf └── jpeg.pdf ├── PyPDF3 ├── __init__.py ├── _version.py ├── filters.py ├── generic.py ├── merger.py ├── pagerange.py ├── pdf.py ├── utils.py └── xmp.py ├── README.md ├── Resources ├── crazyones.pdf ├── crazyones.txt ├── includeSJISfontname.pdf ├── jpeg.pdf └── jpeg.txt ├── Sample_Code ├── README.txt ├── basic_features.py ├── basic_merging.py ├── makesimple.py └── makesimple.sh ├── Scripts ├── 2-up.py ├── pdf-image-extractor.py └── pdfcat ├── requirements.txt ├── setup.py ├── tests ├── __init__.py └── tests.py ├── tox.ini └── unittest.sh /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | *.swp 3 | .DS_Store 4 | .tox 5 | build 6 | .idea/* 7 | 8 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfneal/PyPDF3/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfneal/PyPDF3/HEAD/CHANGELOG -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfneal/PyPDF3/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfneal/PyPDF3/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /PDF_Samples/AutoCad_Diagram.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfneal/PyPDF3/HEAD/PDF_Samples/AutoCad_Diagram.pdf -------------------------------------------------------------------------------- /PDF_Samples/AutoCad_Simple.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfneal/PyPDF3/HEAD/PDF_Samples/AutoCad_Simple.pdf -------------------------------------------------------------------------------- /PDF_Samples/GeoBase_NHNC1_Data_Model_UML_EN.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfneal/PyPDF3/HEAD/PDF_Samples/GeoBase_NHNC1_Data_Model_UML_EN.pdf -------------------------------------------------------------------------------- /PDF_Samples/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfneal/PyPDF3/HEAD/PDF_Samples/README.txt -------------------------------------------------------------------------------- /PDF_Samples/SF424_page2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfneal/PyPDF3/HEAD/PDF_Samples/SF424_page2.pdf -------------------------------------------------------------------------------- /PDF_Samples/Seige_of_Vicksburg_Sample_OCR.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfneal/PyPDF3/HEAD/PDF_Samples/Seige_of_Vicksburg_Sample_OCR.pdf -------------------------------------------------------------------------------- /PDF_Samples/jpeg.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfneal/PyPDF3/HEAD/PDF_Samples/jpeg.pdf -------------------------------------------------------------------------------- /PyPDF3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfneal/PyPDF3/HEAD/PyPDF3/__init__.py -------------------------------------------------------------------------------- /PyPDF3/_version.py: -------------------------------------------------------------------------------- 1 | __version__ = '1.0.6' 2 | -------------------------------------------------------------------------------- /PyPDF3/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfneal/PyPDF3/HEAD/PyPDF3/filters.py -------------------------------------------------------------------------------- /PyPDF3/generic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfneal/PyPDF3/HEAD/PyPDF3/generic.py -------------------------------------------------------------------------------- /PyPDF3/merger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfneal/PyPDF3/HEAD/PyPDF3/merger.py -------------------------------------------------------------------------------- /PyPDF3/pagerange.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfneal/PyPDF3/HEAD/PyPDF3/pagerange.py -------------------------------------------------------------------------------- /PyPDF3/pdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfneal/PyPDF3/HEAD/PyPDF3/pdf.py -------------------------------------------------------------------------------- /PyPDF3/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfneal/PyPDF3/HEAD/PyPDF3/utils.py -------------------------------------------------------------------------------- /PyPDF3/xmp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfneal/PyPDF3/HEAD/PyPDF3/xmp.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfneal/PyPDF3/HEAD/README.md -------------------------------------------------------------------------------- /Resources/crazyones.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfneal/PyPDF3/HEAD/Resources/crazyones.pdf -------------------------------------------------------------------------------- /Resources/crazyones.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfneal/PyPDF3/HEAD/Resources/crazyones.txt -------------------------------------------------------------------------------- /Resources/includeSJISfontname.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfneal/PyPDF3/HEAD/Resources/includeSJISfontname.pdf -------------------------------------------------------------------------------- /Resources/jpeg.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfneal/PyPDF3/HEAD/Resources/jpeg.pdf -------------------------------------------------------------------------------- /Resources/jpeg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfneal/PyPDF3/HEAD/Resources/jpeg.txt -------------------------------------------------------------------------------- /Sample_Code/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfneal/PyPDF3/HEAD/Sample_Code/README.txt -------------------------------------------------------------------------------- /Sample_Code/basic_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfneal/PyPDF3/HEAD/Sample_Code/basic_features.py -------------------------------------------------------------------------------- /Sample_Code/basic_merging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfneal/PyPDF3/HEAD/Sample_Code/basic_merging.py -------------------------------------------------------------------------------- /Sample_Code/makesimple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfneal/PyPDF3/HEAD/Sample_Code/makesimple.py -------------------------------------------------------------------------------- /Sample_Code/makesimple.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfneal/PyPDF3/HEAD/Sample_Code/makesimple.sh -------------------------------------------------------------------------------- /Scripts/2-up.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfneal/PyPDF3/HEAD/Scripts/2-up.py -------------------------------------------------------------------------------- /Scripts/pdf-image-extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfneal/PyPDF3/HEAD/Scripts/pdf-image-extractor.py -------------------------------------------------------------------------------- /Scripts/pdfcat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfneal/PyPDF3/HEAD/Scripts/pdfcat -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | tqdm>=4.49.0 2 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfneal/PyPDF3/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfneal/PyPDF3/HEAD/tests/tests.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfneal/PyPDF3/HEAD/tox.ini -------------------------------------------------------------------------------- /unittest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfneal/PyPDF3/HEAD/unittest.sh --------------------------------------------------------------------------------