Telegram Api Client
git clone https://github.com/MrMahdi313/tgclient
cd tgclient
python setup.py install
or
pip install git+https://github.com/MrMahdi313/tgclientfrom tgclient import *
bot = TelegramBot("245100736:AAGpgrDLt1YNwsQxxxxxxxxxxxxxxxxxxxx")
@bot.message("text")
def text(message):
print(message)
# {'message_id': 6577, 'from': {'id': 68747297, ... ...
bot.run()from tgclient import *
bot = TelegramBot("245100736:AAGpgrDLt1YNwsQxxxxxxxxxxxxxxxxxxxx")
@bot.command(r'^(/echo) (.*)')
def text(message, args):
# args[2] two argument of command
bot.sendMessage(message['chat']['id'], args[1])
bot.run()