Skip to content

Instantly share code, notes, and snippets.

@use
Created March 11, 2013 04:43
Show Gist options
  • Save use/5131941 to your computer and use it in GitHub Desktop.
Save use/5131941 to your computer and use it in GitHub Desktop.
See Flask profiling info
from werkzeug.contrib.profiler import ProfilerMiddleware
app = Flask(__name__)
app.wsgi_app = ProfilerMiddleware(app.wsgi_app)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment