Skip to content

Instantly share code, notes, and snippets.

@nickels
Forked from cedbeu/webapp.py
Created August 6, 2019 21:24
Show Gist options
  • Select an option

  • Save nickels/2b6c6d63b5ecd54101c9a4172a395ca5 to your computer and use it in GitHub Desktop.

Select an option

Save nickels/2b6c6d63b5ecd54101c9a4172a395ca5 to your computer and use it in GitHub Desktop.
Minimal Flask application - Basic single-file design pattern
#!/usr/bin/python
# coding: utf-8
from flask import Flask
app = Flask(__name__)
@app.route('/')
def entry_point():
return 'Hello World!'
if __name__ == '__main__':
app.run(debug=True)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment