A text-summarzing web-application using Spacy module
A simple web application that summarizes text using Natural Language Processing (NLP) techniques.
The Text Summarizer is a web-based application that allows users to input a piece of text and receive a summarized version of that text. The summarization is performed using NLP techniques to extract key information and provide a concise summary.
- Python 3.6+
- Flask
- spaCy
- Clone the repository:
git clone https://github.com/your-username/your-repo.git cd your-repo
- Create and activate a virtual environment (optional but recommended): python3 -m venv venv source venv/bin/activate
3.Install the required packages using pip: pip install spacy pip install flask python -m spacy download en_core_web_lg
(Versions: Flask==2.0.1; spacy==3.1.2)