user782234
user782234

Reputation: 51

Whats the easy way to build search engine for website in python

I have one website in django , with many content pages. I want to build the search engine so that if i search for keywords then i get the URL of that Page.

It can be any library or scripts. My Main rquirements is that i should be able to tweak the script or add my own code so that in future i can build the index according my needs.

I also need to build the index fo words with frequency , counts etc

Upvotes: 0

Views: 271

Answers (1)

miku
miku

Reputation: 187994

A pure python search library would be whoosh:

Upvotes: 1

Related Questions