Metadata-Version: 1.1
Name: django-sql-debugger
Version: 0.1
Summary: Django app that helps controlling database requests count
Home-page: https://github.com/katharine-kinn/django-sql-debugger
Author: Catherine
Author-email: katherine.goncharova@gmail.com
License: MIT License
Download-URL: https://github.com/katharine-kinn/django-sql-debugger/tarball/0.1
Description: =====
        SQL Debugger
        =====
        
        django-sql-debugger is an app that helps controlling number of SQL during your HTTPRequests, including AJAX.
        Based on custom database backend, it currently supports only MySQL.
        
        *Warning: the app currently works under Django 1.6.5 and is not tested against other versions*
        
        Quick start
        -----------
        
        1. Add "sql_debugger" to your INSTALLED_APPS setting like this::
        
            INSTALLED_APPS = (
                ...
                'sql_debugger',
            )
        
        2. To turn on SQL Debugger add the following to your settings.py file::
        
            SQL_DEBUGGER_SHOW_TRACEBACK = True
        
        Also make sure DEBUG is set to True. Do not use this on production server!
        
        Usage
        -----
        
        1. To add visualization to your page include SQL Debugger template there::
        
            {% include 'sql_debugger/base.html' %}
        
        
        
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
