mirror of
https://github.com/pallets-eco/flask-debugtoolbar.git
synced 2025-12-31 02:29:33 -06:00
a48efe822a4e41517cdee0bfc5231a4603bf9e6a
Flask Debug-toolbar
===================
This is a port of the excellent `django-debug-toolbar <github.com/robhudson/django-debug-toolbar>`_
for Flask applications.
Usage
-----
Installing the debug toolbar is simple::
from flask import Flask
from flask_debugtoolbar import DebugToolbarExtension
app = Flask(__name__)
toolbar = DebugToolbarExtension(app)
The toolbar will automatically be injected into Jinja templates when debug mode is on::
app.debug = True
Installation
------------
Installing is simple with pip::
$ pip install flask-debugtoolbar
Description
Languages
JavaScript
75.3%
Python
16.3%
HTML
5.1%
CSS
3.3%