Django は、迅速な開発とクリーンで実用的な設計を奨励する高レベルのPythonウェブフレームワークです。"batteries-included" フレームワークです — ウェブアプリケーションを構築するために必要なほぼすべてをあらかじめ提供し、明確に定義された規約に従います。
Batteries-included: 何が組み込まれているか
✓ 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
