In Django, is there a place I can get a list of or look up the models that the ORM knows about?
|
1
|
|
|
|
|
|
If you use the contenttypes app, then it is straightforward: http://docs.djangoproject.com/en/dev/ref/contrib/contenttypes/ |
||
|
|
|
|
If you want to play, and not use the good solution, you can play a bit with python introspection:
Note: this is quite a rough piece of code; it will assume that all models are defined in "models.py" and that they inherit from django.db.models.Model. |
|||
|
|
|
|
Simple solution:
will give you a list of all the model classes that have been loaded. |
||
|
|
|
|
If you register your models with the admin app, you can see all the attributes of these classes in the admin documentation. |
||
|
|
