add log and output cli-args

This commit is contained in:
Thor77 2016-05-21 21:35:42 +02:00
parent 9c0ebc18ed
commit 2b9e9d0911
1 changed files with 7 additions and 0 deletions

View File

@ -21,6 +21,13 @@ def cli():
parser.add_argument(
'--idmap', type=str, help='path to id_map', default='id_map.json'
)
parser.add_argument(
'--log', type=str, help='path to your logfile(s)'
)
parser.add_argument(
'--output', type=str, help='path to the output-file',
default='stats.html'
)
parser.add_argument(
'--debug', help='debug mode', action='store_true'
)