本文整理汇总了Python中Core.chanusertracker.CUT.mode_is方法的典型用法代码示例。如果您正苦于以下问题:Python CUT.mode_is方法的具体用法?Python CUT.mode_is怎么用?Python CUT.mode_is使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Core.chanusertracker.CUT
的用法示例。
在下文中一共展示了CUT.mode_is方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: join
# 需要导入模块: from Core.chanusertracker import CUT [as 别名]
# 或者: from Core.chanusertracker.CUT import mode_is [as 别名]
def join(message):
# Someone is joining a channel
if message.get_nick() == Merlin.nick:
# Bot is joining the channel, so add a new object to the dict
CUT.new_chan(message.get_chan())
else:
# Someone is joining a channel we're in
CUT.join(message.get_chan(), message.get_nick())
if CUT.mode_is("rapid", "join"):
# Set the user's pnick
CUT.get_user(message.get_nick(), message.get_chan(), pnickf=message.get_pnick)
示例2: names
# 需要导入模块: from Core.chanusertracker import CUT [as 别名]
# 或者: from Core.chanusertracker.CUT import mode_is [as 别名]
def names(message):
# List of users in a channel
for nick in message.get_msg().split():
modes, nick = modesre.match(nick).groups()
if nick == Merlin.nick and "@" in modes:
CUT.opped(message.get_chan(), True)
elif nick == Merlin.nick:
CUT.opped(message.get_chan(), False)
if CUT.mode_is("rapid") and CUT.Nicks.get(nick) is None:
# Use whois to get the user's pnick
message.write("WHOIS %s" % (nick,))
CUT.join(message.get_chan(), nick)
示例3: channels
# 需要导入模块: from Core.chanusertracker import CUT [as 别名]
# 或者: from Core.chanusertracker.CUT import mode_is [as 别名]
def channels(message):
# Part of a WHOIS result
if message.get_chan() == Merlin.nick:
# Cycle through the list of channels
for chan in message.get_msg().split():
modes, chan = chanre.match(chan).groups()
opped = "@" in modes
# Reset the channel and get a list of nicks
CUT.new_chan(chan)
CUT.opped(chan, opped)
if CUT.mode_is("rapid", "join"):
message.write("NAMES %s\nTOPIC %s" % (chan,chan,))
示例4: names
# 需要导入模块: from Core.chanusertracker import CUT [as 别名]
# 或者: from Core.chanusertracker.CUT import mode_is [as 别名]
def names(message):
# List of users in a channel
for nick in message.get_msg().split():
if nick == "@"+Merlin.nick:
CUT.opped(message.get_chan(), True)
elif nick == "+"+Merlin.nick or nick == Merlin.nick:
CUT.opped(message.get_chan(), False)
if nick[0] in ("@","+"): nick = nick[1:]
CUT.join(message.get_chan(), nick)
if CUT.mode_is("rapid"):
# Use whois to get the user's pnick
message.write("WHOIS %s" % (nick,))
示例5: channels
# 需要导入模块: from Core.chanusertracker import CUT [as 别名]
# 或者: from Core.chanusertracker.CUT import mode_is [as 别名]
def channels(message):
# Part of a WHOIS result
if message.get_chan() == Merlin.nick:
# Cycle through the list of channels
for chan in message.get_msg().split():
opped = chan[0] == "@"
if chan[0] in ("@","+"): chan = chan[1:]
# Reset the channel and get a list of nicks
CUT.new_chan(chan)
CUT.opped(chan, opped)
if CUT.mode_is("rapid"):
message.write("NAMES %s\nTOPIC %s" % (chan,chan,))
示例6: join
# 需要导入模块: from Core.chanusertracker import CUT [as 别名]
# 或者: from Core.chanusertracker.CUT import mode_is [as 别名]
def join(message):
# Someone is joining a channel
try:
chan = message.get_msg()
except MsgParseError:
chan = message.get_chan()
if message.get_nick() == Merlin.nick:
# Bot is joining the channel, so add a new object to the dict
CUT.new_chan(chan)
else:
# Someone is joining a channel we're in
CUT.join(chan, message.get_nick())
if CUT.mode_is("rapid", "join"):
# Set the user's pnick
CUT.get_user(message.get_nick(), chan, pnickf=message.get_pnick)