#encoding: utf-8 """ Configuration for IRC bot Wantzel. """ # IRC access server = 'irc.freenode.net' port = 6667 nickname = 'testBot' password = '', channels = [ '#testchannel' ] # External drupal db, MySQL dbuser = "root" dbpassword = "" dbserver = "localhost" dbname = "db" # Internal db, sqlite is sufficient sqlite_db = "db.sqlite3" # Timer for chrono-methods, in seconds (float) timer = 180 # Twitter account TOKEN = "" TOKENSEC = "" CONSKEY = "" CONSSEC = ""