Your assigned language is: English
Classroom blog: googleclouduconn.blogspot.com
10/28/2020, 7:52 PM
Assignment # 5 due 11/4 Hello world app engine
https://googleclouduconn.blogspot.com/p/python-cont.html
Build an app engine application that says Hello UCONN World from your name.
from flask import Flask
# If `entrypoint` is not defined in app.yaml, App Engine will look for an app
# called `app` in `main.py`.
app = Flask(__name__)
@app.route('/', methods=['GET'])
def hello():
"""Return a friendly HTTP greeting."""
return 'Hello World!\n'
if __name__ == '__main__':
# Used when running locally only. When deploying to Google App
# Engine, a webserver process such as Gunicorn will serve the app. This
# can be configured by adding an `entrypoint` to app.yaml.
app.run(host='localhost', port=8080, debug=True)
Send me the link from app engine
uconn-engr.uc.r.appspot.com
Subscribe to:
Post Comments (Atom)
Office hours tomorrow(Tuesday) 5:00pm-6:00pm, 4/26/2021, 5:13 PM, English, 4/26/2021, 5:13 PM
Your assigned language is: English Classroom blog: googleclouduconn.blogspot.com 4/26/2021, 5:13 PM Office hours tomorrow(Tuesday) 5...
-
Your assigned language is: English Classroom blog: googleclouduconn.blogspot.com 4/26/2021, 5:13 PM Office hours tomorrow(Tuesday) 5...
-
Your assigned language is: English Classroom blog: googleclouduconn.blogspot.com 4/19/2021, 10:17 PM No office hours tomorrow, assig...
-
Your assigned language is: English Classroom blog: googleclouduconn.blogspot.com 2/4/2021, 1:40 PM Assignment #3 Create an app engin...
No comments:
Post a Comment