vote up 1 vote down star
1

What is the preferred naming convention for Django model classes?

flag

just name it so you know what the model stands for – kender Dec 22 '08 at 10:16

2 Answers

vote up 10 vote down check

Django models are just Python classes, so the Python naming conventions detailed in PEP-8 apply.

For example:

  1. Person
  2. Category
  3. ZipCode

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:

class Story(models.Model):
    ...

    class Meta:
        verbose_name_plural = "stories"
link|flag
vote up 1 vote down

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:

Person
TelephoneNumber

Then the Django admin tool knows how to pluralise them. Doesn't work so nicely for names like:

Category

which gets pluralised as Categorys, but there we go...

Apart from that, just give it a name that means something to you and succinctly sums up what the class is meant to represent.

Ben

link|flag
See ghoseb's answer above about correctly pluralizing something like Categories. – Toba Dec 22 '08 at 18:27

Your Answer

Get an OpenID
or

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