Django choices provides a declarative way of using the choices option on django fields. Read the full documentation on ReadTheDocs.
You can install via PyPi or direct from the github repo.
To install with pip:
$ pip install django-choices
To install with easy_install:
$ easy_install django-choices
To start you create a choices class. Then you point the choices property on your
fields to the choices attribute of the new class. Django will be able to use
the choices and you will be able to access the values by name. For example you
can replace this:
# In models.py
class Person(models.Model):
# Choices
PERSON_TYPE = (
("C", "Customer"),
("E", "Employee"),
("G", "Groundhog"),
)
# Fields
name = models.CharField(max_length=32)
type = models.CharField(max_length=1, choices=PERSON_TYPE)
With this:
# In models.py
from djchoices import DjangoChoices, ChoiceItem
class Person(models.Model):
# Choices
class PersonType(DjangoChoices):
customer = ChoiceItem("C")
employee = ChoiceItem("E")
groundhog = ChoiceItem("G")
# Fields
name = models.CharField(max_length=32)
type = models.CharField(max_length=1, choices=PersonType.choices)
You can use this elsewhere like this:
# Other code Person.create(name="Phil", type=Person.PersonType.groundhog)
You can use them without value, and the label will be used as value:
class Sample(DjangoChoices):
option_a = ChoiceItem()
option_b = ChoiceItem()
print(Sample.option_a) # "option_a"
Licensed under the MIT License.
The source code can be found on github.