如何为主人提供Telegram机器人

时间:2017-12-17 13:42:01

标签: python bots telegram

我有一个电报机器人,现在我想让它仅供我使用。
我发现一篇文章说我可以测试我的身份但我的代码不起作用:( ...

这是我的代码:

import time
import random
import datetime
import telepot
from telepot.loop import MessageLoop

def handle(msg):

chat_id = msg['chat']['id']

command = msg['text']
number = 1111

print 'Got command: %s' % command


if command == '/roll' & command.from_id(11111):
    bot.sendMessage(chat_id, random.randint(1,6))

bot = telepot.Bot('Token')

MessageLoop(bot, handle).run_as_thread()
print 'I am listening ...'

while 1:
time.sleep(10)

感谢您的帮助:)

0 个答案:

没有答案