PyJPDF is a Python library for extracting information from PDF files.
Jasson Carvalho
0.1.3
pip install pyjpdf
import pyjpdf as PyJPDF
p = PyJPDF.PyjPDFExtract()
## From URL
text = p.from_url('http://www.example.com/teste.pdf')
## From File
text = p.from_file('teste.pdf')
## From Stream
text = p.from_stream(open('teste.pdf', 'rb'))