--
Cheers, Sol.
anyway, SA gives you access to the connection like this:
conn = engine.connect()
conn.connection.set_transaction_isolation(1)
trans = conn.begin()
.etc.
you could also set it on all connections globally using a connection
function:
def connect():
c = psycopg2.connect(<args>)
c.set_transaction_isolation(1)
return c
e = create_engine('postgres://', creator=connect)