Flask
Introduction
Quick tour of the python framework flask
Getting Started
from app import app
@app.route('/')
@app.route('/index')
def index():
user = {'username': 'Miguel'}
return '''
<html>
<head>
<title>Home Page - Microblog</title>
</head>
<body>
<h1>Hello, ''' + user['username'] + '''!</h1>
</body>
</html>'''
Routing
Templates
So flask like others such pug or egs has templates. Very similar indeed
from flask import render_template
from app import app
@app.route('/')
@app.route('/index')
def index():
user = {'username': 'Iain'}
return render_template('index.html', title='Home', user=user)
And the template
<html>
<head>
<title>{{ title }} - Bibble</title>
</head>
<body>
<h1>Hello, {{ user.username }}!</h1>
</body>
</html>