fastapi-debug-toolbar icon indicating copy to clipboard operation
fastapi-debug-toolbar copied to clipboard

A debug toolbar for FastAPI.

Results 10 fastapi-debug-toolbar issues
Sort by recently updated
recently updated
newest added

Without this note, user will get error due to compression middleware compressing html before debug toolbar has been added to page. ` 500 Server Error UnicodeDecodeError: 'utf-8' codec can't decode...

I am not quite sure what to do about the error ``` RuntimeError: Failed to stop profiling. Make sure that you start/stop profiling on the same thread. ``` It happens...

Thanks for this great project. It is really helpful and simplifies the migration from django to fastapi. I use SQLAlchemyPanel and have a mysql table with a binary column described...

The versions page does not load, and the following error appears in the console. 'purepower' is an editable module in my environment, so the script can't find it on pypi.org...

How much trouble would it be to add support for `AsyncEngine`?

Fix an issue with adding the SQLAlchemy panel when using fastapi v0.114.1 TypeError: solve_dependencies() missing 1 required keyword-only argument: 'embed_body_fields' and TypeError: 'SolvedDependency' object is not subscriptable Relates to issues:...

The `SQLAlchemyPanel` no longer works from FastAPI `0.112.4`. ``` TypeError: solve_dependencies() missing 1 required keyword-only argument: 'embed_body_fields' ``` FastAPI `0.112.4` introduced the `embed_body_fields` parameter to `fastapi.dependencies.utils.solve_dependencies` function. https://github.com/fastapi/fastapi/commit/aa21814a89853c17c139054a5c51f0bb1ea68a0a#diff-aef3dac481b68359f4edd6974fa3a047cfde595254a4567a560cebc9ccb0673fR553

Hi, and first, thanks a lot for this great project. When adding `"debug_toolbar.panels.sqlalchemy.SQLAlchemyPanel"` as a panel, all my endpoints are now broken with this error: ```py File "/usr/local/lib/python3.12/site-packages/debug_toolbar/dependencies.py", line 25,...