Little helper application to improve django choices(for fields)
Project description
django-extended-choices aims to provide a better (ie for me) and more readable way of using choices in django
Installation
You can install directly via pip (since version 0.3):
$ pip install django-extended-choices
Or from the github repository (master branch by default):
$ git clone git://github.com/twidi/django-extended-choices.git $ cd django-extended-choices $ sudo python setup.py install
Usage
The aim is to replace this:
STATE_ONLINE = 1 STATE_DRAFT = 2 STATE_OFFLINE = 3 STATE_CHOICES = ( (STATE_ONLINE, 'Online'), (STATE_DRAFT, 'Draft'), (STATE_OFFLINE, 'Offline'), ) STATE_DICT = dict(STATE_CHOICES) class Content(models.Model): title = models.CharField(max_length=255) content = models.TextField() state = models.PositiveSmallIntegerField(choices=STATE_CHOICES, default=STATE_DRAFT) def __unicode__(self): return u'Content "%s" (state=%s)' % (self.title, STATE_DICT[self.state]) print(Content.objects.filter(state=STATE_ONLINE))
by this
from extended_choices import Choices STATES = Choices( ('ONLINE', 1, 'Online'), ('DRAFT', 2, 'Draft'), ('OFFLINE', 3, 'Offline'), ) class Content(models.Model): title = models.CharField(max_length=255) content = models.TextField() state = models.PositiveSmallIntegerField(choices=STATES.CHOICES, default=STATES.DRAFT) def __unicode__(self): return u'Content "%s" (state=%s)' % (self.title, STATES.CHOICES_DICT[self.state]) print(Content.objects.filter(state=STATES._ONLINE))
As you can see there is only one declaration for all states with, for each state, in order:
the pseudo-constant name which can be used (STATES.ONLINE replaces the previous STATE_ONLINE)
the value to use as key in database - which could equally be a string
the name to be displayed - and you can wrap the text in ugettext_lazy() if you need i18n
And then, you can use:
STATES.CHOICES, to use with choices= in fields declarations
STATES.CHOICES_DICT, a dict to get the value to display with the key used in database
STATES.REVERTED_CHOICES_DICT, a dict to get the key from the displayable value (can be useful in some case)
STATES.CHOICES_CONST_DICT, a dict to get value from constant name
STTES.REVERTED_CHOICES_CONST_DICT, a dict to get constant name from value
- Note that each of these attribute can be accessed via a dict key (STATES[‘ONLINE’] for example) if
you want to fight your IDE that may warn you about undefined attributes.
You can check whether a value is in STATES directly:
def is_online(self): # it's an example, we could have test STATES.ONLINE return self.state in STATES
not in ? Yes, you can use in and even iterate on Choices objects !
If you want dicts to be ordered, you can pass the dict class to use to the Choices constructor:
from collections import OrderedDict STATES = Choices( ('ONLINE', 1, 'Online'), ('DRAFT', 2, 'Draft'), ('OFFLINE', 3, 'Offline'), dict_class = OrderedDict )
You can create subsets of choices within the sane variable:
STATES = Choices( ('ONLINE', 1, 'Online'), ('DRAFT', 2, 'Draft'), ('OFFLINE', 3, 'Offline'), ) STATES.add_subset('NOT_ONLINE', ('DRAFT', 'OFFLINE',))
Now, STATES.NOT_ONLINE is a real Choices object, with a subset of the main STATES choices.
You can use it to generate choices for when you only want a subset of choices available:
offline_state = models.PositiveSmallIntegerField(choices=STATES.NOT_ONLINE, default=STATES.DRAFT)
You also get:
STATES.NOT_ONLINE_DICT, a dict to get the value to display with the key used in database
STATES.REVERTED_NOT_ONLINE_DICT, a dict to get the key from the displayable value (can be useful in some case)
STATES.NOT_ONLINE_CONST_DICT, a dict to get value from constant name
STATES.REVERTED_NOT_ONLINE_CONST_DICT, a dict to get constant name from value
If you want to check membership in subset you could do:
def is_online(self): # it's an example, we could have test STATES.ONLINE return self.state not in STATES.NOT_ONLINE_DICT
Notes
You also have a very basic field (NamedExtendedChoiceFormField) in extended_choices.fields which accept constant names instead of values
Feel free to read the source to learn more about this little django app.
You can declare your choices where you want. My usage is in the models.py file, just before the class declaration.
Future
Next version (1.0 ?) will NOT be compatible with 0.X ones, because all the names (*_DICT) will be renamed to be easier to memorize (using names “ala” as_dict…)
License
Licensed under the General Public License (GPL). See the License file included
Source code
The source code is available on github
Tests
To run tests from the code source, create a virtualenv or activate one, install django, then:
python -m extended_choices.tests
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
File details
Details for the file django-extended-choices-0.3.1.tar.gz
.
File metadata
- Download URL: django-extended-choices-0.3.1.tar.gz
- Upload date:
- Size: 21.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 67acee65350d13b3efe061f16cda5a4baeeae466820f46fec1eaace6eb70acb7 |
|
MD5 | 08e9baef0f391945d20e37aa5556cd9d |
|
BLAKE2b-256 | e5e3f5d570967412075d49d99ca96c519559db9c91411f69924b6f54cd9e8506 |