Spaces:
Sleeping
Sleeping
File size: 289 Bytes
e711277 abf13b5 620c9a7 f27c18d abf13b5 f27c18d 935ee21 |
1 2 3 4 5 6 7 8 9 |
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() |