chiark / gitweb /
Oops, forgot to commit. Lots of faffing arround with graphs, graphs will be added...
[familyTree.git] / familyTree / printLists.py
1 #!/usr/bin/python
2
3 import askQuestion
4 import sys      
5
6
7 conn = askQuestion.connect()
8
9
10 o = askQuestion.count_names('\n')
11
12 print o
13
14 o = askQuestion.count_birth_month('\n')
15 print o
16
17 o = askQuestion.count_death_month('\n')
18 print o
19
20 #o = askQuestion.list_territories('\n')
21
22 #print o
23
24 #o = askQuestion.list_people('\n')
25 #print o
26
27 #o = askQuestion.count_age_at_child('\n')
28 #print o
29
30 askQuestion.close(conn)