Django field for storing dates without years.
Project description
Provides a Django model and form fields for dates that do not include years.
One use case is to collect birthdays without requiring the year of birth.
Prerequisites
Django 1.8 - 1.11, 2.0
Python 2.7, 3.6
(Other versions may function, but are untested.)
Installation
pip install django-yearlessdate
Usage
The package provides two model fields, YearlessDateField and YearField.
YearlessDateField
YearlessDateField stores a date without a year: January 1st, for example.
Its default widget consists of two dropdowns, one for a day and one for the month.
It will only allow potentially valid dates. For example, a user won’t be able to set the date to April 31st. February 29th is counted as a valid date.
Here’s an example models.py that declares a model with a required yearless date:
from django.db import models from djangoyearlessdate.models import YearlessDateField class MyModel(models.Model): birthday = YearlessDateField()
The values of YearlessDateField on the model instances can be accessed like so:
>>> a = MyModel.objects.get(id=1) >>> a <MyModel: 4 August 2011> >>> a.birthday.day 4 >>> a.birthday.month 8 >>> print a.birthday 4 August
They can also be compared or sorted as would be expected, for example:
>>> m = MyModel.objects.all() >>> m [<MyModel: 4 August 2011>, <MyModel: 30 June 2013>] >>> m[0].birthday > m[1].birthday True >>> m.order_by('birthday') [<MyModel: 30 June 2013>, <MyModel: 4 August 2011>]
YearField
YearField is a very simple model field that stores the year as an integer, and ensures the year provided lies between 1900 and 2200:
from django.db import models from djangoyearlessdate.models import YearField class MyModel(models.Model): year = YearField(null=True, blank=True)
Use of YearField is not recommended due to its lack of configurability. You’re almost certainly better of using a SmallIntegerField in combination with a MinValueValidator and a MaxValueValidator.
Running tests
Setup
Ensure you have a recent version of tox installed.
Clone this repo.
Running tests
From the root of this repo, simply run:
tox
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file django-yearlessdate-1.3.1.tar.gz
.
File metadata
- Download URL: django-yearlessdate-1.3.1.tar.gz
- Upload date:
- Size: 4.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/40.2.0 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.6.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 03dfa9f7e0267ed05015896e698a81df982b68c203ec5256565897d0578e08b0 |
|
MD5 | 06424d2c3a72d518a895c6df62f7bf1a |
|
BLAKE2b-256 | 4063f4b7c02b6662e152025710e90e110660c116db40c95e469b6c2e885bbeeb |