flask-debugtoolbar-sqlalchemy (0.2.0)

Published 2025-08-29 02:24:46 +02:00 by eofredj

Installation

pip install --index-url  flask-debugtoolbar-sqlalchemy

About 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:

Toolbar view

Panel details:

Panel view

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',
)
Details
PyPI
2025-08-29 02:24:46 +02:00
0
Ivan Habunek
GPL-3
16 KiB
Assets (1)
Versions (1) View all
0.2.0 2025-08-29