Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -53,7 +53,6 @@ def analyze_reviews(file):
|
|
53 |
for sheet_name in xls.sheet_names:
|
54 |
df_sheet = pd.read_excel(xls, sheet_name=sheet_name, engine='openpyxl')
|
55 |
df_sheet.to_excel(writer, sheet_name=sheet_name, index=False)
|
56 |
-
# 이미 '월별 리뷰건수' 시트가 추가되었으므로 추가로 작성할 필요 없음
|
57 |
output.seek(0)
|
58 |
logging.info("결과 파일 저장 완료")
|
59 |
|
@@ -71,7 +70,7 @@ with gr.Blocks() as demo:
|
|
71 |
file_input = gr.File(label="원본 엑셀 파일 업로드", type="binary")
|
72 |
|
73 |
analyze_button = gr.Button("분석")
|
74 |
-
output_download = gr.File(label="분석된 엑셀 파일 다운로드")
|
75 |
|
76 |
analyze_button.click(fn=analyze_reviews, inputs=file_input, outputs=output_download)
|
77 |
|
|
|
53 |
for sheet_name in xls.sheet_names:
|
54 |
df_sheet = pd.read_excel(xls, sheet_name=sheet_name, engine='openpyxl')
|
55 |
df_sheet.to_excel(writer, sheet_name=sheet_name, index=False)
|
|
|
56 |
output.seek(0)
|
57 |
logging.info("결과 파일 저장 완료")
|
58 |
|
|
|
70 |
file_input = gr.File(label="원본 엑셀 파일 업로드", type="binary")
|
71 |
|
72 |
analyze_button = gr.Button("분석")
|
73 |
+
output_download = gr.File(label="분석된 엑셀 파일 다운로드", type="binary") # type을 'binary'로 설정
|
74 |
|
75 |
analyze_button.click(fn=analyze_reviews, inputs=file_input, outputs=output_download)
|
76 |
|