示例#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)