MySQLdb heeft hiervoor een aparte cursorklasse, de DictCursor. U kunt de cursorklasse die u wilt gebruiken doorgeven aan MySQLdb.connect():
import MySQLdb.cursors
MySQLdb.connect(host='...', cursorclass=MySQLdb.cursors.DictCursor)
MySQLdb heeft hiervoor een aparte cursorklasse, de DictCursor. U kunt de cursorklasse die u wilt gebruiken doorgeven aan MySQLdb.connect():
import MySQLdb.cursors
MySQLdb.connect(host='...', cursorclass=MySQLdb.cursors.DictCursor)