flask-debugtoolbar-sqlalchemy (0.2.0)
Published 2025-08-29 02:24:46 +02:00 by eofredj
Installation
pip install --index-url flask-debugtoolbar-sqlalchemyAbout this package
Flask Debug Toolbar panel for SQLAlchemy
Flask debug toolbar SQLAlchemy panel
Similar to the
builtin SQLAlchemy toolbar
but does not require the Flask-SQLAlchemy extension.
Displayed in toolbar:
Panel details:
Install
From the cheese shop:
pip install flask-debugtoolbar-sqlalchemy
Setup
Bootstrap the toolbar as usual and add SQLAlchemyPanel to the list of panels.
from flask import Flask
from flask_debugtoolbar import DebugToolbarExtension
app = Flask(__name__)
app.debug = True
toolbar = DebugToolbarExtension(app)
app.config['DEBUG_TB_PANELS'] += (
'flask_debugtoolbar_sqlalchemy.SQLAlchemyPanel',
)

