12 lines
193 B
Python
12 lines
193 B
Python
from flask import Flask
|
|
|
|
app = Flask(__name__)
|
|
|
|
|
|
@app.route("/")
|
|
def helloworld():
|
|
return "Helle from the hell"
|
|
|
|
if __name__ == "__main__":
|
|
app.run(debug=True,host="0.0.0.0",port=5000)
|