Skip to main content

Real Python Enums for Django.

Project description

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

django-enumfields2 is a friendly drop-in fork of hzdg/django-enumfields that’s still maintained.

https://github.com/akx/django-enumfields2/actions/workflows/ci.yml/badge.svg https://img.shields.io/pypi/v/django-enumfields2.svg https://img.shields.io/pypi/pyversions/django-enumfields2.svg

Installation

  1. pip install django-enumfields2

Included Tools

EnumField, EnumIntegerField

from enumfields import EnumField
from enum import Enum

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.

Usage in Forms

Call the formfield method to use an EnumField directly in a Form.

class MyForm(forms.Form):

    color = EnumField(Color, max_length=1).formfield()

Enum

Normally, you just use normal PEP435-style enums, however, django-enumfields also includes 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)]

Django Rest Framework integration

EnumSupportSerializerMixin mixin allows you to use enums in DRF serializers.

# models.py
from enumfields import EnumField
from enum import Enum

class Color(Enum):
    RED = 'r'
    GREEN = 'g'
    BLUE = 'b'

class MyModel(models.Model):
    color = EnumField(Color, max_length=1)


# serializers.py
from enumfields.drf.serializers import EnumSupportSerializerMixin
from rest_framework import serializers
from .models import MyModel

class MyModelSerializer(EnumSupportSerializerMixin, serializers.ModelSerializer):
    class Meta:
        model = MyModel
        fields = '__all__'

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_enumfields2-4.0.tar.gz (7.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

django_enumfields2-4.0-py3-none-any.whl (10.2 kB view details)

Uploaded Python 3

File details

Details for the file django_enumfields2-4.0.tar.gz.

File metadata

  • Download URL: django_enumfields2-4.0.tar.gz
  • Upload date:
  • Size: 7.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for django_enumfields2-4.0.tar.gz
Algorithm Hash digest
SHA256 f41d84a3ba166f9148df073e17f8ec040b7ce5207b8d60cfa061205820cc366c
MD5 c63a885ad8d6a800afde9020fc104f1d
BLAKE2b-256 c4f4ed7494841b06f0086f933c207bb11f6b4fe9550953f07ef2a971b0452e50

See more details on using hashes here.

Provenance

The following attestation bundles were made for django_enumfields2-4.0.tar.gz:

Publisher: ci.yml on akx/django-enumfields2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file django_enumfields2-4.0-py3-none-any.whl.

File metadata

File hashes

Hashes for django_enumfields2-4.0-py3-none-any.whl
Algorithm Hash digest
SHA256 136a7f8fe53ae73cb05d23c5d94484f9e5f26a312fbeb954c476d67b78a88fcf
MD5 7e211c7eca8d5bb6a46849d07ae69635
BLAKE2b-256 6de79944b7c8d783bfd6e825c05cc873f66463ee0e3cc4cecb1e7685c884441d

See more details on using hashes here.

Provenance

The following attestation bundles were made for django_enumfields2-4.0-py3-none-any.whl:

Publisher: ci.yml on akx/django-enumfields2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

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