Skip to content

Instantly share code, notes, and snippets.

@mkowoods
Created July 18, 2015 23:23
Show Gist options
  • Save mkowoods/2268c12476a23658d19c to your computer and use it in GitHub Desktop.
Save mkowoods/2268c12476a23658d19c to your computer and use it in GitHub Desktop.
hello flask
# -*- conding: utf-8 -*-
from flask import Flask
app = Flask(__name__)
@app.route('/')
def hello_flask():
return 'Hello Flask!'
if __name__ == '__main__':
app.run()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment