Metadata-Version: 2.1
Name: kawasemi
Version: 3.0.0
Summary: A Python library for sending notifications to services such as Slack, HipChat, Twitter, and so on
Home-page: https://github.com/ymyzk/kawasemi
Author: Yusuke Miyazaki
Author-email: miyazaki.dev@gmail.com
License: MIT
Description: kawasemi
        ========
        .. image:: https://badge.fury.io/py/kawasemi.svg
           :target: https://pypi.python.org/pypi/kawasemi/
           :alt: PyPI version
        .. image:: https://img.shields.io/pypi/pyversions/kawasemi.svg
           :target: https://pypi.python.org/pypi/kawasemi/
           :alt: PyPI Python versions
        .. image:: https://travis-ci.org/ymyzk/kawasemi.svg?branch=master
           :target: https://travis-ci.org/ymyzk/kawasemi
           :alt: Build Status
        .. image:: https://readthedocs.org/projects/kawasemi/badge/?version=latest
           :target: https://kawasemi.readthedocs.io/
           :alt: Documentation Status
        .. image:: https://codeclimate.com/github/ymyzk/kawasemi/badges/gpa.svg
           :target: https://codeclimate.com/github/ymyzk/kawasemi
           :alt: Code Climate
        .. image:: https://coveralls.io/repos/ymyzk/kawasemi/badge.svg?branch=master
           :target: https://coveralls.io/r/ymyzk/kawasemi?branch=master
           :alt: Coverage Status
        .. image:: https://requires.io/github/ymyzk/kawasemi/requirements.svg?branch=master
           :target: https://requires.io/github/ymyzk/kawasemi/requirements/?branch=master
           :alt: Requirements Status
        
        .. image:: https://raw.githubusercontent.com/ymyzk/kawasemi/master/docs/source/kawasemi.png
           :alt: Kawasemi's logo
        
        **kawasemi** is a Python library for sending notifications.
        
        Kawasemi provides the following features:
        
        * Very simple ways to send notification
        
          * GitHub, HipChat, Slack, Twitter, and Yo are supported
        
        * Integrations with web application frameworks helps to load configurations
        
          * Django is supported
        
        Note: This project was named *django-channels*.
        We renamed our project not to be confused with the official `Django Channels`_.
        
        At a Glance
        -----------
        After installation and configuration, you can send notifications with a following simple code:
        
        .. code-block:: python
        
           # Python
           from kawasemi import Kawasemi
           kawasemi = Kawasemi(config)
           kawasemi.send("Sample notification.")
        
           # In Django application
           from kawasemi.django import send
           send("Sample notification.")
        
        See `Quickstart`_ page for more details.
        
        Links
        -----
        * `Documentation`_
        * `GitHub`_
        
        .. _Documentation: https://kawasemi.readthedocs.io/
        .. _GitHub: https://github.com/ymyzk/kawasemi
        .. _Quickstart: https://kawasemi.readthedocs.io/en/latest/quickstart.html
        .. _Django Channels: https://channels.readthedocs.io/
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
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: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Internet :: WWW/HTTP
Requires-Python: >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <4
Provides-Extra: docs
Provides-Extra: test
