Metadata-Version: 2.1
Name: dialog-bot-sdk
Version: 1.0.1
Summary: Python Bot SDK for Dialog Messenger
Home-page: https://github.com/dialogs/python-bot-sdk
Author: Andrey Skiba, Dialog LLC
Author-email: a.skiba@dlg.im
License: Apache License 2.0
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
Requires-Dist: protobuf
Requires-Dist: google-api-python-client
Requires-Dist: googleapis-common-protos
Requires-Dist: gevent
Requires-Dist: grpcio
Requires-Dist: grpcio-tools
Requires-Dist: requests
Requires-Dist: pyopenssl
Requires-Dist: Pillow

Dialog Python Bot SDK
=================

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


def on_msg(*params):
    bot.messaging.send_message(
        params[0].peer, 'Reply to : ' + str(params[0].message.textMessage.text)
    )


if __name__ == '__main__':
    bot = DialogBot.get_secure_bot(
        'grpc-test.transmit.im:9443',  # bot endpoint
        grpc.ssl_channel_credentials(), # SSL credentials (empty by default!)
        'cbb4994cabfa8d2a5bce0b5f7a44c23da943f767'  # bot token
    )

    bot.messaging.on_message(on_msg)
```

License
-------
[Apache 2.0](LICENSE)


