Flask Learning Lab
Every page explains which code ran, and why.
What this is
This is a tiny Flask website where every page explains itself. Click the navigation links and watch the debug panel update.
What to try
- Go to Forms and submit a POST request.
- Go to Sessions and store a value in a signed session cookie.
- Go to Uploads and upload a small file.
Where the code is
Route functions live in flask_routes.py and templates live in templates/.
Helper modules are kept in dependencies/ so you can see what is “support code”.