django
Package — Web FrameworkPython 3.8+Intermediate
Full-stack web framework with ORM, admin panel, auth, templates, migrations
Quick Info
- Documentation
- Official Docs
- Python Version
- 3.8+
- Dependencies
- asgiref, sqlparse, tzdata
- Install
pip install django
Learn by Difficulty
Quick Example
python
# Install: pip install django # In views.py from django.http import HttpResponse from django.shortcuts import render def hello(request): return HttpResponse("Hello, World!") def home(request): context = {"title": "My Site", "items": [1, 2, 3]} return render(request, "home.html", context)
django is a third-party package. Full-stack web framework with ORM, admin panel, auth, templates, migrations. Install with: pip install django
Try in PlaygroundTags
packagewebframeworkfull-stackormadmin
Related Items
flask
Package — Web Framework
Lightweight micro-framework for web apps and APIs with Jinja2 templates
fastapi
Package — Web Framework
Modern async API framework with automatic OpenAPI docs and Pydantic validation
django-rest-framework
Package — Web Auth
Powerful toolkit for building REST APIs in Django
celery
Package — Cloud/DevOps
Distributed task queue for async job processing
django-allauth
Package — Web Auth
Django authentication: social accounts, email verification