I couldn\'t find any information about this in the documentation, but how can I get a list of tables created in SQLAlchemy?
I used the class method to create the tab
Reflecting All Tables at Once allows you to retrieve hidden table names too. I created some temporary tables and they showed up with
meta = MetaData()
meta.reflect(bind=myengine)
for table in reversed(meta.sorted_tables):
print table
Reference http://docs.sqlalchemy.org/en/latest/core/reflection.html