django-debug-toolbar in WebKit DevTools. Works fine with background Ajax requests and non-HTML responses
Project description
Django Debug Toolbar inside WebKit DevTools. Works fine with background AJAX requests and non-HTML responses. Great for single-page applications and other AJAX intensive web applications.
Installation
Install and configure Django Debug Toolbar
Install Django Debug Panel:
pip install django-debug-panel
Add debug_panel to your INSTALLED_APPS setting:
INSTALLED_APPS = ( # ... 'debug_panel', )
All the debug data of a request are stored into the cache backend debug-panel if available. Otherwise, the default backend is used, and finally if no caches are defined it will fallback to a local memory cache. You might want to configure the debug-panel cache in your settings.py:
CACHES = { 'default': { 'BACKEND': 'django.core.cache.backends.memcached.MemcachedCache', 'LOCATION': '127.0.0.1:11211', }, # this cache backend will be used by django-debug-panel 'debug-panel': { 'BACKEND': 'django.core.cache.backends.filebased.FileBasedCache', 'LOCATION': '/var/tmp/debug-panel-cache', 'TIMEOUT': 300, 'OPTIONS': { 'MAX_ENTRIES': 200 } } }
Install the Chrome extension Django Debug Panel
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file django-debug-panel-0.5.9.tar.gz
.
File metadata
- Download URL: django-debug-panel-0.5.9.tar.gz
- Upload date:
- Size: 4.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
71ad27e8187f802284be397dc6d8e0ceaec600fe395740d534e5b24e9769e954
|
|
MD5 |
06194094c2910373a7aa17a93a1c192f
|
|
BLAKE2b-256 |
f2e997bb6ba184eff2625469c0536089a12d109ae7d3597b85021cbd0361c2d3
|