diff options
| author | jvoisin | 2011-06-21 20:41:18 +0200 |
|---|---|---|
| committer | jvoisin | 2011-06-21 20:41:18 +0200 |
| commit | 9e69adbe1b065707f8be4f146cc3c05660cef711 (patch) | |
| tree | d60509a4982d7699204059184c4343352fef52de /lib/pdfrw/__init__.py | |
| parent | f0c9c5b56e3909ba36cc84ff82b05fab9a180911 (diff) | |
Add pdfrw, and many files that I have forgetten, sorry !
Diffstat (limited to 'lib/pdfrw/__init__.py')
| -rw-r--r-- | lib/pdfrw/__init__.py | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/lib/pdfrw/__init__.py b/lib/pdfrw/__init__.py new file mode 100644 index 0000000..964972f --- /dev/null +++ b/lib/pdfrw/__init__.py | |||
| @@ -0,0 +1,13 @@ | |||
| 1 | # A part of pdfrw (pdfrw.googlecode.com) | ||
| 2 | # Copyright (C) 2006-2009 Patrick Maupin, Austin, Texas | ||
| 3 | # MIT license -- See LICENSE.txt for details | ||
| 4 | |||
| 5 | from pdfwriter import PdfWriter | ||
| 6 | from pdfreader import PdfReader | ||
| 7 | from pdfobjects import PdfObject, PdfName, PdfArray, PdfDict, IndirectPdfDict, PdfString | ||
| 8 | from pdftokens import PdfTokens | ||
| 9 | |||
| 10 | # Add a tiny bit of compatibility to pyPdf | ||
| 11 | |||
| 12 | PdfFileReader = PdfReader | ||
| 13 | PdfFileWriter = PdfWriter | ||
