Debian packaging for PyPDF4
Go to file
switham 6d94e5bf56 pdfcat and pagerange.py: error handling, stdout, misc.
modified:   LICENSE
    Added Steve Witham <switham_github@mac-guyver.com>

modified:   PyPDF2/pagerange.py
    Fixed some error handling.
    Made parse_filename_page_ranges return a list instead of being a generator.
    Tweaked a variable name for readability.

renamed:    Sample_Code/makepages.py -> Sample_Code/makesimple.py
also modified:
    Renamed the code to be similar to makesimple.sh.
    Changed the output file names to be the same as makesimple.sh makes.

modified:   Sample_Code/pdfcat
    Fixed to allow sending output to a file by redirection like with cat,
         pdfcat input*.pdf >output.pdf
    using
         output = os.fdopen(stdout.fileno(), "wb")
    I have not tested this in Windows, but the Python docs say the calls are
    supported in Windows.  The worst problem this could cause would be to
    silence PyPDF2's existing warning about the file being in text mode,
    while still actually writing in Windows text mode.
    Added examples to the --help output to show output-redirect style.

    Took out the caching of open input files.  Needless complication.

    Added a try...except so that if there's a problem while processing an
    input file, print the filename.

    Made quiet the default and --verbose an option.
2014-01-09 15:18:21 -05:00
PDF_Samples AutoCad bugfix, minor name corrections 2013-11-13 16:49:57 -06:00
PyPDF2 pdfcat and pagerange.py: error handling, stdout, misc. 2014-01-09 15:18:21 -05:00
Sample_Code pdfcat and pagerange.py: error handling, stdout, misc. 2014-01-09 15:18:21 -05:00
.gitignore First commit 2011-12-30 09:04:56 -06:00
CHANGELOG Updating ChangeLog and version 2013-12-31 16:14:08 -06:00
LICENSE pdfcat and pagerange.py: error handling, stdout, misc. 2014-01-09 15:18:21 -05:00
MANIFEST.in First commit 2011-12-30 09:04:56 -06:00
README Provide FAQ reference. 2013-12-29 08:46:09 -06:00
setup.py skip 2to3 on install 2013-12-13 15:18:39 +01:00

README

PyPDF2
-------------------------------------------------

PyPDF2 is a pure-python PDF library capable of
splitting, merging together, cropping, and transforming
the pages of PDF files. It can also add custom
data, viewing options, and passwords to PDF files.
It can retrieve text and metadata from PDFs as well
as merge entire files together.

See sample code folder for helpful examples.

Documentation: <URL coming soon>
FAQ: <http://mstamy2.github.io/PyPDF2/FAQ.html>
PyPI: <https://pypi.python.org/pypi/PyPDF2>
GitHub: <https://github.com/mstamy2/PyPDF2>
Homepage: <http://mstamy2.github.io/PyPDF2/>