SQLalchemy - Print Tables In Database (Show Tables)
from sqlalchemy import create_engine, Table, MetaDatametadata = MetaData(bind=engine)
metadata.reflect(engine)
print metadata.tables.keys()
You could also use that for looping through a list of the tables in the database.