Django Rest Framework (DRF), which is an application used for rapidly building RESTful APIs.
- Generic Views
- Views
- Pagination
- Mixins
- Serializers
- Authentication
- Filtering
- Viewsets
- Python == 3.8.8
- Django == 3.2.5
- djangorestframework
- Clone the repo
git clone https://github.com/prettyquail/Django-Rest-Framework.git
- Add 'rest_framework' to your INSTALLED_APPS setting.
INSTALLED_APPS = [ ... 'rest_framework', ]