A Django extension to make `choices` on ChoiceFields more Enum-like.
Project description
https://github.com/serioeseGmbH/serious-django-enums
serious-django-enums defines an Enum-like class, AutoEnum, that intends to bring together the pattern to define choice fields that Django uses, and intuitive usage of Enums like most people know them.
Consider the example where you’ve defined your choices on a ChoiceField, e.g.:
class SomeForm(forms.Form): ... STATE_CHOICES = ( ("ACTIVE", "active"), ("ENDED", "ended"), ) field = forms.ChoiceField(choices=STATE_CHOICES, default="ACTIVE")
What this package gives you is wrapping this in a class and having it accessible as class attributes:
class States(AutoEnum): choices = ( ("ACTIVE", "active"), ("ENDED", "ended"), ) class SomeForm(forms.Form): field = forms.ChoiceField(choices=States.choices, default=States.ACTIVE)
which has the advantage of being import-able from different parts of your code and not directly tied to the form, and also gives you nice-looking property access instead of dictionary-like key access.
The definition is currently extremely basic, but has suited our needs well.
Quick start
Install the package with pip:
pip install serious-django-enums
Import serious_django_enums.AutoEnum and subclass it, defining a choices property on the class.
Use the auto-defined member properties of your AutoEnum-subclasses wherever you need them.
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 serious-django-enums-0.1.tar.gz
.
File metadata
- Download URL: serious-django-enums-0.1.tar.gz
- Upload date:
- Size: 3.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.21.0 setuptools/40.6.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.6.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 16c19645bd288b5bf4571dfb00abab26959c251b386f74abf2b2f8b6b3dc536f |
|
MD5 | 9197850c0980503a3329b79bd273e2c2 |
|
BLAKE2b-256 | 0f286c241b65511b62e750a4d1b3614daea82bab210b1b90a058dac11bb83179 |