Django एक उच्च-स्तरीय Python web framework है जो तीव्र विकास और स्वच्छ, व्यावहारिक डिज़ाइन को प्रोत्साहित करता है। यह एक "batteries-included" framework है — यह लगभग सब कुछ के साथ आता है जो आपको एक web application बनाने के लिए आवश्यक है, अच्छी तरह से परिभाषित परंपराओं का पालन करते हुए।
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
