Python Grab Wyniki z Cursor.Execute

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