Real Python Enums for Django.
Project description
This package lets you use real Python (PEP435-style) enums with Django.
Installation
pip install django-enumfields
Included Tools
EnumField, EnumIntegerField
from enumfields import EnumField
from enumfields import Enum # Uses Ethan Furman's "enum34" backport
class Color(Enum):
RED = 'r'
GREEN = 'g'
BLUE = 'b'
class MyModel(models.Model):
color = EnumField(Color, max_length=1)
Elsewhere:
m = MyModel.objects.filter(color=Color.RED)
EnumIntegerField works identically, but the underlying storage mechanism is an IntegerField instead of a CharField.
Enum
Normally, you just use normal PEP435-style enums, however, django-enumfields also encludes its own version of Enum with a few extra bells and whistles. Namely, the smart definition of labels which are used, for example, in admin dropdowns. By default, it will create labels by title-casing your constant names. You can provide custom labels with a nested “Labels” class.
from enumfields import EnumField, Enum # Our own Enum class
class Color(Enum):
RED = 'r'
GREEN = 'g'
BLUE = 'b'
class Labels:
RED = 'A custom label'
class MyModel(models.Model):
color = EnumField(Color, max_length=1)
assert Color.GREEN.label == 'Green'
assert Color.RED.label == 'A custom label'
EnumFieldListFilter
enumfields.admin.EnumFieldListFilter is provided to allow using enums in list_filter.
from enumfields.admin import EnumFieldListFilter
class MyModelAdmin(admin.ModelAdmin):
list_filter = [('color', EnumFieldListFilter)]
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file django-enumfields-0.8.1.tar.gz.
File metadata
- Download URL: django-enumfields-0.8.1.tar.gz
- Upload date:
- Size: 11.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
276f13a9b6241cccce386b1213a13a5ba6dda407736f99ea60ed0fbfe2e2df7f
|
|
| MD5 |
f29d39acfbaa5267d658380f161f544f
|
|
| BLAKE2b-256 |
7bd3d01ef1de7e159729ba20f8f4ff00d6cb7094407a2417b6df31aa08695bc6
|
File details
Details for the file django_enumfields-0.8.1-py2.py3-none-any.whl.
File metadata
- Download URL: django_enumfields-0.8.1-py2.py3-none-any.whl
- Upload date:
- Size: 16.5 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
012639ea60677586ced439f9fe3a0cd04a6247d35f8b19dc8e82194217639eaa
|
|
| MD5 |
7226a00220940c7c3d71487a31712ca6
|
|
| BLAKE2b-256 |
bcfe62029ace09fa4a8b12dc9edab27ca982fd791576b9897fa58961c3b1ee1b
|