chiark / gitweb /
improved handling of ordinary numbers and description of relations
[familyTree.git] / familyTree / printRulers.py
1 #!/usr/bin/python
2
3 import askQuestion
4 import sys      
5
6
7 conn = askQuestion.connect()
8
9
10 if len(sys.argv)==1:
11         terr = 'England'
12 else:
13         terr = sys.argv[1]
14
15
16 o = askQuestion.rulers_of(terr,'\n')
17
18
19 print o
20 askQuestion.close(conn)