Metadata-Version: 1.1
Name: rest-channels
Version: 0.0.6
Summary: Class Based Views for Django Channels with Django Rest Framework
Home-page: https://github.com/KhasanovBI/rest_channels
Author: Khasanov Bulat
Author-email: afti@yandex.ru
License: BSD License
Description: |PyPI version| |Build Status| |Coverage Status|
        
        |Documentation Status| |PyPI|
        
        REST channels
        =============
        
        ``django-channels`` with ``django-rest-framework`` under the same roof.
        
        Installation
        ============
        
        The easiest way to install the latest version is by using
        ``pip/easy_install`` to pull it from PyPI:
        
        ::
        
            pip install rest_channels
        
        Add ``'rest_channels'`` to your ``INSTALLED_APPS`` setting.
        
        ::
        
            INSTALLED_APPS = (
                ...
                'rest_channels',
            )
        
        You may also use Git to clone the repository from Github and install it
        manually:
        
        ::
        
            git clone https://github.com/KhasanovBI/rest_channels
            python setup.py install
        
        License
        -------
        
        The BSD License
        
        Contributed by ``Bulat Khasanov``
        
        .. |PyPI version| image:: https://badge.fury.io/py/rest_channels.svg
           :target: https://badge.fury.io/py/rest_channels
        .. |Build Status| image:: https://travis-ci.org/KhasanovBI/rest_channels.svg?branch=master
           :target: https://travis-ci.org/KhasanovBI/rest_channels
        .. |Coverage Status| image:: https://coveralls.io/repos/github/KhasanovBI/rest_channels/badge.svg?branch=master
           :target: https://coveralls.io/github/KhasanovBI/rest_channels?branch=master
        .. |Documentation Status| image:: http://readthedocs.org/projects/rest-channels/badge/?version=latest
           :target: http://rest-channels.readthedocs.io/en/latest/?badge=latest
        .. |PyPI| image:: https://img.shields.io/pypi/l/rest_channels.svg
           :target: https://pypi.python.org/pypi/rest_channels
        
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Internet :: WWW/HTTP
