vote up 5 vote down star
1

The ruby folks have Ferret. Someone know of any similar initiative for Python? We're using PyLucene at current, but I'd like to investigate moving to pure Python searching.

flag

70% accept rate

7 Answers

vote up 7 vote down check

Whoosh is a new project which is similar to lucene, but is pure python.

link|flag
Just used whoosh for a project and it really was easy to use. No messing around at all - just worked. – John Montgomery Jul 17 at 15:49
vote up 4 vote down

The only one pure-python (not involving even C extension) search solution I know of is Nucular. It's slow (much slower than PyLucene) and unstable yet.

We moved from PyLucene-based home baked search and indexing to Solr but YMMV.

link|flag
vote up 3 vote down

I recently found pyndexter. It provides abstract interface to various different backend full-text search engines/indexers. And it ships with a default pure-python implementation.

These things can be disastrously slow though in Python.

link|flag
vote up 3 vote down

For some applications pure Python is overrated. Take a look at Xapian.

link|flag
Thanks for the Xapian mention. Not what I need right now, but I'll sure keep it in mind for later. – PEZ Jan 13 at 22:55
vote up 1 vote down

lupy was a lucene port to pure python.The lupy people suggest that you use PyLucene. Sorry. Maybe you can use the Java sources in combination with Jython.

link|flag
It's interesting that Ferret seems to be very appreciated and used while Lupy was abandoned. – PEZ Jan 13 at 9:22
Well, PyLucene seems to cater to a similar community. Also, some people are even ready to do their full-text searches in Java because of Lucene ;-) – Yuval F Jan 13 at 9:42
vote up 1 vote down

After weeks of searching for this, I found a nice Python solution: repoze.catalog. It's not strictly Python-only because it uses ZODB for storage, but it seems a better dependency to me than something like SOLR.

link|flag
vote up 1 vote down

+1 to the Xapian and Pyndexter answers.

Ferret is actually written in C with Ruby bindings on top. A pure Ruby search engine would be even slower than a pure Python one. I would love to see "someone else" write a Cython/Pyrex layer for Python interface to Ferret, but won't do it myself because why bother when there are Python bindings for Xapian.

link|flag
Thanks. I used the term "pure" in a dirty way. =) If I can install it with easy_setup of the like I'm happy. – PEZ Feb 7 at 11:38

Your Answer

Get an OpenID
or

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