https://github.com/arvind-4/summarizer
Simple Summarizer using python
https://github.com/arvind-4/summarizer
flask flask-app flask-applications gunicorn-flask-webserver gunicorn-service html html5 javascript python python-dotenv pythoon-3 spacy summarizer textblob vanilla-javascript
Last synced: 3 months ago
JSON representation
Simple Summarizer using python
- Host: GitHub
- URL: https://github.com/arvind-4/summarizer
- Owner: Arvind-4
- License: mit
- Created: 2021-10-15T14:57:57.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-05-21T07:08:51.000Z (12 months ago)
- Last Synced: 2024-05-30T16:56:58.503Z (12 months ago)
- Topics: flask, flask-app, flask-applications, gunicorn-flask-webserver, gunicorn-service, html, html5, javascript, python, python-dotenv, pythoon-3, spacy, summarizer, textblob, vanilla-javascript
- Language: HTML
- Homepage: https://awesomesummarizer.vercel.app
- Size: 111 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Summarizer
Summarise your content on go ...## 📦 Tech Stack:
- [Flask](https://flask.palletsprojects.com/en/3.0.x/) - Flask is a lightweight WSGI web application framework. It is designed to make getting started quick and easy, with the ability to scale up to complex applications.
- [Tailwind](https://tailwindcss.com/) - Rapidly build modern websites without ever leaving your HTML.
- [Vercel](https://vercel.com/) - Vercel's Front end Cloud provides the developer experience and infrastructure to build, scale, and secure a faster, more personalised Web.## Demo:
## Getting Started:
- Clone repository
```bash
mkdir ~/Dev/summarizer -p
cd ~/Dev/summarizer
git clone https://github.com/Arvind-4/summarizer .
```- Install Dependencies:
```bash
cd ~/Dev/summarizer
python3.8 -m pip install virtualenv
python3.8 -m virtualenv .
source bin/activate
pip install -r requirements.txt
```- Create `.env` file:
Add Your Credentials `.env` from `sample.env`:```bash
DEBUG=
SECRET_KEY=
```
Get your Secret key from:
```python
python3 -c 'import secrets; print(secrets.token_urlsafe(24))'
```- Run Server:
```bash
cd ~/Dev/summarizer
bash commands/run.sh
```Open [localhost:8000](http://localhost:8000) in your favourite browser :)