Python Grab Hasil dari kursor. Eksecute

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