Advanced Python - Spring 2022 Project
An app where the user can manage all their expenses in one place. Adding, Editing or Visualizing made simple
To activate the virtual-environment setup, including the set of dependencies with their required version libraries, use the following command prior to running the modules :
source venvironment/bin/activate
Category can be one of the following : Groceries, Entertainment, Travel, Shopping, Bills, Leasure or Investments
python main.py
or python3 main.py
in terminal.Example case:
(base) kitamado:project-Deliverable-1 a0$ python main.py
Welcome to Expense Tracker!
Let's start adding Expenses
Enter the Title of the Expense: wii
Enter Category as an Integer as follows:
1 : Groceries
2 : Entertainment
3 : Travel
4 : Shopping
5 : Bills
6 : Investments
Category: 2
Enter the Date of the Expense as DD-MM-YYYY: 25-03-2021
Enter the Amount: 39.7
Expense successfully saved!
Run python3 unit_tests.py -v
in terminal.