Spaces:
Sleeping
Sleeping
import gradio as gr | |
import pandas as pd | |
def process_excel(file): | |
df = pd.read_excel(file.name, encoding='utf-8') | |
return df.to_string() | |
iface = gr.Interface(fn=process_excel, inputs=gr.inputs.File(type='file',label='excle'), outputs='text', title="Excel Processor") | |
iface.launch() |