本文整理汇总了Python中telegram.Bot.getChatAdministrators方法的典型用法代码示例。如果您正苦于以下问题:Python Bot.getChatAdministrators方法的具体用法?Python Bot.getChatAdministrators怎么用?Python Bot.getChatAdministrators使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类telegram.Bot
的用法示例。
在下文中一共展示了Bot.getChatAdministrators方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: newgame
# 需要导入模块: from telegram import Bot [as 别名]
# 或者: from telegram.Bot import getChatAdministrators [as 别名]
def newgame(bot: Bot, update):
"""Crea una nuova partita."""
if update.message.chat.type != 'supergroup':
bot.sendMessage(update.message.chat.id, s.error_chat_type, parse_mode=ParseMode.MARKDOWN)
return
game = findgamebyid(update.message.chat.id)
if game is not None:
bot.sendMessage(update.message.chat.id, s.error_game_in_progress, parse_mode=ParseMode.MARKDOWN)
return
# Controlla che il bot sia un amministratore nel supergruppo
admins = bot.getChatAdministrators(update.message.chat.id)
for admin in admins:
if admin.user.id == bot.id:
break
else:
bot.sendMessage(update.message.chat.id, s.warning_bot_not_admin)
game = Game(bot, update.message.chat.id)
inprogress.append(game)
game.message(s.new_game.format(name=game.name))
join(bot, update)