Skip to main content

Full and natural support for enumerations as Django model fields.

Project description

MIT license PyPI version fury.io PyPI pyversions PyPI djversions PyPI status Documentation Status Code Cov Test Status

Django Enum

Full and natural support for enumerations as Django model fields.

Many packages aim to ease usage of Python enumerations as model fields. Most were made obsolete when Django provided TextChoices and IntegerChoices types. The motivation for django-enum was to:

  • Always automatically coerce fields to instances of the Enum type.

  • Allow strict adherence to Enum values to be disabled.

  • Be compatible with Enum classes that do not derive from Django’s Choices.

  • Handle migrations appropriately. (See migrations)

  • Integrate as fully as possible with Django’s existing level of enum support.

  • Integrate with enum-properties to enable richer enumeration types.

  • Represent enum fields with the smallest possible column type.

  • Be as simple and light-weight an extension to core Django as possible.

django-enum works in concert with Django’s built in TextChoices and IntegerChoices to provide a new model field type, EnumField, that resolves the correct native Django field type for the given enumeration based on its value type and range. For example, IntegerChoices that contain values between 0 and 32767 become PositiveSmallIntegerField.

from django.db import models
from django_enum import EnumField

class MyModel(models.Model):

    class TextEnum(models.TextChoices):

        VALUE0 = 'V0', 'Value 0'
        VALUE1 = 'V1', 'Value 1'
        VALUE2 = 'V2', 'Value 2'

    class IntEnum(models.IntegerChoices):

        ONE   = 1, 'One'
        TWO   = 2, 'Two',
        THREE = 3, 'Three'

    # this is equivalent to:
    #  CharField(max_length=2, choices=TextEnum.choices, null=True, blank=True)
    txt_enum = EnumField(TextEnum, null=True, blank=True)

    # this is equivalent to
    #  PositiveSmallIntegerField(choices=IntEnum.choices)
    int_enum = EnumField(IntEnum)

EnumField is more than just an alias. The fields are now assignable and accessible as their enumeration type rather than by-value:

instance = MyModel.objects.create(
    txt_enum=MyModel.TextEnum.VALUE1,
    int_enum=3  # by-value assignment also works
)

assert instance.txt_enum == MyModel.TextEnum('V1')
assert instance.txt_enum.label == 'Value 1'

assert instance.int_enum == MyModel.IntEnum['THREE']
assert instance.int_enum.value == 3

django-enum also provides IntegerChoices and TextChoices types that extend from enum-properties which makes possible very rich enumeration fields.

?> pip install enum-properties

from enum_properties import s
from django_enum import TextChoices  # use instead of Django's TextChoices
from django.db import models

class TextChoicesExample(models.Model):

    class Color(TextChoices, s('rgb'), s('hex', case_fold=True)):

        # name   value   label       rgb       hex
        RED     = 'R',   'Red',   (1, 0, 0), 'ff0000'
        GREEN   = 'G',   'Green', (0, 1, 0), '00ff00'
        BLUE    = 'B',   'Blue',  (0, 0, 1), '0000ff'

        # any named s() values in the Enum's inheritance become properties on
        # each value, and the enumeration value may be instantiated from the
        # property's value

    color = EnumField(Color)

instance = TextChoicesExample.objects.create(
    color=TextChoicesExample.Color('FF0000')
)
assert instance.color == TextChoicesExample.Color('Red')
assert instance.color == TextChoicesExample.Color('R')
assert instance.color == TextChoicesExample.Color((1, 0, 0))

# direct comparison to any symmetric value also works
assert instance.color == 'Red'
assert instance.color == 'R'
assert instance.color == (1, 0, 0)

# save by any symmetric value
instance.color = 'FF0000'

# access any enum property right from the model field
assert instance.color.hex == 'ff0000'

# this also works!
assert instance.color == 'ff0000'

# and so does this!
assert instance.color == 'FF0000'

instance.save()

# filtering works by any symmetric value or enum type instance
assert TextChoicesExample.objects.filter(
    color=TextChoicesExample.Color.RED
).first() == instance

assert TextChoicesExample.objects.filter(color=(1, 0, 0)).first() == instance

assert TextChoicesExample.objects.filter(color='FF0000').first() == instance

Please report bugs and discuss features on the issues page.

Contributions are encouraged!

Full documentation at read the docs.

Installation

  1. Clone django-enum from GitHub or install a release off PyPI :

pip install django-enum

Integrations are provided that leverage enum-properties to make enumerations do more work and to provide extended functionality for django-filter and djangorestframework.

pip install enum-properties
pip install django-filter
pip install djangorestframework

If features are utilized that require a missing optional dependency an exception will be thrown.

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_enum-1.2.2.tar.gz (15.7 kB view details)

Uploaded Source

Built Distribution

django_enum-1.2.2-py3-none-any.whl (15.9 kB view details)

Uploaded Python 3

File details

Details for the file django_enum-1.2.2.tar.gz.

File metadata

  • Download URL: django_enum-1.2.2.tar.gz
  • Upload date:
  • Size: 15.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.6.1 CPython/3.11.4 Darwin/22.3.0

File hashes

Hashes for django_enum-1.2.2.tar.gz
Algorithm Hash digest
SHA256 076a440dd073cc7b20987b2b933c8fd9dc386ef93b9689b0b7ddb4ac4bcb5798
MD5 2f89de6c0bbdc510b689cf14cb6b4e86
BLAKE2b-256 9c537f57ed15353e382e3e95aa98e1c42a04a53baeb8cd10dc992b763e0cbe5f

See more details on using hashes here.

File details

Details for the file django_enum-1.2.2-py3-none-any.whl.

File metadata

  • Download URL: django_enum-1.2.2-py3-none-any.whl
  • Upload date:
  • Size: 15.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.6.1 CPython/3.11.4 Darwin/22.3.0

File hashes

Hashes for django_enum-1.2.2-py3-none-any.whl
Algorithm Hash digest
SHA256 5d7f29ed326a0d4d8be48198c29985e226ae2befbbb96fd8a6e5ad738de48b1b
MD5 a9710dc7595f4abb54a1f63c6a9734a3
BLAKE2b-256 93d9368a6685a52ce21fc76bc31eb9594dae9dd2f8c205582b869d2c3260609d

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