Django ایک high-level Python web framework ہے جو تیز ترین ترقی اور صاف، عملی ڈیزائن کی حوصلہ افزائی کرتا ہے۔ یہ ایک "batteries-included" framework ہے — یہ تقریباً ہر چیز کے ساتھ آتا ہے جس کی آپ کو web application بنانے کے لیے ضرورت ہے، اچھی طریقے سے متعین کنونشنز کے مطابق۔
Batteries-included: کیا built-in آتا ہے
✓ 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
