From 3a8127c40245dc9af4da5173b576d872dc0973b1 Mon Sep 17 00:00:00 2001 From: Santo Cariotti Date: Thu, 20 Jul 2017 16:41:23 +0200 Subject: added all config sets into get command --- lib/commands.py | 9 +++++++-- lib/listcommands.py | 2 +- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/lib/commands.py b/lib/commands.py index 0e59c12..e016772 100644 --- a/lib/commands.py +++ b/lib/commands.py @@ -1,5 +1,6 @@ from classes import userexist, PersonalError, r, host, clear, Colors from listcommands import ListCommands +from config import config as co class Commands(object): @@ -43,9 +44,13 @@ class Commands(object): else: print('nil') elif cmd[2] == 'host': - print('localhost') + print(co['host']) elif cmd[2] == 'port': - print('6379') + print(co['post']) + elif cmd[2] == 'socket_path': + print(co['unix_socket_path']) + elif cmd[2] == 'db': + print(co['db']) elif cmd[2] not in ListCommands.commands['get'][1]: ListCommands.err('keyword') elif cmd[1] == 'user?': diff --git a/lib/listcommands.py b/lib/listcommands.py index 74079c9..04202a4 100644 --- a/lib/listcommands.py +++ b/lib/listcommands.py @@ -13,7 +13,7 @@ class ListCommands(object): 'quit' : None, 'clear' : None, 'set' : ['user'], - 'get' : ['i', ['user', 'host', 'port'], 'user?'] + 'get' : ['i', ['user', 'host', 'port', 'socket_path', 'db'], 'user?'] } @staticmethod -- cgit v1.2.3-18-g5258