Skip to content

Instantly share code, notes, and snippets.

@sonnyksimon
Created October 10, 2019 14:16
Show Gist options
  • Save sonnyksimon/9db28bdd05448dae7ce879b971399f16 to your computer and use it in GitHub Desktop.
Save sonnyksimon/9db28bdd05448dae7ce879b971399f16 to your computer and use it in GitHub Desktop.
A complete Flask application.
import flask
app = flask.Flask(__name__)
@app.route('/', defaults={'path': ''})
@app.route('/<name>')
def hello(name):
if not name:
name = 'World'
return 'Hello ' + name + '!'
if __name__ == '__main__':
app.run()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment