From 6d1aff6894408c89d7a549076293fe011e475eb0 Mon Sep 17 00:00:00 2001 From: Santo Cariotti Date: Thu, 20 Jul 2017 13:24:34 +0200 Subject: added get comand --- listcommands.py | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) (limited to 'listcommands.py') diff --git a/listcommands.py b/listcommands.py index 136d214..f93c3d7 100644 --- a/listcommands.py +++ b/listcommands.py @@ -4,24 +4,25 @@ from classes import Colors class ListCommands(object): info = { - "info" : "this is stout", - "set" : "set a value", + 'info' : 'this is stout', + 'set' : ['set a value', 3], } commands = { - 'quit' : None, + 'quit' : None, #quit and exit do same thing + 'exit' : None, 'clear' : None, - 'set' : ['user', 'host'], - 'get' : None + 'set' : ['user'], + 'get' : ['user', 'user?', 'host', 'port'] } @staticmethod def err(err, info = ''): if err == 'keyword': - sys.stderr.write(Colors.red + "keyword inesistente\n" + Colors.black) + sys.stderr.write(Colors.red + 'keyword inesistente\n' + Colors.black) elif err == 'wrong': - sys.stderr.write(Colors.red + "sintassi comando errata\n" + Colors.black) + sys.stderr.write(Colors.red + 'sintassi comando errata\n' + Colors.black) elif err == 'personal': - sys.stderr.write(Colors.red + str(info) + "\n" + Colors.black) + sys.stderr.write(Colors.red + str(info) + '\n' + Colors.black) else: pass -- cgit v1.2.3-18-g5258