Model _meta API

    The model _meta API is at the core of the Django ORM. It enables other parts of the system such as lookups, queries, forms, and the admin to understand the capabilities of each model. The API is accessible through the _meta attribute of each model class, which is an instance of an django.db.models.options.Options object.

    Methods that it provides can be used to:

    • Retrieve all field instances of a model
    • Retrieve a single field instance of a model by name

    Options.``get_field(field_name)

    field_name can be the name of a field on the model, a field on an abstract or inherited model, or a field defined on another model that points to the model. In the latter case, the field_name will be (in order of preference) the set by the user, the related_name set by the user, or the name automatically generated by Django.

    cannot be retrieved by name.

    If a field with the given name is not found a FieldDoesNotExist exception will be raised.

    Retrieving all field instances of a model

    Returns a tuple of fields associated with a model. get_fields() accepts two parameters that can be used to control which fields are returned:

    • include_parents

      True by default. Recursively includes fields defined on parent classes. If set to False, get_fields() will only search for fields declared directly on the current model. Fields from models that directly inherit from abstract models or proxy classes are considered to be local, not on the parent.

      by default. If set to True, get_fields() will include fields that are used to back other field’s functionality. This will also include any fields that have a related_name (such as , or ForeignKey) that start with a “+”.

    1. >>> from django.contrib.auth.models import User
    2. >>> User._meta.get_fields()
    3. (<ManyToOneRel: admin.logentry>,
    4. <django.db.models.fields.AutoField: id>,
    5. <django.db.models.fields.CharField: password>,
    6. <django.db.models.fields.DateTimeField: last_login>,
    7. <django.db.models.fields.BooleanField: is_superuser>,
    8. <django.db.models.fields.CharField: first_name>,
    9. <django.db.models.fields.CharField: last_name>,
    10. <django.db.models.fields.EmailField: email>,
    11. <django.db.models.fields.BooleanField: is_staff>,
    12. <django.db.models.fields.BooleanField: is_active>,
    13. <django.db.models.fields.DateTimeField: date_joined>,
    14. <django.db.models.fields.related.ManyToManyField: user_permissions>)
    15. # Also include hidden fields.
    16. >>> User._meta.get_fields(include_hidden=True)
    17. (<ManyToOneRel: auth.user_groups>,
    18. <ManyToOneRel: auth.user_user_permissions>,
    19. <django.db.models.fields.AutoField: id>,
    20. <django.db.models.fields.CharField: password>,
    21. <django.db.models.fields.DateTimeField: last_login>,
    22. <django.db.models.fields.BooleanField: is_superuser>,
    23. <django.db.models.fields.CharField: username>,
    24. <django.db.models.fields.CharField: first_name>,
    25. <django.db.models.fields.CharField: last_name>,
    26. <django.db.models.fields.EmailField: email>,
    27. <django.db.models.fields.BooleanField: is_staff>,
    28. <django.db.models.fields.BooleanField: is_active>,
    29. <django.db.models.fields.DateTimeField: date_joined>,
    30. <django.db.models.fields.related.ManyToManyField: groups>,