Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -2,7 +2,7 @@ import gradio as gr
|
|
2 |
import pandas as pd
|
3 |
|
4 |
def process_excel(file):
|
5 |
-
df = pd.read_excel(file
|
6 |
return df,type(df)
|
7 |
|
8 |
iface = gr.Interface(fn=process_excel, inputs=gr.File(type='file',label='excle'), outputs=[gr.outputs.Dataframe(type='pandas'),"text"], title="Excel Processor")
|
|
|
2 |
import pandas as pd
|
3 |
|
4 |
def process_excel(file):
|
5 |
+
df = pd.read_excel(file, engine='openpyxl')
|
6 |
return df,type(df)
|
7 |
|
8 |
iface = gr.Interface(fn=process_excel, inputs=gr.File(type='file',label='excle'), outputs=[gr.outputs.Dataframe(type='pandas'),"text"], title="Excel Processor")
|