Main purpose of Inverted Index is to facilitate fast Full text search. For detailed explaination visit Wikipedia Article - Inverted Index
We will implement the functioanlity with the help of five functions, namely:
- load_document
- build_inverted_index
- query
- dump
- load
and using it further inside the Python Class
:
- InvertedIndex
At the end we will add the command line functionality using argparse