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

11 lines
359 B
Python
Raw Normal View History

2010-05-02 21:18:09 +02:00
from base import ModuleBase
import MySQLdb
class Module(ModuleBase):
def __init__(self, manager):
ModuleBase.__init__(self, manager)
conf = manager.config['mysql']
2010-05-02 23:40:21 +02:00
self.db = MySQLdb.connect(host = conf['host'], user = conf['user'], passwd = conf['passwd'], db = conf['db'], use_unicode = True, charset = 'utf8')