• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

PyPDF2/H18-May-2016-5,9654,620

Resources/H03-May-2022-

Sample_Code/H03-May-2022-12578

Scripts/H18-May-2016-136106

Tests/H18-May-2016-7144

.gitignoreH A D18-May-201637 75

CHANGELOGH A D18-May-201619.2 KiB632388

LICENSEH A D18-May-20161.6 KiB3025

MANIFEST.inH A D18-May-201618 21

README.mdH A D18-May-2016732 3423

setup.pyH A D18-May-20161.7 KiB5345

README.md

1#PyPDF2
2
3PyPDF2 is a pure-python PDF library capable of
4splitting, merging together, cropping, and transforming
5the pages of PDF files. It can also add custom
6data, viewing options, and passwords to PDF files.
7It can retrieve text and metadata from PDFs as well
8as merge entire files together.
9
10Homepage
11http://mstamy2.github.io/PyPDF2/
12
13##Examples
14
15Please see `sample code` folder
16
17##Documentation
18
19Documentation is available at
20https://pythonhosted.org/PyPDF2/
21
22
23##FAQ
24Please see
25http://mstamy2.github.io/PyPDF2/FAQ.html
26
27
28##Tests
29PyPDF2 includes a test suite built on the unittest framework. All tests are located in the "Tests" folder.
30Tests can be run from the command line by:
31
32```bash
33python -m unittest Tests.tests
34```