Django ist ein High-Level-Python-Web-Framework, das schnelle Entwicklung und sauberes, pragmatisches Design fördert. Es ist ein "Batteries-Included"-Framework — es wird mit fast allem geliefert, was Sie benötigen, um eine Webanwendung von Grund auf zu erstellen, nach gut definierten Konventionen.
Batteries-Included: was bereits eingebaut ist
✓ ORM — work with the database using Python, not raw SQL
✓ Admin site — an auto-generated admin interface for your data
✓ Authentication— users, permissions, sessions, login
✓ Forms — validation and rendering
✓ Templates — a templating engine for HTML
✓ Migrations — version-controlled database schema changes
✓ Security — CSRF, XSS, SQL-injection protections by default
✓ Routing, caching, i18n, and more
