Django es un framework web Python de alto nivel que fomenta el desarrollo rápido y el diseño limpio y pragmático. Es un framework "con baterías incluidas" — viene con casi todo lo que necesitas para crear una aplicación web desde cero, siguiendo convenciones bien definidas.
Con baterías incluidas: qué viene integrado
✓ 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
