Metadata-Version: 2.1
Name: MagiSlack
Version: 0.1.1
Summary: For a make easy and quick command-respond chat bot
Home-page: https://github.com/riemannulus/MagiSlack
Author: Lee, Suho
Author-email: riemannulus@hitagi.moe
License: UNKNOWN
Description: # MagiSlack
        MagiSlack is a fast, easy library for make command-respond style chat bot.
        
        ## Installation
        - pip install MagiSlack
        
        ## Usage
        ```python
        from MagiSlack.io import MagiIO
        from MagiSlack.module import MagiModule
        
        def hello_world_callback(*args, **kwargs):
            name = args[0]
            return f'Hello, {kwargs['display_name']}!'
            
        if __name__ == '__main__':
            module = MagiModule.MagiModule('SLACK_API_KEY_HERE')
            io = MagiIO.MagiIO(module)
            io.set_callback_func('hello', hello_world_callback)
            
            io.start()
        ```
        
        ## License
        MIT license
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3.7
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
