Update Readme.

This commit is contained in:
eternnoir 2015-06-26 14:58:20 +08:00
parent 740c6aa066
commit fcbd4e3849
1 changed files with 12 additions and 0 deletions

View File

@ -1,2 +1,14 @@
# pyTelegramBotAPI
Python Telegram bot api.
## Example
```python
import telebot
TOKEN = '<token string>'
tb = telebot.TeleBot(TOKEN)
# tb.send_message(chatid,message)
print tb.send_message(281281, 'gogo power ranger')
```