-
Notifications
You must be signed in to change notification settings - Fork 0
/
run-all.sh
executable file
·48 lines (38 loc) · 955 Bytes
/
run-all.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#!/usr/bin/env bash
# Run all the python scripts to analyze spending
echo Extracting income and spending from mint transaction data...
python extract_spending_and_income.py;
if [ $? -gt 0 ]; then
exit $?
fi
echo Visualizing Year over Year income...
python visualize_income_by_year.py
if [ $? -gt 0 ]; then
exit $?
fi
echo Building Detailed Income by Group view....
python show_income_group_details.py
if [ $? -gt 0 ]; then
exit $?
fi
echo Visualizing Year over Year spending...
python visualize_spending_by_year.py
if [ $? -gt 0 ]; then
exit $?
fi
echo Visualizing Predicted Future Spending...
python predict_future_spending.py
if [ $? -gt 0 ]; then
exit $?
fi
echo Building Detailed Spending by Group view....
python show_spending_group_details.py
if [ $? -gt 0 ]; then
exit $?
fi
echo Showing Year over Year Category Changes...
python show_spending_category_trends.py
if [ $? -gt 0 ]; then
exit $?
fi
python save_todays_transactions.py