1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
import sys
from classes import Colors
class ListCommands(object):
"""
ListCommands is used for return errors and check what commands exists
"""
info = {
'info' : 'this is stout',
'set' : ['set a value', 3],
'get' : ['return a value', 3],
'add' : ['new TODO',],
'del' : ['del TODO', 2]
}
commands = {
'quit' : None,
'clear' : None,
'set' : ['user'],
'get' : ['i', ['user', 'host', 'port', 'unix_socket_path', 'db'], 'todo', 'ctodo'],
'add' : None,
'del' : None,
}
@staticmethod
def err(err, info = ''):
if err == 'keyword':
sys.stderr.write(Colors.red + 'keyword inesistente\n' + Colors.black)
elif err == 'wrong':
sys.stderr.write(Colors.red + 'sintassi comando errata\n' + Colors.black)
elif err == 'personal':
sys.stderr.write(Colors.red + str(info) + '\n' + Colors.black)
else:
pass
|