kaicheng commited on
Commit
c84826a
·
1 Parent(s): 456b990

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -46,5 +46,7 @@ iface = gr.Interface(fn=merge_excel_tables,
46
  inputs=[gr.File(type='file',label='excle表格1'),
47
  gr.File(type='file',label='excle表格2')],
48
  outputs=[gr.outputs.Dataframe(type='pandas',label='合并后表格')],
49
- title="强哥的Excel Processor")
 
 
50
  iface.launch()
 
46
  inputs=[gr.File(type='file',label='excle表格1'),
47
  gr.File(type='file',label='excle表格2')],
48
  outputs=[gr.outputs.Dataframe(type='pandas',label='合并后表格')],
49
+ title="强哥的Excel Processor",
50
+ description="根据表格一的第一列,寻找表格二对应第一列的行数据,把表格二中与表格一相同标签数据填入表格一")
51
+
52
  iface.launch()