Metadata-Version: 1.0
Name: django-debugtools
Version: 0.9.0
Summary: A toolbox of small utilities to assist Django development
Home-page: https://github.com/edoburu/django-debugtools
Author: Diederik van der Boor
Author-email: opensource@edoburu.nl
License: Apache License, Version 2.0
Download-URL: https://github.com/edoburu/django-debugtools/zipball/master
Description: Introduction
        ============
        
        The ``debugtools`` module offers some easy to use debugging utilities to assist Django development.
        
        Installation
        ============
        
        First install the module, preferably in a virtual environment. It can be installed from PyPI::
        
            pip install django-debugtools
        
        Or the current folder can be installed::
        
            pip install .
        
        Configuration
        -------------
        
        Add the module to the installed apps::
        
            INSTALLED_APPS += (
                'debugtools',
            )
        
        Usage
        -----
        
        In Django templates, the following code can be used::
        
            {% load debug_tags %}
        
            {% print variable1 variable2 %}
        
        To get a global overview of template variables::
        
            {% print %}
        
        The template context variables are printed in a customized ``pprint.pformat`` format, for easy reading.
        
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Framework :: Django
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
