Spaces:
Runtime error
Runtime error
jcmachicao
commited on
Commit
•
7a26948
1
Parent(s):
f0acbd7
Update app.py
Browse files
app.py
CHANGED
@@ -6,7 +6,7 @@ file = st.file_uploader('Seleccione un archivo Excel: ')
|
|
6 |
|
7 |
if uploaded_file is not None:
|
8 |
# Load the Excel file into a Pandas dataframe
|
9 |
-
df = pd.read_excel(
|
10 |
# Show the dataframe in Streamlit
|
11 |
st.write(df.head())
|
12 |
st.write(df.columns)
|
|
|
6 |
|
7 |
if uploaded_file is not None:
|
8 |
# Load the Excel file into a Pandas dataframe
|
9 |
+
df = pd.read_excel(file, engine='openpyxl', type="xlsx")
|
10 |
# Show the dataframe in Streamlit
|
11 |
st.write(df.head())
|
12 |
st.write(df.columns)
|