Skip to main content

Custom Django field for using enumerations of named constants

Project description

Provides an enumeration Django model field (using IntegerField) with reusable enums and transition validation.

https://travis-ci.org/5monkeys/django-enumfield.svg?branch=master https://img.shields.io/pypi/v/django-enumfield.svg https://img.shields.io/pypi/l/django-enumfield.svg https://img.shields.io/pypi/pyversions/django-enumfield.svg https://img.shields.io/pypi/wheel/django-enumfield.svg

Installation

Currently, we test on supported versions of django and Python versions 2.7, 3.5.

Install django-enumfield in your Python environment:

$ pip install django-enumfield

For testing with Django 1.9rc1, use

$ pip install --pre django-enumfield==1.3b2

If you are looking for native enum (or enum34) support, try testing Pull Request #26 which is planned for Django 1.10+.

Usage

Create an Enum-class and pass it as first argument to the Django model EnumField.

from django.db import models
from django_enumfield import enum

class BeerStyle(enum.Enum):
    LAGER = 0
    STOUT = 1
    WEISSBIER = 2

class Beer(models.Model):
    style = enum.EnumField(BeerStyle, default=BeerStyle.LAGER)
Beer.objects.create(style=BeerStyle.STOUT)
Beer.objects.filter(style=BeerStyle.STOUT)

You can use your own labels for Enum items

class Animals(enum.Enum):
    CAT = 1
    DOG = 2

    labels = {
        CAT: 'Cat',
        DOG: 'Dog'
    }

The Enum-class provides the possibility to use transition validation.

from django.db import models
from django_enumfield import enum

class PersonStatus(enum.Enum):
    ALIVE = 1
    DEAD = 2
    REANIMATED = 3

    _transitions = {
        DEAD: (ALIVE,),
        REANIMATED: (DEAD,)
    }

class Person(models.Model):
    status = enum.EnumField(PersonStatus)

These transitions state that a PersonStatus can only go to DEAD from ALIVE and to REANIMATED from DEAD.

person = Person.objects.create(status=PersonStatus.ALIVE)
try:
    person.status = PersonStatus.REANIMATED
    person.save()
except InvalidStatusOperationError:
    print "Person status can not go from ALIVE to REANIMATED"

The Enum-class can also be used without the EnumField. This is very useful in Django form ChoiceFields.

from django.forms import Form
from django_enumfield import enum

class GenderEnum(enum.Enum):
    MALE = 1
    FEMALE = 2

    labels = {
        MALE: 'Male',
        FEMALE: 'Female',
    }

class PersonForm(forms.Form)
    gender = forms.TypedChoiceField(choices=GenderEnum.choices(), coerce=int)

Rendering PersonForm in a template will generate a select-box with “Male” and “Female” as option labels for the gender field.

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

django10-enumfield-1.4.1.tar.gz (21.9 kB view details)

Uploaded Source

File details

Details for the file django10-enumfield-1.4.1.tar.gz.

File metadata

File hashes

Hashes for django10-enumfield-1.4.1.tar.gz
Algorithm Hash digest
SHA256 d45966bd585f3a4d209ce9c345ff6c0856173864841b1c1ece8faafa2c15d6b9
MD5 9edafc4d88707b6a39f35e8b925391dd
BLAKE2b-256 9a14a86cf454d6913e6216ffc4a1879a7bf5aa3b82d7bbcb83a30093684ab054

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