예제 #1
0
파일: git.py 프로젝트: MattAmbacher/IRC-Bot
 def __init__(self):
     self.channel = ircHelpers.getChannel()
예제 #2
0
파일: speak.py 프로젝트: Progether/IRC-Bot
 def __init__(self):
     self.title = 'speak'
     self.channel = ircHelpers.getChannel()
     self.commandList = {"relay" : self.relay, "say" : self.speak }
     self.helpList    = {'relay' : self.help_relay, 'say' : self.help_say, "speak" : self.help_speak}
     self.joinList = [self.sayHello]
예제 #3
0
파일: speak.py 프로젝트: braneed/IRC-Bot
 def __init__(self):
   self.channel = ircHelpers.getChannel()
   self.commandList = {"relay" : self.relay, "say" : self.speak }
   self.joinList = [self.sayHello]
예제 #4
0
파일: speak.py 프로젝트: rossguy/IRC-Bot
 def __init__(self):
     self.channel = ircHelpers.getChannel()
     self.regex = re.compile(r":(?P<user>\w+)!~.+\sJOIN\s")
예제 #5
0
파일: speak.py 프로젝트: pencils/IRC-Bot
 def __init__(self):
     self.channel = ircHelpers.getChannel()
     self.regex = re.compile(r":(?P<user>\w+)!~.+\sJOIN\s")