django-orm
Installation
SKILL.md
Django Models with Type Hints (REQUIRED)
from django.db import models
from typing import TypeAlias, Self
from django.utils import timezone
# Type aliases for QuerySets
UserQuerySet: TypeAlias = models.QuerySet["User"]
class Status(models.TextChoices):
"""Use TextChoices for model choices."""
ACTIVE = "active", "Active"
INACTIVE = "inactive", "Inactive"
PENDING = "pending", "Pending"