Bladieblah / xpdf-python

Python wrapper around the pdftotext functionality of xpdf
GNU General Public License v3.0
2 stars 2 forks source link

xpdf-python

Python wrapper around the pdftotext functionality of xpdf.

Usage

from xpydf.pdf_loader import PdfLoader

loader = PdfLoader("foo.pdf")
pdf_text = loader.extract_strings()
pdf_images = loader.extract_images()