Create a virtual environment for your python application.
$ mkvirtualenv -a $PWD -p `which python3` py3demoapp
Install dependencies locally
$ pip install -r requirements.txt
Run the app
$ python main.py
View it in the browswer
$ open http://localhost:8080
Deploy it:
$ gcloud app deploy
Browse it:
$ gcloud app browse