Python module for converting PDF to text - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T06:06:20Z http://stackoverflow.com/feeds/question/25665 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/25665/python-module-for-converting-pdf-to-text 11 Python module for converting PDF to text cnu 2008-08-25T04:44:06Z 2009-08-10T20:47:36Z <p>Is there any python module to convert PDF files into text? I tried <a href="http://code.activestate.com/recipes/511465/" rel="nofollow">one piece of code</a> found in Activestate which uses pypdf but the text generated had no space between and was of no use. </p> http://stackoverflow.com/questions/25665/python-module-for-converting-pdf-to-text/25689#25689 5 Answer by David Crow for Python module for converting PDF to text David Crow 2008-08-25T05:21:22Z 2008-08-25T05:21:22Z <p>Try PDFMiner. It can extract text from PDF files as HTML, SGML or "Tagged PDF" format.</p> <p><a href="http://www.unixuser.org/~euske/python/pdfminer/index.html" rel="nofollow">http://www.unixuser.org/~euske/python/pdfminer/index.html</a></p> <p>The Tagged PDF format seems to be the cleanest, and stripping out the XML tags leaves just the bare text.</p> http://stackoverflow.com/questions/25665/python-module-for-converting-pdf-to-text/27252#27252 0 Answer by sphereinabox for Python module for converting PDF to text sphereinabox 2008-08-26T02:04:10Z 2008-08-26T02:04:10Z <p>PDFminer gave me perhaps one line [page 1 of 7...] on every page of a pdf file I tried with it.</p> <p>The best answer I have so far is pdftoipe, or the c++ code it's based on Xpdf.</p> <p>see <a href="http://beta.stackoverflow.com/questions/25550/whats-the-best-way-to-importread-data-from-pdf-files" rel="nofollow">my question</a> for what the output of pdftoipe looks like.</p> http://stackoverflow.com/questions/25665/python-module-for-converting-pdf-to-text/31923#31923 2 Answer by Jamie for Python module for converting PDF to text Jamie 2008-08-28T09:46:53Z 2008-08-28T09:46:53Z <p><a href="http://en.wikipedia.org/wiki/Pdftotext" rel="nofollow">Pdftotext</a> 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.</p> http://stackoverflow.com/questions/25665/python-module-for-converting-pdf-to-text/48154#48154 3 Answer by Tony Meyer for Python module for converting PDF to text Tony Meyer 2008-09-07T04:47:09Z 2008-09-07T04:47:09Z <p><a href="http://pybrary.net/pyPdf/" rel="nofollow">pyPDF</a> works fine (assuming that you're working with well-formed PDFs). If all you want is the text (with spaces), you can just do:</p> <pre><code>import pyPdf pdf = pyPdf.PdfFileReader(open(filename, "rb")) for page in pdf.pages: print page.extractText() </code></pre> <p>You can also easily get access to the metadata, image data, and so forth.</p> <p>A comment in the extractText code notes:</p> <blockquote> <p>Locate all text drawing commands, in the order they are provided in the content stream, and extract the text. This works well for some PDF files, but poorly for others, depending on the generator used. This will be refined in the future. Do not rely on the order of text coming out of this function, as it will change if this function is made more sophisticated.</p> </blockquote> <p>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.</p> http://stackoverflow.com/questions/25665/python-module-for-converting-pdf-to-text/284641#284641 1 Answer by msanders for Python module for converting PDF to text msanders 2008-11-12T17:08:47Z 2008-11-12T17:08:47Z <p>Additionally there is <a href="http://snowtide.com/PDFTextStream" rel="nofollow">PDFTextStream</a> which is a commercial Java library that can also be used from Python.</p> http://stackoverflow.com/questions/25665/python-module-for-converting-pdf-to-text/314249#314249 6 Answer by codeape for Python module for converting PDF to text codeape 2008-11-24T14:20:18Z 2008-11-24T14:20:18Z <p>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.</p> <p>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.</p> <p>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.</p> <p>pdfminer is an invaluable tool for pdf-scraping.</p> <pre><code> def pdf_to_csv(filename): from pdflib.page import TextItem, TextConverter from pdflib.pdfparser import PDFDocument, PDFParser from pdflib.pdfinterp import PDFResourceManager, PDFPageInterpreter class CsvConverter(TextConverter): def __init__(self, *args, **kwargs): TextConverter.__init__(self, *args, **kwargs) def end_page(self, i): from collections import defaultdict lines = defaultdict(lambda : {}) for child in self.cur_item.objs: if isinstance(child, TextItem): (_,_,x,y) = child.bbox line = lines[int(-y)] line[x] = child.text for y in sorted(lines.keys()): line = lines[y] self.outfp.write(";".join(line[x] for x in sorted(line.keys()))) self.outfp.write("\n") # ... the following part of the code is a remix of the # convert() function in the pdfminer/tools/pdf2text module rsrc = PDFResourceManager() outfp = StringIO() device = CsvConverter(rsrc, outfp, "ascii") doc = PDFDocument() fp = open(filename, 'rb') parser = PDFParser(doc, fp) doc.initialize('') interpreter = PDFPageInterpreter(rsrc, device) for i, page in enumerate(doc.get_pages()): outfp.write("START PAGE %d\n" % i) interpreter.process_page(page) outfp.write("END PAGE %d\n" % i) device.close() fp.close() return outfp.getvalue() </code></pre> http://stackoverflow.com/questions/25665/python-module-for-converting-pdf-to-text/1257121#1257121 5 Answer by tgray for Python module for converting PDF to text tgray 2009-08-10T20:47:36Z 2009-08-10T20:47:36Z <p>The <a href="http://www.unixuser.org/~euske/python/pdfminer/index.html" rel="nofollow">PDFMiner</a> package has changed since <a href="http://stackoverflow.com/users/3571/codeape">codeape</a> posted. Here's the updated version:</p> <pre><code>def pdf_to_csv(filename): from pdfminer.converter import LTTextItem, TextConverter from pdfminer.pdfparser import PDFDocument, PDFParser from pdfminer.pdfinterp import PDFResourceManager, PDFPageInterpreter class CsvConverter(TextConverter): def __init__(self, *args, **kwargs): TextConverter.__init__(self, *args, **kwargs) def end_page(self, i): from collections import defaultdict lines = defaultdict(lambda : {}) for child in self.cur_item.objs: if isinstance(child, LTTextItem): (_,_,x,y) = map(float, child.get_bbox().split(',')) line = lines[int(-y)] line[x] = child.text for y in sorted(lines.keys()): line = lines[y] self.outfp.write(";".join(line[x] for x in sorted(line.keys()))) self.outfp.write("\n") # ... the following part of the code is a remix of the # convert() function in the pdfminer/tools/pdf2text module rsrc = PDFResourceManager() outfp = StringIO() device = CsvConverter(rsrc, outfp, "ascii") doc = PDFDocument() fp = open(filename, 'rb') parser = PDFParser(doc, fp) doc.initialize('') interpreter = PDFPageInterpreter(rsrc, device) for i, page in enumerate(doc.get_pages()): outfp.write("START PAGE %d\n" % i) interpreter.process_page(page) outfp.write("END PAGE %d\n" % i) device.close() fp.close() return outfp.getvalue() </code></pre>