Using self in Django Model classes

Kartik Rustagi picture Kartik Rustagi · Jun 29, 2011 · Viewed 8.7k times · Source

While adding model class to models.py in Django, why don't we use self with the field variables which we define? Shouldn't not using self field variables make them class variables instead,which "may" cause a problem.

Answer

Shawn Chin picture Shawn Chin · Jun 29, 2011

Django uses metaclasses to create the actual class based on the class definition your provide. In brief, upon instantiation of your model class, the metaclass will run through your model field definitions and return a corresponding class with the appropriate attributes.

To answer your question directly, using class variables instead of instance variables (object.self) allows the metaclass to inspect the class attributes without having to first instantiate it.

For more information, have a look at the source and the following docs: