Skip to content

A custom search engine built with python (Django) and google api client

Notifications You must be signed in to change notification settings

nforesperance/Search-Engine

Repository files navigation

Search-Engine

A custom search engine built with python (Django) and google api client

Installation and Set Up

Creating a Virtual Environment

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

Installing Dependecies

In the virtual env write the command

> pip install -r requirements.txt

Note: for nltk:

Open the python shell and run the following :

>> import nltk
>> nltk.download("stopwords")
>> nltk.download("punkt")

Running the App

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.

About

A custom search engine built with python (Django) and google api client

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published