Re: Text Search using Python

2010-01-14 Thread Gabriel Falcão
There is a Django abstraction to whoosh: http://haystacksearch.org/ On Thu, Jan 14, 2010 at 12:36 PM, Mark (Nosrednakram) wrote: > Hello, > > I've been using whoosh and find it very easy to implement.  Whoosh has > good documentation on static file indexing and  django related > documentation is

Re: Text Search using Python

2010-01-14 Thread esatterwh...@wi.rr.com
I've been working on 2 sites that use full text search on a wiki-like system where users use a WYSIWYG/html editor. This, obviously, doesn't apply to flatpages, but the poblem/solution might be of help. The problem is, if you try tindex/search html, you get a lot terrible results. For example, if

Re: Text Search using Python

2010-01-14 Thread Mark (Nosrednakram)
Hello, I've been using whoosh and find it very easy to implement. Whoosh has good documentation on static file indexing and django related documentation is available. Whoosh Specific http://whoosh.ca/ http://files.whoosh.ca/whoosh/docs/latest/index.html Django Related http://www.arnebro

Re: Text Search using Python

2010-01-14 Thread Shawn Milochik
On Jan 14, 2010, at 6:04 AM, Amit Sethi wrote: > Hi , I have a project with a few static html pages , I wish to search these > static html using a django search app . Most of the tutorials I saw are > focused on searching django models but none I could see concentrates on > indexing static ht

Text Search using Python

2010-01-14 Thread Amit Sethi
Hi , I have a project with a few static html pages , I wish to search these static html using a django search app . Most of the tutorials I saw are focused on searching django models but none I could see concentrates on indexing static html pages . Can some one guide be to a library /tutorial etc