Skip to content

Instantly share code, notes, and snippets.

@ahmedbesbes
Created May 10, 2022 18:42
Show Gist options
  • Save ahmedbesbes/6f415c7bb00d43aeeeabfc969dfb726f to your computer and use it in GitHub Desktop.
Save ahmedbesbes/6f415c7bb00d43aeeeabfc969dfb726f to your computer and use it in GitHub Desktop.
from flask import Flask
app = Flask(__name__)
@app.route("/")
def hello_world():
return "<p>Hello, World!</p>"
app.run(host="0.0.0.0", port=80)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment