Skip to content

Instantly share code, notes, and snippets.

@dmyerscough
Last active August 19, 2018 06:24
Show Gist options
  • Save dmyerscough/173c9682b08e1eda874313b8022bc3ec to your computer and use it in GitHub Desktop.
Save dmyerscough/173c9682b08e1eda874313b8022bc3ec to your computer and use it in GitHub Desktop.
Hello World Flask
# -*- coding: utf-8 -*-
from flask import Flask
app = Flask(__name__)
@app.route('/')
def hello():
return 'Hello World'
if __name__ == '__main__':
app.run()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment