argparser=argparse.ArgumentParser(description='Parse the FHEM logfiles into a Database.')
argparser.add_argument('--parse','-p',nargs='+',help='List of Logfiles to Parse.',required=False,metavar='FILE')
argparser.add_argument('--list','-l',help='List all Heaters in the Database.',action='store_true')
argparser.add_argument('--heatAmmount',help='Sum of the actuator value times a time slice.',nargs=1,metavar='HEATER')
argparser.add_argument('--allHeatAmmount',help='Get the heat ammount from all known heaters.',action='store_true')
argparser.add_argument('--timeSpan',help='The time span for the heatAmmount calculation. Either t1/t2 or both may be supplied.',nargs=1,metavar='t1..t2 | t1 | ..t2')