A custom search engine built with python (Django) and google api client
Intallation
> pip install virtualenvwrapper-win
creating on the command line (example for creating a virtual environment named search)
> mkvirtualenv search
This should activate the Environment by default. If not you can activate it with the command
> workon search
In the virtual env write the command
> pip install -r requirements.txt
Open 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 runserver
You can see the project by going to localhost:8000/search on the browser.