How can you check the type of a many-to-many-field in django?

I wanted to do it this way:
import django
field.__class__ == django.db.models.fields.related.ManyRelatedManager

This doesn't work, because the class ManyRelatedManager can't be found. But if i do field.__class__ the output is django.db.models.fields.related.ManyRelatedManager

Why does it refer to a class that doesn't seem to exist and how can i bring it to work?

Many thanks for your help.

link|improve this question
feedback

3 Answers

up vote 1 down vote accepted

If you already have the field instance you can simply do:

if isinstance(field, ManyToManyField):
    pass // stuff
link|improve this answer
This would be the perfect way, but i don't know how to get the field-instance of a many-to-many-field, that is located at the target-model.. if you could help me with this, i'll accecpt your answer :) – amann May 17 '10 at 14:17
I can list all the fields with object._meta.get_all_field_names() but the corresponding fieldname isn't accessible via object._meta.get_field('fieldname'). I can use the function object._meta.get_field_by_name('fieldname') which puts out (<RelatedObject: projectname:modelname1 related to modelname2>, None, False, True). Actually i don't know how to get the field-instance out of that.. – amann May 17 '10 at 14:22
got it :).. it is: object._meta.get_field_by_name("fieldname")[0].field – amann May 17 '10 at 14:27
feedback

You should be able to check it as a string.

field.__class__.__name__ == 'ManyRelatedManager'
link|improve this answer
Thanks for the quick response! But isn't that a little bit undynamic? Actually, i don't think that the class "ManyRelatedManager" will be ever renamed, but isn't it a little bit sloppy? But however, i think I'll use this answer, becuase it is more performant than lazerscience's one. Thanks! – amann May 17 '10 at 13:35
feedback

I'm not quite sure what you are trying to achieve, but i guess you should better look into your model's _meta attribute for determining the field class! check out _meta.fields and _meta.many_to_many!

You could do something like:

field_class = [f for f in yourmodel._meta.many_to_many if f.name=='yourfield'][0].__class__
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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