Skip to content

Latest commit

 

History

History
61 lines (33 loc) · 954 Bytes

File metadata and controls

61 lines (33 loc) · 954 Bytes

Treehouse Python Techdegree Unit 4:

Store Inventory with SQLAlchemy

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.

Run Locally

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