A custom search engine built with python (Django) and google api client
Intallation
> pip install virtualenvwrapper-wincreating on the command line (example for creating a virtual environment named search)
> mkvirtualenv searchThis should activate the Environment by default. If not you can activate it with the command
> workon searchIn the virtual env write the command
> pip install -r requirements.txtOpen the python shell and run the following :
>> import nltk>> nltk.download("stopwords")>> nltk.download("punkt")While in the virtual env and in the root of the project, write the following command:
> python manage.py runserverYou can see the project by going to localhost:8000/search on the browser.