Metadata-Version: 2.1
Name: kudubot
Version: 0.23.1
Summary: An chat bot framework
Home-page: https://gitlab.namibsun.net/namibsun/python/kudubot
Author: Hermann Krumrey
Author-email: hermann@krumreyh.com
License: GNU GPL3
Description: # Kudubot
        
        |master|develop|
        |:----:|:-----:|
        |[![build status](https://gitlab.namibsun.net/namibsun/python/kudubot/badges/master/build.svg)](https://gitlab.namibsun.net/namibsun/python/kudubot/commits/master)|[![build status](https://gitlab.namibsun.net/namibsun/python/kudubot/badges/develop/build.svg)](https://gitlab.namibsun.net/namibsun/python/kudubot/commits/develop)|
        
        ![Logo](resources/logo/logo-readme.png)
        
        Kudubot is a chat bot framework designed to work with arbitrary messaging
        services based on
        [bokkichat](https://gitlab.namibsun.net/namibsun/python/bokkichat)
        connections.
        
        # Implementing a kudubot
        
        The base of a kudubot is the ```Bot``` class in the ```kudubot.Bot``` module.
        Any kudubot implementation must extend that class.
        
        The following methods have to be implemented:
        
        ```on_msg```, ```name```, ```parsers```
        
        ```on_msg``` is called whenever the bot receives a message. ```name```
        defines the name of the bot class. ```parsers``` returns a list of
        ```CommandParser``` objects.
        
        ## Further Information
        
        * [Changelog](CHANGELOG)
        * [License (GPLv3)](LICENSE)
        * [Gitlab](https://gitlab.namibsun.net/namibsun/python/kudubot)
        * [Github](https://github.com/namboy94/kudubot)
        * [Progstats](https://progstats.namibsun.net/projects/kudubot)
        * [PyPi](https://pypi.org/project/kudubot)
        
Platform: UNKNOWN
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Description-Content-Type: text/markdown
