Skip to main content

Fields I wish were standard in Django. At the moment this is limited to the MinutesField, EnumIntegerField and EnumCharField.

Install:

pip install django-stdfields

Contents

  • stdfields.forms.MinutesField: use an integer to represent a duration of minutes and hours

  • stdfields.fields.EnumIntegerField: makes working with choices a bit easier

  • stdfields.fields.EnumCharField: the same, but for choices with a char key

MinutesField

Is an extension of Django’s standard django.forms.IntegerField.

This field will accept values for a duration in minutes in the formats hh:mm or h.fraction, similar to the way BaseCamp allows you to specify your time spent on a task as either 8:30 or 8.5. In the latter case only 8.25, 8.5, 8.50 and 8.75 are considered valid inputs.

Example

Actions speak louder than words:

# models.py
class Task(models.Model):
    time_spent = models.IntegerField()

# forms.py
from stdfields.forms import MinutesField

from models import Task

class TaskForm(forms.ModelForm):
    time_spent = MinutesField(label='How long did it take?')

    class Meta:
        model = Task

You can use the minutes template filter from stdfieldstags to render such a field in the format 8:30:

{% load stdfieldstags %}
It took me {{ task.time_spent|minutes }} to complete this task.

Enumeration

I always end up with ugly code when using Django’s choices argument for fields. With the stdfields.models.Enumeration class, I’ve got a handy base class that allows me to keep things tidy:

# models.py
class Color(Enumeration):
    RED = 'R'
    GREEN = 'G'
    BLUE = 'B'

    @classmethod
    def all(cls):
        return [
            (cls.RED, _(u'Red')),
            (cls.GREEN, _(u'Green')),
            (cls.BLUE, _(u'Blue'))
        ]

class Pencil(models.Model):
    color = models.CharField(choices=Color.all(), max_length=Color.max_length())

# views.py
def red_pencils(request):
    pencils = Pencil.objects.filter(color=Color.RED)
    ...
    # Prints 'Showing the Red pencils'
    logging.info('Showing the %s pencils' % (Color.as_display(Color.RED)))

That could be shorter. Use Enum instead:

# models.py
class Color(Enum):
    RED = EnumValue('R', 'Red')
    GREEN = EnumValue('G', 'Green')
    BLUE = EnumValue('B', 'Blue')

class Pencil(models.Model):
    color = models.CharField(choices=Color.all(), max_length=Color.max_length())

# views.py
def red_pencils(request):
    pencils = Pencil.objects.filter(color=Color.RED)
    ...
    # Prints 'Showing the Red pencils'
    logging.info('Showing the %s pencils' % (Color.RED_display))

EnumCharField and EnumIntegerField

And now we can make working with an Enum easier with the EnumCharField and EnumIntegerField models fields:

# models.py
class Color(Enumeration):
    # same as above

class Pencil(models.Model):
    color = models.EnumCharField(enum=Color, max_length=Color.max_length())

This example is basically the same as the above since EnumCharField is a subclass of the regular Django CharField. By using the enum keyword argument of the enum field, the choices will be automatically updated when you update the enumeration object. And since you’re using the provided max_length method of Enumeration, the max_length will be updated when needed. Just like in the previous example. The enum fields simply offer some more clarity when reading the code.

EnumIntegerField works exactly the same, but for enumerations with integer keys. Both fields can be used with South.

Download files

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

Source Distribution

django-stdfields-1.0.0.tar.gz (7.5 kB view details)

Uploaded Source

File details

Details for the file django-stdfields-1.0.0.tar.gz.

File metadata

File hashes

Hashes for django-stdfields-1.0.0.tar.gz
Algorithm Hash digest
SHA256 bf2c824f0ee50133a6fc7b3b844a3cec1f4aa543f1b18f9acd0eac57924f6f51
MD5 1748174b14e0a8e64de5a56355fe5eca
BLAKE2b-256 366774f119a31d3eaf7d9f131bb18031e13b4c3f7fa895e3cfd9d3864487bfe8

See more details on using hashes here.

Release history Release notifications | RSS feed

1.0.2

1 file

1.0.1

1 file

This release

1.0.0 This release

1 file

0.0.10

1 file

0.0.3

1 file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page