Skip to content

Instantly share code, notes, and snippets.

@saiyerniakhil
Created March 3, 2019 14:26
Show Gist options
  • Save saiyerniakhil/74a90e3585a48b8e34a1249b0c69ccf9 to your computer and use it in GitHub Desktop.
Save saiyerniakhil/74a90e3585a48b8e34a1249b0c69ccf9 to your computer and use it in GitHub Desktop.
A Flask Hello World! App
from flask import Flask
app = Flask(__name__)
@app.route("/")
def hello():
return "Hello, World!"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment