Metadata-Version: 1.1
Name: ddt-envelope
Version: 0.0.2
Summary: Simple helper for inspecting non-html views with django-debug-toolbar 
Home-page: https://github.com/swistakm/ddt-envelope
Author: Michał Jaworski
Author-email: swistakm@gmail.com
License: UNKNOWN
Description: ============
        ddt-envelope
        ============
        
        Simple solution to use django-debug-toolbar with non HTML views. Helps in e.g. profiling RESTful APIs.
        
        
        Instalation
        ===========
        
        1. Install with pip:
        
           ```
           pip install ddt-envelope
           ```
        
        2. Add `ddt-envelope` to your `INSTALLED_APPS`:
        
           ```
           INSTALLED_APPS = (
               ...
               'ddt_envelope',
           )
           ```
        3. Add `ddt_envelope` to your `urls.py`
        
           ```
           urlpatterns = patterns('',
               ...
               url(r'^__ddte__/', include('ddt_envelope.urls')),
           )
           ```
        
        Using ddt-envelope
        ==================
        
        To inspect non-html view with ddt-envelope just insert `__ddte__` after hostname, e.g.:
        
        ```
        http://example.com/__ddte__/maybe/json/
        ```
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
