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
Just this simple:
engine.table_names()
Also, to test whether a table exists:
engine.has_table(table_name)