Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -49,11 +49,10 @@ elif option == "Subir archivo propio":
|
|
49 |
# Bloque de código para procesar y mostrar gráficas y varianzas
|
50 |
if uploaded_file is not None or option == "API Alpha Vantage":
|
51 |
if uploaded_file is not None:
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
pass
|
57 |
|
58 |
# Código para mostrar gráficas y varianzas ...
|
59 |
if 'df' in locals():
|
|
|
49 |
# Bloque de código para procesar y mostrar gráficas y varianzas
|
50 |
if uploaded_file is not None or option == "API Alpha Vantage":
|
51 |
if uploaded_file is not None:
|
52 |
+
if uploaded_file.name[-3:] == "csv":
|
53 |
+
df = pd.read_csv(uploaded_file)
|
54 |
+
else:
|
55 |
+
df = pd.read_excel(uploaded_file)
|
|
|
56 |
|
57 |
# Código para mostrar gráficas y varianzas ...
|
58 |
if 'df' in locals():
|