Skip to content

hoffer32/debug-toolbar-http-client

Repository files navigation

debug-toolbar-http-client

A django debug toolbar panel which records http requests made by app. It's simple base on vcrpy which will decompress “gzip” and “deflate” response bodies before recording

alt tag

##Usage

###. Install and configure Django Debug Toolbar

###. Install Django Debug Toolbar HTTP Client Panel:

    pip install django-debug-toolbar-http-client

###. Add http_client_panel to your INSTALLED_APPS setting:


    INSTALLED_APPS = (
        # ...
        'http_client_panel',
    )

###. Add HTTP Client Panel to Django Debug Toolbar middleware:

    MIDDLEWARE_CLASSES = (
        ...
        'http_client_panel.panels.HttpClient.HttpClientPanel',
        ...
    )

About

a django debug toolbar panel which records http requests made by applications

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published