blob: afbdc934ae89119a90ee18347bdd6be6cc282bd4 (
plain)
1
2
3
4
5
6
7
8
9
10
|
from flask import Flask
application = Flask(__name__)
@application.route("/")
def hello():
return "<h1 style='color:blue'>Hello There!</h1>"
if __name__ == "__main__":
application.run(host='0.0.0.0')
|