So, i have a file models.py in MyApp folder:
from django.db import models
class Model_One(models.Model):
...
class Model_Two(models.Model):
...
...
It can be about 10-15 classes. How to find all models in the MyApp and get their names?
Since models are not iterable, I don't know if this is even possible.