-
Notifications
You must be signed in to change notification settings - Fork 5
/
accountant.py
47 lines (37 loc) · 1.23 KB
/
accountant.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
#!/usr/bin/env python
"""
Thomas Klijnsma
"""
########################################
# Imports
########################################
import os
import differentials
import logging
import argparse
########################################
# Main
########################################
def main():
parser = argparse.ArgumentParser()
parser.add_argument( 'scandirs', metavar='N', type=str, nargs='+', help='list of strings' )
parser.add_argument( '--allq', action='store_true', help='boolean')
parser.add_argument( '--shortq', action='store_true', help='boolean')
parser.add_argument( '--longq', action='store_true', help='boolean')
args = parser.parse_args()
logging.getLogger().setLevel(logging.WARNING)
for scandir in args.scandirs:
accountant = differentials.scan_accounting.ScanAccountant(scandir)
if args.allq:
accountant.only_allq_recommendation()
elif args.shortq:
accountant.only_shortq_recommendation()
elif args.longq:
accountant.only_longq_recommendation()
else:
accountant.overview()
########################################
# End of Main
########################################
if __name__ == "__main__":
main()