Python: use mysqldb to import a MySQL table as a dictionary?

dictionary, mysql, python

Solution

MySQLdb has a separate cursor class for this, the DictCursor. You can pass the cursor class you want to use to MySQLdb.connect():

import MySQLdb.cursors
MySQLdb.connect(host='...', cursorclass=MySQLdb.cursors.DictCursor)

Problem

Anyone know how I can use mysqldb to turn a MySQL table, with lots of rows, into a list of dictionary objects in Python? I mean turning a set of MySQL rows, with columns 'a', 'b', and 'c', into a Python object that that looks like this: ``` data = [ { 'a':'A', 'b':(2, 4), 'c':3.0 }, { 'a':'Q', 'b':(1, 4), 'c':5.0 }, { 'a':'T', 'b':(2, 8), 'c':6.1 } ] ``` Thanks :)

Original source