A Django field extension that allows choices to have rich metadata beyond the standard (value, display) tuple
Project description
Django Meta Choices
A Django field extension that allows choices to have rich metadata beyond the standard (value, display) tuple.
Overview
Django's standard choice fields only support a simple key-value mapping. This package extends that functionality to allow arbitrary metadata for each choice, which can be accessed through dynamically generated getter methods.
Example
Without metachoices
STATUS_CHOICES = {
"ACTIVE": "Active",
"INACTIVE": "Inactive",
}
class User(models.Model):
name = models.CharField(max_length=100)
status = models.CharField(choices=STATUS_CHOICES) # The normal CharField with choices
# Usage
user = User.objects.create(name="John", status="ACTIVE")
# Access choice data as usual
print(user.status) # The database stored value, "ACTIVE"
print(user.get_status_display()) # The human-readable display value, "Active"
With metachoices
from django.db import models
from metachoices import MetaChoiceField
# Define choices with rich metadata
STATUS_CHOICES = {
"ACTIVE": {
"display": "Active",
"color": "#28a745",
"description": "User is active and can access the system",
"icon": "check-circle",
"priority": 1,
},
"INACTIVE": {
"display": "Inactive",
"color": "#6c757d",
"description": "User is inactive and cannot access the system",
"icon": "x-circle",
"priority": 2,
},
}
class User(models.Model):
name = models.CharField(max_length=100)
status = MetaChoiceField(choices=STATUS_CHOICES) # Use MetaChoiceField with choices instead of CharField
# Usage
user = User.objects.create(name="John", status="ACTIVE")
# Access choice data as usual
print(user.status) # The database stored value, "ACTIVE"
print(user.get_status_display()) # The human-readable display value, "Active"
# With richer capabilities!
print(user.get_status_color()) # "#28a745"
print(user.get_status_description()) # "User is active and can access the system"
print(user.get_status_icon()) # "check-circle"
print(user.get_status_priority()) # 1
Features
- Rich Metadata: Add any number of attributes to your choices (description, url, icon, priority, etc.)
- Dynamic Getters: Automatically generates
get_<field>_<attribute>()methods for all metadata attributes - Django Compatible: Works seamlessly with Django's existing choice field functionality
- Admin Integration: Fully compatible with Django admin
- Type Safe: Validates that field values are valid choice keys
- Auto-Detection: Automatically detects whether to use CharField or IntegerField based on choice keys
Installation
Install from PyPI:
pip install django-metachoices
# or with UV (recommended)
uv add django-metachoices
Add to your Django project's INSTALLED_APPS:
INSTALLED_APPS = [
# ... other apps
'metachoices',
]
Requirements
- Python: 3.10+
- Django: 4.2+
Compatibility
This package is tested with:
- Python: 3.10, 3.11, 3.12, 3.13
- Django: 4.2 (LTS), 5.0, 5.1, 5.2
For local testing across multiple versions, we recommend using tox:
# Install development dependencies
uv add --group dev tox
# Test specific combinations
uv run tox -e py310-django42 # Python 3.10 + Django 4.2
uv run tox -e py312-django51 # Python 3.12 + Django 5.1
uv run tox -e py313-django52 # Python 3.13 + Django 5.2
# Test with multiple Python versions (requires installing them first)
uv python install 3.10 3.11 3.12 3.13
uv run tox
Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
License
This project is licensed under the MIT License - see the LICENSE file for details.
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file django_metachoices-0.1.5.tar.gz.
File metadata
- Download URL: django_metachoices-0.1.5.tar.gz
- Upload date:
- Size: 10.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
430cc4bd2ce64e7957480815f511ca66f04e739169d179a249fa8c5e06716667
|
|
| MD5 |
86d5fe700ee187ed1654e4ea77b48fa0
|
|
| BLAKE2b-256 |
bc4f0602c3d50a7f05875ae1cb2f5d31d4e24af6fd675a85c355505f59db6a79
|
File details
Details for the file django_metachoices-0.1.5-py3-none-any.whl.
File metadata
- Download URL: django_metachoices-0.1.5-py3-none-any.whl
- Upload date:
- Size: 10.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c1f524b0443d2b2100816e394f660f72ffee22e454d8322f08640350d288565f
|
|
| MD5 |
cda1ff8108a50e6fd79d5007fcf76d5c
|
|
| BLAKE2b-256 |
067792f65176f93ad6ef8171c75d780b2efbc2f37d5c00ad245cd95e6356f8f3
|