当前位置: 首页>>代码示例>>Python>>正文


Python Bot.getChatAdministrators方法代码示例

本文整理汇总了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)
开发者ID:Steffo99,项目名称:royal-mifia,代码行数:22,代码来源:main.py


注:本文中的telegram.Bot.getChatAdministrators方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。