Skip to content

Latest commit

 

History

History
8 lines (6 loc) · 392 Bytes

README.md

File metadata and controls

8 lines (6 loc) · 392 Bytes

A sample REST project geared towards beginners to understand the features of Django REST.

Viewset

  • The Viewset sample app is used to explain the viewset functionality of django rest.
  • It can handle all of the CRUD operations without explicitly definining it by the user.
  • It is coupled with the default router.
  • It is simplest and easiest way to get started with django REST.