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') +```