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
