Skip to content

Django REST framework is a powerful and flexible toolkit for building Web APIs.

Notifications You must be signed in to change notification settings

prettyquail/Django-Rest-Framework

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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',
    ]