A wrapper around Django's choices.
Project description
choices.py
choices.py is a wrapper around Django's choices to make them easier to use.
Example
from django.db import models from choices import Choices class Student(models.Model): class Year(Choices): FRESHMAN = 'FR' SOPHOMORE = 'SO' JUNIOR = 'JR' SENIOR = 'SR' @property def is_upperclass(self): return self in (self.JUNIOR, self.SENIOR) year_in_school = models.CharField( max_length=2, choices=Year.choices(), default=Year.FRESHMAN.value) def is_upperclass(self): return self.Year(self.year_in_school).is_upperclass
Installing
Install it from PyPI with pip:
pip install choices.py
Requirements:
- Python 3.4+
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.
Filename, size | File type | Python version | Upload date | Hashes |
---|---|---|---|---|
Filename, size choices.py-0.1.1-py2.py3-none-any.whl (4.3 kB) | File type Wheel | Python version py2.py3 | Upload date | Hashes View |
Filename, size choices.py-0.1.1.tar.gz (3.8 kB) | File type Source | Python version None | Upload date | Hashes View |
Close
Hashes for choices.py-0.1.1-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8ec0d5c7b25b7e196def056e3f84bf07feddc93c44f66680fc62eeb78cd12206 |
|
MD5 | b3e5cfdca24e1bf884cd26f43e471deb |
|
BLAKE2-256 | f7627264d17548b6d783579df177ec7e4abe4507a0296f61106205b5c4140447 |