-
Notifications
You must be signed in to change notification settings - Fork 0
/
lookup.py
251 lines (214 loc) · 10.7 KB
/
lookup.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
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
from tabulate import tabulate
# ITUB4 FUNCTION
def itub4_lookup():
while True:
try:
qitub4 = input(
"\nQual das seguintes opções você gostaria de selecionar?\n Valores de data específica (1)\n Valor de mês específico (2)\nPor favor, use 1 ou 2 para selecionar a sua opção.\n\n"
)
if qitub4 == "1" or qitub4 == "2":
break
else:
raise ValueError
except ValueError:
print(
"\nDesculpe mas essa opção não esta disponível!\n Por favor, selecione uma opção disponível\n"
)
finally:
if qitub4 == "1":
while True:
try:
with open("ITUB4_daily_max.csv", "r") as f:
date = input(
"\nQual data você gostaria de ver?\n A data mais antiga disponível é '2000-12-21'\nO formato escrito deve ser YYYY-MM-DD\n\n"
)
for line in f:
if line.startswith(date):
line = line.split(",")
table = [
["Data", line[0]],
["Aberto", f"$ {line[1]}"],
["Valor mais Alto", f"$ {line[2]}"],
["Valor mais Baixo", f"$ {line[3]}"],
["Fechamento", f"$ {line[4]}"],
["Volume", f"{int(line[6]):,d}"],
]
f.close()
return tabulate(table, tablefmt="double_grid")
except:
pass
elif qitub4 == "2":
while True:
try:
with open("ITUB4_monthly_max.csv", "r") as f:
date_month = input(
"\nQual mês você gostaria de procurar?\n O primeiro mẽs disponível é '2000-01'\nO formato escrito deve ser YYYY-MM\n"
)
for line in f:
if line.startswith(date_month):
line = line.split(",")
line[1] = float(line[1])
line[4] = float(line[4])
dif = line[4] - line[1]
table = [
["Ano e Mês", line[0]],
["Aberto", f"$ {line[1]}"],
["Valor mais Alto", f"$ {line[2]}"],
["Valor mais Baixo", f"$ {line[3]}"],
["Fechamento", f"$ {line[4]}"],
["Volume", f"{int(line[6]):,d}"],
["Diferença Diária", f"$ {dif}"],
]
f.close()
return tabulate(table, tablefmt="double_grid")
except:
pass
# BBDC4 FUNCTION
def bbdc4_lookup():
while True:
try:
qbbdc4 = input(
"\nQual das seguintes opções você gostaria de selecionar?\n Valores de data específica (1)\n Valor de mês específico (2)\nPor favor, use 1 ou 2 para selecionar a sua opção.\n\n"
)
if qbbdc4 == "1" or qbbdc4 == "2":
break
else:
raise ValueError
except ValueError:
print(
"\nDesculpe mas essa opção não esta disponível!\n Por favor, selecione uma opção disponível\n"
)
finally:
if qbbdc4 == "1":
while True:
try:
with open("BBDC4_daily_max.csv", "r") as f:
date = input(
"\nQual data você gostaria de ver?\n A data mais antiga disponível é '2008-01-02\nO formato escrito deve ser YYYY-MM-DD\n\n"
)
for line in f:
if line.startswith(date):
line = line.split(",")
table = [
["Data", line[0]],
["Aberto", f"$ {line[1]}"],
["Valor mais Alto", f"$ {line[2]}"],
["Valor mais Baixo", f"$ {line[3]}"],
["Fechamento", f"$ {line[4]}"],
["Volume", f"{int(line[6]):,d}"],
]
f.close()
return tabulate(table, tablefmt="double_grid")
except:
pass
elif qbbdc4 == "2":
while True:
try:
with open("BBDC4_monthly_max.csv", "r") as f:
date_month = input(
"\n\nQual mês de qual ano você gostaria de procurar?\n O primeiro mês disponível é '2008-02'\nO formato escrito deve ser YYYY-MM\n"
)
for line in f:
if line.startswith(date_month):
line = line.split(",")
line[1] = float(line[1])
line[4] = float(line[4])
dif = line[4] - line[1]
table = [
["Mes", line[0]],
["Aberto", f"$ {line[1]}"],
["Valor mais Alto", f"$ {line[2]}"],
["Valor mais Baixo", f"$ {line[3]}"],
["Fechamento", f"$ {line[4]}"],
["Volume", f"{int(line[6]):,d}"],
["Diferença Diária", f"$ {dif}"],
]
f.close()
return tabulate(table, tablefmt="double_grid")
except:
pass
# VALE3 FUNCTION
def vale3_lookup():
while True:
try:
qvale3 = input(
"\nQual das seguintes opções você gostaria de selecionar?\n Valores de data específica (1)\n Valor de mês específico (2)\nPor favor, use 1 ou 2 para selecionar a sua opção.\n\n"
)
if qvale3 == "1" or qvale3 == "2":
break
else:
raise ValueError
except ValueError:
print(
"\nDesculpe mas essa opção não esta disponível!\n Por favor, selecione uma opção disponível\n"
)
finally:
if qvale3 == "1":
while True:
try:
with open("VALE3_daily_max.csv", "r") as f:
date = input(
"\nQual data você gostaria de ver?\n A data mais antiga disponível é '2008-01-03\nO formato escrito deve ser YYYY-MM-DD\n\n"
)
for line in f:
if line.startswith(date):
line = line.split(",")
table = [
["Data", line[0]],
["Aberto", f"$ {line[1]}"],
["Valor mais Alto", f"$ {line[2]}"],
["Valor mais Baixo", f"$ {line[3]}"],
["Fechamento", f"$ {line[4]}"],
["Volume", f"{int(line[6]):,d}"],
]
f.close()
return tabulate(table, tablefmt="double_grid")
except:
pass
elif qvale3 == "2":
while True:
try:
with open("VALE3_monthly_max.csv", "r") as f:
date_month = input(
"\nQual mês de qual ano você gostaria de procurar?\n O primeiro mês disponível é '2000-02'\nO formato escrito deve ser YYYY-MM\n"
)
for line in f:
if line.startswith(date_month):
line = line.split(",")
line[1] = float(line[1])
line[4] = float(line[4])
dif = line[4] - line[1]
table = [
["Mês", line[0]],
["Aberto", f"$ {line[1]}"],
["Valor mais Alto", f"$ {line[2]}"],
["Valor mais Baixo", f"$ {line[3]}"],
["Fechamento", f"$ {line[4]}"],
["Volume", f"{int(line[6]):,d}"],
["Diferença Diária", f"$ {dif}"],
]
f.close()
return tabulate(table, tablefmt="double_grid")
except:
pass
def main():
while True:
try:
q = input(
"\nQuais das seguintes ações você gostaria de ver?\n BBDC4\n ITUB4\n VALE3\n\nPressione CTRL C para sair\n\n"
).lower()
if q == "itub4":
print(itub4_lookup())
elif q == "bbdc4":
print(bbdc4_lookup())
elif q == "vale3":
print(vale3_lookup())
else:
raise ValueError
except ValueError:
print("\nOpção não disponível\n")
except KeyboardInterrupt:
print("\n\nSuccesful System Exit\n")
break
if __name__ == "__main__":
main()