Question: Create a script called manageProducts.py. It should allow the user to Create, Read, Update, and Delete products using the framework we have built. Products should
Create a script called manageProducts.py. It should allow the user to Create, Read, Update, and Delete products using the framework we have built. Products should have the following fields:
id (pk, auto_increment)
name
description
price
stock (number in inventory)
- Create the product table as username_products
- create a product class from the user class
- change the code in app.py to use product class, not user
- copy app.py to manageProduct.py, and make changes so you can edit products instead of users.
- add additional functionality to manageProducts.py to c,r,u,d
- This means adding an if statement for read and delete, also finishing the update.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
