Skip to content

Latest commit

 

History

History
12 lines (9 loc) · 240 Bytes

File metadata and controls

12 lines (9 loc) · 240 Bytes

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()