Metadata-Version: 2.0
Name: django-channels
Version: 0.2.0
Summary: A Django library for sending notifications
Home-page: https://github.com/ymyzk/django-channels
Author: Yusuke Miyazaki
Author-email: miyazaki.dev@gmail.com
License: MIT
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Internet :: WWW/HTTP
Requires-Dist: Django (>=1.7,<1.9)
Requires-Dist: requests (>=2.7.0)
Requires-Dist: six (>=1.9.0)
Provides-Extra: docs
Requires-Dist: Sphinx (<1.4,>=1.3); extra == 'docs'
Requires-Dist: sphinx-rtd-theme (<0.2,>=0.1.8); extra == 'docs'

django-channels
===============
.. image:: https://badge.fury.io/py/django-channels.svg
   :target: https://pypi.python.org/pypi/django-channels/
   :alt: PyPI version
.. image:: https://travis-ci.org/ymyzk/django-channels.svg?branch=master
   :target: https://travis-ci.org/ymyzk/django-channels
   :alt: Build Status
.. image:: https://codeclimate.com/github/ymyzk/django-channels/badges/gpa.svg
   :target: https://codeclimate.com/github/ymyzk/django-channels
   :alt: Code Climate
.. image:: https://coveralls.io/repos/ymyzk/django-channels/badge.svg?branch=master
   :target: https://coveralls.io/r/ymyzk/django-channels?branch=master
   :alt: Coverage Status

django-channels is a Django library for sending notifications.
HipChat and Slack are supported for now.

At a Glance
-----------
After installation and configuration, you can send notifications to HipChat, Slack, or Yo with a following simple code:

.. code-block:: python

   import channels

   channels.send("Sample notification.")

Links
-----
* `Documentation`_
* `GitHub`_

.. _Documentation: http://django-channels.readthedocs.org/
.. _GitHub: https://github.com/ymyzk/django-channels


