Anonymous sharing system
QuickShare is a Flask-based web application, that allow users to make anonymous notes, without leaving any personal info.
It’s interface is simple and responsible (based on Materialize), and can be used on any device.
Now available without local installation: QuickShare
(this tutorial uses Flask internal server, which can be insecure for production use)
pip3 install flask
to install all Flask default packages.pip3 install flask-wtf
to install Flask-WTForms package.export FLASK_APP=main.py
.flask run
.P.S If you have any errors, that are related to missing packages, send logs to issues, so I can fix guide
P.P.S If flask run
does not work, try python3 -m flask run