Django అనేది ఒక అధిక-స্థరీయ Python వెబ్ ఫ్రేమ్వర్క్, ఇది వేగవంతమైన అభివృద్ధి మరియు చేతనమైన, ఆచరణాత్మక డిజైనను ప్రోత్సహిస్తుంది. ఇది "బ్యాటరీలు-చేర్చిన" ఫ్రేమ్వర్క్ — ఇది వెబ్ అప్లికేషన్ను సరళంగా నిర్మించడానికి అవసరమైన దాదాపు ప్రతిదీ సరిన సంప్రదాయాలను అనుసరించి తీసుకువస్తుంది.
బ్యాటరీలు-చేర్చిన: ఏమి అంతర్నిర్మితంగా వస్తుంది
✓ 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
