Best Flask open-source libraries and packages

Raven Chat

A simple chat app created with websockets and flask.
Updated 1 year ago

Raven Chat 🐧

A very simple chat made with flask-socketio

you can change the color of the username by prefixing it with one of the symbols in the number row of your keyboard the colors... well you can find out what they are.

Deploying

Locally

Powershell

git clone
cd raven-chat
python -m venv venv
.\venv\Scripts\activate
pip install -r requirements.txt
flask run

Bash

git clone
cd raven-chat
python3 -m venv venv
source venv/bin/activate
pip install -r requirements.txt
flask run