Registry /
web-framework / django-debug-toolbar-request-history
Install & Compatibility
Where this runs
tested against v0.1.4 · pip install
no network on importno background threads
Install × environment matrix
Each cell = how many times install + import succeeded across repeated harness runs. Partial = flaky.
glibc = Debian/Ubuntu slim · musl = Alpine Linux
muslpy 3.10–3.95 runs
installs and imports cleanly · install 0.0s · import 0.000s · 68.1MB
glibcpy 3.10–3.95 runs
installs and imports cleanly · install 3.6s · import 0.000s · 69MB
67MB installed
● package 67MB
Code
Verified usage
Verified import paths — ran on the pinned version, not inferred.
RequestHistoryPanel
✓ from ddt_request_history.panels import RequestHistoryPanel
✗ from debug_toolbar_request_history.panels import RequestHistoryPanel
Add the app and panel to Django settings.
# settings.py
INSTALLED_APPS = [
...
'debug_toolbar',
'debug_toolbar_request_history',
]
DEBUG_TOOLBAR_PANELS = [
'debug_toolbar.panels.versions.VersionsPanel',
'debug_toolbar.panels.timer.TimerPanel',
...
'debug_toolbar_request_history.panels.RequestHistoryPanel',
]
# Add to middleware (after debug_toolbar)
MIDDLEWARE = [
...
'debug_toolbar.middleware.DebugToolbarMiddleware',
]
Upgrade
Version history
0.1.4latest on PyPI · released Oct 19, 2021
Audit
Dependencies
django-debug-toolbarrequiredRequired as the host toolbar