update path, add python unrar
This commit is contained in:
parent
642ba49f68
commit
00165d302e
862 changed files with 804 additions and 6 deletions
|
|
@ -0,0 +1,34 @@
|
|||
Metadata-Version: 1.2
|
||||
Name: PyPDF2
|
||||
Version: 1.25.1
|
||||
Summary: PDF toolkit
|
||||
Home-page: http://mstamy2.github.com/PyPDF2
|
||||
Author: Mathieu Fenniak
|
||||
Author-email: biziqe@mathieu.fenniak.net
|
||||
Maintainer: Phaseit, Inc.
|
||||
Maintainer-email: PyPDF2@phaseit.net
|
||||
License: UNKNOWN
|
||||
Description:
|
||||
A Pure-Python library built as a PDF toolkit. It is capable of:
|
||||
|
||||
- extracting document information (title, author, ...)
|
||||
- splitting documents page by page
|
||||
- merging documents page by page
|
||||
- cropping pages
|
||||
- merging multiple pages into a single page
|
||||
- encrypting and decrypting PDF files
|
||||
- and more!
|
||||
|
||||
By being Pure-Python, it should run on any Python platform without any
|
||||
dependencies on external libraries. It can also work entirely on StringIO
|
||||
objects rather than file streams, allowing for PDF manipulation in memory.
|
||||
It is therefore a useful tool for websites that manage or manipulate PDFs.
|
||||
|
||||
Platform: UNKNOWN
|
||||
Classifier: Development Status :: 5 - Production/Stable
|
||||
Classifier: Intended Audience :: Developers
|
||||
Classifier: License :: OSI Approved :: BSD License
|
||||
Classifier: Programming Language :: Python :: 2
|
||||
Classifier: Programming Language :: Python :: 3
|
||||
Classifier: Operating System :: OS Independent
|
||||
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
||||
|
|
@ -0,0 +1,17 @@
|
|||
CHANGELOG
|
||||
MANIFEST.in
|
||||
README.md
|
||||
setup.py
|
||||
PyPDF2/__init__.py
|
||||
PyPDF2/_version.py
|
||||
PyPDF2/filters.py
|
||||
PyPDF2/generic.py
|
||||
PyPDF2/merger.py
|
||||
PyPDF2/pagerange.py
|
||||
PyPDF2/pdf.py
|
||||
PyPDF2/utils.py
|
||||
PyPDF2/xmp.py
|
||||
PyPDF2.egg-info/PKG-INFO
|
||||
PyPDF2.egg-info/SOURCES.txt
|
||||
PyPDF2.egg-info/dependency_links.txt
|
||||
PyPDF2.egg-info/top_level.txt
|
||||
|
|
@ -0,0 +1 @@
|
|||
|
||||
|
|
@ -0,0 +1,22 @@
|
|||
../PyPDF2/__init__.py
|
||||
../PyPDF2/__pycache__/__init__.cpython-37.pyc
|
||||
../PyPDF2/__pycache__/_version.cpython-37.pyc
|
||||
../PyPDF2/__pycache__/filters.cpython-37.pyc
|
||||
../PyPDF2/__pycache__/generic.cpython-37.pyc
|
||||
../PyPDF2/__pycache__/merger.cpython-37.pyc
|
||||
../PyPDF2/__pycache__/pagerange.cpython-37.pyc
|
||||
../PyPDF2/__pycache__/pdf.cpython-37.pyc
|
||||
../PyPDF2/__pycache__/utils.cpython-37.pyc
|
||||
../PyPDF2/__pycache__/xmp.cpython-37.pyc
|
||||
../PyPDF2/_version.py
|
||||
../PyPDF2/filters.py
|
||||
../PyPDF2/generic.py
|
||||
../PyPDF2/merger.py
|
||||
../PyPDF2/pagerange.py
|
||||
../PyPDF2/pdf.py
|
||||
../PyPDF2/utils.py
|
||||
../PyPDF2/xmp.py
|
||||
PKG-INFO
|
||||
SOURCES.txt
|
||||
dependency_links.txt
|
||||
top_level.txt
|
||||
|
|
@ -0,0 +1 @@
|
|||
PyPDF2
|
||||
Loading…
Add table
Add a link
Reference in a new issue