From 2b9e9d09119690acd471504cdfa316c6df8217d9 Mon Sep 17 00:00:00 2001 From: Thor77 Date: Sat, 21 May 2016 21:35:42 +0200 Subject: [PATCH] add log and output cli-args --- tsstats/__main__.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/tsstats/__main__.py b/tsstats/__main__.py index d21503f..f85d501 100644 --- a/tsstats/__main__.py +++ b/tsstats/__main__.py @@ -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' )