Shimehari-DebugToolbar

A port of the Django debug toolbar to Shimehari


License
BSD-3-Clause
Install
pip install Shimehari-DebugToolbar==0.1.1

Documentation

Shimehari Debug-toolbar

This is a port of the excellent django-debug-toolbar for Shimehari applications.

Installation

Installing is simple with pip:

$ pip install shimehari-debugtoolbar

Usage

Setting up the debug toolbar is simple:

from shimehari import Shimehari
from shimehari_debugtoolbar import DebugToolbarExtension

app = Shimehari(__name__)

toolbar = DebugToolbarExtension(app)

The toolbar will automatically be injected into Jinja templates when debug mode is on.

See the documentation for more information.