-
Notifications
You must be signed in to change notification settings - Fork 0
/
goals.py
48 lines (39 loc) · 1.04 KB
/
goals.py
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
47
48
## Base goals app file
from project import Project
from places import Place
from total import Total
import sys
if __name__ == "__main__":
print ""
print "2015 Goals"
print "Goal 1: Ship 48 projects"
proj = Project()
print "Projects Shipped", ", ".join(proj.projects)
print "Projects Remaining", 48-len(proj.projects)
print ""
place = Place()
print "Goal 2: Visit 48 projects"
print "Places Visited", ", ".join(place.places)
print "Places Remaining", 48-len(place.places)
print ""
print "Goal 3: Minimize my Belongings"
print ""
print "Goal 4: Do Yoga / Airtone weekly"
print ""
print "Goal 5: Be 100% nomadic"
print ""
print "Goal 6: Pay off all Debt and save 10K"
budget={
'rent':9600,
'health':1200,
'phone':660,
'car':1440,
'travel':8400,
'priorities':18000,
'business':8660,
'personal':10800
}
t = Total(budget)
year = sys.argv[1] if len(sys.argv) > 1 else 1
t.year_report(year)
print ""