Committing source

This commit is contained in:
Clayton Walker
2016-04-13 21:40:40 -04:00
parent 7ab0bccd11
commit 000b695324
21 changed files with 7710 additions and 0 deletions

11
lab_app/hello.py Executable file
View File

@ -0,0 +1,11 @@
from flask import Flask
from flask import render_template
app = Flask(__name__)
app.debug = True
@app.route("/")
def hello():
return render_template('hello.html', message="Hello World!")
if __name__ == "__main__":
app.run(host='0.0.0.0', port=8080)