-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpython_crud.py
230 lines (163 loc) · 5.7 KB
/
python_crud.py
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
import json
def crud_create(table, fields, register=None,
fields_error="Not all fields in register."):
''' id is autonum '''
id_pk = (len(table) and max(table)) + 1
if not register:
register = {}
for field, cast in fields.items():
while True:
try:
register[field] = cast(input(f"{field.capitalize()}: "))
break
except Exception:
print(f"😔 [{cast.__name__}]")
if not all(f in register for f in fields):
print(f"***** {fields_error} *****")
return False
table[id_pk] = register
return True
def crud_read(table, search=None, empty="List is empty", just_verify=False):
''' search => {field: search} '''
if search:
field, value = list(search.items())[0]
if field == 'id':
if isinstance(value, str) and value.isdigit():
value = int(value)
result_set = ((value, table[value]),) if value in table else None
else:
result_set = tuple(filter(
lambda r: str(value).lower() in str(r[1][field]).lower(),
table.items()))
else:
result_set = table.items()
if just_verify:
return bool(result_set)
if not result_set:
print(f"{'-':->50}")
print(f"***** {empty} *****")
print(f"{'=':=>50}")
return False
for id_pk, register in result_set:
print(f"{'-':->50}")
print(f"Id: {id_pk}")
for field, value in register.items():
print(f"{field.capitalize()}: {value}")
print(f"{'=':=>50}")
return True
def crud_update(table, id_pk, register=None, fields=None,
not_found="not found.",
fields_error="Not all fields in register."):
if id_pk not in table:
print(f"***** {id_pk} {not_found} *****")
return False
if not register:
register = table[id_pk]
for field, value in register.items():
cast = type(value)
while True:
try:
new = input(f"{field.capitalize()} [{value}]: ")
if new:
register[field] = cast(new)
break
except Exception:
print(f"😔 [{cast.__name__}]")
return True
if not all(f in register for f in fields):
print(f"***** {fields_error} *****")
return False
table[id_pk] = register
return True
def crud_delete(table, id_pk, not_found="not found"):
if id_pk not in table:
print(f"***** {id_pk} {not_found} *****")
return False
del table[id_pk]
return True
def crud_save(table, file_name="dict_crud.json"):
try:
with open(file_name, 'w') as f:
json.dump(table, f, indent=4)
except Exception:
return False
return True
def crud_load(table, file_name="dict_crud.json"):
if True: # try:
table.clear()
with open(file_name, 'r') as f:
table.update({int(k): v for k, v in json.load(f).items()})
else: # except Exception:
return False
return True
# Teste
if __name__ == '__main__':
# Variáveis globais para teste
tabela = {}
campos = {'nome': str, 'idade': int, 'filhos': int, 'salário': float}
opcoes = ('Menu', 'Listar', 'Filtrar', 'Inserir', 'Atualizar', 'Deletar',
'Carregar', 'Salvar', 'Sair')
# Funções para teste do CRUD com menu
def listar():
crud_read(tabela, empty="Listagem vazia!")
def filtrar():
print("0. Id")
for n, campo in enumerate(campos):
print(f"{n + 1}. {campo.capitalize()}")
try:
n = int(input("Por qual campo filtrar? "))
campo = (['id'] + list(campos))[n]
valor = input(f"O que procurar em `{campo.capitalize()}´? ")
crud_read(tabela, {campo: valor}, empty="Listagem vazia!")
except Exception:
print("*** Erro! ***")
def inserir():
crud_create(tabela, campos)
def atualizar():
listar()
try:
id_pk = int(input("Qual deseja alterar? "))
if crud_update(tabela, id_pk, not_found="não encontrado!"):
print("****** Alterado com sucesso! *****")
except Exception:
print("*** Erro! ***")
def deletar():
listar()
try:
id_pk = int(input("Qual deseja deletar? "))
if crud_delete(tabela, id_pk, not_found="não encontrado!"):
print("****** Excluído com sucesso! *****")
except Exception:
print("*** Erro! ***")
def carregar():
crud_load(tabela)
listar()
def salvar():
listar()
if crud_save(tabela):
print("***** Salvo com sucesso! *****")
else:
print("***** Erro ao salvar! *****")
def main():
menu()
while True:
opcao = menu(False, True)
if opcao == len(opcoes) - 1:
break
globals()[opcoes[opcao].lower()]()
def menu(mostar=True, perguntar=False):
largura = max(map(len, opcoes))
if mostar:
print(f"|{'-':->{largura + 3}s}|")
print('\n'.join(f"|{n}. {opcao:{largura}s}|"
for n, opcao in enumerate(opcoes)))
while perguntar:
print(f"|{'-':->{largura + 3}s}|")
try:
opcao = int(input("| Opção: "))
assert 0 <= opcao < len(opcoes)
return opcao
except Exception:
print(f"|{' Inválida':{largura + 3}s}|")
menu()
main()