Skip to content

Latest commit

 

History

History
45 lines (33 loc) · 767 Bytes

README.md

File metadata and controls

45 lines (33 loc) · 767 Bytes

Django-Rest-Framework

About The Project

Django Rest Framework (DRF), which is an application used for rapidly building RESTful APIs.

This project Guide

  1. Generic Views
  2. Views
  3. Pagination
  4. Mixins
  5. Serializers
  6. Authentication
  7. Filtering
  8. Viewsets

Built With

Prerequisites

  1. Python == 3.8.8
  2. Django == 3.2.5
  3. djangorestframework

Installation

  1. Clone the repo
    git clone https://github.com/prettyquail/Django-Rest-Framework.git
  2. Add 'rest_framework' to your INSTALLED_APPS setting.
    INSTALLED_APPS = [
    ...
    'rest_framework',
    ]