CmdEntry = namedtuple('CmdEntry','function helpstring')
commands = alias({
'exit': CmdEntry(exitcmd, 'Quits this shell'),
'help': CmdEntry(helpcmd, 'Helps you getting to know the available commands'),
'unlock': CmdEntry(sendcmd(tuerSock, 'unlock'), 'Will try to unlock the apartment door'),
CmdEntry = namedtuple('CmdEntry','function helpstring')
commands = alias({
'exit': CmdEntry(exitcmd, 'Quits this shell'),
'help': CmdEntry(helpcmd, 'Helps you getting to know the available commands'),
'unlock': CmdEntry(sendcmd(tuerSock, 'unlock'), 'Will try to unlock the apartment door'),