Metadata-Version: 2.0
Name: django-channels-panel
Version: 0.0.5
Summary: A Django Debug Toolbar panel for Channels
Home-page: https://github.com/Krukov/django-channels-panel
Author: Dmitry Krukov
Author-email: glebov.ru@gmail.com
License: MIT
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: License :: OSI Approved :: MIT License
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.7
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Requires-Dist: django-debug-toolbar
Requires-Dist: channels

Django Channels Panel
=====================

A Django Debug Toolbar panel for Channels

About
-----

This is a panel for ``Django Debug Toolbar`` that displays channels, groups and consumers events.

.. image:: docs/screenshot.png

Installation
------------

Install using ``pip``::

    pip install django-channels-panel

Then add ``channels_panel`` to your ``INSTALLED_APPS`` so that we can find the
templates in the panel. Also, add ``'channels_panel.panel.ChannelsDebugPanel'``
to your ``DEBUG_TOOLBAR_PANELS``.


Configuration
-------------

Use ``CHANNELS_PANEL`` for configure django-channels-panel:


Defaults::

    "ONLY_CHANNELS" -  None
    "EXCLUDE_CHANNELS" - ['http.*', ]
    "ONLY_GROUPS" - None
    "EXCLUDE_GROUPS" - ['debug' + '.*']

License
-------

Uses the `MIT`_ license.


.. _Django Debug Toolbar: https://github.com/django-debug-toolbar/django-debug-toolbar
.. _MIT: http://opensource.org/licenses/MIT


