Python Grab Results de Cursor.Exécute

cursor = connection.cursor()
cursor.execute( """select * from your_table""")
records = cursor.fetchall()
Trained Tuna