This is an old revision of the document!
Python
Web App
Did this python - flask tutorial
I used SQLAlchemy python plugin to interface with an SQLite db and also used a migration app to automatically handle db changes.
Debugging
Virtual Environments
A virtual environment creates a python environment stored in a folder of your choosing. This allows you to install all kinds of crap not to your system, but to that virtual environment in that folder.
Virutal environments where included in python3 and to make one you run:
python3 -m venv /path/to/virtualenv/folder