News harbour is a Python-based mini-project aimed at collecting and organising news from diverse online sources using web crawling and scraping techniques.
- Clone the repository
git clone https://github.com/TejasPai03/News-Harbour.git
cd News-Harbour
- Install the package virtualenv using pip:
pip install virtualenv
- Create a virtual environment by running the following commands within the project directory:
virtualenv venv
- Activate the virtual environment based on your Operating System:
Windows venv activation
./venv/Scripts/activate
Linux and MacOS venv activation
$ source myvenv/bin/activate
- Install packages from
requirements.txt
:
pip install -r requirements.txt