Django model naming convention - Stack Overflow most recent 30 from stackoverflow.com2009-12-12T09:18:44Zhttp://stackoverflow.com/feeds/question/385895http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/385895/django-model-naming-convention1Django model naming conventionImran2008-12-22T09:53:34Z2009-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#3859511Answer by Ben for Django model naming conventionBen2008-12-22T10:32:05Z2008-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#38605410Answer by Baishampayan Ghose for Django model naming conventionBaishampayan Ghose2008-12-22T11:42:45Z2008-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>