Today inBrief is a Python Flask Application that Summarises online News articles using NLP and Machine Learning Techniques
- Python 3.6 - popular general-purpose scripting language suited for web development
Setting up project in development environment
- Ensure Python 3.6 is installed by running:
python --version
- Create a folder for the project by running:
mkdir myprojectfoldername
- cd in to
myprojectfoldername
- Create a virtualenv using pipenv by running:
python3 -m venv venv
On Windows
py -3 -m venv venv
- Activate the Environment
. venv/bin/activate
On Windows
venv\Scripts\activate
- Clone the project repo by running:
git clone https://github.com/anyric/News-Summarizer.git
pip install -r requirements.txt
- Inside the project root folder, run the command below in your console
python manage.py
- Navigate to
https://127.0.0.1:5000/
- Anyama Richard