├── .gitignore ├── LICENSE ├── Procfile ├── README.md ├── Text Summarizer.gif ├── app.py ├── cover.png ├── licence.jpg ├── requirements.txt ├── static └── cover.png └── templates └── index1.html /.gitignore: -------------------------------------------------------------------------------- 1 | *.agdai 2 | MAlonzo/** 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DheerajKumar97/Text-Summarizer-Flask-Deployment/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn app:app 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DheerajKumar97/Text-Summarizer-Flask-Deployment/HEAD/README.md -------------------------------------------------------------------------------- /Text Summarizer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DheerajKumar97/Text-Summarizer-Flask-Deployment/HEAD/Text Summarizer.gif -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DheerajKumar97/Text-Summarizer-Flask-Deployment/HEAD/app.py -------------------------------------------------------------------------------- /cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DheerajKumar97/Text-Summarizer-Flask-Deployment/HEAD/cover.png -------------------------------------------------------------------------------- /licence.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DheerajKumar97/Text-Summarizer-Flask-Deployment/HEAD/licence.jpg -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DheerajKumar97/Text-Summarizer-Flask-Deployment/HEAD/requirements.txt -------------------------------------------------------------------------------- /static/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DheerajKumar97/Text-Summarizer-Flask-Deployment/HEAD/static/cover.png -------------------------------------------------------------------------------- /templates/index1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DheerajKumar97/Text-Summarizer-Flask-Deployment/HEAD/templates/index1.html --------------------------------------------------------------------------------