You cannot yet.
SQLAlchemy before 0.7.x does not support ONLY [table] syntax, but it will be supported in the upcoming version 0.8.0, see issue 2506 .
The ONLY keyword is implemented as the selected tooltip:
result = table.select().with_hint(table, 'ONLY', 'postgresql')
source share