次の接続文字列を使用して、sqlalchemy の cx_Oracle 経由で oracle に接続できます。
connection_string = 'oracle+cx_oracle://user:pass@127.0.0.1/orcl'
また、これを使用して cx_Oracle で TimesTen に接続できます。
con = cx_Oracle.connect('user/pass@127.0.0.1/tt2:timestendirect')
しかし、sqlalchemy で cx_Oracle 経由で TimesTen に接続する方法がわかりません。