From fcbd4e3849f37eec7adb1dbc9c55c7182990b87b Mon Sep 17 00:00:00 2001 From: eternnoir Date: Fri, 26 Jun 2015 14:58:20 +0800 Subject: [PATCH] Update Readme. --- README.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/README.md b/README.md index abd38fd..7327cf9 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,14 @@ # pyTelegramBotAPI Python Telegram bot api. + +## Example + +```python +import telebot + +TOKEN = '' + +tb = telebot.TeleBot(TOKEN) +# tb.send_message(chatid,message) +print tb.send_message(281281, 'gogo power ranger') +```