Skip to content
This repository has been archived by the owner on Jun 5, 2018. It is now read-only.

Latest commit

 

History

History
12 lines (9 loc) · 148 Bytes

flask.md

File metadata and controls

12 lines (9 loc) · 148 Bytes
from flask import Flask

app = Flask(__name__)

@app.route('/')
def index():
	return 'foo'

if __name__ == '__main__':
	app.run(debug=True)