Files
pi-temp/lab_app/hello.py
Clayton Walker 000b695324 Committing source
2016-04-13 21:40:40 -04:00

12 lines
259 B
Python
Executable File

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)