예제 #1
0
 def __init__(self, IRC):
   BasicPlugin.__init__(self, IRC)
   self.root = FormPage(IRC)
   self.factory = Site(self.root)
   self.listener = reactor.listenTCP(8880, self.factory)
예제 #2
0
 def __init__(self, IRC):
     BasicPlugin.__init__(self, IRC)
     self.root = FormPage(IRC)
     self.factory = Site(self.root)
     self.listener = reactor.listenTCP(8880, self.factory)
예제 #3
0
파일: GitPost.py 프로젝트: Emily/PyBeluga
 def __init__(self, IRC):
   BasicPlugin.__init__(self, IRC)
   self.IRC.DONT_RELOAD.append("GitPost")
   self.root = FormPage(IRC)
   self.factory = Site(self.root)
   self.listener = reactor.listenTCP(8880, self.factory)