awsclientbot

Client for AWS Client Bot


Keywords
aws, bot
License
Other
Install
pip install awsclientbot==0.1.0

Documentation

AWS Client Bot for Python

Documentation Status

Use this library to push messages from AWS EC2 instance to Telegram via @aws_client_bot.

Step 1. Get AWS Client Bot token

Step 2. Set logger Typical usage looks like this::

#!/usr/bin/env python

from awsclientbot import AWSClientBot

acb = AWSClientBot(token)
acb.push("Started")
my_long_running_function() <-- Replace this with your own function
acb.push("Done")