De MySQLdb module heeft een DictCursor :
Gebruik het als volgt (overgenomen van MySQL-scripts schrijven met Python DB-API ):
cursor = conn.cursor(MySQLdb.cursors.DictCursor)
cursor.execute("SELECT name, category FROM animal")
result_set = cursor.fetchall()
for row in result_set:
print "%s, %s" % (row["name"], row["category"])
bewerken: Volgens user1305650 werkt dit voor pymysql
ook.