Metadata-Version: 2.0
Name: django-howl
Version: 0.1.9
Summary: Django app to provide notifications in several ways
Home-page: http://github.com/deluge/django-howl/
Author: Benjamin Banduhn, Stephan Jaekel
Author-email: deluge@banduhn.com
License: BSD
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Framework :: Django
Requires-Dist: Django (>=1.8,<1.10)
Provides-Extra: docs
Requires-Dist: sphinx; extra == 'docs'
Requires-Dist: sphinx-rtd-theme; extra == 'docs'
Provides-Extra: tests
Requires-Dist: coverage; extra == 'tests'
Requires-Dist: mock; extra == 'tests'
Requires-Dist: pytest; extra == 'tests'
Requires-Dist: pytest-cov; extra == 'tests'
Requires-Dist: pytest-pep8; extra == 'tests'
Requires-Dist: pytest-flakes; extra == 'tests'
Requires-Dist: pytest-isort; extra == 'tests'
Requires-Dist: pytest-django; extra == 'tests'
Requires-Dist: factory-boy; extra == 'tests'

django-howl
===============

.. image:: https://badge.fury.io/py/django-howl.png
    :target: http://badge.fury.io/py/django-howl

.. image:: https://travis-ci.org/deluge/django-howl.svg?branch=master
    :target: https://travis-ci.org/deluge/django-howl

.. image:: https://coveralls.io/repos/deluge/django-howl/badge.svg?branch=master
  :target: https://coveralls.io/github/deluge/django-howl?branch=master

.. image:: https://readthedocs.org/projects/django-howl/badge/?version=latest
  :target: http://django-howl.readthedocs.org/en/latest/?badge=latest
  :alt: Documentation Status


What is django-howl
-----------------------

`django-howl` is a Django app to provide notifications in several ways.

You can connect to the signals and do everything you want
like sending notifications over different APIs.


Installation
============

* Install ``django-howl`` (or `download from PyPI <http://pypi.python.org/pypi/django-howl>`_):

.. code-block:: python

    pip install django-howl

* After Installation add it to ``INSTALLED_APPS`` in ``settings.py``:

.. code-block:: python

    INSTALLED_APPS = (
        # other apps
        'howl',
    )


Usage
=====

Now you can login to the admin and configure some observers and build some nice apps
with it.


Resources
=========

* `Documentation <https://django-howl.readthedocs.org/>`_
* `Bug Tracker <https://github.com/deluge/django-howl/issues>`_
* `Code <https://github.com/deluge/django-howl/>`_


