Sanity for the django choices functionality.
Project description
Order and sanity for django model choices.
Django choices provides a declarative way of using the choices option on django fields. Read the full documentation on ReadTheDocs.
Installation
You can install via PyPi or direct from the github repo.
$ pip install django-choices
Basic Usage
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"
License
Licensed under the MIT License.
Source Code
The source code can be found on github.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for django_choices-1.7.1-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 010b773c2ffc58e616701ba417bafdbf5ae23b5bcd18d6101d2c9755e0c2b4de |
|
MD5 | ac24bb167cbbeabca84c57163c736470 |
|
BLAKE2b-256 | 73ab9c26c292503908453023f0fea0981e071376f3cdcc2e650b6eb59424007b |