This repo contains code for text summarization using extractive method and flask is for working in browser. The technique is based on extractive approach. Extractive approach means before passing data to model we extract information out of it which is relevant to us or discard otherwise.
To run the project use pip install -r requirements.txt
Open python in terminal then
import nltk
nltk.download('punkt')
nltk.download('stopwords')
run python index.py
in terminal.