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.
Source Distribution
choices.py-0.1.1.tar.gz
(3.8 kB
view details)
Built Distribution
File details
Details for the file choices.py-0.1.1.tar.gz
.
File metadata
- Download URL: choices.py-0.1.1.tar.gz
- Upload date:
- Size: 3.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b4f2e1538194d1eea770051efe25ed96958cf0846dcc2f839ccc3f1e9911e5a0 |
|
MD5 | d00fbacf79fb888fbe12faf761ad509c |
|
BLAKE2b-256 | 7f01c57f94dc1c47a44d38a0522020ae234d3537dfd0bbeb5a3ca0fa9573b632 |
File details
Details for the file choices.py-0.1.1-py2.py3-none-any.whl
.
File metadata
- Download URL: choices.py-0.1.1-py2.py3-none-any.whl
- Upload date:
- Size: 4.3 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8ec0d5c7b25b7e196def056e3f84bf07feddc93c44f66680fc62eeb78cd12206 |
|
MD5 | b3e5cfdca24e1bf884cd26f43e471deb |
|
BLAKE2b-256 | f7627264d17548b6d783579df177ec7e4abe4507a0296f61106205b5c4140447 |