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