jcmachicao commited on
Commit
c23fdff
1 Parent(s): 608cb34

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -6,7 +6,7 @@ file = st.file_uploader('Seleccione un archivo Excel: ')
6
 
7
  if 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)
 
6
 
7
  if file is not None:
8
  # Load the Excel file into a Pandas dataframe
9
+ df = pd.read_excel(file, engine='openpyxl')
10
  # Show the dataframe in Streamlit
11
  st.write(df.head())
12
  st.write(df.columns)