Skip to content

A DRF app built to manage students data through Rest APIs. This app has various features such as searching, sorting, and filtering data.

Notifications You must be signed in to change notification settings

nidhisha-shetty/DRF-students-app

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

DRF-students-app

A DRF app built to manage students data through Rest APIs. This app has various features such as searching, sorting, and filtering data.

Description

This app has the following endpoints:

  • CRUD operations
    POST: Add details of a student.
    Sample endpoint: /student/

    PUT: Update student details.
    Sample endpoint: /student/<id>/

    GET: Get the list of students.
    Sample endpoint: /student/

    GET: Get the student details.
    Sample endpoint: /student/<id>/

    DELETE: Delete student details.
    Sample endpoint: /student/<id>/

  • Searching student details through keywords:
    Sample endpoint: /student/?search=<search_keyword>

  • Sorting student details (alphabetically) through field names:
    Sample endpoint: /student/?ordering=last_name

  • Sorting student details (in reverse order) through field names:
    Sample endpoint: /student/?ordering=-last_name

  • Filter student details through field names:
    Sample endpoint: /student/?gender_female=true

About

A DRF app built to manage students data through Rest APIs. This app has various features such as searching, sorting, and filtering data.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages