Skip to content

ne0bytes/DJANGO_REST_LAB4

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

DJANGO_REST_LAB4

You have an eCommerce project . You have Brands & Products for those brands . Using Django REST Framework create this project , and provide the RESTful APIs for CRUD (Create, Read, Update, Delete) operations on both models .

Your Project should have two Models

Brand

  • title
  • description
  • established_at
  • city

Product

  • brand
  • name
  • description
  • image_url
  • price
  • quantity
  • is_active

Requirements:

  • Use Appropriate field types .
  • Create CRUD API endpoints for each model.
  • Create an endpoint to display the products of a specific brand .
  • Add skip & get when listing the list of brands or products (limiting the number of brands/products displayed)
  • Add search API endpoint for a specific brand by name.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%