Skip to content

Latest commit

 

History

History
52 lines (30 loc) · 767 Bytes

File metadata and controls

52 lines (30 loc) · 767 Bytes

tgclient

Telegram Api Client

Getting Started

Install

git clone https://github.com/MrMahdi313/tgclient
cd tgclient 
python setup.py install

or 

pip install git+https://github.com/MrMahdi313/tgclient

getupdates example

from tgclient import *

bot = TelegramBot("245100736:AAGpgrDLt1YNwsQxxxxxxxxxxxxxxxxxxxx")


@bot.message("text")
def text(message):
    print(message)
    # {'message_id': 6577, 'from': {'id': 68747297, ... ...

bot.run()

command handler

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()