Esempio n. 1
0
 def __init__(self, config):
     """
     Create a new wikichatbot
     """
     PFCClient.__init__(self)
     self.config = config
     self.delay = 60
Esempio n. 2
0
 def __init__(self, config, db=None):
     """
     Create a new BeerLoggerBot.
     """
     PFCClient.__init__(self)
     self.config = config
     self.log = db or sqlite3.connect("robot.db")
     self.create_log_tables()
Esempio n. 3
0
 def __init__(self, config, db=None):
     """
     Create a new BeerLoggerBot.
     """
     PFCClient.__init__(self)
     self.config = config
     self.log = db or sqlite3.connect("robot.db")
     self.create_log_tables()