Wednesday, October 28, 2020

Assignment #5 due 11/4 hello world app engine, 10/28/2020, 7:52 PM, English, 10/28/2020, 7:52 PM

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

Sunday, October 18, 2020

Assignment # 4 due 10/21/2020 , 10/18/2020, 7:52 PM, English, 10/18/2020, 7:52 PM

Your assigned language is: English
Classroom blog: googleclouduconn.blogspot.com

10/18/2020, 7:52 PM

Assignment # 4 due 10/21/2020

Python Invoicer

Office Hours Monday and Thursday 5:00pm to 6:30pm

https://uconn-cmr.webex.com/meet/jai17003

In Cloud shell execute the git clone to copy programs to your shell machine

git clone https://github.com/jiacovacci/assign4.git

https://googleclouduconn.blogspot.com/p/github-repositories.html

Create a python invoice program that takes customer information in

Uses a dictionary data type to store items and prices

Displays a menu of items

Use input statements to collect customer buys

Calculate Invoice total

Change the program to match items you are selling

I'm selling plates you maybe selling shoes replace plates with shoes

Note: Only assignments handed in on time will receive A grades.

Wednesday, October 14, 2020

Assignment 4 due 10/21/2020, 10/14/2020, 6:33 PM, English, 10/14/2020, 6:33 PM

Your assigned language is: English
Classroom blog: googleclouduconn.blogspot.com

10/14/2020, 6:33 PM

Assignment # 4 due 10/21/2020

Python Invoicer

git clone https://github.com/jiacovacci/assign4.git

https://googleclouduconn.blogspot.com/p/github-repositories.html

Create a python invoice program that takes customer information in

Uses a dictionary data type to store items and prices

Displays a menu of items

Use input statements to collect customer buys

Calculate Invoice total

Try to change the program to match items you are selling

I'm selling plates you maybe selling shoes replace plates with shoes

Assignment #10 due Wednesday 4/7, 4/1/2021, 4:03 PM, English, 4/1/2021, 4:03 PM

Your assigned language is: English Classroom blog: googleclouduconn.blogspot.com 4/1/2021, 4:03 PM Assignment #10 due Wednesday 4/7 ...