django
Installation
SKILL.md
Django
Django is a high-level Python web framework that encourages rapid development and clean, pragmatic design. Django 5.0 (2025) introduces database-computed default values and expanded async support.
When to Use
- Perfectionists with deadlines: The "batteries-included" philosophy means Auth, Admin, and ORM are ready day one.
- Data-Driven Apps: The Django Admin is still the best auto-generated admin interface in the industry.
- Enterprise: Security features (CSRF, SQL Injection protection) are best-in-class.
Quick Start
# models.py
from django.db import models