Skip to main content

Real Python Enums for Django.

Project description

This package lets you use real Python (PEP435-style) enums with Django.

https://travis-ci.org/hzdg/django-enumfields.svg?branch=master

Installation

  1. 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


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-enumfields-0.8.1.tar.gz (11.9 kB view details)

Uploaded Source

Built Distribution

django_enumfields-0.8.1-py2.py3-none-any.whl (16.5 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file django-enumfields-0.8.1.tar.gz.

File metadata

File hashes

Hashes for django-enumfields-0.8.1.tar.gz
Algorithm Hash digest
SHA256 276f13a9b6241cccce386b1213a13a5ba6dda407736f99ea60ed0fbfe2e2df7f
MD5 f29d39acfbaa5267d658380f161f544f
BLAKE2b-256 7bd3d01ef1de7e159729ba20f8f4ff00d6cb7094407a2417b6df31aa08695bc6

See more details on using hashes here.

File details

Details for the file django_enumfields-0.8.1-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for django_enumfields-0.8.1-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 012639ea60677586ced439f9fe3a0cd04a6247d35f8b19dc8e82194217639eaa
MD5 7226a00220940c7c3d71487a31712ca6
BLAKE2b-256 bcfe62029ace09fa4a8b12dc9edab27ca982fd791576b9897fa58961c3b1ee1b

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page