Which library to use in order to simulate Google s full text search in my Python project?
I m working on a personal project to try to simulate a search engine, which uses PageRank algorithm and some sort of a full text phrase search (pretty much what Google does). I have contents of the web pages stored in a dictionary and I would like to index them based on some sort of match with a given phrase. Is there a recommended library which can do that? I found Elasticsearch and Whoosh, but I don t know enough about them to know if I ll be able to use them for my example. I need it to be usable in Python.