Skip to content

Latest commit

 

History

History
 
 

Crud_in_flask

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Star Badge Open Source Love

Flask Crud

🛠️ Description

Implementation of sql CRUD functions using flask and sqlite3

⚙️ Languages or Frameworks Used

The program was created with Python3 and Flask.

install the framework used in this project with pip install flask

🌟 How to run

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

🤖 Author

Alexander Monterrosa