Used my knowledge of CSV and File I/O and database ORMs to build a console application that allows you to easily interact with data for a store's inventory. The data needed to be cleaned from the CSV before it was added to the database. All interactions with the records used ORM methods for viewing records, creating records, and exporting a new CSV backup.
Clone the project
git clone https://github.com/sahvsergio/treehouse_python_techdegree_unit4.git
Go to the project directory
cd my-project
Create Virtual Environment
python3 -m venv env
Activate The Virtual Environment
Using Mac/Linx
source ./env/bin/activate
Windows
source ./env/bin/activate
Install Dependencias
pip install -r requirements.txt
Start the app
python3 app.py