I'm not sure what you want - a list of tables or a list of mapped classes?
In either case, first create a property list for your mapped object:
Note that you can use the sa.orm.class_mapper(cls) function if you do not currently have an object instance handle, but only a mapped class.
Now, in the first case, when you need a list of related tables, do:
related_tables = [prop.target for prop in relation_properties]
In the second case, when you may need a list of related mapped classes, do:
related_classes = [prop.mapper.class_ for prop in relation_properties]
Hope this helps you get started.
source share