samujjwaal / uic-search-engine

Web search engine to retrieve most relevant web-pages for user search query from web-pages crawled on the UIC domain

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Web Search Engine on UIC Domain

GitHub GitHub last commit (branch) GitHub top language made-with-python GitHub repo size GitHub code size in bytes

Web search engine to retrieve most relevant web-pages for user search query from web-pages crawled on the UIC domain

This project was done as the term project for CS582: Information Retrieval course at the University of Illinois at Chicago during the Spring 2020 term.

The goal of the project is to design and implement a web search engine for the UIC domain. The search engine includes a web crawler, preprocessing and indexing of web pages, and an IR system implementing a vector-space model to retrieve webpages relevant to an input user query.

A broad description of functionalities to be included in the web search engine can be found here.

Software Description

The software is designed in Python3.8, and all functions are modularized so that they can be extended further for use in other projects and future work.

The search engine crawls, collects, and preprocesses 6000 webpages from the UIC domain, which takes around 3 hours to complete.

So to execute the code without first crawling the UIC domain, all the pickle files needed to execute the code are included inside the PickleFiles folder.

The search_query.py script file can be executed from the terminal to execute the search engine right away. However, the python scripts to execute the crawling of web-pages and their preprocessing are also provided in the repository.

Detailed description of the various components and functionalities of the search engine can be found in the accompanying project report.

The various alternate trial-error code snippets executed during developing the search engine are in the form of Jupyter Notebooks.

Usage Details

To execute the web search engine, run the following command in the terminal:

python search_query.py

Similarly the python scripts to execute the crawling of web-pages and their preprocessing can also be executed from the terminal.

About

Web search engine to retrieve most relevant web-pages for user search query from web-pages crawled on the UIC domain

License:MIT License


Languages

Language:Jupyter Notebook 65.1%Language:Python 34.9%