Django เป็น Python web framework ระดับสูงที่ส่งเสริมการพัฒนาอย่างรวดเร็ว (rapid development) และการออกแบบที่สะอาดและใช้งานได้จริง เป็น framework แบบ "batteries-included" กล่าวคือมาพร้อมกับเกือบทุกอย่างที่คุณต้องการในการสร้าง web application ตั้งแต่แรกเริ่ม โดยยึดตามแนวทางปฏิบัติที่กำหนดไว้อย่างชัดเจน
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
