from fortress_sdk_python import Fortress# Initialize the client with your API keyclient = Fortress(org_id='your_org_id', api_key='your_api_key')# Connect to a databaseconn = client.connect_tenant(tenant_name='client1')cursor = conn.cursor()# Execute a query to fetch all rows from a tableresults = cursor.execute('SELECT * FROM your_table_name').fetchall()# Print the resultsfor row in results: print(row)# Close the connectionconn.close()