A Django Debug Toolbar panel for requests
This is a panel for Django Debug Toolbar 1.x that displays info about http requests made with the requests and requests_futures libraries.
Install using pip
:
pip install django-requests-panel
or install the development version from source:
pip install [email protected]:gtnx/django-requests-panel.git
Add requests_panel
to your INSTALLED_APPS
so that we can find the templates in the panel.
Add requests_panel.panels.RequestsDebugPanel
to your DEBUG_TOOLBAR_PANELS
.
Run tests using nose & coverage:
nosetests --with-coverage --cover-package requests_panel .
Uses the GNU GPL license.