# 2.7 版本 telegram 机器人

### 2.7 版本 telegram 机器人

* 参考: <https://telepot.readthedocs.io/en/latest/#id3>

```python
# pip install telepot
import telepot

bot = telepot.Bot('***** PUT YOUR TOKEN HERE *****')
bot.sendMessage(999999999, 'Hey!')
```
