Metadata-Version: 2.1
Name: dialog-bot-sdk
Version: 3.0.8rc3
Summary: Python Bot SDK for Dialog Messenger
Home-page: https://github.com/dialogs/python-bot-sdk
Author: Dmitry Borodkin, Dialog LLC
Author-email: d.borodkin@dlg.im
License: Apache License 2.0
Description: Dialog Python Bot SDK
        =================
        ![PyPI](https://img.shields.io/pypi/v/dialog-bot-sdk.svg) ![PyPI - Downloads](https://img.shields.io/pypi/dm/dialog-bot-sdk.svg) ![PyPI - License](https://img.shields.io/pypi/l/dialog-bot-sdk.svg) 
        
        Python Bot SDK for [Dialog](https://dlg.im) messenger.
        
        Full documentation is available [here](https://dialogs.github.io/bots-docs/).
        
        Usage
        -----
        
        ```python
        from dialog_bot_sdk.bot import DialogBot
        import grpc
        import os
        
        
        def on_msg(params):
            bot.messaging.send_message(params.peer, 'Reply to : ' + str(params.message.text_message.text))
        
        
        if __name__ == '__main__':
            bot = DialogBot.get_secure_bot(
                os.environ.get('BOT_ENDPOINT'),     # bot endpoint from environment
                grpc.ssl_channel_credentials(),     # SSL credentials (empty by default!)
                os.environ.get('BOT_TOKEN')         # bot token from environment
            )
        
            bot.messaging.on_message_async(on_msg)
        ```
        
Keywords: dialog messenger bot sdk
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Requires-Python: >=3
Description-Content-Type: text/markdown
