dependabot[bot] a13b20bbd6 Bump the python-requirements group across 1 directory with 4 updates
Bumps the python-requirements group with 4 updates in the /requirements directory: [mypy](https://github.com/python/mypy), [pallets-sphinx-themes](https://github.com/pallets/pallets-sphinx-themes), [pyright](https://github.com/RobertCraigie/pyright-python) and [build](https://github.com/pypa/build).


Updates `mypy` from 1.11.2 to 1.13.0
- [Changelog](https://github.com/python/mypy/blob/master/CHANGELOG.md)
- [Commits](https://github.com/python/mypy/compare/v1.11.2...v1.13.0)

Updates `pallets-sphinx-themes` from 2.1.3 to 2.3.0
- [Release notes](https://github.com/pallets/pallets-sphinx-themes/releases)
- [Changelog](https://github.com/pallets/pallets-sphinx-themes/blob/main/CHANGES.rst)
- [Commits](https://github.com/pallets/pallets-sphinx-themes/compare/2.1.3...2.3.0)

Updates `pyright` from 1.1.382.post1 to 1.1.389
- [Release notes](https://github.com/RobertCraigie/pyright-python/releases)
- [Commits](https://github.com/RobertCraigie/pyright-python/compare/v1.1.382.post1...v1.1.389)

Updates `build` from 1.2.2 to 1.2.2.post1
- [Release notes](https://github.com/pypa/build/releases)
- [Changelog](https://github.com/pypa/build/blob/main/CHANGELOG.rst)
- [Commits](https://github.com/pypa/build/compare/1.2.2...1.2.2.post1)

---
updated-dependencies:
- dependency-name: mypy
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-requirements
- dependency-name: pallets-sphinx-themes
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-requirements
- dependency-name: pyright
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: python-requirements
- dependency-name: build
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: python-requirements
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-12-01 08:42:04 +00:00
2024-07-02 08:42:27 +01:00
2024-07-02 08:42:27 +01:00
2024-04-29 10:54:08 -07:00
2024-04-29 10:54:08 -07:00
2024-04-29 10:54:08 -07:00
2024-04-29 10:54:08 -07:00
2024-09-28 07:47:33 -07:00
2024-04-30 07:36:57 -07:00
2024-04-30 10:55:06 -07:00

Flask-DebugToolbar

A Flask extension that injects debugging information into rendered HTML pages. Presented as a sidebar with configurable panels of information.

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

Pallets Community Ecosystem

Important

This project is part of the Pallets Community Ecosystem. Pallets is the open source organization that maintains Flask; Pallets-Eco enables community maintenance of related projects. If you are interested in helping maintain this project, please reach out on the Pallets Discord server.

Example

Setting up the debug toolbar is simple:

from flask import Flask
from flask_debugtoolbar import DebugToolbarExtension

app = Flask(__name__)
app.config["SECRET_KEY"] = "<replace with a secret key>"

toolbar = DebugToolbarExtension(app)

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

$ flask -A my_app run --debug

S
Description
A toolbar overlay for debugging Flask applications
Readme 2 MiB
Languages
JavaScript 75.3%
Python 16.3%
HTML 5.1%
CSS 3.3%