Django એક high-level 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
