Matt Good 7d637cc489 Fix errors in process_response on static files
Need to use the real request object for the map,
not the context-local wrapper object. The context-local
wrapper is the same object, so it would call
process_response on every request regardless of the
_show_toolbar() result.
2011-12-16 13:53:06 -08:00
2011-02-03 21:45:46 +01:00
2011-02-24 21:56:18 +01:00
2011-02-04 08:53:41 +01:00
2011-10-17 21:36:25 +02:00

Flask Debug-toolbar

A port of the django-debug toolbar (github.com/robhudson/django-debug-toolbar)
to Flask.

Usage::

 from flask import Flask
 from flaskext.debugtoolbar import DebugToolbarExtension

 app = Flask(__name__)
 toolbar = DebugToolbarExtension(app)
Description
A toolbar overlay for debugging Flask applications
Readme 1.9 MiB
Languages
JavaScript 75.3%
Python 16.3%
HTML 5.1%
CSS 3.3%