This repository has been archived on 2025-03-02. You can view files and clone it, but cannot push or open issues or pull requests.
curunir/modules/mysql.py
Matthias Schiffer d537d4b69b Added log module
2010-05-02 21:19:21 +02:00

10 lines
321 B
Python

from base import ModuleBase
import MySQLdb
class Module(ModuleBase):
def __init__(self, manager):
ModuleBase.__init__(self, manager)
conf = manager.config['mysql']
self.db = MySQLdb.connect(host = conf['host'], user = conf['user'], passwd = conf['passwd'], db = conf['db'])