A Django egy magas szintű Python web framework, amely a gyors fejlesztést és a tiszta, pragmatikus tervezést támogatja. Ez egy "batteries-included" framework — szinte mindent tartalmaz, ami szükséges egy webalkalmazás felépítéséhez rögtön az alapból, jól meghatározott konvenciók követésével.
Batteries-included: mi van beépítve
✓ 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
