Spaces:
Configuration error
Configuration error
File size: 186 Bytes
a2fcab8 |
1 2 3 4 5 6 7 8 9 10 |
from flask import Flask
app = Flask(__name__)
@app.route("/")
def hello():
return "<h1 style='color:blue'>Hello There!</h1>"
if __name__ == "__main__":
app.run(host='0.0.0.0')
|