from sqlalchemy import *
oracle_db = create_engine(‘oracle://acct:acct,,148@135.34.101.148:1521/bill’)
acct_table = Table(‘acct’,oracle_db,autoload=True)
s = acct_table.select()
r=s.execute()
r.fetchone()