Implementation of sql CRUD functions using flask and sqlite3
The program was created with Python3 and Flask.
install the framework used in this project with
pip install flask
Run python ./create_db.py
to create a database
Methods
create() - Create a new product entry and insert it into the databse
edit(id) - Get the product entry with matching id from the database, modify it, then re-insert it into the database
delete(id) - Delete the product entry with matching id from the database
index() - Display the list of all product entries in the database