本文整理汇总了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.")