I am currently on the lookout for a text indexer for my python program. I shortlisted Solr, a Lucene project and Whoosh, which is native to python. I searched a lot of documentation on support for doc, docx and pdf files, and Solr kept pointing me to the Tika package, a version of which is integrated with Solr.

The results dont mention in certain terms if any package has inbuilt support for the three formats. Does Whoosh and Solr support them? Which other open-source indexer natively reads these formats?

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

With Solr 1.4 or later you can have Word and PDF files uploaded and indexed on the fly; see: http://wiki.apache.org/solr/ExtractingRequestHandler

Solr's ExtractingRequestHandler uses Tika to allow users to upload binary files to Solr and have Solr extract text from it and then index it.

link|improve this answer
I've found extractOnly=true useful as I store my text in a sqldb, using Solr just for indexing/searching. – Jegschemesch Sep 8 '11 at 5:58
feedback

Here is something ancient native Python solution from which you could rip off code for your solution http://www.zopyx.de/projects/TextIndexNG3 if Solr is no go for some reason.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.