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


Python Bot.sudo_list方法代码示例

本文整理汇总了Python中bot.Bot.sudo_list方法的典型用法代码示例。如果您正苦于以下问题:Python Bot.sudo_list方法的具体用法?Python Bot.sudo_list怎么用?Python Bot.sudo_list使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在bot.Bot的用法示例。


在下文中一共展示了Bot.sudo_list方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: on_user_update

# 需要导入模块: from bot import Bot [as 别名]
# 或者: from bot.Bot import sudo_list [as 别名]
def on_user_update(peer, what_changed):
  _bot.on_user_update(peer, what_changed)

def on_chat_update(peer, what_changed):
  _bot.on_chat_update(peer, what_changed)

# def handle_sigint(signal, frame):
#     print("CTRL-C: exiting.")
#     tgl.safe_exit(0)

print("GuardBot starting...")

_bot = Bot()
# !!!ENTER YOUR ID HERE!!!
_bot.sudo_list = []
_bot.banned_ids = []

tgl.set_on_binlog_replay_end(on_binlog_replay_end)
tgl.set_on_get_difference_end(on_get_difference_end)
tgl.set_on_our_id(on_our_id)
tgl.set_on_msg_receive(on_msg_receive)
tgl.set_on_secret_chat_update(on_secret_chat_update)
tgl.set_on_user_update(on_user_update)
tgl.set_on_chat_update(on_chat_update)

# signal.signal(signal.SIGINT, handle_sigint)

_bot.reload_plugins()

print("GuardBot started successfully.")
开发者ID:satorin-new,项目名称:guardbot,代码行数:32,代码来源:main.py


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