DRF Guide#
Quick Start#
pip install djangorestframework
Settings Setup#
# settings.py
INSTALLED_APPS = [
...
'rest_framework',
]
Browse Topics#
- Setup & Settings - Installation and global configuration
- Serializers - ModelSerializers, Validation, and Fields
- Views & Routing - ViewSets, APIViews, and Routers
- Filtering & Pagination - Query params, Search, and Pagination
- Auth & Permissions - Security and Authentication