Skip to content

Instantly share code, notes, and snippets.

@corei8
Created December 12, 2019 14:10
Show Gist options
  • Save corei8/cdf01b6c0da9e49f4d33b6b3e870c81e to your computer and use it in GitHub Desktop.
Save corei8/cdf01b6c0da9e49f4d33b6b3e870c81e to your computer and use it in GitHub Desktop.
[Render webpage with Flask] basic Flask application #python #flask
from flask import Flask
app = Flask(__name__)
@app.route("/")
def hello():
return "<h1>Hello, World!!</h1>"
if __name__ == "__main__":
app.run()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment