MySQLdb
klasa kursora implementuje protokół iteratora
, więc możesz po prostu zrobić to:
cursor.execute(sql)
for row in cursor:
print row
...
Odpowiedni kod z MySQLdb.cursors.BaseCursor :
def __iter__(self):
return iter(self.fetchone, None)