Spaces:
Sleeping
Sleeping
import gradio as gr | |
import pandas as pd | |
def process_excel(file): | |
df = pd.read_csv(file.name) | |
return df.to_pandas() | |
iface = gr.Interface(fn=process_excel, inputs='file', outputs=[gr.outputs.Dataframe(type='pandas')], title="Excel Processor") | |
iface.launch() |