blob: 6165f1b7628cac29fe065ec0e0135fab39033990 (
plain)
1
2
3
4
5
6
7
8
9
10
|
from flask import Flask
app = Flask(__name__)
@app.route("/")
def hello():
return "If a man never contradicts himself, the reason must be that he virtually never says anything at all... Erwin Schrodinger"
if __name__ == "__main__":
app.run(debug=True,host='0.0.0.0')
|