Metadata-Version: 1.0
Name: django-debug-toolbar-mongo
Version: 0.1.4
Summary: MongoDB panel for the Django Debug Toolbar
Home-page: https://github.com/hmarr/django-debug-toolbar-mongo
Author: Harry Marr
Author-email: harry@hmarr.com
License: MIT
Description: ==================================
        Django Debug Toolbar MongoDB Panel
        ==================================
        :Info: An extension panel for Rob Hudson's Django Debug Toolbar that adds
               MongoDB debugging information
        :Author: Harry Marr (http://github.com/hmarr, http://twitter.com/harrymarr)
        
        Setup
        =====
        Add the following lines to your ``settings.py``::
        
           INSTALLED_APPS = (
               ...
               'debug_toolbar_mongo',
               ...
           )
        
           DEBUG_TOOLBAR_PANELS = (
               ...
               'debug_toolbar_mongo.panel.MongoDebugPanel',
               ...
           )
        
        An extra panel titled "MongoDB" should appear in your debug toolbar.
        
        Note that this should work with any Django application that uses PyMongo.
        
        Obtaining stack traces can slow down queries significantly. To turn them off
        add the following lines to your ``settings.py``::
        
            DEBUG_TOOLBAR_MONGO_STACKTRACES = False
        
        Disclaimer: only tested in latest Chrome, may fall to pieces in other browers.
        If you feel like fixing it, contributions are welcome!
        
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: Topic :: Database
Classifier: Topic :: Software Development :: Libraries :: Python Modules
