Skip to content

Instantly share code, notes, and snippets.

@esys
Created October 27, 2020 15:52
Show Gist options
  • Save esys/7e869bf7d53e2c8f99e5b10e32371f84 to your computer and use it in GitHub Desktop.
Save esys/7e869bf7d53e2c8f99e5b10e32371f84 to your computer and use it in GitHub Desktop.
Python Flask hello world
from flask import Flask
app = Flask(__name__)
@app.route('/')
def hello_world():
return 'Hello, World!'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment