Am I missing something or are there still basic capabilities of accessing the views by scripting missing?
mvm = ExtAPI.Graphics.ModelViewManager
I can e. g. get the number of views by
mvm.NumberOfViews
but how to get the objects? And how to get their names?
A straight forward implementation would in my opinion allow something like
my_views = ExtAPI.DataModel.GetObjectsByType(DataModelObjectCategory.View)
for my_view in my_views:
print(my_view.name)