Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -1,60 +1,61 @@
|
|
1 |
import gradio as gr
|
2 |
import pandas as pd
|
|
|
3 |
from datetime import datetime
|
4 |
import os
|
5 |
|
6 |
-
#
|
7 |
-
|
8 |
-
print(f"[LOG] {step} 단계가 실행되었습니다.")
|
9 |
|
10 |
-
# 엑셀 파일 처리 및 분석 함수
|
11 |
def analyze_reviews(file_path):
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
review_counts.
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
40 |
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
log_message("3. 분석 버튼 클릭됨")
|
46 |
-
analyzed_file_path = analyze_reviews(file.name)
|
47 |
-
log_message("4. 엑셀 파일 다운로드 준비 완료")
|
48 |
-
return analyzed_file_path
|
49 |
-
|
50 |
-
# 그라디오 UI 구성
|
51 |
-
with gr.Blocks() as demo:
|
52 |
-
gr.Markdown("# 리뷰 분석 시스템")
|
53 |
-
file_input = gr.File(label="엑셀 파일 업로드", type="file", file_types=[".xlsx"])
|
54 |
-
analyze_button = gr.Button("분석하기")
|
55 |
-
download_file = gr.File(label="분석된 엑셀 파일 다운로드", type="filepath")
|
56 |
-
|
57 |
-
analyze_button.click(fn=interface, inputs=file_input, outputs=download_file)
|
58 |
-
|
59 |
-
# 애플리케이션 실행
|
60 |
-
demo.launch()
|
|
|
1 |
import gradio as gr
|
2 |
import pandas as pd
|
3 |
+
import logging
|
4 |
from datetime import datetime
|
5 |
import os
|
6 |
|
7 |
+
# 로깅 설정
|
8 |
+
logging.basicConfig(level=logging.INFO, format='%(asctime)s - %(levelname)s - %(message)s')
|
|
|
9 |
|
|
|
10 |
def analyze_reviews(file_path):
|
11 |
+
try:
|
12 |
+
logging.info("파일 업로드 시작: %s", file_path)
|
13 |
+
# 엑셀 파일 읽기
|
14 |
+
df = pd.read_excel(file_path)
|
15 |
+
logging.info("엑셀 파일 읽기 완료")
|
16 |
+
|
17 |
+
# 현재 연도 기준 최근 3년 설정 (2025년 기준)
|
18 |
+
current_year = 2025
|
19 |
+
start_year = current_year - 3
|
20 |
+
logging.info("분석할 기간: %d년부터 %d년까지", start_year, current_year)
|
21 |
+
|
22 |
+
# B열이 리뷰 날짜라고 가정
|
23 |
+
df['B'] = pd.to_datetime(df.iloc[:, 1], errors='coerce')
|
24 |
+
df = df.dropna(subset=['B'])
|
25 |
+
df['Year'] = df['B'].dt.year
|
26 |
+
df['Month'] = df['B'].dt.month
|
27 |
+
|
28 |
+
# 최근 3년 데이터 필터링
|
29 |
+
df_filtered = df[(df['Year'] > start_year) & (df['Year'] <= current_year)]
|
30 |
+
logging.info("최근 3년 데이터 필터링 완료: %d개의 데이터", len(df_filtered))
|
31 |
+
|
32 |
+
# 년월별 리뷰 건수 집계
|
33 |
+
df_filtered['Year-Month'] = df_filtered['B'].dt.strftime('%Y-%m')
|
34 |
+
review_counts = df_filtered.groupby('Year-Month').size().reset_index(name='Review Count')
|
35 |
+
logging.info("월별 리뷰 건수 집계 완료")
|
36 |
+
|
37 |
+
# 새로운 시트에 저장
|
38 |
+
with pd.ExcelWriter(file_path, engine='openpyxl', mode='a') as writer:
|
39 |
+
review_counts.to_excel(writer, sheet_name='월별 리뷰건수', index=False, header=False, startrow=0, startcol=0)
|
40 |
+
logging.info("새로운 시트 '월별 리뷰건수'에 저장 완료")
|
41 |
+
|
42 |
+
return file_path
|
43 |
+
except Exception as e:
|
44 |
+
logging.error("분석 중 오류 발생: %s", e)
|
45 |
+
return None
|
46 |
+
|
47 |
+
# 그라디오 인터페이스 정의
|
48 |
+
def main():
|
49 |
+
with gr.Blocks() as demo:
|
50 |
+
gr.Markdown("# 리뷰 분석 스페이스")
|
51 |
+
with gr.Row():
|
52 |
+
file_input = gr.File(label="원본 엑셀 파일 업로드", file_types=[".xlsx"])
|
53 |
+
analyze_button = gr.Button("분석")
|
54 |
+
file_output = gr.File(label="분석된 엑셀 파일 다운로드", file_types=[".xlsx"], type="filepath")
|
55 |
+
|
56 |
+
analyze_button.click(fn=analyze_reviews, inputs=file_input, outputs=file_output)
|
57 |
|
58 |
+
demo.launch()
|
59 |
+
|
60 |
+
if __name__ == "__main__":
|
61 |
+
main()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|