Skip to content

Instantly share code, notes, and snippets.

@a-poor
Created September 22, 2020 21:55
Show Gist options
  • Save a-poor/ba41074eb3aa7123b05d43ecdad5c3c8 to your computer and use it in GitHub Desktop.
Save a-poor/ba41074eb3aa7123b05d43ecdad5c3c8 to your computer and use it in GitHub Desktop.
A super simple flask app
from flask import Flask
app = Flask(__name__)
@app.route("/")
def hello():
return "Hello, world!"
if __name__ == "__main__":
app.run(debug=True,host="0.0.0.0",port=5000)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment