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"
Installs
3
First Seen
Jan 30, 2026
django-orm — carlos-asg/tu-voz-en-ruta