Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In my Django website, I'm creating a class that interact dynamically with other applications installed in the website. I have to do a manipulation on each field of each application.

So I want to save the name of all installed applications in a list and get the attributes of each one. There is a way to do that using an iterator or something else ?

Thank you in advance :-)

share|improve this question

4 Answers

up vote 13 down vote accepted

If you want all models, try:

from django.db.models import get_models

for model in get_models():
   # Do something with your model here
   print model.__name__, [x.name for x in model._meta.fields]

Or something like that.

share|improve this answer
Perfect! Thank you very much – bnabilos Nov 6 '10 at 12:19
Helped me a lot. +1ed the question as well, even if it was the wrong question for the right answer ;-) – AndreasT Jan 25 '12 at 11:48

The list of installed applications is defined in settings.INSTALLED_APPS. It contains a tuple of strings, so you can iterate on it to access each application's name.

However, I'm not sure what you mean by each application's attributes and fields.

share|improve this answer
Thank you for your answer, I will test that. – bnabilos Nov 6 '10 at 0:45
For attributes, If I have for example an application with 2 CharField and 2 TextField, I want to be able to get these fields data when I select it. I want to do that for each application installed so it should be dynamic and not hard coded. Thank you – bnabilos Nov 6 '10 at 0:47
Applications don't have CharField and TextField "attributes". Are you talking about application models or application forms? – André Caron Nov 6 '10 at 1:05
I'm sorry for not explaining that well, I'm talking about application models : docs.djangoproject.com/en/dev/ref/models/fields/#field-types – bnabilos Nov 6 '10 at 1:29

settings.INSTALLED_APPS ???

share|improve this answer

You can retrieve installed apps like that (in interpreter) :

>>> import myproject.settings
>>> [ app for app in myproject.settings.INSTALLED_APPS if not "django" in app ]
['myapp1', 'myapp2', 'myapp3']
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.