microblog2/profile.py

8 lines
213 B
Python
Raw Normal View History

2013-03-10 04:17:06 +00:00
#!flask/bin/python
from werkzeug.contrib.profiler import ProfilerMiddleware
from app import app
app.config['PROFILE'] = True
app.wsgi_app = ProfilerMiddleware(app.wsgi_app, restrictions=[30])
app.run(debug=True)