Django è un framework web Python di alto livello che incoraggia lo sviluppo rapido e un design pulito e pragmatico. È un framework "batteries-included" — fornisce quasi tutto quello di cui hai bisogno per costruire un'applicazione web già pronta all'uso, seguendo convenzioni ben definite.
Batteries-included: cosa è incluso
✓ 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
