Skip to main content

A Django application to bridge the gap between using enumerations and having fully-specified, normalized data models.

Project description

django-enummodel is a small utility application designed to help bridge the niche use case(s?) between defining enumerations for a given field (mutually exclusive options) and fully specifying non-exclusive options as instances of a fully specified model type.

In the common case, non-mututally exclusive options configured as a fully specified model (along with a fixture to store those options) can, in the best case, ‘just work’; in the worst case, it can provide mild headaches, notably when lazy translations are involved.

In the particular case of the author, the challenge was to avoid having to cope with a O(n) growth rate of fixtures to manage, coupled with the desire to avoid encountering issues of internationalization and being forced to choose a particular character set in which to store these values.

django-enummodel provides a Django Model object with which the developer may extend to provide the functionality sketched above:

LANGUAGE_CHOICES = (
    (1,_(u'English')),
    (2,_(u'Spanish')),
    (3,_(u'French')),

    (255,_(u'other')),
)

class Language(EnumModel):
    class EnumMeta:
        choices = LANGUAGE_CHOICES

Please note that that population of any model derived from EnumModel takes place after schema migration; therefore, changes to the choices basis will need to be rectified by running:

django-admin.py migrate

or:

django-admin.py migrate app_name

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-enummodel-0.2.1.tar.gz (6.2 kB view details)

Uploaded Source

Built Distribution

django_enummodel-0.2.1-py2.py3-none-any.whl (10.0 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file django-enummodel-0.2.1.tar.gz.

File metadata

File hashes

Hashes for django-enummodel-0.2.1.tar.gz
Algorithm Hash digest
SHA256 4ad287502bba15612bb91195b770d858cac3f8ea42ec40543737145a1032e53a
MD5 47cf236ec366a1a68fad907a918ebf80
BLAKE2b-256 9f5d72a4b125da59c81eca0c9b0ffa270a48cbc8324cd7adb7fc74b529219c75

See more details on using hashes here.

File details

Details for the file django_enummodel-0.2.1-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for django_enummodel-0.2.1-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 0286f1dc509d5aa05f5f6caf1fa98a18f8efa8094122b63c9256f9365ddf88f8
MD5 6e8685c9c24a3c4b988b0692d5d5c292
BLAKE2b-256 f242dd46c4451c8a49d4d7b6047b38af41f8e4b9006d3fe624f5801079566662

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