本文整理匯總了Python中telepot.loop方法的典型用法代碼示例。如果您正苦於以下問題:Python telepot.loop方法的具體用法?Python telepot.loop怎麽用?Python telepot.loop使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類telepot
的用法示例。
在下文中一共展示了telepot.loop方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: run
# 需要導入模塊: import telepot [as 別名]
# 或者: from telepot import loop [as 別名]
def run(self, session_class, **session_kwargs):
"""
:param session_class: subclass of AbstractTelegramChat
"""
self._logger.info('Started a new chat bot {}'.format(self._bot.getMe()))
def _handler(msg):
content_type, chat_type, chat_id = telepot.glance(msg)
if chat_id not in self._chat_id_to_session:
self._chat_id_to_session[chat_id] = self._init_chat_session(chat_id, session_class, **session_kwargs)
session = self._chat_id_to_session[chat_id]
if content_type == 'text' and msg['text'].startswith('/'):
command, arg = self._parse_command(msg['text'])
if command == 'start':
session = self._chat_id_to_session[chat_id] = self._init_chat_session(
chat_id, session_class, **session_kwargs)
return session.handle_command(command, arg)
if content_type == 'text':
return session.handle_text_message(msg['text'], msg)
if content_type == 'photo':
photo_url = self._extract_photo_url(msg['photo'])
return session.handle_photo_message(photo_url, msg)
return session.default_handle_message(msg)
telepot.loop.MessageLoop(self._bot, _handler).run_forever()