2018-02-08 10:57:40 -08:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
"""
|
|
|
|
|
Blueprint Example
|
|
|
|
|
~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
|
|
:copyright: © 2010 by the Pallets team.
|
|
|
|
|
:license: BSD, see LICENSE for more details.
|
|
|
|
|
"""
|
|
|
|
|
|
2012-03-01 02:07:26 -06:00
|
|
|
from flask import Flask
|
|
|
|
|
from simple_page.simple_page import simple_page
|
|
|
|
|
|
|
|
|
|
app = Flask(__name__)
|
|
|
|
|
app.register_blueprint(simple_page)
|
|
|
|
|
# Blueprint can be registered many times
|
2014-04-29 01:48:31 +02:00
|
|
|
app.register_blueprint(simple_page, url_prefix='/pages')
|
2014-07-03 18:19:09 +05:30
|
|
|
|
|
|
|
|
if __name__=='__main__':
|
|
|
|
|
app.run()
|