Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -17,8 +17,8 @@ def excel_to_json(file):
|
|
| 17 |
# Gradioインターフェースの設定
|
| 18 |
interface = gr.Interface(
|
| 19 |
fn=excel_to_json,
|
| 20 |
-
inputs=gr.
|
| 21 |
-
outputs=gr.
|
| 22 |
title="Excel to JSON Converter",
|
| 23 |
description="Upload an Excel file and get JSON output of column C values from the second row onward."
|
| 24 |
)
|
|
|
|
| 17 |
# Gradioインターフェースの設定
|
| 18 |
interface = gr.Interface(
|
| 19 |
fn=excel_to_json,
|
| 20 |
+
inputs=gr.File(label="Upload Excel File"),
|
| 21 |
+
outputs=gr.Textbox(label="JSON Output"),
|
| 22 |
title="Excel to JSON Converter",
|
| 23 |
description="Upload an Excel file and get JSON output of column C values from the second row onward."
|
| 24 |
)
|