Django एक उच्च-स्तरीय Python वेब फ्रेमवर्क हो जसले द्रुत विकास र स्वच्छ, व्यावहारिक डिजाइनलाई प्रोत्साहित गर्छ। यो एक "batteries-included" फ्रेमवर्क हो — यो बॉक्सको बाहिरबाट वेब एप्लिकेशन बनाउन तपाईंलाई आवश्यक पर्ने लगभग सबकुरा लिएर आउछ, राम्रोसँग परिभाषित अभ्यासहरू अनुसरण गर्दै।
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
