mirror of
https://github.com/eternnoir/pyTelegramBotAPI.git
synced 2021-05-13 03:08:02 +03:00
15 lines
226 B
Markdown
15 lines
226 B
Markdown
# 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')
|
|
```
|