Is there any python module to convert PDF files into text? I tried one piece of code found in Activestate which uses pypdf but the text generated had no space between and was of no use.
|
|
Try PDFMiner. It can extract text from PDF files as HTML, SGML or "Tagged PDF" format. http://www.unixuser.org/~euske/python/pdfminer/index.html The Tagged PDF format seems to be the cleanest, and stripping out the XML tags leaves just the bare text. |
||
|
|
|
PDFminer gave me perhaps one line [page 1 of 7...] on every page of a pdf file I tried with it. The best answer I have so far is pdftoipe, or the c++ code it's based on Xpdf. see my question for what the output of pdftoipe looks like. |
||
|
|
|
|
Pdftotext An open source program (part of Xpdf) which you could call from python (not what you asked for but might be useful). I've used it with no problems. I think google use it in google desktop. |
||
|
|
|
|
pyPDF works fine (assuming that you're working with well-formed PDFs). If all you want is the text (with spaces), you can just do:
You can also easily get access to the metadata, image data, and so forth. A comment in the extractText code notes:
Whether or not this is a problem depends on what you're doing with the text (e.g. if the order doesn't matter, it's fine, or if the generator adds text to the stream in the order it will be displayed, it's fine). I have pyPdf extraction code in daily use, without any problems. |
||
|
|
|
|
Additionally there is PDFTextStream which is a commercial Java library that can also be used from Python. |
||
|
|
|
|
You can also quite easily use pdfminer as a library. You have access to the pdf's content model, and can create your own text extraction. I did this to convert pdf contents to semi-colon separated text, using the code below. The function simply sorts the TextItem content objects according to their y and x coordinates, and outputs items with the same y coordinate as one text line, separating the objects on the same line with ';' characters. Using this approach, I was able to extract text from a pdf that no other tool was able to extract content suitable for further parsing from. Other tools I tried include pdftotext, ps2ascii and the online tool pdftextonline.com. pdfminer is an invaluable tool for pdf-scraping.
|
||
|
|
|
|
The PDFMiner package has changed since codeape posted. Here's the updated version:
|
||
|
