Django model naming convention - Stack Overflow most recent 30 from stackoverflow.com 2009-12-12T09:18:44Z http://stackoverflow.com/feeds/question/385895 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/385895/django-model-naming-convention 1 Django model naming convention Imran 2008-12-22T09:53:34Z 2009-06-20T16:41:07Z <p>What is the preferred naming convention for Django model classes?</p> http://stackoverflow.com/questions/385895/django-model-naming-convention/385951#385951 1 Answer by Ben for Django model naming convention Ben 2008-12-22T10:32:05Z 2008-12-22T10:32:05Z <p>As far as I know, the idea is that the class name should be singular and should use SentenceCase with no spaces. So you'd have names like:</p> <pre><code>Person TelephoneNumber </code></pre> <p>Then the Django admin tool knows how to pluralise them. Doesn't work so nicely for names like:</p> <pre><code>Category </code></pre> <p>which gets pluralised as Categorys, but there we go...</p> <p>Apart from that, just give it a name that means something to you and succinctly sums up what the class is meant to represent.</p> <p>Ben</p> http://stackoverflow.com/questions/385895/django-model-naming-convention/386054#386054 10 Answer by Baishampayan Ghose for Django model naming convention Baishampayan Ghose 2008-12-22T11:42:45Z 2008-12-22T11:42:45Z <p>Django models are just Python classes, so the Python naming conventions detailed in <a href="http://www.python.org/dev/peps/pep-0008/" rel="nofollow">PEP-8</a> apply.</p> <p>For example:</p> <ol> <li>Person</li> <li>Category</li> <li>ZipCode</li> </ol> <p>If Django fails to pluralize the class name properly when creating the corresponding table, you can easily override the pluralization by setting a custom *verbose_name_plural* field in an inner META class. For example:</p> <pre><code>class Story(models.Model): ... class Meta: verbose_name_plural = "stories" </code></pre>